Interface EditInlineMessageText

Edits the text of an inline text or game message sent via a bot; for bots only. Request type for Tdjson#editInlineMessageText.

interface EditInlineMessageText {
    @type: "editInlineMessageText";
    inline_message_id: string;
    input_message_content: InputMessageContent;
    reply_markup: ReplyMarkup;
}

Properties

@type: "editInlineMessageText"
inline_message_id: string

Inline message identifier.

input_message_content: InputMessageContent

New text content of the message. Must be of type inputMessageText.

reply_markup: ReplyMarkup

The new message reply markup; pass null if none.