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