StickerSetFullCovered

class pyrogram.raw.types.StickerSetFullCovered

Stickerset preview with all stickers of the stickerset included. Currently used only for custom emoji stickersets, to avoid a further call to messages.getStickerSet.

Constructor of StickerSetCovered.

Details:
  • Layer: 223

  • ID: 40D13C0E

Parameters:
set (StickerSet):

Stickerset

packs (List of StickerPack):

Emoji information about every sticker in the stickerset

keywords (List of StickerKeyword):

Keywords for some or every sticker in the stickerset.

documents (List of Document):

Stickers

Functions:

This object can be returned by 1 function.

messages.GetAttachedStickers

Get stickers attached to a photo or video

TL Schema

stickerSetFullCovered#40d13c0e
set:StickerSet
packs:Vector<StickerPack>
keywords:Vector<StickerKeyword>
documents:Vector<Document>

= StickerSetCovered

Parameter Tree

StickerSetFullCovered
├── setStickerSet
│ └── 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
├── packsVector < StickerPack >
│ └── StickerPack
│ ├── emoticonstring
│ └── documentsVector < long >
├── keywordsVector < StickerKeyword >
│ └── StickerKeyword
│ ├── document_idlong
│ └── keywordVector < string >
└── documentsVector < Document >
├── DocumentEmpty
│ └── idlong
└── Document
├── idlong
├── access_hashlong
├── file_referencebytes
├── dateint
├── mime_typestring
├── sizelong
├── 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
├── video_thumbsVector < VideoSize > (optional)
│ ├── VideoSize
│ │ ├── typestring
│ │ ├── wint
│ │ ├── hint
│ │ ├── sizeint
│ │ └── video_start_tsdouble (optional)
│ ├── VideoSizeEmojiMarkup
│ │ ├── emoji_idlong
│ │ └── background_colorsVector < int >
│ ├── stickersetInputStickerSet
│ │ ├── InputStickerSetEmpty
│ │ ├── InputStickerSetID
│ │ ├── InputStickerSetShortName
│ │ ├── InputStickerSetDice
│ │ ├── InputStickerSetPremiumGifts
│ │ └── InputStickerSetTonGifts
│ ├── sticker_idlong
│ └── background_colorsVector < int >
├── dc_idint
└── attributesVector < DocumentAttribute >
│ ├── wint
│ └── hint
│ ├── masktrue (optional)
│ ├── altstring
│ ├── stickersetInputStickerSet
│ │ ├── InputStickerSetEmpty
│ │ ├── InputStickerSetID
│ │ ├── InputStickerSetShortName
│ │ ├── InputStickerSetDice
│ │ ├── InputStickerSetPremiumGifts
│ │ └── InputStickerSetTonGifts
│ └── mask_coordsMaskCoords (optional)
│ └── MaskCoords
│ ├── round_messagetrue (optional)
│ ├── supports_streamingtrue (optional)
│ ├── nosoundtrue (optional)
│ ├── durationdouble
│ ├── wint
│ ├── hint
│ ├── preload_prefix_sizeint (optional)
│ ├── video_start_tsdouble (optional)
│ └── video_codecstring (optional)
│ ├── voicetrue (optional)
│ ├── durationint
│ ├── titlestring (optional)
│ ├── performerstring (optional)
│ └── waveformbytes (optional)
│ └── file_namestring
├── freetrue (optional)
├── text_colortrue (optional)
├── altstring
└── stickersetInputStickerSet

Example

StickerSetFullCovered(
    set=StickerSet(
        id=0,
        access_hash=0,
        title="text",
        short_name="text",
        count=0,
        hash=0
    ),
    packs=[
            StickerPack(
                emoticon="text",
                documents=[0]
            )
        ],
    keywords=[
            StickerKeyword(
                document_id=0,
                keyword=["text"]
            )
        ],
    documents=[
            DocumentEmpty(id=0)
        ],
)