aiogram/docs/api/methods/get_sticker_set.rst
Alex Root Junior 247ffbef69
3.x Bot API 6.1 (#937)
Added support of Bot API 6.1
2022-06-25 18:14:29 +03:00

37 lines
594 B
ReStructuredText

#############
getStickerSet
#############
Returns: :obj:`StickerSet`
.. automodule:: aiogram.methods.get_sticker_set
:members:
:member-order: bysource
:undoc-members: True
Usage
=====
As bot method
-------------
.. code-block::
result: StickerSet = await bot.get_sticker_set(...)
Method as object
----------------
Imports:
- :code:`from aiogram.methods.get_sticker_set import GetStickerSet`
- alias: :code:`from aiogram.methods import GetStickerSet`
With specific bot
~~~~~~~~~~~~~~~~~
.. code-block:: python
result: StickerSet = await bot(GetStickerSet(...))