editMessageReplyMarkup¶
Returns: Union[Message, bool]
- class aiogram.methods.edit_message_reply_markup.EditMessageReplyMarkup(*, business_connection_id: str | None = None, chat_id: int | str | None = None, message_id: int | None = None, inline_message_id: str | None = None, reply_markup: InlineKeyboardMarkup | None = None, **extra_data: Any)[source]¶
Use this method to edit only the reply markup of messages. On success, if the edited message is not an inline message, the edited
aiogram.types.message.Message
is returned, otherwiseTrue
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
- business_connection_id: str | None¶
Unique identifier of the business connection on behalf of which the message to be edited was sent
- chat_id: int | str | None¶
Required if inline_message_id is not specified. Unique identifier for the target chat or username of the target channel (in the format
@channelusername
)
- message_id: int | None¶
Required if inline_message_id is not specified. Identifier of the message to edit
- model_computed_fields: ClassVar[Dict[str, ComputedFieldInfo]] = {}¶
A dictionary of computed field names and their corresponding ComputedFieldInfo objects.
- model_post_init(context: Any, /) None ¶
We need to both initialize private attributes and call the user-defined model_post_init method.
- inline_message_id: str | None¶
Required if chat_id and message_id are not specified. Identifier of the inline message
- reply_markup: InlineKeyboardMarkup | None¶
A JSON-serialized object for an inline keyboard.
Usage¶
As bot method¶
result: Union[Message, bool] = await bot.edit_message_reply_markup(...)
Method as object¶
Imports:
from aiogram.methods.edit_message_reply_markup import EditMessageReplyMarkup
alias:
from aiogram.methods import EditMessageReplyMarkup
With specific bot¶
result: Union[Message, bool] = await bot(EditMessageReplyMarkup(...))
As reply into Webhook in handler¶
return EditMessageReplyMarkup(...)