telegram.StickerSet#

class telegram.StickerSet(*args, **kwargs)[source]#

Bases: telegram.TelegramObject

This object represents a sticker set.

Objects of this class are comparable in terms of equality. Two objects of this class are considered equal, if their name is equal.

Note

As of v13.11 is_video is a required argument and therefore the order of the arguments had to be changed. Use keyword arguments to make sure that the arguments are passed correctly.

Parameters
name[source]#

Sticker set name.

Type

str

title[source]#

Sticker set title.

Type

str

is_animated[source]#

True, if the sticker set contains animated stickers.

Type

bool

is_video[source]#

True, if the sticker set contains video stickers.

New in version 13.11.

Type

bool

contains_masks[source]#

True, if the sticker set contains masks.

Type

bool

stickers[source]#

List of all set stickers.

Type

List[telegram.Sticker]

thumb[source]#

Optional. Sticker set thumbnail in the .WEBP, .TGS or .WEBM format.

Type

telegram.PhotoSize

classmethod de_json(data, bot)[source]#

See telegram.TelegramObject.de_json().

to_dict()[source]#

See telegram.TelegramObject.to_dict().