Package org.drinkless.tdlib
Class TdApi.StorageStatisticsByFileType
- java.lang.Object
-
- org.drinkless.tdlib.TdApi.Object
-
- org.drinkless.tdlib.TdApi.StorageStatisticsByFileType
-
- Enclosing class:
- TdApi
public static class TdApi.StorageStatisticsByFileType extends TdApi.Object
Contains the storage usage statistics for a specific file type.
-
-
Field Summary
Fields Modifier and Type Field Description static intCONSTRUCTORIdentifier uniquely determining type of the object.intcountTotal number of files.TdApi.FileTypefileTypeFile type.longsizeTotal size of the files, in bytes.
-
Constructor Summary
Constructors Constructor Description StorageStatisticsByFileType()Contains the storage usage statistics for a specific file type.StorageStatisticsByFileType(TdApi.FileType fileType, long size, int count)Contains the storage usage statistics for a specific file type.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetConstructor()-
Methods inherited from class org.drinkless.tdlib.TdApi.Object
toString
-
-
-
-
Field Detail
-
fileType
public TdApi.FileType fileType
File type.
-
size
public long size
Total size of the files, in bytes.
-
count
public int count
Total number of files.
-
CONSTRUCTOR
public static final int CONSTRUCTOR
Identifier uniquely determining type of the object.- See Also:
- Constant Field Values
-
-
Constructor Detail
-
StorageStatisticsByFileType
public StorageStatisticsByFileType()
Contains the storage usage statistics for a specific file type.
-
StorageStatisticsByFileType
public StorageStatisticsByFileType(TdApi.FileType fileType, long size, int count)
Contains the storage usage statistics for a specific file type.- Parameters:
fileType- File type.size- Total size of the files, in bytes.count- Total number of files.
-
-
Method Detail
-
getConstructor
public int getConstructor()
- Specified by:
getConstructorin classTdApi.Object- Returns:
- this.CONSTRUCTOR
-
-