Interface UpdateMessageEdited

A message was edited. Changes in the message content will come in a separate updateMessageContent. Subtype of Update.

interface UpdateMessageEdited {
    @type: "updateMessageEdited";
    chat_id: number;
    edit_date: number;
    message_id: number;
    reply_markup: ReplyMarkup;
}

Properties

@type: "updateMessageEdited"
chat_id: number

Chat identifier.

edit_date: number

Point in time (Unix timestamp) when the message was edited.

message_id: number

Message identifier.

reply_markup: ReplyMarkup

New message reply markup; may be null.