Interface InlineQueryResultVoiceNote

Represents a voice note. Subtype of InlineQueryResult.

interface InlineQueryResultVoiceNote {
    @type: "inlineQueryResultVoiceNote";
    id: string;
    title: string;
    voice_note: VoiceNote;
}

Properties

@type: "inlineQueryResultVoiceNote"
id: string

Unique identifier of the query result.

title: string

Title of the voice note.

voice_note: VoiceNote

Voice note.