mirror of
https://github.com/aiogram/aiogram.git
synced 2026-04-08 16:37:47 +00:00
* Update pydantic, fix errors and warnings (all?) * Fixed typehints * Reformat code, removed unused imports * Fixed typing extensions version compatibility * Fixed coverage * Describe changes * Regen code
22 lines
1 KiB
Python
22 lines
1 KiB
Python
from __future__ import annotations
|
|
|
|
from typing import Optional
|
|
|
|
from ..types import BotCommandScope
|
|
from .base import TelegramMethod
|
|
|
|
|
|
class DeleteMyCommands(TelegramMethod[bool]):
|
|
"""
|
|
Use this method to delete the list of the bot's commands for the given scope and user language. After deletion, `higher level commands <https://core.telegram.org/bots/api#determining-list-of-commands>`_ will be shown to affected users. Returns :code:`True` on success.
|
|
|
|
Source: https://core.telegram.org/bots/api#deletemycommands
|
|
"""
|
|
|
|
__returning__ = bool
|
|
__api_method__ = "deleteMyCommands"
|
|
|
|
scope: Optional[BotCommandScope] = None
|
|
"""A JSON-serialized object, describing scope of users for which the commands are relevant. Defaults to :class:`aiogram.types.bot_command_scope_default.BotCommandScopeDefault`."""
|
|
language_code: Optional[str] = None
|
|
"""A two-letter ISO 639-1 language code. If empty, commands will be applied to all users from the given scope, for whose language there are no dedicated commands"""
|