MadelineProtoDocs/old_docs/API_docs_v23/constructors/messages_allStickers.md
2018-04-01 13:24:46 +02:00

1006 B

title description
messages.allStickers messages_allStickers attributes, type and example

Constructor: messages.allStickers

Back to constructors index

Attributes:

Name Type Required
hash string Yes
packs Array of StickerPack Yes
documents Array of Document Yes

Type: messages_AllStickers

Example:

$messages_allStickers = ['_' => 'messages.allStickers', 'hash' => 'string', 'packs' => [StickerPack, StickerPack], 'documents' => [Document, Document]];

PWRTelegram json-encoded version:

{"_": "messages.allStickers", "hash": "string", "packs": [StickerPack], "documents": [Document]}

Or, if you're into Lua:

messages_allStickers={_='messages.allStickers', hash='string', packs={StickerPack}, documents={Document}}