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