Package org.drinkless.tdlib
Class TdApi.File
java.lang.Object
org.drinkless.tdlib.TdApi.Object
org.drinkless.tdlib.TdApi.File
- Enclosing class:
- TdApi
Represents a file.
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final intIdentifier uniquely determining type of the object.longApproximate file size in bytes in case the exact file size is unknown.intUnique file identifier.Information about the local copy of the file.Information about the remote copy of the file.longFile size, in bytes; 0 if unknown. -
Constructor Summary
ConstructorsConstructorDescriptionFile()Represents a file.File(int id, long size, long expectedSize, TdApi.LocalFile local, TdApi.RemoteFile remote) Represents a file. -
Method Summary
Modifier and TypeMethodDescriptionintReturns an identifier uniquely determining type of the object.Methods inherited from class org.drinkless.tdlib.TdApi.Object
toString
-
Field Details
-
id
public int idUnique file identifier. -
size
public long sizeFile size, in bytes; 0 if unknown. -
expectedSize
public long expectedSizeApproximate file size in bytes in case the exact file size is unknown. Can be used to show download/upload progress. -
local
Information about the local copy of the file. -
remote
Information about the remote copy of the file. -
CONSTRUCTOR
public static final int CONSTRUCTORIdentifier uniquely determining type of the object.- See Also:
-
-
Constructor Details
-
File
public File()Represents a file. -
File
Represents a file.- Parameters:
id- Unique file identifier.size- File size, in bytes; 0 if unknown.expectedSize- Approximate file size in bytes in case the exact file size is unknown. Can be used to show download/upload progress.local- Information about the local copy of the file.remote- Information about the remote copy of the file.
-
-
Method Details
-
getConstructor
public int getConstructor()Description copied from class:TdApi.ObjectReturns an identifier uniquely determining type of the object.- Specified by:
getConstructorin classTdApi.Object- Returns:
- this.CONSTRUCTOR
-