Interface UpdateChatNotificationSettings

Notification settings for a chat were changed. Subtype of Update.

interface UpdateChatNotificationSettings {
    @type: "updateChatNotificationSettings";
    chat_id: number;
    notification_settings: ChatNotificationSettings;
}

Properties

@type: "updateChatNotificationSettings"
chat_id: number

Chat identifier.

notification_settings: ChatNotificationSettings

The new notification settings.