1.5 KiB
1.5 KiB
title | description | image |
---|---|---|
stickerSet | Sticker set | https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png |
Constructor: stickerSet
Sticker set
Attributes:
Name | Type | Required | Description |
---|---|---|---|
installed | Bool | Optional | Installed? |
disabled | Bool | Optional | Disabled? |
official | Bool | Optional | Official? |
id | long | Yes | ID |
access_hash | long | Yes | Access hash |
title | string | Yes | Title |
short_name | string | Yes | Short name |
count | int | Yes | Count |
hash | int | Yes | Hash |
Type: StickerSet
Example:
$stickerSet = ['_' => 'stickerSet', 'installed' => Bool, 'disabled' => Bool, 'official' => Bool, 'id' => long, 'access_hash' => long, 'title' => 'string', 'short_name' => 'string', 'count' => int, 'hash' => int];
PWRTelegram json-encoded version:
{"_": "stickerSet", "installed": Bool, "disabled": Bool, "official": Bool, "id": long, "access_hash": long, "title": "string", "short_name": "string", "count": int, "hash": int}
Or, if you're into Lua:
stickerSet={_='stickerSet', installed=Bool, disabled=Bool, official=Bool, id=long, access_hash=long, title='string', short_name='string', count=int, hash=int}