MadelineProto/old_docs/API_docs_v38/constructors/stickerSet.md
2017-07-23 16:11:02 +02:00

1.0 KiB

title description
stickerSet stickerSet attributes, type and example

Constructor: stickerSet

Back to constructors index

Attributes:

Name Type Required
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', 'id' => long, 'access_hash' => long, 'title' => string, 'short_name' => string, 'count' => int, 'hash' => int, ];

PWRTelegram json-encoded version:

{"_":"stickerSet","id":"long","access_hash":"long","title":"string","short_name":"string","count":"int","hash":"int"}

Or, if you're into Lua:

stickerSet={_='stickerSet', id=long, access_hash=long, title=string, short_name=string, count=int, hash=int, }