/* generated using openapi-typescript-codegen -- do not edit */ /* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ /** * Serializer for available notification types with user preferences. */ export type AvailableNotificationType = { /** * Notification type identifier */ type: string; /** * Human-readable name */ name: string; /** * Description of the notification type */ description: string; /** * Tags from the notification template */ tags?: Array; /** * Whether this type is enabled for the platform */ is_enabled: boolean; /** * User's per-type preference (enabled, frequency) */ user_preference?: Record; };