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
andreactions
is equal.Available In
Added in version 20.8.
- Parameters:
chat (
telegram.Chat
) – The chat containing the message.message_id (
int
) – Unique message identifier inside the chat.date (
datetime.datetime
) – Date of the change in Unix time The default timezone of the bot is used for localization, which is UTC unlesstelegram.ext.Defaults.tzinfo
is used.reactions (Sequence[
telegram.ReactionCount
]) – List of reactions that are present on the message
- 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:
- reactions[source]¶
List of reactions that are present on the message
- Type:
Tuple[
telegram.ReactionCount
]