Package org.drinkless.tdlib
Class TdApi.InputAnimation
java.lang.Object
org.drinkless.tdlib.TdApi.Object
org.drinkless.tdlib.TdApi.InputAnimation
- Enclosing class:
- TdApi
An animation to be sent.
-
Field Summary
FieldsModifier and TypeFieldDescriptionint[]File identifiers of the stickers added to the animation, if applicable.Animation file to be sent.static final intIdentifier uniquely determining type of the object.intDuration of the animation, in seconds; may be replaced by the server.intHeight of the animation; may be replaced by the server.Animation thumbnail; pass null to skip thumbnail uploading.intWidth of the animation; may be replaced by the server. -
Constructor Summary
ConstructorsConstructorDescriptionAn animation to be sent.InputAnimation(TdApi.InputFile animation, TdApi.InputThumbnail thumbnail, int[] addedStickerFileIds, int duration, int width, int height) An animation to be sent. -
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
-
animation
Animation file to be sent. -
thumbnail
Animation thumbnail; pass null to skip thumbnail uploading. -
addedStickerFileIds
public int[] addedStickerFileIdsFile identifiers of the stickers added to the animation, if applicable. -
duration
public int durationDuration of the animation, in seconds; may be replaced by the server. -
width
public int widthWidth of the animation; may be replaced by the server. -
height
public int heightHeight of the animation; may be replaced by the server. -
CONSTRUCTOR
public static final int CONSTRUCTORIdentifier uniquely determining type of the object.- See Also:
-
-
Constructor Details
-
InputAnimation
public InputAnimation()An animation to be sent. -
InputAnimation
public InputAnimation(TdApi.InputFile animation, TdApi.InputThumbnail thumbnail, int[] addedStickerFileIds, int duration, int width, int height) An animation to be sent.- Parameters:
animation- Animation file to be sent.thumbnail- Animation thumbnail; pass null to skip thumbnail uploading.addedStickerFileIds- File identifiers of the stickers added to the animation, if applicable.duration- Duration of the animation, in seconds; may be replaced by the server.width- Width of the animation; may be replaced by the server.height- Height of the animation; may be replaced by the server.
-
-
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
-