blob: 1af64d518bd1ac2a4191ece0763b19ae46ab8e0b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
// Code generated by msgraph-generate.go DO NOT EDIT.
package msgraph
// UserInstallStateSummary Contains properties for the installation state summary for a user.
type UserInstallStateSummary struct {
// Entity is the base model of UserInstallStateSummary
Entity
// UserName User name.
UserName *string `json:"userName,omitempty"`
// InstalledDeviceCount Installed Device Count.
InstalledDeviceCount *int `json:"installedDeviceCount,omitempty"`
// FailedDeviceCount Failed Device Count.
FailedDeviceCount *int `json:"failedDeviceCount,omitempty"`
// NotInstalledDeviceCount Not installed device count.
NotInstalledDeviceCount *int `json:"notInstalledDeviceCount,omitempty"`
// DeviceStates undocumented
DeviceStates []DeviceInstallState `json:"deviceStates,omitempty"`
}
|