Source code for aiogram.types.message_reaction_updated

from __future__ import annotations

from typing import TYPE_CHECKING, Any, List, Optional, Union

from .base import TelegramObject

if TYPE_CHECKING:
    from .chat import Chat
    from .custom import DateTime
    from .reaction_type_custom_emoji import ReactionTypeCustomEmoji
    from .reaction_type_emoji import ReactionTypeEmoji
    from .user import User


[docs] class MessageReactionUpdated(TelegramObject): """ This object represents a change of a reaction on a message performed by a user. Source: https://core.telegram.org/bots/api#messagereactionupdated """ chat: Chat """The chat containing the message the user reacted to""" message_id: int """Unique identifier of the message inside the chat""" date: DateTime """Date of the change in Unix time""" old_reaction: List[Union[ReactionTypeEmoji, ReactionTypeCustomEmoji]] """Previous list of reaction types that were set by the user""" new_reaction: List[Union[ReactionTypeEmoji, ReactionTypeCustomEmoji]] """New list of reaction types that have been set by the user""" user: Optional[User] = None """*Optional*. The user that changed the reaction, if the user isn't anonymous""" actor_chat: Optional[Chat] = None """*Optional*. The chat on behalf of which the reaction was changed, if the user is anonymous""" if TYPE_CHECKING: # DO NOT EDIT MANUALLY!!! # This section was auto-generated via `butcher` def __init__( __pydantic__self__, *, chat: Chat, message_id: int, date: DateTime, old_reaction: List[Union[ReactionTypeEmoji, ReactionTypeCustomEmoji]], new_reaction: List[Union[ReactionTypeEmoji, ReactionTypeCustomEmoji]], user: Optional[User] = None, actor_chat: Optional[Chat] = None, **__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 plugins super().__init__( chat=chat, message_id=message_id, date=date, old_reaction=old_reaction, new_reaction=new_reaction, user=user, actor_chat=actor_chat, **__pydantic_kwargs, )