import type { app_instance_InstallNotificationSurfaceDefaults } from './app_instance_InstallNotificationSurfaceDefaults'; export type app_instance_InstallNotificationSetting = { /** * Default is the per-internal-user default delivery state for each surface. */ default?: app_instance_InstallNotificationSurfaceDefaults; /** * ID is the stable identifier to pass as `notificationSettingId` when creating a notification. */ id?: string; /** * Label is the human-readable name shown to internal users. */ label?: string; /** * Surfaces are the delivery channels this setting supports. */ surfaces?: Array<'product' | 'email'>; };