Package org.drinkless.tdlib
Class TdApi.InputMessageAnimation
- java.lang.Object
-
- org.drinkless.tdlib.TdApi.Object
-
- org.drinkless.tdlib.TdApi.InputMessageContent
-
- org.drinkless.tdlib.TdApi.InputMessageAnimation
-
- Enclosing class:
- TdApi
public static class TdApi.InputMessageAnimation extends TdApi.InputMessageContent
An animation message (GIF-style).
-
-
Field Summary
Fields Modifier and Type Field Description int[]addedStickerFileIdsFile identifiers of the stickers added to the animation, if applicable.TdApi.InputFileanimationAnimation file to be sent.TdApi.FormattedTextcaptionAnimation caption; pass null to use an empty caption; 0-GetOption("message_caption_length_max") characters.static intCONSTRUCTORIdentifier uniquely determining type of the object.intdurationDuration of the animation, in seconds.intheightHeight of the animation; may be replaced by the server.TdApi.InputThumbnailthumbnailAnimation thumbnail; pass null to skip thumbnail uploading.intwidthWidth of the animation; may be replaced by the server.
-
Constructor Summary
Constructors Constructor Description InputMessageAnimation()An animation message (GIF-style).InputMessageAnimation(TdApi.InputFile animation, TdApi.InputThumbnail thumbnail, int[] addedStickerFileIds, int duration, int width, int height, TdApi.FormattedText caption)An animation message (GIF-style).
-
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
-
animation
public TdApi.InputFile animation
Animation file to be sent.
-
thumbnail
public TdApi.InputThumbnail thumbnail
Animation thumbnail; pass null to skip thumbnail uploading.
-
addedStickerFileIds
public int[] addedStickerFileIds
File identifiers of the stickers added to the animation, if applicable.
-
duration
public int duration
Duration of the animation, in seconds.
-
width
public int width
Width of the animation; may be replaced by the server.
-
height
public int height
Height of the animation; may be replaced by the server.
-
caption
public TdApi.FormattedText caption
Animation caption; pass null to use an empty caption; 0-GetOption("message_caption_length_max") characters.
-
CONSTRUCTOR
public static final int CONSTRUCTOR
Identifier uniquely determining type of the object.- See Also:
- Constant Field Values
-
-
Constructor Detail
-
InputMessageAnimation
public InputMessageAnimation()
An animation message (GIF-style).
-
InputMessageAnimation
public InputMessageAnimation(TdApi.InputFile animation, TdApi.InputThumbnail thumbnail, int[] addedStickerFileIds, int duration, int width, int height, TdApi.FormattedText caption)
An animation message (GIF-style).- 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.width- Width of the animation; may be replaced by the server.height- Height of the animation; may be replaced by the server.caption- Animation caption; pass null to use an empty caption; 0-GetOption("message_caption_length_max") characters.
-
-
Method Detail
-
getConstructor
public int getConstructor()
- Specified by:
getConstructorin classTdApi.Object- Returns:
- this.CONSTRUCTOR
-
-