MadelineProto/old_docs/API_docs_v68/constructors/messages_stickerSet.md
Daniil Gentili 9d77dc0919 AMP fixes
2017-08-20 09:05:56 +00:00

983 B

title description
messages.stickerSet messages_stickerSet attributes, type and example

Constructor: messages.stickerSet

Back to constructors index

Attributes:

Name Type Required
set StickerSet Yes
packs Array of StickerPack Yes
documents Array of Document Yes

Type: messages_StickerSet

Example:

$messages_stickerSet = ['_' => 'messages.stickerSet', 'set' => StickerSet, 'packs' => [StickerPack], 'documents' => [Document]];

PWRTelegram json-encoded version:

{"_": "messages.stickerSet", "set": StickerSet, "packs": [StickerPack], "documents": [Document]}

Or, if you're into Lua:

messages_stickerSet={_='messages.stickerSet', set=StickerSet, packs={StickerPack}, documents={Document}}