summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/matterbridge/msgraph.go/beta/LostModeStateEnum.go
blob: 999265fe6d3861584bdb0bf6ce2f822cf7ba6f19 (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
// Code generated by msgraph-generate.go DO NOT EDIT.

package msgraph

// LostModeState undocumented
type LostModeState int

const (
	// LostModeStateVDisabled undocumented
	LostModeStateVDisabled LostModeState = 0
	// LostModeStateVEnabled undocumented
	LostModeStateVEnabled LostModeState = 1
)

// LostModeStatePDisabled returns a pointer to LostModeStateVDisabled
func LostModeStatePDisabled() *LostModeState {
	v := LostModeStateVDisabled
	return &v
}

// LostModeStatePEnabled returns a pointer to LostModeStateVEnabled
func LostModeStatePEnabled() *LostModeState {
	v := LostModeStateVEnabled
	return &v
}