aiogram/docs2/source/api/methods/get_my_commands.rst
2020-06-15 02:22:24 +03:00

46 lines
871 B
ReStructuredText

#############
getMyCommands
#############
Use this method to get the current list of the bot's commands. Requires no parameters. Returns Array of BotCommand on success.
Returns: :obj:`List[BotCommand]`
.. automodule:: aiogram.api.methods.get_my_commands
:members:
Usage
=====
As bot method
-------------
.. code-block::
result: List[BotCommand] = await bot.get_my_commands(...)
Method as object
----------------
Imports:
- :code:`from aiogram.methods import GetMyCommands`
- :code:`from aiogram.api.methods import GetMyCommands`
- :code:`from aiogram.api.methods.get_my_commands import GetMyCommands`
In handlers with current bot
----------------------------
.. code-block::
result: List[BotCommand] = await GetMyCommands(...)
With specific bot
~~~~~~~~~~~~~~~~~
.. code-block::
result: List[BotCommand] = await bot(GetMyCommands(...))