[docs]classChatMemberMember(ChatMember):""" Represents a `chat member <https://core.telegram.org/bots/api#chatmember>`_ that has no additional privileges or restrictions. Source: https://core.telegram.org/bots/api#chatmembermember """status:Literal[ChatMemberStatus.MEMBER]=ChatMemberStatus.MEMBER"""The member's status in the chat, always 'member'"""user:User"""Information about the user"""until_date:Optional[DateTime]=None"""*Optional*. Date when the user's subscription will expire; Unix time"""ifTYPE_CHECKING:# DO NOT EDIT MANUALLY!!!# This section was auto-generated via `butcher`def__init__(__pydantic__self__,*,status:Literal[ChatMemberStatus.MEMBER]=ChatMemberStatus.MEMBER,user:User,until_date:Optional[DateTime]=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 pluginssuper().__init__(status=status,user=user,until_date=until_date,**__pydantic_kwargs)