Interface UpdateChatReplyMarkup

The default chat reply markup was changed. Can occur because new messages with reply markup were received or because an old reply markup was hidden by the user. Subtype of Update.

interface UpdateChatReplyMarkup {
    @type: "updateChatReplyMarkup";
    chat_id: number;
    reply_markup_message_id: number;
}

Properties

@type: "updateChatReplyMarkup"
chat_id: number

Chat identifier.

reply_markup_message_id: number

Identifier of the message from which reply markup needs to be used; 0 if there is no default custom reply markup in the chat.