import type { app_instance_InstallNotificationSurfaceDefaults } from './app_instance_InstallNotificationSurfaceDefaults'; export type app_instance_InstallNotificationSettingDeltaInput = { /** * Default, when present, replaces the setting's per-internal-user default delivery state. */ default?: app_instance_InstallNotificationSurfaceDefaults; /** * ID targets an existing setting to update or delete. Leave it empty to add a new setting — * new settings are always assigned a generated id. */ id?: string; /** * Label, when present, replaces the setting's label. Required when adding a setting. */ label?: string; /** * Surfaces, when present, replaces the setting's delivery channels. Required when adding a * setting. */ surfaces?: Array<'product' | 'email'>; };