2019-09-13 17:13:55 +02:00
|
|
|
---
|
|
|
|
title: updateStickerSetsOrder
|
2019-12-27 17:48:04 +01:00
|
|
|
description: The order of stickersets was changed
|
2019-09-13 17:13:55 +02:00
|
|
|
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
|
|
|
|
---
|
|
|
|
# Constructor: updateStickerSetsOrder
|
|
|
|
[Back to constructors index](index.md)
|
|
|
|
|
|
|
|
|
|
|
|
|
2019-12-27 17:48:04 +01:00
|
|
|
The order of stickersets was changed
|
2019-09-13 17:13:55 +02:00
|
|
|
|
|
|
|
### Attributes:
|
|
|
|
|
|
|
|
| Name | Type | Required | Description |
|
|
|
|
|----------|---------------|----------|-------------|
|
2019-12-27 17:48:04 +01:00
|
|
|
|masks|[Bool](../types/Bool.md) | Optional|Whether the updated stickers are mask stickers|
|
2019-09-13 17:13:55 +02:00
|
|
|
|order|Array of [long](../types/long.md) | Yes|Order|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
### Type: [Update](../types/Update.md)
|
|
|
|
|
|
|
|
|
|
|
|
### Example:
|
|
|
|
|
|
|
|
```php
|
|
|
|
$updateStickerSetsOrder = ['_' => 'updateStickerSetsOrder', 'masks' => Bool, 'order' => [long, long]];
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
Or, if you're into Lua:
|
|
|
|
|
|
|
|
```lua
|
|
|
|
updateStickerSetsOrder={_='updateStickerSetsOrder', masks=Bool, order={long}}
|
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|