telegram.StickerSet¶
-
class
telegram.StickerSet(name, title, is_animated, contains_masks, stickers, bot=None, **kwargs)¶ Bases:
telegram.base.TelegramObjectThis object represents a sticker set.
-
name¶ Sticker set name.
Type: str
-
title¶ Sticker set title.
Type: str
-
is_animated¶ True, if the sticker set contains animated stickers.
Type: bool
-
contains_masks¶ True, if the sticker set contains masks.
Type: bool
-
stickers¶ List of all set stickers.
Type: List[ telegram.Sticker]
Parameters: - name (
str) – Sticker set name. - title (
str) – Sticker set title. - is_animated (
bool) – True, if the sticker set contains animated stickers. - contains_masks (
bool) – True, if the sticker set contains masks. - stickers (List[
telegram.Sticker]) – List of all set stickers.
-