blob: bcb593f58cb44f930d0944b7351aac744e4f916d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
// Code generated by msgraph-generate.go DO NOT EDIT.
package msgraph
// MacOSMinimumOperatingSystem undocumented
type MacOSMinimumOperatingSystem struct {
// Object is the base model of MacOSMinimumOperatingSystem
Object
// V10_7 Mac OS 10.7 or later.
V10_7 *bool `json:"v10_7,omitempty"`
// V10_8 Mac OS 10.8 or later.
V10_8 *bool `json:"v10_8,omitempty"`
// V10_9 Mac OS 10.9 or later.
V10_9 *bool `json:"v10_9,omitempty"`
// V10_10 Mac OS 10.10 or later.
V10_10 *bool `json:"v10_10,omitempty"`
// V10_11 Mac OS 10.11 or later.
V10_11 *bool `json:"v10_11,omitempty"`
// V10_12 Mac OS 10.12 or later.
V10_12 *bool `json:"v10_12,omitempty"`
// V10_13 Mac OS 10.13 or later.
V10_13 *bool `json:"v10_13,omitempty"`
// V10_14 Mac OS 10.14 or later.
V10_14 *bool `json:"v10_14,omitempty"`
// V10_15 Mac OS 10.15 or later.
V10_15 *bool `json:"v10_15,omitempty"`
}
|