[docs]classSendChecklist(TelegramMethod[Message]):""" Use this method to send a checklist on behalf of a connected business account. On success, the sent :class:`aiogram.types.message.Message` is returned. Source: https://core.telegram.org/bots/api#sendchecklist """__returning__=Message__api_method__="sendChecklist"business_connection_id:str"""Unique identifier of the business connection on behalf of which the message will be sent"""chat_id:int"""Unique identifier for the target chat"""checklist:InputChecklist"""A JSON-serialized object for the checklist to send"""disable_notification:bool|None=None"""Sends the message silently. Users will receive a notification with no sound."""protect_content:bool|None=None"""Protects the contents of the sent message from forwarding and saving"""message_effect_id:str|None=None"""Unique identifier of the message effect to be added to the message"""reply_parameters:ReplyParameters|None=None"""A JSON-serialized object for description of the message to reply to"""reply_markup:InlineKeyboardMarkup|None=None"""A JSON-serialized object for an `inline keyboard <https://core.telegram.org/bots/features#inline-keyboards>`_"""ifTYPE_CHECKING:# DO NOT EDIT MANUALLY!!!# This section was auto-generated via `butcher`def__init__(__pydantic__self__,*,business_connection_id:str,chat_id:int,checklist:InputChecklist,disable_notification:bool|None=None,protect_content:bool|None=None,message_effect_id:str|None=None,reply_parameters:ReplyParameters|None=None,reply_markup:InlineKeyboardMarkup|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__(business_connection_id=business_connection_id,chat_id=chat_id,checklist=checklist,disable_notification=disable_notification,protect_content=protect_content,message_effect_id=message_effect_id,reply_parameters=reply_parameters,reply_markup=reply_markup,**__pydantic_kwargs,)