mirror of
https://github.com/aiogram/aiogram.git
synced 2025-12-12 02:03:04 +00:00
* Added API changes * Added changelog * Oops. Move changelog * Update tests * Remove experimental * Added message content type * Update message aliases * Update changes * Update texts * Bump version * Remove versionadded badge
37 lines
717 B
ReStructuredText
37 lines
717 B
ReStructuredText
#########################
|
|
getForumTopicIconStickers
|
|
#########################
|
|
|
|
Returns: :obj:`List[Sticker]`
|
|
|
|
.. automodule:: aiogram.methods.get_forum_topic_icon_stickers
|
|
:members:
|
|
:member-order: bysource
|
|
:undoc-members: True
|
|
|
|
|
|
Usage
|
|
=====
|
|
|
|
As bot method
|
|
-------------
|
|
|
|
.. code-block::
|
|
|
|
result: List[Sticker] = await bot.get_forum_topic_icon_stickers(...)
|
|
|
|
|
|
Method as object
|
|
----------------
|
|
|
|
Imports:
|
|
|
|
- :code:`from aiogram.methods.get_forum_topic_icon_stickers import GetForumTopicIconStickers`
|
|
- alias: :code:`from aiogram.methods import GetForumTopicIconStickers`
|
|
|
|
With specific bot
|
|
~~~~~~~~~~~~~~~~~
|
|
|
|
.. code-block:: python
|
|
|
|
result: List[Sticker] = await bot(GetForumTopicIconStickers(...))
|