import type { BlankEnum } from './BlankEnum'; import type { Status3daEnum } from './Status3daEnum'; export type PatchedNotification = { readonly id?: string; readonly username?: string | null; readonly title?: string; readonly body?: string; status?: (Status3daEnum | BlankEnum); readonly channel?: string | null; context?: any; readonly short_message?: string; readonly tags?: Array; created_at?: string; readonly updated_at?: string; };