manageengine-mdm
Version:
A TypeScript wrapper for the ManageEngine Mobile Device Manager Plus API
23 lines (22 loc) • 639 B
TypeScript
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;
}