blob: 68364e804b1a2fa71d4815ec306a1335ea033a21 (
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
|
// Code generated by msgraph.go/gen DO NOT EDIT.
package msgraph
// Platform undocumented
type Platform string
const (
// PlatformVUnknown undocumented
PlatformVUnknown Platform = "unknown"
// PlatformVIOS undocumented
PlatformVIOS Platform = "ios"
// PlatformVAndroid undocumented
PlatformVAndroid Platform = "android"
// PlatformVWindows undocumented
PlatformVWindows Platform = "windows"
// PlatformVWindowsMobile undocumented
PlatformVWindowsMobile Platform = "windowsMobile"
// PlatformVMacOS undocumented
PlatformVMacOS Platform = "macOS"
)
var (
// PlatformPUnknown is a pointer to PlatformVUnknown
PlatformPUnknown = &_PlatformPUnknown
// PlatformPIOS is a pointer to PlatformVIOS
PlatformPIOS = &_PlatformPIOS
// PlatformPAndroid is a pointer to PlatformVAndroid
PlatformPAndroid = &_PlatformPAndroid
// PlatformPWindows is a pointer to PlatformVWindows
PlatformPWindows = &_PlatformPWindows
// PlatformPWindowsMobile is a pointer to PlatformVWindowsMobile
PlatformPWindowsMobile = &_PlatformPWindowsMobile
// PlatformPMacOS is a pointer to PlatformVMacOS
PlatformPMacOS = &_PlatformPMacOS
)
var (
_PlatformPUnknown = PlatformVUnknown
_PlatformPIOS = PlatformVIOS
_PlatformPAndroid = PlatformVAndroid
_PlatformPWindows = PlatformVWindows
_PlatformPWindowsMobile = PlatformVWindowsMobile
_PlatformPMacOS = PlatformVMacOS
)
|