mirror of
https://github.com/aiogram/aiogram.git
synced 2026-04-08 16:37:47 +00:00
* Reworked request builder * Added more default values * Update tests * Fixed timestamp * Fixed Py3.8 support * Describe changes
22 lines
852 B
Python
22 lines
852 B
Python
from __future__ import annotations
|
|
|
|
from typing import TYPE_CHECKING, Optional, Union
|
|
|
|
from ..types import MenuButtonCommands, MenuButtonDefault, MenuButtonWebApp
|
|
from .base import TelegramMethod
|
|
|
|
|
|
class GetChatMenuButton(
|
|
TelegramMethod[Union[MenuButtonDefault, MenuButtonWebApp, MenuButtonCommands]]
|
|
):
|
|
"""
|
|
Use this method to get the current value of the bot's menu button in a private chat, or the default menu button. Returns :class:`aiogram.types.menu_button.MenuButton` on success.
|
|
|
|
Source: https://core.telegram.org/bots/api#getchatmenubutton
|
|
"""
|
|
|
|
__returning__ = Union[MenuButtonDefault, MenuButtonWebApp, MenuButtonCommands]
|
|
__api_method__ = "getChatMenuButton"
|
|
|
|
chat_id: Optional[int] = None
|
|
"""Unique identifier for the target private chat. If not specified, default bot's menu button will be returned"""
|