import type { app_instance_InstallNotificationActionLabel } from './app_instance_InstallNotificationActionLabel'; import type { app_instance_InstallNotificationSettingDeltaInput } from './app_instance_InstallNotificationSettingDeltaInput'; export type app_instance_InstallNotificationSettingsPatchInput = { /** * ActionLabel, when present, replaces the app's action label. Send an empty object to clear * it; omit the field to leave it unchanged. */ actionLabel?: app_instance_InstallNotificationActionLabel; /** * Notifications is a list of per-setting deltas: an entry without an id adds a new setting, an * entry with an id and no other fields deletes that setting, and an entry with an id plus * fields updates the provided fields of that setting. */ notifications?: Array; };