[docs]classChosenInlineResult(TelegramObject):""" Represents a `result <https://core.telegram.org/bots/api#inlinequeryresult>`_ of an inline query that was chosen by the user and sent to their chat partner. **Note:** It is necessary to enable `inline feedback <https://core.telegram.org/bots/inline#collecting-feedback>`_ via `@BotFather <https://t.me/botfather>`_ in order to receive these objects in updates. Source: https://core.telegram.org/bots/api#choseninlineresult """result_id:str"""The unique identifier for the result that was chosen"""from_user:User=Field(...,alias="from")"""The user that chose the result"""query:str"""The query that was used to obtain the result"""location:Optional[Location]=None"""*Optional*. Sender location, only for bots that require user location"""inline_message_id:Optional[str]=None"""*Optional*. Identifier of the sent inline message. Available only if there is an `inline keyboard <https://core.telegram.org/bots/api#inlinekeyboardmarkup>`_ attached to the message. Will be also received in `callback queries <https://core.telegram.org/bots/api#callbackquery>`_ and can be used to `edit <https://core.telegram.org/bots/api#updating-messages>`_ the message."""ifTYPE_CHECKING:# DO NOT EDIT MANUALLY!!!# This section was auto-generated via `butcher`def__init__(__pydantic__self__,*,result_id:str,from_user:User,query:str,location:Optional[Location]=None,inline_message_id:Optional[str]=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__(result_id=result_id,from_user=from_user,query=query,location=location,inline_message_id=inline_message_id,**__pydantic_kwargs,)