MadelineProtoDocs/old_docs/API_docs_v105/constructors/messages.foundStickerSets.md
2019-12-27 18:46:25 +01:00

41 lines
1.0 KiB
Markdown

---
title: messages.foundStickerSets
description: Found stickersets
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
redirect_from: /API_docs/constructors/messages_foundStickerSets.html
---
# Constructor: messages.foundStickerSets
[Back to constructors index](index.md)
Found stickersets
### Attributes:
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|hash|[int](../types/int.md) | Yes|[Hash for pagination, for more info click here](https://core.telegram.org/api/offsets#hash-generation)|
|sets|Array of [StickerSetCovered](../types/StickerSetCovered.md) | Yes|Sets|
### Type: [messages.FoundStickerSets](../types/messages.FoundStickerSets.md)
### Example:
```php
$messages.foundStickerSets = ['_' => 'messages.foundStickerSets', 'hash' => int, 'sets' => [StickerSetCovered, StickerSetCovered]];
```
Or, if you're into Lua:
```lua
messages.foundStickerSets={_='messages.foundStickerSets', hash=int, sets={StickerSetCovered}}
```