MadelineProtoDocs/old_docs/API_docs_v105/constructors/messages_stickerSet.md

41 lines
993 B
Markdown
Raw Normal View History

2019-09-13 17:13:55 +02:00
---
title: messages.stickerSet
2019-12-27 17:48:04 +01:00
description: Stickerset and stickers inside it
2019-09-13 17:13:55 +02:00
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: messages.stickerSet
[Back to constructors index](index.md)
2019-12-27 17:48:04 +01:00
Stickerset and stickers inside it
2019-09-13 17:13:55 +02:00
### Attributes:
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
2019-12-27 17:48:04 +01:00
|set|[StickerSet](../types/StickerSet.md) | Yes|The stickerset|
2019-09-13 17:13:55 +02:00
|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}}
```