MadelineProto/old_docs/API_docs_v42/constructors/stickerSet.md
2017-07-23 16:11:02 +02:00

51 lines
1.3 KiB
Markdown

---
title: stickerSet
description: stickerSet attributes, type and example
---
## Constructor: stickerSet
[Back to constructors index](index.md)
### Attributes:
| Name | Type | Required |
|----------|:-------------:|---------:|
|installed|[Bool](../types/Bool.md) | Optional|
|disabled|[Bool](../types/Bool.md) | Optional|
|official|[Bool](../types/Bool.md) | Optional|
|id|[long](../types/long.md) | Yes|
|access\_hash|[long](../types/long.md) | Yes|
|title|[string](../types/string.md) | Yes|
|short\_name|[string](../types/string.md) | Yes|
|count|[int](../types/int.md) | Yes|
|hash|[int](../types/int.md) | Yes|
### Type: [StickerSet](../types/StickerSet.md)
### Example:
```
$stickerSet = ['_' => 'stickerSet', 'installed' => Bool, 'disabled' => Bool, 'official' => Bool, 'id' => long, 'access_hash' => long, 'title' => string, 'short_name' => string, 'count' => int, 'hash' => int, ];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_":"stickerSet","installed":"Bool","disabled":"Bool","official":"Bool","id":"long","access_hash":"long","title":"string","short_name":"string","count":"int","hash":"int"}
```
Or, if you're into Lua:
```
stickerSet={_='stickerSet', installed=Bool, disabled=Bool, official=Bool, id=long, access_hash=long, title=string, short_name=string, count=int, hash=int, }
```