MadelineProtoDocs/docs/API_docs/constructors/stickerSet.md

1.6 KiB

title description image
stickerSet Sticker set https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png

Constructor: stickerSet

Back to constructors index

Sticker set

Attributes:

Name Type Required Description
archived Bool Optional Archived?
official Bool Optional Official?
masks Bool Optional Masks?
animated Bool Optional Animated stickerset?
installed_date int Optional Installed date
id long Yes ID
access_hash long Yes Access hash
title string Yes Title
short_name string Yes Short name
thumb PhotoSize Optional Thumbnail
thumb_dc_id int Optional DC ID
count int Yes Count
hash int Yes Hash

Type: StickerSet

Example:

$stickerSet = ['_' => 'stickerSet', 'archived' => Bool, 'official' => Bool, 'masks' => Bool, 'animated' => Bool, 'installed_date' => int, 'id' => long, 'access_hash' => long, 'title' => 'string', 'short_name' => 'string', 'thumb' => PhotoSize, 'thumb_dc_id' => int, 'count' => int, 'hash' => int];

Or, if you're into Lua:

stickerSet={_='stickerSet', archived=Bool, official=Bool, masks=Bool, animated=Bool, installed_date=int, id=long, access_hash=long, title='string', short_name='string', thumb=PhotoSize, thumb_dc_id=int, count=int, hash=int}