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
├── archived → true (optional)
├── official → true (optional)
├── masks → true (optional)
├── emojis → true (optional)
├── text_color → true (optional)
├── channel_emoji_status → true (optional)
├── creator → true (optional)
├── installed_date → int (optional)
├── id → long
├── access_hash → long
├── title → string
├── short_name → string
├── thumbs → Vector < PhotoSize > (optional)
│ ├── PhotoSizeEmpty
│ │ └── type → string
│ ├── PhotoSize
│ │ ├── type → string
│ │ ├── w → int
│ │ ├── h → int
│ │ └── size → int
│ ├── PhotoCachedSize
│ │ ├── type → string
│ │ ├── w → int
│ │ ├── h → int
│ │ └── bytes → bytes
│ ├── PhotoStrippedSize
│ │ ├── type → string
│ │ └── bytes → bytes
│ ├── PhotoSizeProgressive
│ │ ├── type → string
│ │ ├── w → int
│ │ ├── h → int
│ │ └── sizes → Vector < int >
│ └── PhotoPathSize
│ ├── type → string
│ └── bytes → bytes
├── thumb_dc_id → int (optional)
├── thumb_version → int (optional)
├── thumb_document_id → long (optional)
├── count → int
└── hash → int

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,
)