U
    g(                     @   s<   d Z ddlmZ ddlmZ ddlmZ G dd deZdS )zTThis module contains a class that represents a Telegram SwitchInlineQueryChosenChat.    )Optional)TelegramObject)JSONDictc                	       sT   e Zd ZdZdZdddee ee ee ee ee ee d fddZ	  Z
S )	SwitchInlineQueryChosenChata  
    This object represents an inline button that switches the current user to inline mode in a
    chosen chat, with an optional default inline query.

    Objects of this class are comparable in terms of equality. Two objects of this class are
    considered equal, if their :attr:`query`, :attr:`allow_user_chats`, :attr:`allow_bot_chats`,
    :attr:`allow_group_chats`, and :attr:`allow_channel_chats` are equal.

    .. versionadded:: 20.3

    Caution:
        The PTB team has discovered that you must pass at least one of
        :paramref:`allow_user_chats`, :paramref:`allow_bot_chats`, :paramref:`allow_group_chats`,
        or :paramref:`allow_channel_chats` to Telegram. Otherwise, an error will be raised.

    Args:
        query (:obj:`str`, optional): The default inline query to be inserted in the input field.
            If left empty, only the bot's username will be inserted.
        allow_user_chats (:obj:`bool`, optional): Pass :obj:`True`, if private chats with users
            can be chosen.
        allow_bot_chats (:obj:`bool`, optional): Pass :obj:`True`, if private chats with bots can
            be chosen.
        allow_group_chats (:obj:`bool`, optional): Pass :obj:`True`, if group and supergroup chats
            can be chosen.
        allow_channel_chats (:obj:`bool`, optional): Pass :obj:`True`, if channel chats can be
            chosen.

    Attributes:
        query (:obj:`str`): Optional. The default inline query to be inserted in the input field.
            If left empty, only the bot's username will be inserted.
        allow_user_chats (:obj:`bool`): Optional. :obj:`True`, if private chats with users can be
            chosen.
        allow_bot_chats (:obj:`bool`): Optional. :obj:`True`, if private chats with bots can be
            chosen.
        allow_group_chats (:obj:`bool`): Optional. :obj:`True`, if group and supergroup chats can
            be chosen.
        allow_channel_chats (:obj:`bool`): Optional. :obj:`True`, if channel chats can be chosen.

    )allow_bot_chatsallow_channel_chatsallow_group_chatsallow_user_chatsqueryN
api_kwargs)r
   r	   r   r   r   r   c                   sR   t  j|d || _|| _|| _|| _|| _| j| j| j| j| jf| _|   d S )Nr   )	super__init__r
   r	   r   r   r   Z	_id_attrsZ_freeze)selfr
   r	   r   r   r   r   	__class__ I/tmp/pip-unpacked-wheel-swnnwir2/telegram/_switchinlinequerychosenchat.pyr   J   s    
z$SwitchInlineQueryChosenChat.__init__)NNNNN)__name__
__module____qualname____doc__	__slots__r   strboolr   r   __classcell__r   r   r   r   r      s"   (
     r   N)r   typingr   Ztelegram._telegramobjectr   Ztelegram._utils.typesr   r   r   r   r   r   <module>   s   