mirror of
https://github.com/aiogram/aiogram.git
synced 2026-04-08 16:37:47 +00:00
Add new autogenerated methods and types and add prototype of sessions.
This commit is contained in:
parent
43c565d39b
commit
278999761c
173 changed files with 7717 additions and 2793 deletions
37
aiogram/api/methods/edit_message_caption.py
Normal file
37
aiogram/api/methods/edit_message_caption.py
Normal file
|
|
@ -0,0 +1,37 @@
|
|||
from typing import Any, Dict, Optional, Union
|
||||
|
||||
from ..types import InlineKeyboardMarkup, Message
|
||||
from .base import Request, TelegramMethod
|
||||
|
||||
|
||||
class EditMessageCaption(TelegramMethod[Union[Message, bool]]):
|
||||
"""
|
||||
Use this method to edit captions of messages. On success, if edited message is sent by the bot, the edited Message is returned, otherwise True is returned.
|
||||
|
||||
Source: https://core.telegram.org/bots/api#editmessagecaption
|
||||
"""
|
||||
|
||||
__returning__ = Union[Message, bool]
|
||||
|
||||
chat_id: Optional[Union[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: Optional[int] = None
|
||||
"""Required if inline_message_id is not specified. Identifier of the message to edit"""
|
||||
|
||||
inline_message_id: Optional[str] = None
|
||||
"""Required if chat_id and message_id are not specified. Identifier of the inline message"""
|
||||
|
||||
caption: Optional[str] = None
|
||||
"""New caption of the message"""
|
||||
|
||||
parse_mode: Optional[str] = None
|
||||
"""Send Markdown or HTML, if you want Telegram apps to show bold, italic, fixed-width text or inline URLs in the media caption."""
|
||||
|
||||
reply_markup: Optional[InlineKeyboardMarkup] = None
|
||||
"""A JSON-serialized object for an inline keyboard."""
|
||||
|
||||
def build_request(self) -> Request:
|
||||
data: Dict[str, Any] = self.dict(exclude_unset=True, exclude={})
|
||||
files: Dict[str, Any] = {}
|
||||
return Request(method="editMessageCaption", data=data, files=files)
|
||||
Loading…
Add table
Add a link
Reference in a new issue