MadelineProtoDocs/old_docs/API_docs_v81/constructors/stickerPack.md
2018-07-12 20:24:55 +02:00

45 lines
834 B
Markdown

---
title: stickerPack
description: stickerPack attributes, type and example
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: stickerPack
[Back to constructors index](index.md)
### Attributes:
| Name | Type | Required |
|----------|---------------|----------|
|emoticon|[string](../types/string.md) | Yes|
|documents|Array of [long](../types/long.md) | Yes|
### Type: [StickerPack](../types/StickerPack.md)
### Example:
```
$stickerPack = ['_' => 'stickerPack', 'emoticon' => 'string', 'documents' => [long, long]];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_": "stickerPack", "emoticon": "string", "documents": [long]}
```
Or, if you're into Lua:
```
stickerPack={_='stickerPack', emoticon='string', documents={long}}
```