MadelineProtoDocs/old_docs/API_docs_v5/constructors/messages.stickerSet.md

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

Back to constructors index

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}}