UpdateNewStickerSet

class pyrogram.raw.types.UpdateNewStickerSet

A new stickerset was installed

Constructor of Update.

Details:
  • Layer: 223

  • ID: 688A30AA

Parameters:

stickerset (messages.StickerSet) – The installed stickerset

TL Schema

updateNewStickerSet#688a30aa
stickerset:messages.StickerSet

= Update

Parameter Tree

UpdateNewStickerSet
└── stickersetmessages.StickerSet
│ ├── 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
│ │ │ ├── PhotoSize
│ │ │ ├── PhotoCachedSize
│ │ │ ├── PhotoStrippedSize
│ │ │ ├── PhotoSizeProgressive
│ │ │ └── PhotoPathSize
│ │ ├── 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
│ │ ├── PhotoSize
│ │ ├── PhotoCachedSize
│ │ ├── PhotoStrippedSize
│ │ ├── PhotoSizeProgressive
│ │ └── PhotoPathSize
│ ├── video_thumbsVector < VideoSize > (optional)
│ │ ├── VideoSize
│ │ ├── VideoSizeEmojiMarkup
│ │ └── VideoSizeStickerMarkup
│ ├── dc_idint
│ └── attributesVector < DocumentAttribute >

Example

UpdateNewStickerSet(
    stickerset=StickerSet(
        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)
            ]
    ),
)