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
├── hashlong
└── setsVector < StickerSet >
└── 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

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