mirror of
https://github.com/42wim/matterbridge.git
synced 2024-12-01 07:02:00 -08:00
34 lines
842 B
Go
34 lines
842 B
Go
|
// Code generated by msgraph-generate.go DO NOT EDIT.
|
||
|
|
||
|
package msgraph
|
||
|
|
||
|
// DlpAction undocumented
|
||
|
type DlpAction int
|
||
|
|
||
|
const (
|
||
|
// DlpActionVNotifyUser undocumented
|
||
|
DlpActionVNotifyUser DlpAction = 0
|
||
|
// DlpActionVBlockAccess undocumented
|
||
|
DlpActionVBlockAccess DlpAction = 1
|
||
|
// DlpActionVDeviceRestriction undocumented
|
||
|
DlpActionVDeviceRestriction DlpAction = 2
|
||
|
)
|
||
|
|
||
|
// DlpActionPNotifyUser returns a pointer to DlpActionVNotifyUser
|
||
|
func DlpActionPNotifyUser() *DlpAction {
|
||
|
v := DlpActionVNotifyUser
|
||
|
return &v
|
||
|
}
|
||
|
|
||
|
// DlpActionPBlockAccess returns a pointer to DlpActionVBlockAccess
|
||
|
func DlpActionPBlockAccess() *DlpAction {
|
||
|
v := DlpActionVBlockAccess
|
||
|
return &v
|
||
|
}
|
||
|
|
||
|
// DlpActionPDeviceRestriction returns a pointer to DlpActionVDeviceRestriction
|
||
|
func DlpActionPDeviceRestriction() *DlpAction {
|
||
|
v := DlpActionVDeviceRestriction
|
||
|
return &v
|
||
|
}
|