[docs]classEditMessageReplyMarkup(TelegramMethod[Message|bool]):""" Use this method to edit only the reply markup of messages. On success, if the edited message is not an inline message, the edited :class:`aiogram.types.message.Message` is returned, otherwise :code:`True` is returned. Note that business messages that were not sent by the bot and do not contain an inline keyboard can only be edited within **48 hours** from the time they were sent. Source: https://core.telegram.org/bots/api#editmessagereplymarkup """__returning__=Message|bool__api_method__="editMessageReplyMarkup"business_connection_id:str|None=None"""Unique identifier of the business connection on behalf of which the message to be edited was sent"""chat_id:ChatIdUnion|None=None"""Required if *inline_message_id* is not specified. Unique identifier for the target chat or username of the target channel (in the format :code:`@channelusername`)"""message_id:int|None=None"""Required if *inline_message_id* is not specified. Identifier of the message to edit"""inline_message_id:str|None=None"""Required if *chat_id* and *message_id* are not specified. Identifier of the inline message"""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|None=None,chat_id:ChatIdUnion|None=None,message_id:int|None=None,inline_message_id:str|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,message_id=message_id,inline_message_id=inline_message_id,reply_markup=reply_markup,**__pydantic_kwargs,)