5
0
mirror of https://github.com/cwinfo/matterbridge.git synced 2024-09-20 17:12:31 +00:00
matterbridge/vendor/github.com/yaegashi/msgraph.go/beta/RestrictionActionEnum.go

34 lines
906 B
Go

// 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
}