blob: f15693355863e719a50761cbd53fe2e5f0186cdf (
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
26
27
|
// Code generated by msgraph-generate.go DO NOT EDIT.
package msgraph
import "time"
// DeviceComplianceDeviceStatus undocumented
type DeviceComplianceDeviceStatus struct {
// Entity is the base model of DeviceComplianceDeviceStatus
Entity
// DeviceDisplayName Device name of the DevicePolicyStatus.
DeviceDisplayName *string `json:"deviceDisplayName,omitempty"`
// UserName The User Name that is being reported
UserName *string `json:"userName,omitempty"`
// DeviceModel The device model that is being reported
DeviceModel *string `json:"deviceModel,omitempty"`
// Platform Platform of the device that is being reported
Platform *int `json:"platform,omitempty"`
// ComplianceGracePeriodExpirationDateTime The DateTime when device compliance grace period expires
ComplianceGracePeriodExpirationDateTime *time.Time `json:"complianceGracePeriodExpirationDateTime,omitempty"`
// Status Compliance status of the policy report.
Status *ComplianceStatus `json:"status,omitempty"`
// LastReportedDateTime Last modified date time of the policy report.
LastReportedDateTime *time.Time `json:"lastReportedDateTime,omitempty"`
// UserPrincipalName UserPrincipalName.
UserPrincipalName *string `json:"userPrincipalName,omitempty"`
}
|