42 lines
1.0 KiB
Markdown
42 lines
1.0 KiB
Markdown
---
|
|
title: messages.stickerSet
|
|
description: Stickerset and stickers inside it
|
|
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
|
|
redirect_from: /API_docs/constructors/messages_stickerSet.html
|
|
---
|
|
# Constructor: messages.stickerSet
|
|
[Back to constructors index](index.md)
|
|
|
|
|
|
|
|
Stickerset and stickers inside it
|
|
|
|
### Attributes:
|
|
|
|
| Name | Type | Required | Description |
|
|
|----------|---------------|----------|-------------|
|
|
|set|[StickerSet](../types/StickerSet.md) | Yes|The stickerset|
|
|
|packs|Array of [StickerPack](../types/StickerPack.md) | Yes|Packs|
|
|
|documents|Array of [Document](../types/Document.md) | Yes|Documents|
|
|
|
|
|
|
|
|
### Type: [messages.StickerSet](../types/messages.StickerSet.md)
|
|
|
|
|
|
### Example:
|
|
|
|
```php
|
|
$messages.stickerSet = ['_' => 'messages.stickerSet', 'set' => StickerSet, 'packs' => [StickerPack, StickerPack], 'documents' => [Document, Document]];
|
|
```
|
|
|
|
|
|
Or, if you're into Lua:
|
|
|
|
```lua
|
|
messages.stickerSet={_='messages.stickerSet', set=StickerSet, packs={StickerPack}, documents={Document}}
|
|
|
|
```
|
|
|
|
|