diff options
Diffstat (limited to 'vendor/github.com/matterbridge/msgraph.go/beta/PlatformEnum.go')
-rw-r--r-- | vendor/github.com/matterbridge/msgraph.go/beta/PlatformEnum.go | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/vendor/github.com/matterbridge/msgraph.go/beta/PlatformEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/PlatformEnum.go new file mode 100644 index 00000000..72d725e2 --- /dev/null +++ b/vendor/github.com/matterbridge/msgraph.go/beta/PlatformEnum.go @@ -0,0 +1,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 +} |