mirror of
https://github.com/danog/MadelineProto.git
synced 2024-12-04 10:47:54 +01:00
24 lines
887 B
Markdown
24 lines
887 B
Markdown
## Constructor: stickerSet
|
|
|
|
### Attributes:
|
|
|
|
| Name | Type | Required |
|
|
|----------|:-------------:|---------:|
|
|
|installed|[Bool](../types/Bool.md) | Optional|
|
|
|archived|[Bool](../types/Bool.md) | Optional|
|
|
|official|[Bool](../types/Bool.md) | Optional|
|
|
|masks|[Bool](../types/Bool.md) | Optional|
|
|
|id|[long](../types/long.md) | Required|
|
|
|access\_hash|[long](../types/long.md) | Required|
|
|
|title|[string](../types/string.md) | Required|
|
|
|short\_name|[string](../types/string.md) | Required|
|
|
|count|[int](../types/int.md) | Required|
|
|
|hash|[int](../types/int.md) | Required|
|
|
### Type:
|
|
|
|
[StickerSet](../types/StickerSet.md)
|
|
### Example:
|
|
|
|
```
|
|
$stickerSet = ['_' => stickerSet', 'installed' => true, 'archived' => true, 'official' => true, 'masks' => true, 'id' => long, 'access_hash' => long, 'title' => string, 'short_name' => string, 'count' => int, 'hash' => int, ];
|
|
``` |