mirror of
https://github.com/cwinfo/matterbridge.git
synced 2024-11-27 02:01:35 +00:00
58 lines
2.4 KiB
Go
58 lines
2.4 KiB
Go
|
// Code generated by msgraph-generate.go DO NOT EDIT.
|
||
|
|
||
|
package msgraph
|
||
|
|
||
|
// ConditionalAccessDevicePlatform undocumented
|
||
|
type ConditionalAccessDevicePlatform int
|
||
|
|
||
|
const (
|
||
|
// ConditionalAccessDevicePlatformVAndroid undocumented
|
||
|
ConditionalAccessDevicePlatformVAndroid ConditionalAccessDevicePlatform = 0
|
||
|
// ConditionalAccessDevicePlatformVIOS undocumented
|
||
|
ConditionalAccessDevicePlatformVIOS ConditionalAccessDevicePlatform = 1
|
||
|
// ConditionalAccessDevicePlatformVWindows undocumented
|
||
|
ConditionalAccessDevicePlatformVWindows ConditionalAccessDevicePlatform = 2
|
||
|
// ConditionalAccessDevicePlatformVWindowsPhone undocumented
|
||
|
ConditionalAccessDevicePlatformVWindowsPhone ConditionalAccessDevicePlatform = 3
|
||
|
// ConditionalAccessDevicePlatformVMacOS undocumented
|
||
|
ConditionalAccessDevicePlatformVMacOS ConditionalAccessDevicePlatform = 4
|
||
|
// ConditionalAccessDevicePlatformVAll undocumented
|
||
|
ConditionalAccessDevicePlatformVAll ConditionalAccessDevicePlatform = 5
|
||
|
)
|
||
|
|
||
|
// ConditionalAccessDevicePlatformPAndroid returns a pointer to ConditionalAccessDevicePlatformVAndroid
|
||
|
func ConditionalAccessDevicePlatformPAndroid() *ConditionalAccessDevicePlatform {
|
||
|
v := ConditionalAccessDevicePlatformVAndroid
|
||
|
return &v
|
||
|
}
|
||
|
|
||
|
// ConditionalAccessDevicePlatformPIOS returns a pointer to ConditionalAccessDevicePlatformVIOS
|
||
|
func ConditionalAccessDevicePlatformPIOS() *ConditionalAccessDevicePlatform {
|
||
|
v := ConditionalAccessDevicePlatformVIOS
|
||
|
return &v
|
||
|
}
|
||
|
|
||
|
// ConditionalAccessDevicePlatformPWindows returns a pointer to ConditionalAccessDevicePlatformVWindows
|
||
|
func ConditionalAccessDevicePlatformPWindows() *ConditionalAccessDevicePlatform {
|
||
|
v := ConditionalAccessDevicePlatformVWindows
|
||
|
return &v
|
||
|
}
|
||
|
|
||
|
// ConditionalAccessDevicePlatformPWindowsPhone returns a pointer to ConditionalAccessDevicePlatformVWindowsPhone
|
||
|
func ConditionalAccessDevicePlatformPWindowsPhone() *ConditionalAccessDevicePlatform {
|
||
|
v := ConditionalAccessDevicePlatformVWindowsPhone
|
||
|
return &v
|
||
|
}
|
||
|
|
||
|
// ConditionalAccessDevicePlatformPMacOS returns a pointer to ConditionalAccessDevicePlatformVMacOS
|
||
|
func ConditionalAccessDevicePlatformPMacOS() *ConditionalAccessDevicePlatform {
|
||
|
v := ConditionalAccessDevicePlatformVMacOS
|
||
|
return &v
|
||
|
}
|
||
|
|
||
|
// ConditionalAccessDevicePlatformPAll returns a pointer to ConditionalAccessDevicePlatformVAll
|
||
|
func ConditionalAccessDevicePlatformPAll() *ConditionalAccessDevicePlatform {
|
||
|
v := ConditionalAccessDevicePlatformVAll
|
||
|
return &v
|
||
|
}
|