41 lines
987 B
Markdown
41 lines
987 B
Markdown
|
---
|
||
|
title: messages.archivedStickers
|
||
|
description: Archived stickersets
|
||
|
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
|
||
|
redirect_from: /API_docs/constructors/messages_archivedStickers.html
|
||
|
---
|
||
|
# Constructor: messages.archivedStickers
|
||
|
[Back to constructors index](index.md)
|
||
|
|
||
|
|
||
|
|
||
|
Archived stickersets
|
||
|
|
||
|
### Attributes:
|
||
|
|
||
|
| Name | Type | Required | Description |
|
||
|
|----------|---------------|----------|-------------|
|
||
|
|count|[int](../types/int.md) | Yes|Number of archived stickers|
|
||
|
|sets|Array of [StickerSetCovered](../types/StickerSetCovered.md) | Yes|Archived stickersets|
|
||
|
|
||
|
|
||
|
|
||
|
### Type: [messages.ArchivedStickers](../types/messages.ArchivedStickers.md)
|
||
|
|
||
|
|
||
|
### Example:
|
||
|
|
||
|
```php
|
||
|
$messages.archivedStickers = ['_' => 'messages.archivedStickers', 'count' => int, 'sets' => [StickerSetCovered, StickerSetCovered]];
|
||
|
```
|
||
|
|
||
|
|
||
|
Or, if you're into Lua:
|
||
|
|
||
|
```lua
|
||
|
messages.archivedStickers={_='messages.archivedStickers', count=int, sets={StickerSetCovered}}
|
||
|
|
||
|
```
|
||
|
|
||
|
|