MadelineProtoDocs/docs/API_docs/constructors/stickerPack.md
Daniil Gentili f73c175203 Update docs
2018-12-26 01:56:50 +00:00

870 B

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

Constructor: stickerPack

Back to constructors index

Sticker pack

Attributes:

Name Type Required Description
emoticon string Yes Emoticon
documents Array of long Yes Documents

Type: StickerPack

Example:

$stickerPack = ['_' => 'stickerPack', 'emoticon' => 'string', 'documents' => [long, long]];

PWRTelegram json-encoded version:

{"_": "stickerPack", "emoticon": "string", "documents": [long]}

Or, if you're into Lua:

stickerPack={_='stickerPack', emoticon='string', documents={long}}