mirror of
https://github.com/danog/MadelineProto.git
synced 2024-12-15 05:56:55 +01:00
38 lines
579 B
Markdown
38 lines
579 B
Markdown
---
|
|
title: stickers
|
|
description: Represents list of stickers
|
|
---
|
|
## Constructor: stickers
|
|
[Back to constructors index](index.md)
|
|
|
|
|
|
|
|
Represents list of stickers
|
|
|
|
### Attributes:
|
|
|
|
| Name | Type | Required | Description |
|
|
|----------|:-------------:|:--------:|------------:|
|
|
|stickers|Array of [sticker](../constructors/sticker.md) | Yes|Stickers|
|
|
|
|
|
|
|
|
### Type: [Stickers](../types/Stickers.md)
|
|
|
|
|
|
### Example:
|
|
|
|
```
|
|
$stickers = ['_' => 'stickers', 'stickers' => [sticker], ];
|
|
```
|
|
|
|
Or, if you're into Lua:
|
|
|
|
|
|
```
|
|
stickers={_='stickers', stickers={sticker}, }
|
|
|
|
```
|
|
|
|
|