[docs]classSendChatJoinRequestWebApp(TelegramMethod[bool]):""" Use this method to process a received chat join request query by showing a Mini App to the user before deciding the outcome. Returns :code:`True` on success. Source: https://core.telegram.org/bots/api#sendchatjoinrequestwebapp """__returning__=bool__api_method__="sendChatJoinRequestWebApp"chat_join_request_query_id:str"""Unique identifier of the join request query"""web_app_url:str"""The URL of the Mini App to be opened"""ifTYPE_CHECKING:# DO NOT EDIT MANUALLY!!!# This section was auto-generated via `butcher`def__init__(__pydantic__self__,*,chat_join_request_query_id:str,web_app_url:str,**__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__(chat_join_request_query_id=chat_join_request_query_id,web_app_url=web_app_url,**__pydantic_kwargs,)