mirror of
https://github.com/cwinfo/matterbridge.git
synced 2024-11-10 15:40:30 +00:00
42 lines
1.4 KiB
Go
42 lines
1.4 KiB
Go
|
// Code generated by msgraph-generate.go DO NOT EDIT.
|
||
|
|
||
|
package msgraph
|
||
|
|
||
|
// OverrideOption undocumented
|
||
|
type OverrideOption int
|
||
|
|
||
|
const (
|
||
|
// OverrideOptionVNotAllowed undocumented
|
||
|
OverrideOptionVNotAllowed OverrideOption = 0
|
||
|
// OverrideOptionVAllowFalsePositiveOverride undocumented
|
||
|
OverrideOptionVAllowFalsePositiveOverride OverrideOption = 1
|
||
|
// OverrideOptionVAllowWithJustification undocumented
|
||
|
OverrideOptionVAllowWithJustification OverrideOption = 2
|
||
|
// OverrideOptionVAllowWithoutJustification undocumented
|
||
|
OverrideOptionVAllowWithoutJustification OverrideOption = 4
|
||
|
)
|
||
|
|
||
|
// OverrideOptionPNotAllowed returns a pointer to OverrideOptionVNotAllowed
|
||
|
func OverrideOptionPNotAllowed() *OverrideOption {
|
||
|
v := OverrideOptionVNotAllowed
|
||
|
return &v
|
||
|
}
|
||
|
|
||
|
// OverrideOptionPAllowFalsePositiveOverride returns a pointer to OverrideOptionVAllowFalsePositiveOverride
|
||
|
func OverrideOptionPAllowFalsePositiveOverride() *OverrideOption {
|
||
|
v := OverrideOptionVAllowFalsePositiveOverride
|
||
|
return &v
|
||
|
}
|
||
|
|
||
|
// OverrideOptionPAllowWithJustification returns a pointer to OverrideOptionVAllowWithJustification
|
||
|
func OverrideOptionPAllowWithJustification() *OverrideOption {
|
||
|
v := OverrideOptionVAllowWithJustification
|
||
|
return &v
|
||
|
}
|
||
|
|
||
|
// OverrideOptionPAllowWithoutJustification returns a pointer to OverrideOptionVAllowWithoutJustification
|
||
|
func OverrideOptionPAllowWithoutJustification() *OverrideOption {
|
||
|
v := OverrideOptionVAllowWithoutJustification
|
||
|
return &v
|
||
|
}
|