[docs]classSwitchInlineQueryChosenChat(TelegramObject):""" This object represents an inline button that switches the current user to inline mode in a chosen chat, with an optional default inline query. Source: https://core.telegram.org/bots/api#switchinlinequerychosenchat """query:str|None=None"""*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:bool|None=None"""*Optional*. :code:`True`, if private chats with users can be chosen"""allow_bot_chats:bool|None=None"""*Optional*. :code:`True`, if private chats with bots can be chosen"""allow_group_chats:bool|None=None"""*Optional*. :code:`True`, if group and supergroup chats can be chosen"""allow_channel_chats:bool|None=None"""*Optional*. :code:`True`, if channel chats can be chosen"""ifTYPE_CHECKING:# DO NOT EDIT MANUALLY!!!# This section was auto-generated via `butcher`def__init__(__pydantic__self__,*,query:str|None=None,allow_user_chats:bool|None=None,allow_bot_chats:bool|None=None,allow_group_chats:bool|None=None,allow_channel_chats:bool|None=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__(query=query,allow_user_chats=allow_user_chats,allow_bot_chats=allow_bot_chats,allow_group_chats=allow_group_chats,allow_channel_chats=allow_channel_chats,**__pydantic_kwargs,)