getForumTopicIconStickers#

Returns: List[Sticker]

class aiogram.methods.get_forum_topic_icon_stickers.GetForumTopicIconStickers(**extra_data: Any)[source]#

Use this method to get custom emoji stickers, which can be used as a forum topic icon by any user. Requires no parameters. Returns an Array of aiogram.types.sticker.Sticker objects.

Source: https://core.telegram.org/bots/api#getforumtopiciconstickers

model_computed_fields: ClassVar[dict[str, ComputedFieldInfo]] = {}#

A dictionary of computed field names and their corresponding ComputedFieldInfo objects.

model_post_init(_ModelMetaclass__context: Any) None#

We need to both initialize private attributes and call the user-defined model_post_init method.

Usage#

As bot method#

result: List[Sticker] = await bot.get_forum_topic_icon_stickers(...)

Method as object#

Imports:

  • from aiogram.methods.get_forum_topic_icon_stickers import GetForumTopicIconStickers

  • alias: from aiogram.methods import GetForumTopicIconStickers

With specific bot#

result: List[Sticker] = await bot(GetForumTopicIconStickers(...))