export interface EnrollmentSettings { is_authentication_handling_available: boolean; selected_ad?: string; directory_authentication?: string; auth_mode: number; email_unmanaged_alerts: string; notify_device_unmanaged: boolean; is_ad_integrated: boolean; } export interface EnrollmentSettingsUpdateRequest { auth_mode: number; email_unmanaged_alerts: string; notify_device_unmanaged: boolean; } export interface InactiveDevicePolicySettings { action_type: number; action_threshold: number; inactive_threshold: number; } export interface EnrollmentSettingsResponse { status: string; }