StickerSet¶
- class aiogram.types.sticker_set.StickerSet(*, name: str, title: str, sticker_type: str, stickers: list[Sticker], thumbnail: PhotoSize | None = None, is_animated: bool | None = None, is_video: bool | None = None, **extra_data: Any)[source]¶
This object represents a sticker set.
Source: https://core.telegram.org/bots/api#stickerset
- name: str¶
Sticker set name
- title: str¶
Sticker set title
- sticker_type: str¶
Type of stickers in the set, currently one of ‘regular’, ‘mask’, ‘custom_emoji’
- model_computed_fields: ClassVar[Dict[str, ComputedFieldInfo]] = {}¶
A dictionary of computed field names and their corresponding ComputedFieldInfo objects.
- model_post_init(context: Any, /) None ¶
We need to both initialize private attributes and call the user-defined model_post_init method.
- is_animated: bool | None¶
True
, if the sticker set contains animated stickersDeprecated since version API:7.2: https://core.telegram.org/bots/api-changelog#march-31-2024
- is_video: bool | None¶
True
, if the sticker set contains video stickersDeprecated since version API:7.2: https://core.telegram.org/bots/api-changelog#march-31-2024