1.1 KiB
1.1 KiB
title | description | image | redirect_from |
---|---|---|---|
messages.stickerSet | Stickerset and stickers inside it | https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png | /API_docs/constructors/messages_stickerSet.html |
Constructor: messages.stickerSet
Stickerset and stickers inside it
Attributes:
Name | Type | Required | Description |
---|---|---|---|
set | StickerSet | Yes | The stickerset |
packs | Array of StickerPack | Yes | Emoji info for stickers |
documents | Array of Document | Yes | Stickers in stickerset |
Type: messages.StickerSet
Example:
$messages.stickerSet = ['_' => 'messages.stickerSet', 'set' => StickerSet, 'packs' => [StickerPack, StickerPack], 'documents' => [Document, Document]];
Or, if you're into Lua:
messages.stickerSet={_='messages.stickerSet', set=StickerSet, packs={StickerPack}, documents={Document}}