mirror of
https://github.com/aiogram/aiogram.git
synced 2025-12-11 18:01:04 +00:00
38 lines
687 B
ReStructuredText
38 lines
687 B
ReStructuredText
|
|
######################
|
||
|
|
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(...))
|