MadelineProtoDocs/docs/API_docs/constructors/messages_foundStickerSets.md

45 lines
996 B
Markdown
Raw Normal View History

2018-06-29 13:59:08 +02:00
---
title: messages.foundStickerSets
description: messages_foundStickerSets attributes, type and example
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: messages.foundStickerSets
[Back to constructors index](index.md)
### Attributes:
| Name | Type | Required |
|----------|---------------|----------|
|hash|[int](../types/int.md) | Yes|
|sets|Array of [StickerSetCovered](../types/StickerSetCovered.md) | Yes|
### Type: [messages\_FoundStickerSets](../types/messages_FoundStickerSets.md)
### Example:
```
$messages_foundStickerSets = ['_' => 'messages.foundStickerSets', 'hash' => int, 'sets' => [StickerSetCovered, StickerSetCovered]];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_": "messages.foundStickerSets", "hash": int, "sets": [StickerSetCovered]}
```
Or, if you're into Lua:
```
messages_foundStickerSets={_='messages.foundStickerSets', hash=int, sets={StickerSetCovered}}
```