[][src]Struct graph_rs_types::entitytypes::ManagedDevice

pub struct ManagedDevice {
    pub user_id: String,
    pub device_name: String,
    pub managed_device_owner_type: ManagedDeviceOwnerType,
    pub device_action_results: Vec<DeviceActionResult>,
    pub enrolled_date_time: String,
    pub last_sync_date_time: String,
    pub operating_system: String,
    pub compliance_state: ComplianceState,
    pub jail_broken: String,
    pub management_agent: ManagementAgentType,
    pub os_version: String,
    pub eas_activated: bool,
    pub eas_device_id: String,
    pub eas_activation_date_time: String,
    pub azure_a_d_registered: bool,
    pub device_enrollment_type: DeviceEnrollmentType,
    pub activation_lock_bypass_code: String,
    pub email_address: String,
    pub azure_a_d_device_id: String,
    pub device_registration_state: DeviceRegistrationState,
    pub device_category_display_name: String,
    pub is_supervised: bool,
    pub exchange_last_successful_sync_date_time: String,
    pub exchange_access_state: DeviceManagementExchangeAccessState,
    pub exchange_access_state_reason: DeviceManagementExchangeAccessStateReason,
    pub remote_assistance_session_url: String,
    pub remote_assistance_session_error_details: String,
    pub is_encrypted: bool,
    pub user_principal_name: String,
    pub model: String,
    pub manufacturer: String,
    pub imei: String,
    pub compliance_grace_period_expiration_date_time: String,
    pub serial_number: String,
    pub phone_number: String,
    pub android_security_patch_level: String,
    pub user_display_name: String,
    pub configuration_manager_client_enabled_features: ConfigurationManagerClientEnabledFeatures,
    pub wi_fi_mac_address: String,
    pub device_health_attestation_state: DeviceHealthAttestationState,
    pub subscriber_carrier: String,
    pub meid: String,
    pub total_storage_space_in_bytes: i64,
    pub free_storage_space_in_bytes: i64,
    pub managed_device_name: String,
    pub partner_reported_threat_state: ManagedDevicePartnerReportedHealthState,
    pub device_configuration_states: Vec<DeviceConfigurationState>,
    pub device_category: DeviceCategory,
    pub device_compliance_policy_states: Vec<DeviceCompliancePolicyState>,
}

Fields

user_id: Stringdevice_name: Stringmanaged_device_owner_type: ManagedDeviceOwnerTypedevice_action_results: Vec<DeviceActionResult>enrolled_date_time: Stringlast_sync_date_time: Stringoperating_system: Stringcompliance_state: ComplianceStatejail_broken: Stringmanagement_agent: ManagementAgentTypeos_version: Stringeas_activated: booleas_device_id: Stringeas_activation_date_time: Stringazure_a_d_registered: booldevice_enrollment_type: DeviceEnrollmentTypeactivation_lock_bypass_code: Stringemail_address: Stringazure_a_d_device_id: Stringdevice_registration_state: DeviceRegistrationStatedevice_category_display_name: Stringis_supervised: boolexchange_last_successful_sync_date_time: Stringexchange_access_state: DeviceManagementExchangeAccessStateexchange_access_state_reason: DeviceManagementExchangeAccessStateReasonremote_assistance_session_url: Stringremote_assistance_session_error_details: Stringis_encrypted: booluser_principal_name: Stringmodel: Stringmanufacturer: Stringimei: Stringcompliance_grace_period_expiration_date_time: Stringserial_number: Stringphone_number: Stringandroid_security_patch_level: Stringuser_display_name: Stringconfiguration_manager_client_enabled_features: ConfigurationManagerClientEnabledFeatureswi_fi_mac_address: Stringdevice_health_attestation_state: DeviceHealthAttestationStatesubscriber_carrier: Stringmeid: Stringtotal_storage_space_in_bytes: i64free_storage_space_in_bytes: i64managed_device_name: Stringpartner_reported_threat_state: ManagedDevicePartnerReportedHealthStatedevice_configuration_states: Vec<DeviceConfigurationState>device_category: DeviceCategorydevice_compliance_policy_states: Vec<DeviceCompliancePolicyState>

Trait Implementations

impl Eq for ManagedDevice[src]

impl Clone for ManagedDevice[src]

impl PartialEq<ManagedDevice> for ManagedDevice[src]

impl Debug for ManagedDevice[src]

impl Serialize for ManagedDevice[src]

impl<'de> Deserialize<'de> for ManagedDevice[src]

Auto Trait Implementations

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]