[docs]classSentWebAppMessage(TelegramObject):""" Describes an inline message sent by a `Web App <https://core.telegram.org/bots/webapps>`_ on behalf of a user. Source: https://core.telegram.org/bots/api#sentwebappmessage """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."""ifTYPE_CHECKING:# DO NOT EDIT MANUALLY!!!# This section was auto-generated via `butcher`def__init__(__pydantic__self__,*,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__(inline_message_id=inline_message_id,**__pydantic_kwargs)