Interface UpdateMessageReactions

Reactions added to a message with anonymous reactions have changed; for bots only. Subtype of Update.

interface UpdateMessageReactions {
    @type: "updateMessageReactions";
    chat_id: number;
    date: number;
    message_id: number;
    reactions: MessageReaction[];
}

Properties

@type: "updateMessageReactions"
chat_id: number

Chat identifier.

date: number

Point in time (Unix timestamp) when the reactions were changed.

message_id: number

Message identifier.

reactions: MessageReaction[]

The list of reactions added to the message.