Interface MessageVoiceNote

A voice note message. Subtype of MessageContent.

interface MessageVoiceNote {
    @type: "messageVoiceNote";
    caption: FormattedText;
    is_listened?: boolean;
    voice_note: VoiceNote;
}

Properties

@type: "messageVoiceNote"
caption: FormattedText

Voice note caption.

is_listened?: boolean

True, if at least one of the recipients has listened to the voice note.

voice_note: VoiceNote

The voice note description.