java.lang.Object
it.tdlight.jni.TdApi.Object
it.tdlight.jni.TdApi.InputMessageContent
it.tdlight.jni.TdApi.InputMessageVideo
- Enclosing class:
- TdApi
A video message.
-
Field Summary
Modifier and TypeFieldDescriptionint[]
File identifiers of the stickers added to the video, if applicable.Video caption; pass null to use an empty caption; 0-getOption("message_caption_length_max") characters.static final int
Identifier uniquely determining type of the object.int
Duration of the video, in seconds.boolean
True, if the video preview must be covered by a spoiler animation; not supported in secret chats.int
Video height.Video self-destruct type; pass null if none; private chats only.boolean
True, if the video is supposed to be streamed.Video thumbnail; pass null to skip thumbnail uploading.Video to be sent.int
Video width. -
Constructor Summary
ConstructorDescriptionA video message.InputMessageVideo
(TdApi.InputFile video, TdApi.InputThumbnail thumbnail, int[] addedStickerFileIds, int duration, int width, int height, boolean supportsStreaming, TdApi.FormattedText caption, TdApi.MessageSelfDestructType selfDestructType, boolean hasSpoiler) A video message.InputMessageVideo
(DataInput input) A video message. -
Method Summary
Modifier and TypeMethodDescriptionboolean
int
Returns an identifier uniquely determining type of the object.int
hashCode()
void
serialize
(DataOutput output) Serialize the TDLib classMethods inherited from class it.tdlight.jni.TdApi.Object
serialize, toString
-
Field Details
-
video
Video to be sent. -
thumbnail
Video thumbnail; pass null to skip thumbnail uploading. -
addedStickerFileIds
public int[] addedStickerFileIdsFile identifiers of the stickers added to the video, if applicable. -
duration
public int durationDuration of the video, in seconds. -
width
public int widthVideo width. -
height
public int heightVideo height. -
supportsStreaming
public boolean supportsStreamingTrue, if the video is supposed to be streamed. -
selfDestructType
Video self-destruct type; pass null if none; private chats only. -
hasSpoiler
public boolean hasSpoilerTrue, if the video preview must be covered by a spoiler animation; not supported in secret chats. -
CONSTRUCTOR
public static final int CONSTRUCTORIdentifier uniquely determining type of the object.- See Also:
-
-
Constructor Details
-
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, TdApi.MessageSelfDestructType selfDestructType, boolean hasSpoiler) 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.selfDestructType
- Video self-destruct type; pass null if none; private chats only.hasSpoiler
- True, if the video preview must be covered by a spoiler animation; not supported in secret chats.
-
InputMessageVideo
A video message.- Parameters:
input
- Serialized input- Throws:
IOException
- the deserialization failed
-
-
Method Details
-
getConstructor
public int getConstructor()Description copied from class:TdApi.Object
Returns an identifier uniquely determining type of the object.- Specified by:
getConstructor
in classTdApi.Object
- Returns:
- this.CONSTRUCTOR
-
serialize
Serialize the TDLib class- Specified by:
serialize
in classTdApi.Object
- Parameters:
output
- output data stream- Throws:
IOException
- the serialization failed
-
equals
-
hashCode
public int hashCode()
-