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
A file generated by the application. The application must handle updates updateFileGenerationStart and updateFileGenerationStop to generate the file when asked by TDLib.
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final intIdentifier uniquely determining type of the object.String specifying the conversion applied to the original file; must be persistent across application restarts.longExpected size of the generated file, in bytes; pass 0 if unknown.Local path to a file from which the file is generated. -
Constructor Summary
ConstructorsConstructorDescriptionA file generated by the application.InputFileGenerated(String originalPath, String conversion, long expectedSize) A file generated by the application. -
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
-
originalPath
Local path to a file from which the file is generated. The path doesn't have to be a valid path and is used by TDLib only to detect name and MIME type of the generated 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
public long expectedSizeExpected size of the generated file, in bytes; pass 0 if unknown. -
CONSTRUCTOR
public static final int CONSTRUCTORIdentifier uniquely determining type of the object.- See Also:
-
-
Constructor Details
-
InputFileGenerated
public InputFileGenerated()A file generated by the application. The application must handle updates updateFileGenerationStart and updateFileGenerationStop to generate the file when asked by TDLib. -
InputFileGenerated
A file generated by the application. The application must handle updates updateFileGenerationStart and updateFileGenerationStop to generate the file when asked by TDLib.- Parameters:
originalPath- Local path to a file from which the file is generated. The path doesn't have to be a valid path and is used by TDLib only to detect name and MIME type of the generated 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; pass 0 if unknown.
-
-
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
-