mirror of
https://github.com/cwinfo/matterbridge.git
synced 2024-11-10 14:30:26 +00:00
795a8705c3
Documentation on https://github.com/42wim/matterbridge/wiki/MS-Teams-setup
34 lines
1.3 KiB
Go
34 lines
1.3 KiB
Go
// Code generated by msgraph-generate.go DO NOT EDIT.
|
|
|
|
package msgraph
|
|
|
|
// WindowsHelloForBusinessPinUsage undocumented
|
|
type WindowsHelloForBusinessPinUsage int
|
|
|
|
const (
|
|
// WindowsHelloForBusinessPinUsageVAllowed undocumented
|
|
WindowsHelloForBusinessPinUsageVAllowed WindowsHelloForBusinessPinUsage = 0
|
|
// WindowsHelloForBusinessPinUsageVRequired undocumented
|
|
WindowsHelloForBusinessPinUsageVRequired WindowsHelloForBusinessPinUsage = 1
|
|
// WindowsHelloForBusinessPinUsageVDisallowed undocumented
|
|
WindowsHelloForBusinessPinUsageVDisallowed WindowsHelloForBusinessPinUsage = 2
|
|
)
|
|
|
|
// WindowsHelloForBusinessPinUsagePAllowed returns a pointer to WindowsHelloForBusinessPinUsageVAllowed
|
|
func WindowsHelloForBusinessPinUsagePAllowed() *WindowsHelloForBusinessPinUsage {
|
|
v := WindowsHelloForBusinessPinUsageVAllowed
|
|
return &v
|
|
}
|
|
|
|
// WindowsHelloForBusinessPinUsagePRequired returns a pointer to WindowsHelloForBusinessPinUsageVRequired
|
|
func WindowsHelloForBusinessPinUsagePRequired() *WindowsHelloForBusinessPinUsage {
|
|
v := WindowsHelloForBusinessPinUsageVRequired
|
|
return &v
|
|
}
|
|
|
|
// WindowsHelloForBusinessPinUsagePDisallowed returns a pointer to WindowsHelloForBusinessPinUsageVDisallowed
|
|
func WindowsHelloForBusinessPinUsagePDisallowed() *WindowsHelloForBusinessPinUsage {
|
|
v := WindowsHelloForBusinessPinUsageVDisallowed
|
|
return &v
|
|
}
|