mirror of
https://gitlab.com/MoonTestUse1/AdministrationItDepartmens.git
synced 2025-08-14 00:25:46 +02:00
74 lines
2.7 KiB
Python
74 lines
2.7 KiB
Python
from __future__ import annotations
|
|
|
|
from typing import TYPE_CHECKING, Any, Optional, Union
|
|
|
|
from ..types import (
|
|
BotCommand,
|
|
BotCommandScopeAllChatAdministrators,
|
|
BotCommandScopeAllGroupChats,
|
|
BotCommandScopeAllPrivateChats,
|
|
BotCommandScopeChat,
|
|
BotCommandScopeChatAdministrators,
|
|
BotCommandScopeChatMember,
|
|
BotCommandScopeDefault,
|
|
)
|
|
from .base import TelegramMethod
|
|
|
|
|
|
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: Optional[
|
|
Union[
|
|
BotCommandScopeDefault,
|
|
BotCommandScopeAllPrivateChats,
|
|
BotCommandScopeAllGroupChats,
|
|
BotCommandScopeAllChatAdministrators,
|
|
BotCommandScopeChat,
|
|
BotCommandScopeChatAdministrators,
|
|
BotCommandScopeChatMember,
|
|
]
|
|
] = 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"""
|
|
|
|
if TYPE_CHECKING:
|
|
# DO NOT EDIT MANUALLY!!!
|
|
# This section was auto-generated via `butcher`
|
|
|
|
def __init__(
|
|
__pydantic__self__,
|
|
*,
|
|
commands: list[BotCommand],
|
|
scope: Optional[
|
|
Union[
|
|
BotCommandScopeDefault,
|
|
BotCommandScopeAllPrivateChats,
|
|
BotCommandScopeAllGroupChats,
|
|
BotCommandScopeAllChatAdministrators,
|
|
BotCommandScopeChat,
|
|
BotCommandScopeChatAdministrators,
|
|
BotCommandScopeChatMember,
|
|
]
|
|
] = None,
|
|
language_code: Optional[str] = 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
|
|
)
|