mirror of
https://github.com/danog/MadelineProtoDocs.git
synced 2024-12-04 02:28:31 +01:00
32 lines
890 B
Markdown
32 lines
890 B
Markdown
|
---
|
||
|
title: "messages.stickers"
|
||
|
description: "Found stickers"
|
||
|
nav_exclude: true
|
||
|
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
|
||
|
redirect_from: /API_docs/constructors/messages_stickers.html
|
||
|
---
|
||
|
# Constructor: messages.stickers
|
||
|
[Back to constructors index](/API_docs/constructors/index.html)
|
||
|
|
||
|
|
||
|
|
||
|
Found stickers
|
||
|
|
||
|
### Attributes:
|
||
|
|
||
|
| Name | Type | Required | Description |
|
||
|
|----------|---------------|----------|-------------|
|
||
|
|hash|[long](/API_docs/types/long.html) | Yes|[Hash for pagination, for more info click here](https://core.telegram.org/api/offsets#hash-generation)|
|
||
|
|stickers|Array of [Document](/API_docs/types/Document.html) | Yes|Stickers|
|
||
|
|
||
|
|
||
|
|
||
|
### Type: [messages.Stickers](/API_docs/types/messages.Stickers.html)
|
||
|
|
||
|
|
||
|
### Example:
|
||
|
|
||
|
```
|
||
|
$messages_stickers = ['_' => 'messages.stickers', 'hash' => long, 'stickers' => [Document, Document]];
|
||
|
```
|