Package org.drinkless.tdlib
Class TdApi.InputMessageVideo
- java.lang.Object
-
- org.drinkless.tdlib.TdApi.Object
-
- org.drinkless.tdlib.TdApi.InputMessageContent
-
- org.drinkless.tdlib.TdApi.InputMessageVideo
-
- Enclosing class:
- TdApi
public static class TdApi.InputMessageVideo extends TdApi.InputMessageContent
A video message.
-
-
Field Summary
Fields Modifier and Type Field Description int[]addedStickerFileIdsFile identifiers of the stickers added to the video, if applicable.TdApi.FormattedTextcaptionVideo 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 video, in seconds.intheightVideo height.booleansupportsStreamingTrue, if the video is supposed to be streamed.TdApi.InputThumbnailthumbnailVideo thumbnail; pass null to skip thumbnail uploading.intttlVideo TTL (Time To Live), in seconds (0-60).TdApi.InputFilevideoVideo to be sent.intwidthVideo width.
-
Constructor Summary
Constructors Constructor Description InputMessageVideo()A video message.InputMessageVideo(TdApi.InputFile video, TdApi.InputThumbnail thumbnail, int[] addedStickerFileIds, int duration, int width, int height, boolean supportsStreaming, TdApi.FormattedText caption, int ttl)A video message.
-
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
-
video
public TdApi.InputFile video
Video to be sent.
-
thumbnail
public TdApi.InputThumbnail thumbnail
Video thumbnail; pass null to skip thumbnail uploading.
-
addedStickerFileIds
public int[] addedStickerFileIds
File identifiers of the stickers added to the video, if applicable.
-
duration
public int duration
Duration of the video, in seconds.
-
width
public int width
Video width.
-
height
public int height
Video height.
-
supportsStreaming
public boolean supportsStreaming
True, if the video is supposed to be streamed.
-
caption
public TdApi.FormattedText caption
Video caption; pass null to use an empty caption; 0-GetOption("message_caption_length_max") characters.
-
ttl
public int ttl
Video TTL (Time To Live), in seconds (0-60). A non-zero TTL can be specified only in private chats.
-
CONSTRUCTOR
public static final int CONSTRUCTOR
Identifier uniquely determining type of the object.- See Also:
- Constant Field Values
-
-
Constructor Detail
-
InputMessageVideo
public InputMessageVideo()
A video message.
-
InputMessageVideo
public InputMessageVideo(TdApi.InputFile video, TdApi.InputThumbnail thumbnail, int[] addedStickerFileIds, int duration, int width, int height, boolean supportsStreaming, TdApi.FormattedText caption, int ttl)
A video message.- Parameters:
video- Video to be sent.thumbnail- Video thumbnail; pass null to skip thumbnail uploading.addedStickerFileIds- File identifiers of the stickers added to the video, if applicable.duration- Duration of the video, in seconds.width- Video width.height- Video height.supportsStreaming- True, if the video is supposed to be streamed.caption- Video caption; pass null to use an empty caption; 0-GetOption("message_caption_length_max") characters.ttl- Video TTL (Time To Live), in seconds (0-60). A non-zero TTL can be specified only in private chats.
-
-
Method Detail
-
getConstructor
public int getConstructor()
- Specified by:
getConstructorin classTdApi.Object- Returns:
- this.CONSTRUCTOR
-
-