Interface UpdateMessageUnreadReactions

The list of unread reactions added to a message was changed. Subtype of Update.

interface UpdateMessageUnreadReactions {
    @type: "updateMessageUnreadReactions";
    chat_id: number;
    message_id: number;
    unread_reaction_count: number;
    unread_reactions: UnreadReaction[];
}

Properties

@type: "updateMessageUnreadReactions"
chat_id: number

Chat identifier.

message_id: number

Message identifier.

unread_reaction_count: number

The new number of messages with unread reactions left in the chat.

unread_reactions: UnreadReaction[]

The new list of unread reactions.