github.com/yaegashi/msgraph.go@v0.1.4/v1.0/ModelSetting.go (about)

     1  // Code generated by msgraph.go/gen DO NOT EDIT.
     2  
     3  package msgraph
     4  
     5  // SettingSource undocumented
     6  type SettingSource struct {
     7  	// Object is the base model of SettingSource
     8  	Object
     9  	// ID undocumented
    10  	ID *string `json:"id,omitempty"`
    11  	// DisplayName undocumented
    12  	DisplayName *string `json:"displayName,omitempty"`
    13  }
    14  
    15  // SettingStateDeviceSummary Device Compilance Policy and Configuration for a Setting State summary
    16  type SettingStateDeviceSummary struct {
    17  	// Entity is the base model of SettingStateDeviceSummary
    18  	Entity
    19  	// SettingName Name of the setting
    20  	SettingName *string `json:"settingName,omitempty"`
    21  	// InstancePath Name of the InstancePath for the setting
    22  	InstancePath *string `json:"instancePath,omitempty"`
    23  	// UnknownDeviceCount Device Unkown count for the setting
    24  	UnknownDeviceCount *int `json:"unknownDeviceCount,omitempty"`
    25  	// NotApplicableDeviceCount Device Not Applicable count for the setting
    26  	NotApplicableDeviceCount *int `json:"notApplicableDeviceCount,omitempty"`
    27  	// CompliantDeviceCount Device Compliant count for the setting
    28  	CompliantDeviceCount *int `json:"compliantDeviceCount,omitempty"`
    29  	// RemediatedDeviceCount Device Compliant count for the setting
    30  	RemediatedDeviceCount *int `json:"remediatedDeviceCount,omitempty"`
    31  	// NonCompliantDeviceCount Device NonCompliant count for the setting
    32  	NonCompliantDeviceCount *int `json:"nonCompliantDeviceCount,omitempty"`
    33  	// ErrorDeviceCount Device error count for the setting
    34  	ErrorDeviceCount *int `json:"errorDeviceCount,omitempty"`
    35  	// ConflictDeviceCount Device conflict error count for the setting
    36  	ConflictDeviceCount *int `json:"conflictDeviceCount,omitempty"`
    37  }
    38  
    39  // SettingTemplateValue undocumented
    40  type SettingTemplateValue struct {
    41  	// Object is the base model of SettingTemplateValue
    42  	Object
    43  	// Name undocumented
    44  	Name *string `json:"name,omitempty"`
    45  	// Type undocumented
    46  	Type *string `json:"type,omitempty"`
    47  	// DefaultValue undocumented
    48  	DefaultValue *string `json:"defaultValue,omitempty"`
    49  	// Description undocumented
    50  	Description *string `json:"description,omitempty"`
    51  }
    52  
    53  // SettingValue undocumented
    54  type SettingValue struct {
    55  	// Object is the base model of SettingValue
    56  	Object
    57  	// Name undocumented
    58  	Name *string `json:"name,omitempty"`
    59  	// Value undocumented
    60  	Value *string `json:"value,omitempty"`
    61  }