StickerSet

class pyrogram.raw.base.StickerSet

Represents a stickerset (stickerpack)

Constructors:

This base type has 1 constructor available.

StickerSet

Represents a stickerset (stickerpack)

TL Schema

stickerSet#2dd14edc
flags:#
archived:flags.1?true
official:flags.2?true
masks:flags.3?true
emojis:flags.7?true
text_color:flags.9?true
channel_emoji_status:flags.10?true
creator:flags.11?true
installed_date:flags.0?int
id:long
access_hash:long
title:string
short_name:string
thumbs:flags.4?Vector<PhotoSize>
thumb_dc_id:flags.4?int
thumb_version:flags.4?int
thumb_document_id:flags.8?long
count:int
hash:int

= StickerSet

Parameter Tree

StickerSet
├── archivedtrue (optional)
├── officialtrue (optional)
├── maskstrue (optional)
├── emojistrue (optional)
├── text_colortrue (optional)
├── channel_emoji_statustrue (optional)
├── creatortrue (optional)
├── installed_dateint (optional)
├── idlong
├── access_hashlong
├── titlestring
├── short_namestring
├── thumbsVector < PhotoSize > (optional)
│ ├── PhotoSizeEmpty
│ │ └── typestring
│ ├── PhotoSize
│ │ ├── typestring
│ │ ├── wint
│ │ ├── hint
│ │ └── sizeint
│ ├── PhotoCachedSize
│ │ ├── typestring
│ │ ├── wint
│ │ ├── hint
│ │ └── bytesbytes
│ ├── PhotoStrippedSize
│ │ ├── typestring
│ │ └── bytesbytes
│ ├── PhotoSizeProgressive
│ │ ├── typestring
│ │ ├── wint
│ │ ├── hint
│ │ └── sizesVector < int >
│ └── PhotoPathSize
│ ├── typestring
│ └── bytesbytes
├── thumb_dc_idint (optional)
├── thumb_versionint (optional)
├── thumb_document_idlong (optional)
├── countint
└── hashint

Example

StickerSet(
    archived=None,
    official=None,
    masks=None,
    emojis=None,
    text_color=None,
    channel_emoji_status=None,
    creator=None,
    installed_date=0,
    id=0,
    access_hash=0,
    title="text",
    short_name="text",
    thumbs=[
            PhotoSizeEmpty(type="text")
        ],
    thumb_dc_id=0,
    thumb_version=0,
    thumb_document_id=0,
    count=0,
    hash=0,
)