U
    2Òtc¯  ã                   @   s0   d Z ddlmZ ddlmZ G dd„ deƒZdS )zGThis module contains an object that represents a Telegram Web App Info.é    )ÚAny)ÚTelegramObjectc                   @   s$   e Zd ZdZdZeedœdd„ZdS )Ú
WebAppInfoaâ  
    This object contains information about a `Web App <https://core.telegram.org/bots/webapps>`_.

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

    .. versionadded:: 13.12

    Args:
        url (:obj:`str`): An HTTPS URL of a Web App to be opened with additional data as specified
            in `Initializing Web Apps             <https://core.telegram.org/bots/webapps#initializing-web-apps>`_.

    Attributes:
        url (:obj:`str`): An HTTPS URL of a Web App to be opened with additional data as specified
            in `Initializing Web Apps             <https://core.telegram.org/bots/webapps#initializing-web-apps>`_.
    ©ÚurlZ	_id_attrs)r   Ú_kwargsc                 K   s   || _ |f| _d S )Nr   )Úselfr   r   © r	   ú7/tmp/pip-unpacked-wheel-2u9rcp5s/telegram/webappinfo.pyÚ__init__1   s    zWebAppInfo.__init__N)Ú__name__Ú
__module__Ú__qualname__Ú__doc__Ú	__slots__Ústrr   r   r	   r	   r	   r
   r      s   r   N)r   Útypingr   Ztelegramr   r   r	   r	   r	   r
   Ú<module>   s   