Package org.drinkless.tdlib
Class TdApi.InputFileGenerated
- java.lang.Object
-
- org.drinkless.tdlib.TdApi.Object
-
- org.drinkless.tdlib.TdApi.InputFile
-
- org.drinkless.tdlib.TdApi.InputFileGenerated
-
- Enclosing class:
- TdApi
public static class TdApi.InputFileGenerated extends TdApi.InputFile
A file generated 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; must be persistent across application restarts.intexpectedSizeExpected size of the generated file, in bytes; 0 if unknown.StringoriginalPathLocal path to a file from which the file is generated; may be empty if there is no such file.
-
Constructor Summary
Constructors Constructor Description InputFileGenerated()A file generated by the application.InputFileGenerated(String originalPath, String conversion, int expectedSize)A file generated 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
-
originalPath
public String originalPath
Local path to a file from which the file is generated; may be empty if there is no such file.
-
conversion
public String conversion
String specifying the conversion applied to the original file; must be persistent across application restarts. Conversions beginning with '#' are reserved for internal TDLib usage.
-
expectedSize
public int expectedSize
Expected size of the generated file, in bytes; 0 if unknown.
-
CONSTRUCTOR
public static final int CONSTRUCTOR
Identifier uniquely determining type of the object.- See Also:
- Constant Field Values
-
-
Constructor Detail
-
InputFileGenerated
public InputFileGenerated()
A file generated by the application.
-
InputFileGenerated
public InputFileGenerated(String originalPath, String conversion, int expectedSize)
A file generated by the application.- Parameters:
originalPath- Local path to a file from which the file is generated; may be empty if there is no such file.conversion- String specifying the conversion applied to the original file; must be persistent across application restarts. Conversions beginning with '#' are reserved for internal TDLib usage.expectedSize- Expected size of the generated file, in bytes; 0 if unknown.
-
-
Method Detail
-
getConstructor
public int getConstructor()
- Specified by:
getConstructorin classTdApi.Object- Returns:
- this.CONSTRUCTOR
-
-