MadelineProto/docs/API_docs/constructors/messages_recentStickers.md

37 lines
717 B
Markdown
Raw Normal View History

2016-12-20 13:15:22 +01:00
---
2017-01-19 23:02:27 +01:00
title: messages.recentStickers
2016-12-20 13:32:11 +01:00
description: messages_recentStickers attributes, type and example
2016-12-20 13:15:22 +01:00
---
2017-01-19 23:02:27 +01:00
## Constructor: messages.recentStickers
2016-12-20 13:15:22 +01:00
[Back to constructors index](index.md)
### Attributes:
| Name | Type | Required |
|----------|:-------------:|---------:|
|hash|[int](../types/int.md) | Yes|
|stickers|Array of [Document](../types/Document.md) | Yes|
2016-12-19 18:56:05 +01:00
### Type: [messages\_RecentStickers](../types/messages_RecentStickers.md)
### Example:
```
$messages_recentStickers = ['_' => 'messages.recentStickers', 'hash' => int, 'stickers' => [Document], ];
```
Or, if you're into Lua:
```
messages_recentStickers={_='messages.recentStickers', hash=int, stickers={Document}, }
```