Package org.drinkless.tdlib
Class TdApi.UpdateFileGenerationStart
- java.lang.Object
-
- org.drinkless.tdlib.TdApi.Object
-
- org.drinkless.tdlib.TdApi.Update
-
- org.drinkless.tdlib.TdApi.UpdateFileGenerationStart
-
- Enclosing class:
- TdApi
public static class TdApi.UpdateFileGenerationStart extends TdApi.Update
The file generation process needs to be started by the application.
-
-
Field Summary
Fields Modifier and Type Field Description static intCONSTRUCTORIdentifier uniquely determining type of the object.StringconversionString specifying the conversion applied to the original file.StringdestinationPathThe path to a file that must be created and where the new file is generated.longgenerationIdUnique identifier for the generation process.StringoriginalPathThe path to a file from which a new file is generated; may be empty.
-
Constructor Summary
Constructors Constructor Description UpdateFileGenerationStart()The file generation process needs to be started by the application.UpdateFileGenerationStart(long generationId, String originalPath, String destinationPath, String conversion)The file generation process needs to be started by the application.
-
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
-
generationId
public long generationId
Unique identifier for the generation process.
-
originalPath
public String originalPath
The path to a file from which a new file is generated; may be empty.
-
destinationPath
public String destinationPath
The path to a file that must be created and where the new file is generated.
-
conversion
public String conversion
String specifying the conversion applied to the original file. If conversion is "#url#" than originalPath contains an HTTP/HTTPS URL of a file, which must be downloaded by the application.
-
CONSTRUCTOR
public static final int CONSTRUCTOR
Identifier uniquely determining type of the object.- See Also:
- Constant Field Values
-
-
Constructor Detail
-
UpdateFileGenerationStart
public UpdateFileGenerationStart()
The file generation process needs to be started by the application.
-
UpdateFileGenerationStart
public UpdateFileGenerationStart(long generationId, String originalPath, String destinationPath, String conversion)The file generation process needs to be started by the application.- Parameters:
generationId- Unique identifier for the generation process.originalPath- The path to a file from which a new file is generated; may be empty.destinationPath- The path to a file that must be created and where the new file is generated.conversion- String specifying the conversion applied to the original file. If conversion is "#url#" than originalPath contains an HTTP/HTTPS URL of a file, which must be downloaded by the application.
-
-
Method Detail
-
getConstructor
public int getConstructor()
- Specified by:
getConstructorin classTdApi.Object- Returns:
- this.CONSTRUCTOR
-
-