986 B
986 B
title | description |
---|---|
messages.stickerSet | messages_stickerSet attributes, type and example |
Constructor: messages.stickerSet
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}, }