mirror of
https://github.com/cwinfo/matterbridge.git
synced 2024-11-10 15:40:30 +00:00
34 lines
906 B
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
|
||
|
}
|