editMessageMedia#
Returns: Union[Message, bool]
- class aiogram.methods.edit_message_media.EditMessageMedia(*, media: InputMedia, chat_id: Optional[Union[int, str]] = None, message_id: Optional[int] = None, inline_message_id: Optional[str] = None, reply_markup: Optional[InlineKeyboardMarkup] = None, **extra_data: Any)[source]#
Use this method to edit animation, audio, document, photo, or video messages. If a message is part of a message album, then it can be edited only to an audio for audio albums, only to a document for document albums and to a photo or a video otherwise. When an inline message is edited, a new file can’t be uploaded; use a previously uploaded file via its file_id or specify a URL. 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#editmessagemedia
- media: InputMedia#
A JSON-serialized object for a new media content of the message
- chat_id: Optional[Union[int, str]]#
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: Optional[int]#
Required if inline_message_id is not specified. Identifier of the message to edit
- inline_message_id: Optional[str]#
Required if chat_id and message_id are not specified. Identifier of the inline message
- reply_markup: Optional[InlineKeyboardMarkup]#
A JSON-serialized object for a new inline keyboard.
Usage#
As bot method#
result: Union[Message, bool] = await bot.edit_message_media(...)
Method as object#
Imports:
from aiogram.methods.edit_message_media import EditMessageMedia
alias:
from aiogram.methods import EditMessageMedia
With specific bot#
result: Union[Message, bool] = await bot(EditMessageMedia(...))
As reply into Webhook in handler#
return EditMessageMedia(...)