MessageReactionCountUpdated¶
- class telegram.MessageReactionCountUpdated(chat, message_id, date, reactions, *, api_kwargs=None)[source]¶
Bases:
telegram.TelegramObjectThis 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,dateandreactionsis 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.tzinfois 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.tzinfois used.- Type:
datetime.datetime
- reactions[source]¶
List of reactions that are present on the message
- Type:
tuple[
telegram.ReactionCount]