mirror of
https://github.com/cwinfo/matterbridge.git
synced 2024-11-30 08:31:36 +00:00
18 lines
633 B
Go
18 lines
633 B
Go
|
// Code generated by msgraph-generate.go DO NOT EDIT.
|
||
|
|
||
|
package msgraph
|
||
|
|
||
|
import "time"
|
||
|
|
||
|
// ConfigurationManagerClientHealthState undocumented
|
||
|
type ConfigurationManagerClientHealthState struct {
|
||
|
// Object is the base model of ConfigurationManagerClientHealthState
|
||
|
Object
|
||
|
// State Current configuration manager client state.
|
||
|
State *ConfigurationManagerClientState `json:"state,omitempty"`
|
||
|
// ErrorCode Error code for failed state.
|
||
|
ErrorCode *int `json:"errorCode,omitempty"`
|
||
|
// LastSyncDateTime Datetime fo last sync with configuration manager management point.
|
||
|
LastSyncDateTime *time.Time `json:"lastSyncDateTime,omitempty"`
|
||
|
}
|