messages.AllStickers

class pyrogram.raw.base.messages.AllStickers

All stickers

Constructors:

This base type has 2 constructors available.

messages.AllStickers

Info about all installed stickers

messages.AllStickersNotModified

Info about all installed stickers hasn't changed

Functions:

This object can be returned by 3 functions.

messages.GetAllStickers

Get all installed stickers

messages.GetMaskStickers

Get installed mask stickers

messages.GetEmojiStickers

Gets the list of currently installed custom emoji stickersets.

TL Schema

messages.allStickers#cdbbcebb
hash:long
sets:Vector<StickerSet>

= messages.AllStickers

Parameter Tree

AllStickers
├── hash → long
└── sets → Vector < StickerSet >
└── 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

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