MadelineProtoDocs/docs/API_docs/methods/messages.toggleStickerSets.md
2020-03-06 13:09:28 +01:00

1.4 KiB

title description image redirect_from
messages.toggleStickerSets messages.toggleStickerSets parameters, return type and example https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png /API_docs/methods/messages_toggleStickerSets.html

Method: messages.toggleStickerSets

Back to methods index

Parameters:

Name Type Required
uninstall Bool Optional
archive Bool Optional
unarchive Bool Optional
stickersets Array of InputStickerSet Yes

Return type: Bool

Can bots use this method: YES

MadelineProto Example (now async for huge speed and parallelism!):

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:

Bool = messages.toggleStickerSets({uninstall=Bool, archive=Bool, unarchive=Bool, stickersets={InputStickerSet}, })