Class TdApi.StorageStatisticsFast

  • Enclosing class:
    TdApi

    public static class TdApi.StorageStatisticsFast
    extends TdApi.Object
    Contains approximate storage usage statistics, excluding files of unknown file type.
    • Field Summary

      Fields 
      Modifier and Type Field Description
      static int CONSTRUCTOR
      Identifier uniquely determining type of the object.
      long databaseSize
      Size of the database.
      int fileCount
      Approximate number of files.
      long filesSize
      Approximate total size of files.
    • Constructor Summary

      Constructors 
      Constructor Description
      StorageStatisticsFast()
      Default constructor.
      StorageStatisticsFast​(long filesSize, int fileCount, long databaseSize)
      Constructor for initialization of all fields.
    • Field Detail

      • filesSize

        public long filesSize
        Approximate total size of files.
      • fileCount

        public int fileCount
        Approximate number of files.
      • databaseSize

        public long databaseSize
        Size of the database.
      • CONSTRUCTOR

        public static final int CONSTRUCTOR
        Identifier uniquely determining type of the object.
        See Also:
        Constant Field Values
    • Constructor Detail

      • StorageStatisticsFast

        public StorageStatisticsFast()
        Default constructor.
      • StorageStatisticsFast

        public StorageStatisticsFast​(long filesSize,
                                     int fileCount,
                                     long databaseSize)
        Constructor for initialization of all fields.
        Parameters:
        filesSize - Approximate total size of files.
        fileCount - Approximate number of files.
        databaseSize - Size of the database.