import type { app_instance_InstallNotificationActionLabel } from './app_instance_InstallNotificationActionLabel'; import type { app_instance_InstallNotificationSetting } from './app_instance_InstallNotificationSetting'; export type app_instance_InstallNotificationSettings = { /** * ActionLabel is the app's generic "[verb] [count] [noun]" label, present only when declared. */ actionLabel?: app_instance_InstallNotificationActionLabel; /** * Notifications is every notification setting the app exposes for this install. Empty when the * install's backing app declares no settings. A setting's `id` is the value to pass as * `notificationSettingId` when creating a notification via POST /v1/notifications. If the * recipient's preferences disable every requested delivery target for a setting, that POST * creates nothing and returns 202. */ notifications?: Array; object?: string; };