MadelineProto/docs/TD_docs/constructors/updateNotificationSettings.md
2017-07-23 16:33:46 +02:00

1.2 KiB

title description
updateNotificationSettings Notification settings for some chats was updated

Constructor: updateNotificationSettings

Back to constructors index

Notification settings for some chats was updated

Attributes:

Name Type Required Description
scope NotificationSettingsScope Yes Kinds of chats for which notification settings was updated
notification_settings notificationSettings Yes New notification settings

Type: Update

Example:

$updateNotificationSettings = ['_' => 'updateNotificationSettings', 'scope' => NotificationSettingsScope, 'notification_settings' => notificationSettings];

PWRTelegram json-encoded version:

{"_": "updateNotificationSettings", "scope": NotificationSettingsScope, "notification_settings": notificationSettings}

Or, if you're into Lua:

updateNotificationSettings={_='updateNotificationSettings', scope=NotificationSettingsScope, notification_settings=notificationSettings}