5
0
mirror of https://github.com/cwinfo/matterbridge.git synced 2024-11-10 14:30:26 +00:00
matterbridge/vendor/github.com/yaegashi/msgraph.go/beta/WindowsSModeConfigurationEnum.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
}