MadelineProto/docs/TD_docs/constructors/updateTrendingStickerSets.md

45 lines
925 B
Markdown
Raw Normal View History

---
title: updateTrendingStickerSets
description: List of trending sticker sets was updated or some of them was viewed
---
## Constructor: updateTrendingStickerSets
[Back to constructors index](index.md)
List of trending sticker sets was updated or some of them was viewed
### Attributes:
| Name | Type | Required | Description |
|----------|:-------------:|:--------:|------------:|
|sticker\_sets|[stickerSets](../types/stickerSets.md) | Yes|New list of trending sticker sets|
### Type: [Update](../types/Update.md)
### Example:
```
2017-07-23 16:33:46 +02:00
$updateTrendingStickerSets = ['_' => 'updateTrendingStickerSets', 'sticker_sets' => stickerSets];
```
2017-07-23 16:11:02 +02:00
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
2017-07-23 16:33:46 +02:00
{"_": "updateTrendingStickerSets", "sticker_sets": stickerSets}
2017-07-23 16:11:02 +02:00
```
Or, if you're into Lua:
```
2017-07-23 16:33:46 +02:00
updateTrendingStickerSets={_='updateTrendingStickerSets', sticker_sets=stickerSets}
```