github.com/yaegashi/msgraph.go@v0.1.4/v1.0/ModelEnrollment.go (about)

     1  // Code generated by msgraph.go/gen DO NOT EDIT.
     2  
     3  package msgraph
     4  
     5  // EnrollmentConfigurationAssignment undocumented
     6  type EnrollmentConfigurationAssignment struct {
     7  	// Entity is the base model of EnrollmentConfigurationAssignment
     8  	Entity
     9  	// Target undocumented
    10  	Target *DeviceAndAppManagementAssignmentTarget `json:"target,omitempty"`
    11  }
    12  
    13  // EnrollmentTroubleshootingEvent Event representing an enrollment failure.
    14  type EnrollmentTroubleshootingEvent struct {
    15  	// DeviceManagementTroubleshootingEvent is the base model of EnrollmentTroubleshootingEvent
    16  	DeviceManagementTroubleshootingEvent
    17  	// ManagedDeviceIdentifier Device identifier created or collected by Intune.
    18  	ManagedDeviceIdentifier *string `json:"managedDeviceIdentifier,omitempty"`
    19  	// OperatingSystem Operating System.
    20  	OperatingSystem *string `json:"operatingSystem,omitempty"`
    21  	// OsVersion OS Version.
    22  	OsVersion *string `json:"osVersion,omitempty"`
    23  	// UserID Identifier for the user that tried to enroll the device.
    24  	UserID *string `json:"userId,omitempty"`
    25  	// DeviceID Azure AD device identifier.
    26  	DeviceID *string `json:"deviceId,omitempty"`
    27  	// EnrollmentType Type of the enrollment.
    28  	EnrollmentType *DeviceEnrollmentType `json:"enrollmentType,omitempty"`
    29  	// FailureCategory Highlevel failure category.
    30  	FailureCategory *DeviceEnrollmentFailureReason `json:"failureCategory,omitempty"`
    31  	// FailureReason Detailed failure reason.
    32  	FailureReason *string `json:"failureReason,omitempty"`
    33  }