Interface EditInlineMessageReplyMarkup

Edits the reply markup of an inline message sent via a bot; for bots only. Request type for Tdjson#editInlineMessageReplyMarkup.

interface EditInlineMessageReplyMarkup {
    @type: "editInlineMessageReplyMarkup";
    inline_message_id: string;
    reply_markup: ReplyMarkup;
}

Properties

@type: "editInlineMessageReplyMarkup"
inline_message_id: string

Inline message identifier.

reply_markup: ReplyMarkup

The new message reply markup; pass null if none.