MadelineProtoDocs/docs/API_docs/methods/messages.toggleStickerSets.md

50 lines
1.6 KiB
Markdown
Raw Normal View History

2020-03-06 13:09:28 +01:00
---
title: messages.toggleStickerSets
2020-06-16 17:50:25 +02:00
description: Apply changes to multiple stickersets
2020-03-06 13:09:28 +01:00
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
redirect_from: /API_docs/methods/messages_toggleStickerSets.html
---
2020-06-16 17:50:25 +02:00
# Method: messages.toggleStickerSets
2020-03-06 13:09:28 +01:00
[Back to methods index](index.md)
2020-06-16 17:50:25 +02:00
Apply changes to multiple stickersets
2020-03-06 13:09:28 +01:00
### Parameters:
2020-06-16 17:50:25 +02:00
| Name | Type | Description | Required |
|----------|---------------|-------------|----------|
|uninstall|[Bool](../types/Bool.md) | Uninstall the specified stickersets | Optional|
|archive|[Bool](../types/Bool.md) | Archive the specified stickersets | Optional|
|unarchive|[Bool](../types/Bool.md) | Unarchive the specified stickersets | Optional|
|stickersets|Array of [InputStickerSet](../types/InputStickerSet.md) | Stickersets to act upon | Yes|
2020-03-06 13:09:28 +01:00
### Return type: [Bool](../types/Bool.md)
2020-06-16 17:50:25 +02:00
### Can bots use this method: **NO**
2020-03-06 13:09:28 +01:00
### MadelineProto Example ([now async for huge speed and parallelism!](https://docs.madelineproto.xyz/docs/ASYNC.html)):
```php
if (!file_exists('madeline.php')) {
copy('https://phar.madelineproto.xyz/madeline.php', 'madeline.php');
}
include 'madeline.php';
$MadelineProto = new \danog\MadelineProto\API('session.madeline');
$MadelineProto->start();
$Bool = $MadelineProto->messages->toggleStickerSets(['uninstall' => Bool, 'archive' => Bool, 'unarchive' => Bool, 'stickersets' => [InputStickerSet, InputStickerSet], ]);
```
Or, if you're into Lua:
```lua
Bool = messages.toggleStickerSets({uninstall=Bool, archive=Bool, unarchive=Bool, stickersets={InputStickerSet}, })
```