5
0
mirror of https://github.com/cwinfo/matterbridge.git synced 2024-09-20 18:22:30 +00:00
matterbridge/vendor/github.com/yaegashi/msgraph.go/beta/PlatformEnum.go

58 lines
1.3 KiB
Go
Raw Normal View History

// 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
}