mirror of
https://github.com/42wim/matterbridge.git
synced 2024-11-30 22:52:00 -08:00
20 lines
786 B
Go
20 lines
786 B
Go
|
// 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"`
|
||
|
}
|