Source code for litegram.methods.set_my_commands

from __future__ import annotations

from typing import TYPE_CHECKING, Any

from .base import TelegramMethod

if TYPE_CHECKING:
    from ..types import BotCommand, BotCommandScopeUnion


[docs] class SetMyCommands(TelegramMethod[bool]): """ Use this method to change the list of the bot's commands. See `this manual <https://core.telegram.org/bots/features#commands>`_ for more details about bot commands. Returns :code:`True` on success. Source: https://core.telegram.org/bots/api#setmycommands """ __returning__ = bool __api_method__ = "setMyCommands" commands: list[BotCommand] """A JSON-serialized list of bot commands to be set as the list of the bot's commands. At most 100 commands can be specified.""" scope: BotCommandScopeUnion | None = None """A JSON-serialized object, describing scope of users for which the commands are relevant. Defaults to :class:`litegram.types.bot_command_scope_default.BotCommandScopeDefault`.""" language_code: str | None = 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""" if TYPE_CHECKING: # DO NOT EDIT MANUALLY!!! # This section was auto-generated via `butcher` def __init__( __pydantic__self__, *, commands: list[BotCommand], scope: BotCommandScopeUnion | None = None, language_code: str | None = None, **__pydantic_kwargs: Any, ) -> None: # DO NOT EDIT MANUALLY!!! # This method was auto-generated via `butcher` # Is needed only for type checking and IDE support without any additional plugins super().__init__(commands=commands, scope=scope, language_code=language_code, **__pydantic_kwargs)