[docs]classSendMessageDraft(TelegramMethod[bool]):""" Use this method to stream a partial message to a user while the message is being generated. Note that the streamed draft is ephemeral and acts as a temporary 30-second preview - once the output is finalized, you **must** call :class:`aiogram.methods.send_message.SendMessage` with the complete message to persist it in the user's chat. Returns :code:`True` on success. Source: https://core.telegram.org/bots/api#sendmessagedraft """__returning__=bool__api_method__="sendMessageDraft"chat_id:int"""Unique identifier for the target private chat"""draft_id:int"""Unique identifier of the message draft; must be non-zero. Changes of drafts with the same identifier are animated."""message_thread_id:int|None=None"""Unique identifier for the target message thread"""text:str|None=None"""Text of the message to be sent, 0-4096 characters after entities parsing. Pass an empty text to show a 'Thinking…' placeholder."""parse_mode:str|None=None"""Mode for parsing entities in the message text. See `formatting options <https://core.telegram.org/bots/api#formatting-options>`_ for more details."""entities:list[MessageEntity]|None=None"""A JSON-serialized list of special entities that appear in message text, which can be specified instead of *parse_mode*"""ifTYPE_CHECKING:# DO NOT EDIT MANUALLY!!!# This section was auto-generated via `butcher`def__init__(__pydantic__self__,*,chat_id:int,draft_id:int,message_thread_id:int|None=None,text:str|None=None,parse_mode:str|None=None,entities:list[MessageEntity]|None=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__(chat_id=chat_id,draft_id=draft_id,message_thread_id=message_thread_id,text=text,parse_mode=parse_mode,entities=entities,**__pydantic_kwargs,)