MadelineProto/docs/TD_docs/constructors/updateStickerSets.md
2017-07-23 16:33:46 +02:00

46 lines
971 B
Markdown

---
title: updateStickerSets
description: List of installed sticker sets was updated
---
## Constructor: updateStickerSets
[Back to constructors index](index.md)
List of installed sticker sets was updated
### Attributes:
| Name | Type | Required | Description |
|----------|:-------------:|:--------:|------------:|
|is\_masks|[Bool](../types/Bool.md) | Yes|True, if list of installed mask sticker sets was updated|
|sticker\_set\_ids|Array of [long](../constructors/long.md) | Yes|New list of installed sticker sets|
### Type: [Update](../types/Update.md)
### Example:
```
$updateStickerSets = ['_' => 'updateStickerSets', 'is_masks' => Bool, 'sticker_set_ids' => [long]];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_": "updateStickerSets", "is_masks": Bool, "sticker_set_ids": [long]}
```
Or, if you're into Lua:
```
updateStickerSets={_='updateStickerSets', is_masks=Bool, sticker_set_ids={long}}
```