Link Search Menu Expand Document

Method: account.saveAutoSaveSettings

Back to methods index

Modify autosave settings

Parameters:

NameTypeDescriptionRequired
usersBoolWhether the new settings should affect all private chatsOptional
chatsBoolWhether the new settings should affect all groupsOptional
broadcastsBoolWhether the new settings should affect all channelsOptional
peerUsername, chat ID, Update, Message or InputPeerWhether the new settings should affect a specific peerOptional
settingsAutoSaveSettingsThe new autosave settingsYes

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->saveAutoSaveSettings(users: $Bool, chats: $Bool, broadcasts: $Bool, peer: $InputPeer, settings: $AutoSaveSettings, );