Interface PushMessageContentVideo

A video message. Subtype of PushMessageContent.

interface PushMessageContentVideo {
    @type: "pushMessageContentVideo";
    caption: string;
    is_pinned?: boolean;
    is_secret?: boolean;
    video: Video;
}

Properties

@type: "pushMessageContentVideo"
caption: string

Video caption.

is_pinned?: boolean

True, if the message is a pinned message with the specified content.

is_secret?: boolean

True, if the video is secret.

video: Video

Message content; may be null.