StickerSetNoCovered

class pyrogram.raw.types.StickerSetNoCovered

Just the stickerset information, with no previews.

Constructor of StickerSetCovered.

Details:
  • Layer: 223

  • ID: 77B15D1C

Parameters:

set (StickerSet) – Stickerset information.

Functions:

This object can be returned by 1 function.

messages.GetAttachedStickers

Get stickers attached to a photo or video

TL Schema

stickerSetNoCovered#77b15d1c
set:StickerSet

= StickerSetCovered

Parameter Tree

StickerSetNoCovered
└── 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

Example

StickerSetNoCovered(
    set=StickerSet(
        id=0,
        access_hash=0,
        title="text",
        short_name="text",
        count=0,
        hash=0
    ),
)