mirror of
https://github.com/cwinfo/matterbridge.git
synced 2024-11-10 15:40:30 +00:00
795a8705c3
Documentation on https://github.com/42wim/matterbridge/wiki/MS-Teams-setup
28 lines
1.2 KiB
Go
28 lines
1.2 KiB
Go
// Code generated by msgraph-generate.go DO NOT EDIT.
|
|
|
|
package msgraph
|
|
|
|
import "time"
|
|
|
|
// DeviceConfigurationDeviceStatus undocumented
|
|
type DeviceConfigurationDeviceStatus struct {
|
|
// Entity is the base model of DeviceConfigurationDeviceStatus
|
|
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"`
|
|
}
|