mirror of
https://github.com/aiogram/aiogram.git
synced 2026-04-08 16:37:47 +00:00
Update tests. Added missing files.
This commit is contained in:
parent
4e0af00b73
commit
f5de712fcc
6 changed files with 115 additions and 8 deletions
37
docs/api/methods/get_custom_emoji_stickers.rst
Normal file
37
docs/api/methods/get_custom_emoji_stickers.rst
Normal file
|
|
@ -0,0 +1,37 @@
|
|||
######################
|
||||
getCustomEmojiStickers
|
||||
######################
|
||||
|
||||
Returns: :obj:`List[Sticker]`
|
||||
|
||||
.. automodule:: aiogram.methods.get_custom_emoji_stickers
|
||||
:members:
|
||||
:member-order: bysource
|
||||
:undoc-members: True
|
||||
|
||||
|
||||
Usage
|
||||
=====
|
||||
|
||||
As bot method
|
||||
-------------
|
||||
|
||||
.. code-block::
|
||||
|
||||
result: List[Sticker] = await bot.get_custom_emoji_stickers(...)
|
||||
|
||||
|
||||
Method as object
|
||||
----------------
|
||||
|
||||
Imports:
|
||||
|
||||
- :code:`from aiogram.methods.get_custom_emoji_stickers import GetCustomEmojiStickers`
|
||||
- alias: :code:`from aiogram.methods import GetCustomEmojiStickers`
|
||||
|
||||
With specific bot
|
||||
~~~~~~~~~~~~~~~~~
|
||||
|
||||
.. code-block:: python
|
||||
|
||||
result: List[Sticker] = await bot(GetCustomEmojiStickers(...))
|
||||
Loading…
Add table
Add a link
Reference in a new issue