
    "i                     z    d Z ddlZddlmZmZ ddlmZ ddlmZ ddl	m
Z
mZ ddlmZ erddlmZ  G d	 d
e      Zy)zIThis module contains an object that represents an invite link for a chat.    N)TYPE_CHECKINGOptional)TelegramObject)User)extract_tzinfo_from_defaultsfrom_timestamp)JSONDict)Botc                        e Zd ZdZdZ	 	 	 	 ddddedededed	ed
ee	j                     dee
   dee   dee
   dee   f fdZe	 ddee   ded   ded    f fd       Z xZS )ChatInviteLinku<  This object represents an invite link for a chat.

    Objects of this class are comparable in terms of equality. Two objects of this class are
    considered equal, if their :attr:`invite_link`, :attr:`creator`, :attr:`creates_join_request`,
    :attr:`is_primary` and :attr:`is_revoked` are equal.

    .. versionadded:: 13.4
    .. versionchanged:: 20.0

       * The argument & attribute :attr:`creates_join_request` is now required to comply with the
         Bot API.
       * Comparing objects of this class now also takes :attr:`creates_join_request` into account.

    Args:
        invite_link (:obj:`str`): The invite link.
        creator (:class:`telegram.User`): Creator of the link.
        creates_join_request (:obj:`bool`): :obj:`True`, if users joining the chat via
            the link need to be approved by chat administrators.

            .. versionadded:: 13.8
        is_primary (:obj:`bool`): :obj:`True`, if the link is primary.
        is_revoked (:obj:`bool`): :obj:`True`, if the link is revoked.
        expire_date (:class:`datetime.datetime`, optional): Date when the link will expire or
            has been expired.

            .. versionchanged:: 20.3
                |datetime_localization|
        member_limit (:obj:`int`, optional): Maximum number of users that can be members of the
            chat simultaneously after joining the chat via this invite link;
            :tg-const:`telegram.constants.ChatInviteLinkLimit.MIN_MEMBER_LIMIT`-
            :tg-const:`telegram.constants.ChatInviteLinkLimit.MAX_MEMBER_LIMIT`.
        name (:obj:`str`, optional): Invite link name.
            0-:tg-const:`telegram.constants.ChatInviteLinkLimit.NAME_LENGTH` characters.

            .. versionadded:: 13.8
        pending_join_request_count (:obj:`int`, optional): Number of pending join requests
            created using this link.

            .. versionadded:: 13.8
    Attributes:
        invite_link (:obj:`str`): The invite link. If the link was created by another chat
            administrator, then the second part of the link will be replaced with ``'…'``.
        creator (:class:`telegram.User`): Creator of the link.
        creates_join_request (:obj:`bool`): :obj:`True`, if users joining the chat via
            the link need to be approved by chat administrators.

            .. versionadded:: 13.8
        is_primary (:obj:`bool`): :obj:`True`, if the link is primary.
        is_revoked (:obj:`bool`): :obj:`True`, if the link is revoked.
        expire_date (:class:`datetime.datetime`): Optional. Date when the link will expire or
            has been expired.

            .. versionchanged:: 20.3
                |datetime_localization|
        member_limit (:obj:`int`): Optional. Maximum number of users that can be members
            of the chat simultaneously after joining the chat via this invite link;
            :tg-const:`telegram.constants.ChatInviteLinkLimit.MIN_MEMBER_LIMIT`-
            :tg-const:`telegram.constants.ChatInviteLinkLimit.MAX_MEMBER_LIMIT`.
        name (:obj:`str`): Optional. Invite link name.
            0-:tg-const:`telegram.constants.ChatInviteLinkLimit.NAME_LENGTH` characters.

            .. versionadded:: 13.8
        pending_join_request_count (:obj:`int`): Optional. Number of pending join requests
            created using this link.

            .. versionadded:: 13.8

    )	creates_join_requestcreatorexpire_dateinvite_link
is_primary
is_revokedmember_limitnamepending_join_request_countN
api_kwargsr   r   r   r   r   r   r   r   r   r   c
                Z   t         |   |
       || _        || _        || _        || _        || _        || _        || _        || _	        |	t        |	      nd | _        | j                  | j                  | j                  | j
                  | j                  f| _        | j                          y )Nr   )super__init__r   r   r   r   r   r   r   r   intr   	_id_attrs_freeze)selfr   r   r   r   r   r   r   r   r   r   	__class__s              ^/var/www/html/talentspherev1.5.2/venv/lib/python3.12/site-packages/telegram/_chatinvitelink.pyr   zChatInviteLink.__init__r   s     	J/ +$*>! * * 9D+7#'	/I/UC*+[_ 	' %%LLOOOO
 	    databotr
   returnc                     | j                  |      }|syt        |      }t        j                  |j	                  d      |      |d<   t        |j	                  dd      |      |d<   t        |   ||      S )z,See :meth:`telegram.TelegramObject.de_json`.Nr   r   )tzinfo)r"   r#   )_parse_datar   r   de_jsongetr   r   )clsr"   r#   
loc_tzinfor   s       r    r(   zChatInviteLink.de_json   sr    
 t$ 2#6
,,txx	':C@Y,TXXmT-JS]^]wDc22r!   )NNNN)N)__name__
__module____qualname____doc__	__slots__strr   boolr   datetimer   r	   r   classmethodr(   __classcell__)r   s   @r    r   r       s    CJ
I& 48&*"48% *.%% % #	%
 % % h//0% sm% sm% %-SM% X&%N >B3H%3,4UO3	"	#3 3r!   r   )r/   r3   typingr   r   telegram._telegramobjectr   telegram._userr   telegram._utils.datetimer   r   telegram._utils.typesr	   telegramr
   r    r!   r    <module>r=      s1   & P  * 3  Q *I3^ I3r!   