Package org.drinkless.tdlib
Class TdApi.GetRemoteFile
- java.lang.Object
-
- org.drinkless.tdlib.TdApi.Object
-
- org.drinkless.tdlib.TdApi.Function
-
- org.drinkless.tdlib.TdApi.GetRemoteFile
-
- Enclosing class:
- TdApi
public static class TdApi.GetRemoteFile extends TdApi.Function
Returns information about a file by its remote ID; this is an offline request. Can be used to register a URL as a file for further uploading, or sending as a message. Even the request succeeds, the file can be used only if it is still accessible to the user. For example, if the file is from a message, then the message must be not deleted and accessible to the user. If the file database is disabled, then the corresponding object with the file must be preloaded by the application.Returns
File
-
-
Field Summary
Fields Modifier and Type Field Description static intCONSTRUCTORIdentifier uniquely determining type of the object.TdApi.FileTypefileTypeFile type; pass null if unknown.StringremoteFileIdRemote identifier of the file to get.
-
Constructor Summary
Constructors Constructor Description GetRemoteFile()Default constructor for a function, which returns information about a file by its remote ID; this is an offline request.GetRemoteFile(String remoteFileId, TdApi.FileType fileType)Creates a function, which returns information about a file by its remote ID; this is an offline request.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetConstructor()-
Methods inherited from class org.drinkless.tdlib.TdApi.Function
toString
-
-
-
-
Field Detail
-
remoteFileId
public String remoteFileId
Remote identifier of the file to get.
-
fileType
public TdApi.FileType fileType
File type; pass null if unknown.
-
CONSTRUCTOR
public static final int CONSTRUCTOR
Identifier uniquely determining type of the object.- See Also:
- Constant Field Values
-
-
Constructor Detail
-
GetRemoteFile
public GetRemoteFile()
Default constructor for a function, which returns information about a file by its remote ID; this is an offline request. Can be used to register a URL as a file for further uploading, or sending as a message. Even the request succeeds, the file can be used only if it is still accessible to the user. For example, if the file is from a message, then the message must be not deleted and accessible to the user. If the file database is disabled, then the corresponding object with the file must be preloaded by the application.Returns
File
-
GetRemoteFile
public GetRemoteFile(String remoteFileId, TdApi.FileType fileType)
Creates a function, which returns information about a file by its remote ID; this is an offline request. Can be used to register a URL as a file for further uploading, or sending as a message. Even the request succeeds, the file can be used only if it is still accessible to the user. For example, if the file is from a message, then the message must be not deleted and accessible to the user. If the file database is disabled, then the corresponding object with the file must be preloaded by the application.Returns
File- Parameters:
remoteFileId- Remote identifier of the file to get.fileType- File type; pass null if unknown.
-
-
Method Detail
-
getConstructor
public int getConstructor()
- Specified by:
getConstructorin classTdApi.Object- Returns:
- this.CONSTRUCTOR
-
-