Interface UpdateMessageInteractionInfo

The information about interactions with a message has changed. Subtype of Update.

interface UpdateMessageInteractionInfo {
    @type: "updateMessageInteractionInfo";
    chat_id: number;
    interaction_info: MessageInteractionInfo;
    message_id: number;
}

Properties

@type: "updateMessageInteractionInfo"
chat_id: number

Chat identifier.

interaction_info: MessageInteractionInfo

New information about interactions with the message; may be null.

message_id: number

Message identifier.