summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/matterbridge/msgraph.go/beta/RestrictionActionEnum.go
blob: b0a8efb630f5cd05c8d8ad27a2dbbbdde4ce25af (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

// RestrictionAction undocumented
type RestrictionAction int

const (
	// RestrictionActionVWarn undocumented
	RestrictionActionVWarn RestrictionAction = 0
	// RestrictionActionVAudit undocumented
	RestrictionActionVAudit RestrictionAction = 1
	// RestrictionActionVBlock undocumented
	RestrictionActionVBlock RestrictionAction = 2
)

// RestrictionActionPWarn returns a pointer to RestrictionActionVWarn
func RestrictionActionPWarn() *RestrictionAction {
	v := RestrictionActionVWarn
	return &v
}

// RestrictionActionPAudit returns a pointer to RestrictionActionVAudit
func RestrictionActionPAudit() *RestrictionAction {
	v := RestrictionActionVAudit
	return &v
}

// RestrictionActionPBlock returns a pointer to RestrictionActionVBlock
func RestrictionActionPBlock() *RestrictionAction {
	v := RestrictionActionVBlock
	return &v
}