MadelineProtoDocs/old_docs/API_docs_v65/constructors/messages_recentStickers.md

40 lines
822 B
Markdown

---
title: messages.recentStickers
description: Recent stickers
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: messages.recentStickers
[Back to constructors index](index.md)
Recent stickers
### Attributes:
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|hash|[int](../types/int.md) | Yes|Hash|
|stickers|Array of [Document](../types/Document.md) | Yes|Stickers|
### Type: [messages\_RecentStickers](../types/messages_RecentStickers.md)
### Example:
```php
$messages_recentStickers = ['_' => 'messages.recentStickers', 'hash' => int, 'stickers' => [Document, Document]];
```
Or, if you're into Lua:
```lua
messages_recentStickers={_='messages.recentStickers', hash=int, stickers={Document}}
```