editMessageCaption#
Returns: Union[Message, bool]
- class aiogram.methods.edit_message_caption.EditMessageCaption(*, chat_id: int | str | None = None, message_id: int | None = None, inline_message_id: str | None = None, caption: str | None = None, parse_mode: str | None = sentinel.UNSET_PARSE_MODE, caption_entities: List[MessageEntity] | None = None, reply_markup: InlineKeyboardMarkup | None = None, **extra_data: Any)[source]#
Use this method to edit captions of messages. On success, if the edited message is not an inline message, the edited
aiogram.types.message.Message
is returned, otherwiseTrue
is returned.Source: https://core.telegram.org/bots/api#editmessagecaption
- 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
- inline_message_id: str | None#
Required if chat_id and message_id are not specified. Identifier of the inline message
- caption: str | None#
New caption of the message, 0-1024 characters after entities parsing
- parse_mode: str | None#
Mode for parsing entities in the message caption. See formatting options for more details.
- caption_entities: List[MessageEntity] | None#
A JSON-serialized list of special entities that appear in the caption, which can be specified instead of parse_mode
- reply_markup: InlineKeyboardMarkup | None#
A JSON-serialized object for an inline keyboard.
Usage#
As bot method#
result: Union[Message, bool] = await bot.edit_message_caption(...)
Method as object#
Imports:
from aiogram.methods.edit_message_caption import EditMessageCaption
alias:
from aiogram.methods import EditMessageCaption
With specific bot#
result: Union[Message, bool] = await bot(EditMessageCaption(...))
As reply into Webhook in handler#
return EditMessageCaption(...)