[docs]classMessageReactionCountUpdated(TelegramObject):""" This object represents reaction changes on a message with anonymous reactions. Source: https://core.telegram.org/bots/api#messagereactioncountupdated """chat:Chat"""The chat containing the message"""message_id:int"""Unique message identifier inside the chat"""date:DateTime"""Date of the change in Unix time"""reactions:list[ReactionCount]"""List of reactions that are present on the message"""ifTYPE_CHECKING:# DO NOT EDIT MANUALLY!!!# This section was auto-generated via `butcher`def__init__(__pydantic__self__,*,chat:Chat,message_id:int,date:DateTime,reactions:list[ReactionCount],**__pydantic_kwargs:Any,)->None:# DO NOT EDIT MANUALLY!!!# This method was auto-generated via `butcher`# Is needed only for type checking and IDE support without any additional pluginssuper().__init__(chat=chat,message_id=message_id,date=date,reactions=reactions,**__pydantic_kwargs,)