[docs]classAnswerGuestQuery(TelegramMethod[SentGuestMessage]):""" Use this method to reply to a received guest message. On success, a :class:`aiogram.types.sent_guest_message.SentGuestMessage` object is returned. Source: https://core.telegram.org/bots/api#answerguestquery """__returning__=SentGuestMessage__api_method__="answerGuestQuery"guest_query_id:str"""Unique identifier for the query to be answered"""result:InlineQueryResultUnion"""A JSON-serialized object describing the message to be sent"""ifTYPE_CHECKING:# DO NOT EDIT MANUALLY!!!# This section was auto-generated via `butcher`def__init__(__pydantic__self__,*,guest_query_id:str,result:InlineQueryResultUnion,**__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__(guest_query_id=guest_query_id,result=result,**__pydantic_kwargs)