[docs]classInlineQueryResultCachedDocument(InlineQueryResult):""" Represents a link to a file stored on the Telegram servers. By default, this file will be sent by the user with an optional caption. Alternatively, you can use *input_message_content* to send a message with the specified content instead of the file. Source: https://core.telegram.org/bots/api#inlinequeryresultcacheddocument """type:Literal[InlineQueryResultType.DOCUMENT]=InlineQueryResultType.DOCUMENT"""Type of the result, must be *document*"""id:str"""Unique identifier for this result, 1-64 bytes"""title:str"""Title for the result"""document_file_id:str"""A valid file identifier for the file"""description:Optional[str]=None"""*Optional*. Short description of the result"""caption:Optional[str]=None"""*Optional*. Caption of the document to be sent, 0-1024 characters after entities parsing"""parse_mode:Optional[Union[str,Default]]=Default("parse_mode")"""*Optional*. Mode for parsing entities in the document caption. See `formatting options <https://core.telegram.org/bots/api#formatting-options>`_ for more details."""caption_entities:Optional[list[MessageEntity]]=None"""*Optional*. List of special entities that appear in the caption, which can be specified instead of *parse_mode*"""reply_markup:Optional[InlineKeyboardMarkup]=None"""*Optional*. `Inline keyboard <https://core.telegram.org/bots/features#inline-keyboards>`_ attached to the message"""input_message_content:Optional[InputMessageContentUnion]=None"""*Optional*. Content of the message to be sent instead of the file"""ifTYPE_CHECKING:# DO NOT EDIT MANUALLY!!!# This section was auto-generated via `butcher`def__init__(__pydantic__self__,*,type:Literal[InlineQueryResultType.DOCUMENT]=InlineQueryResultType.DOCUMENT,id:str,title:str,document_file_id:str,description:Optional[str]=None,caption:Optional[str]=None,parse_mode:Optional[Union[str,Default]]=Default("parse_mode"),caption_entities:Optional[list[MessageEntity]]=None,reply_markup:Optional[InlineKeyboardMarkup]=None,input_message_content:Optional[InputMessageContentUnion]=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__(type=type,id=id,title=title,document_file_id=document_file_id,description=description,caption=caption,parse_mode=parse_mode,caption_entities=caption_entities,reply_markup=reply_markup,input_message_content=input_message_content,**__pydantic_kwargs,)