summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/yaegashi/msgraph.go/beta/WindowsSModeConfigurationEnum.go
blob: ceab9da551d4c2c6b14262fc91e587a6a3aac51b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
// 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
}