Interface QuickReplyShortcut

Describes a shortcut that can be used for a quick reply.

interface QuickReplyShortcut {
    @type: "quickReplyShortcut";
    first_message: QuickReplyMessage;
    id: number;
    message_count: number;
    name: string;
}

Properties

@type: "quickReplyShortcut"
first_message: QuickReplyMessage

The first shortcut message.

id: number

Unique shortcut identifier.

message_count: number

The total number of messages in the shortcut.

name: string

The name of the shortcut that can be used to use the shortcut.