blob: 72d725e23a1c43a7a33714bc6ef3e03b83599f01 (
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
// Code generated by msgraph-generate.go DO NOT EDIT.
package msgraph
// Platform undocumented
type Platform int
const (
// PlatformVUnknown undocumented
PlatformVUnknown Platform = 0
// PlatformVIOS undocumented
PlatformVIOS Platform = 1
// PlatformVAndroid undocumented
PlatformVAndroid Platform = 2
// PlatformVWindows undocumented
PlatformVWindows Platform = 3
// PlatformVWindowsMobile undocumented
PlatformVWindowsMobile Platform = 4
// PlatformVMacOS undocumented
PlatformVMacOS Platform = 5
)
// PlatformPUnknown returns a pointer to PlatformVUnknown
func PlatformPUnknown() *Platform {
v := PlatformVUnknown
return &v
}
// PlatformPIOS returns a pointer to PlatformVIOS
func PlatformPIOS() *Platform {
v := PlatformVIOS
return &v
}
// PlatformPAndroid returns a pointer to PlatformVAndroid
func PlatformPAndroid() *Platform {
v := PlatformVAndroid
return &v
}
// PlatformPWindows returns a pointer to PlatformVWindows
func PlatformPWindows() *Platform {
v := PlatformVWindows
return &v
}
// PlatformPWindowsMobile returns a pointer to PlatformVWindowsMobile
func PlatformPWindowsMobile() *Platform {
v := PlatformVWindowsMobile
return &v
}
// PlatformPMacOS returns a pointer to PlatformVMacOS
func PlatformPMacOS() *Platform {
v := PlatformVMacOS
return &v
}
|