Interface MessageVideoNote

A video note message. Subtype of MessageContent.

interface MessageVideoNote {
    @type: "messageVideoNote";
    is_secret?: boolean;
    is_viewed?: boolean;
    video_note: VideoNote;
}

Properties

@type: "messageVideoNote"
is_secret?: boolean

True, if the video note thumbnail must be blurred and the video note must be shown only while tapped.

is_viewed?: boolean

True, if at least one of the recipients has viewed the video note.

video_note: VideoNote

The video note description.