MadelineProto/old_docs/API_docs_v45/constructors/updateStickerSetsOrder.md

43 lines
706 B
Markdown
Raw Normal View History

---
title: updateStickerSetsOrder
description: updateStickerSetsOrder attributes, type and example
---
## Constructor: updateStickerSetsOrder
[Back to constructors index](index.md)
### Attributes:
| Name | Type | Required |
|----------|:-------------:|---------:|
|order|Array of [long](../types/long.md) | Yes|
### Type: [Update](../types/Update.md)
### Example:
```
2017-07-23 16:33:46 +02:00
$updateStickerSetsOrder = ['_' => 'updateStickerSetsOrder', 'order' => [long]];
```
2017-07-23 16:11:02 +02:00
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
2017-07-23 16:33:46 +02:00
{"_": "updateStickerSetsOrder", "order": [long]}
2017-07-23 16:11:02 +02:00
```
Or, if you're into Lua:
```
2017-07-23 16:33:46 +02:00
updateStickerSetsOrder={_='updateStickerSetsOrder', order={long}}
```