blob: 74c1fc862bc991a6750ffe2f6548ebdbe4cac3eb (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
// Code generated by msgraph-generate.go DO NOT EDIT.
package msgraph
// DeviceManagementApplicabilityRuleOsVersion undocumented
type DeviceManagementApplicabilityRuleOsVersion struct {
// Object is the base model of DeviceManagementApplicabilityRuleOsVersion
Object
// MinOSVersion Min OS version for Applicability Rule.
MinOSVersion *string `json:"minOSVersion,omitempty"`
// MaxOSVersion Max OS version for Applicability Rule.
MaxOSVersion *string `json:"maxOSVersion,omitempty"`
// Name Name for object.
Name *string `json:"name,omitempty"`
// RuleType Applicability Rule type.
RuleType *DeviceManagementApplicabilityRuleType `json:"ruleType,omitempty"`
}
|