import type { NotificationFrequencyEnum } from './NotificationFrequencyEnum'; /** * Serializer for user notification preferences. */ export type PatchedUserNotificationPreferences = { email_enabled?: boolean; push_enabled?: boolean; notification_frequency?: NotificationFrequencyEnum; /** * Per-type overrides: {"ACTIVITY_NEW_CONTENT": {"enabled": true, "frequency": "daily"}, ...} */ readonly type_preferences?: any; };