Package org.drinkless.tdlib
Class TdApi.File
- java.lang.Object
-
- org.drinkless.tdlib.TdApi.Object
-
- org.drinkless.tdlib.TdApi.File
-
- Enclosing class:
- TdApi
public static class TdApi.File extends TdApi.Object
Represents a file.
-
-
Field Summary
Fields Modifier and Type Field Description static intCONSTRUCTORIdentifier uniquely determining type of the object.intexpectedSizeApproximate file size in bytes in case the exact file size is unknown.intidUnique file identifier.TdApi.LocalFilelocalInformation about the local copy of the file.TdApi.RemoteFileremoteInformation about the remote copy of the file.intsizeFile size, in bytes; 0 if unknown.
-
Constructor Summary
Constructors Constructor Description File()Represents a file.File(int id, int size, int expectedSize, TdApi.LocalFile local, TdApi.RemoteFile remote)Represents a file.
-
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
-
id
public int id
Unique file identifier.
-
size
public int size
File size, in bytes; 0 if unknown.
-
expectedSize
public int expectedSize
Approximate file size in bytes in case the exact file size is unknown. Can be used to show download/upload progress.
-
local
public TdApi.LocalFile local
Information about the local copy of the file.
-
remote
public TdApi.RemoteFile remote
Information about the remote copy of the file.
-
CONSTRUCTOR
public static final int CONSTRUCTOR
Identifier uniquely determining type of the object.- See Also:
- Constant Field Values
-
-
Constructor Detail
-
File
public File()
Represents a file.
-
File
public File(int id, int size, int expectedSize, TdApi.LocalFile local, TdApi.RemoteFile remote)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 Detail
-
getConstructor
public int getConstructor()
- Specified by:
getConstructorin classTdApi.Object- Returns:
- this.CONSTRUCTOR
-
-