StickerPack

class pyrogram.raw.types.StickerPack

A stickerpack is a group of stickers associated to the same emoji. It is not a sticker pack the way it is usually intended, you may be looking for a StickerSet.

Constructor of StickerPack.

Details:
  • Layer: 223

  • ID: 12B299D4

Parameters:
emoticon (str):

Emoji

documents (List of int 64-bit):

Stickers

TL Schema

stickerPack#12b299d4
emoticon:string
documents:Vector<long>

= StickerPack

Parameter Tree

StickerPack
├── emoticonstring
└── documentsVector < long >

Example

StickerPack(
    emoticon="text",
    documents=[0],
)