1
0
mirror of https://github.com/danog/MadelineProto.git synced 2024-12-15 15:46:55 +01:00
MadelineProto/docs/TD_docs/constructors/stickers.md
2017-07-23 16:33:46 +02:00

688 B

title description
stickers Represents list of stickers

Constructor: stickers

Back to constructors index

Represents list of stickers

Attributes:

Name Type Required Description
stickers Array of sticker Yes Stickers

Type: Stickers

Example:

$stickers = ['_' => 'stickers', 'stickers' => [sticker]];

PWRTelegram json-encoded version:

{"_": "stickers", "stickers": [sticker]}

Or, if you're into Lua:

stickers={_='stickers', stickers={sticker}}