
    i                     >    d Z ddlmZ ddlmZ  G d de          ZdS )zQThis module contains objects related to the write access allowed service message.    )TelegramObject)JSONDictc                   ^     e Zd ZdZdZ	 	 	 d
dddedz  dedz  dedz  dedz  f fd	Z xZ	S )WriteAccessAllowedab  
    This object represents a service message about a user allowing a bot to write messages after
    adding it to the attachment menu, launching a Web App from a link, or accepting an explicit
    request from a Web App sent by the method
    `requestWriteAccess <https://core.telegram.org/bots/webapps#initializing-mini-apps>`_.

    Objects of this class are comparable in terms of equality. Two objects of this class are
    considered equal, if their :attr:`web_app_name` is equal.

    .. versionadded:: 20.0
    .. versionchanged:: 20.6
       Added custom equality comparison for objects of this class.

    Args:
        web_app_name (:obj:`str`, optional): Name of the Web App, if the access was granted when
            the Web App was launched from a link.

            .. versionadded:: 20.3
        from_request (:obj:`bool`, optional): :obj:`True`, if the access was granted after the user
         accepted an explicit request from a Web App sent by the method
         `requestWriteAccess <https://core.telegram.org/bots/webapps#initializing-mini-apps>`_.

         .. versionadded:: 20.6
        from_attachment_menu (:obj:`bool`, optional): :obj:`True`, if the access was granted when
         the bot was added to the attachment or side menu.

         .. versionadded:: 20.6

    Attributes:
        web_app_name (:obj:`str`): Optional. Name of the Web App, if the access was granted when
            the Web App was launched from a link.

            .. versionadded:: 20.3
        from_request (:obj:`bool`): Optional. :obj:`True`, if the access was granted after the user
            accepted an explicit request from a Web App.

            .. versionadded:: 20.6
        from_attachment_menu (:obj:`bool`): Optional. :obj:`True`, if the access was granted when
            the bot was added to the attachment or side menu.

            .. versionadded:: 20.6

    )from_attachment_menufrom_requestweb_app_nameN
api_kwargsr	   r   r   r   c                    t                                          |           || _        || _        || _        | j        f| _        |                                  d S )Nr
   )super__init__r	   r   r   	_id_attrs_freeze)selfr	   r   r   r   	__class__s        \/Users/shanyulin/my-agent/.venv/lib/python3.11/site-packages/telegram/_writeaccessallowed.pyr   zWriteAccessAllowed.__init__H   sV     	J///(4)51E!+-    )NNN)
__name__
__module____qualname____doc__	__slots__strboolr   r   __classcell__)r   s   @r   r   r      s        * *X II $($(,0	 '+  Dj Tk #Tk	 tO         r   r   N)r   telegram._telegramobjectr   telegram._utils.typesr   r    r   r   <module>r       sf   & X W 3 3 3 3 3 3 * * * * * *> > > > > > > > > >r   