Interface EditInlineMessageMedia

Edits the media content of a message with a text, an animation, an audio, a document, a photo or a video in an inline message sent via a bot; for bots only. Request type for Tdjson#editInlineMessageMedia.

interface EditInlineMessageMedia {
    @type: "editInlineMessageMedia";
    inline_message_id: string;
    input_message_content: InputMessageContent;
    reply_markup: ReplyMarkup;
}

Properties

@type: "editInlineMessageMedia"
inline_message_id: string

Inline message identifier.

input_message_content: InputMessageContent

New content of the message. Must be one of the following types: inputMessageAnimation, inputMessageAudio, inputMessageDocument, inputMessagePhoto or inputMessageVideo.

reply_markup: ReplyMarkup

The new message reply markup; pass null if none; for bots only.