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.1 KiB
Go
34 lines
1.1 KiB
Go
// Code generated by msgraph-generate.go DO NOT EDIT.
|
|
|
|
package msgraph
|
|
|
|
// WindowsSModeConfiguration undocumented
|
|
type WindowsSModeConfiguration int
|
|
|
|
const (
|
|
// WindowsSModeConfigurationVNoRestriction undocumented
|
|
WindowsSModeConfigurationVNoRestriction WindowsSModeConfiguration = 0
|
|
// WindowsSModeConfigurationVBlock undocumented
|
|
WindowsSModeConfigurationVBlock WindowsSModeConfiguration = 1
|
|
// WindowsSModeConfigurationVUnlock undocumented
|
|
WindowsSModeConfigurationVUnlock WindowsSModeConfiguration = 2
|
|
)
|
|
|
|
// WindowsSModeConfigurationPNoRestriction returns a pointer to WindowsSModeConfigurationVNoRestriction
|
|
func WindowsSModeConfigurationPNoRestriction() *WindowsSModeConfiguration {
|
|
v := WindowsSModeConfigurationVNoRestriction
|
|
return &v
|
|
}
|
|
|
|
// WindowsSModeConfigurationPBlock returns a pointer to WindowsSModeConfigurationVBlock
|
|
func WindowsSModeConfigurationPBlock() *WindowsSModeConfiguration {
|
|
v := WindowsSModeConfigurationVBlock
|
|
return &v
|
|
}
|
|
|
|
// WindowsSModeConfigurationPUnlock returns a pointer to WindowsSModeConfigurationVUnlock
|
|
func WindowsSModeConfigurationPUnlock() *WindowsSModeConfiguration {
|
|
v := WindowsSModeConfigurationVUnlock
|
|
return &v
|
|
}
|