MadelineProtoDocs/old_docs/API_docs_v53/constructors/stickerSet.md
Sean 4baac3178e Add Syntax Highlight for Markdown
Add PHP, Lua language tag to Code area
2018-10-18 00:30:20 +08:00

1.4 KiB

title description image
stickerSet stickerSet attributes, type and example https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png

Constructor: stickerSet

Back to constructors index

Attributes:

Name Type Required
installed Bool Optional
disabled Bool Optional
official Bool Optional
id long Yes
access_hash long Yes
title string Yes
short_name string Yes
count int Yes
hash int Yes

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}