MadelineProtoDocs/docs/API_docs/methods/account_saveAutoDownloadSet...

1.3 KiB

title description image
account.saveAutoDownloadSettings Save autodownload settings https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png

Method: account.saveAutoDownloadSettings

Back to methods index

Save autodownload settings

Parameters:

Name Type Description Required
low Bool Low preset Optional
high Bool High preset Optional
settings AutoDownloadSettings Autodownload settings 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->account->saveAutoDownloadSettings(['low' => Bool, 'high' => Bool, 'settings' => AutoDownloadSettings, ]);

Or, if you're into Lua:

Bool = account.saveAutoDownloadSettings({low=Bool, high=Bool, settings=AutoDownloadSettings, })