MessageReactionCountUpdated

class telegram.MessageReactionCountUpdated(chat, message_id, date, reactions, *, api_kwargs=None)[source]

Bases: telegram.TelegramObject

This class represents reaction changes on a message with anonymous reactions.

Objects of this class are comparable in terms of equality. Two objects of this class are considered equal, if the chat, message_id, date and reactions is equal.

Added in version 20.8.

Parameters:
chat[source]

The chat containing the message.

Type:

telegram.Chat

message_id[source]

Unique message identifier inside the chat.

Type:

int

date[source]

Date of the change in Unix time The default timezone of the bot is used for localization, which is UTC unless telegram.ext.Defaults.tzinfo is used.

Type:

datetime.datetime

reactions[source]

List of reactions that are present on the message

Type:

Tuple[telegram.ReactionCount]

classmethod de_json(data, bot)[source]

See telegram.TelegramObject.de_json().