ChatMemberLeft¶
- class aiogram.types.chat_member_left.ChatMemberLeft(*, status: Literal[ChatMemberStatus.LEFT] = ChatMemberStatus.LEFT, user: User, **extra_data: Any)[source]¶
Represents a chat member that isn’t currently a member of the chat, but may join it themselves.
Source: https://core.telegram.org/bots/api#chatmemberleft
- status: Literal[ChatMemberStatus.LEFT]¶
The member’s status in the chat, always ‘left’
- model_computed_fields: ClassVar[Dict[str, ComputedFieldInfo]] = {}¶
A dictionary of computed field names and their corresponding ComputedFieldInfo objects.
- model_post_init(context: Any, /) None ¶
We need to both initialize private attributes and call the user-defined model_post_init method.