5
0
mirror of https://github.com/cwinfo/matterbridge.git synced 2024-11-10 14:30:26 +00:00
matterbridge/vendor/github.com/yaegashi/msgraph.go/beta/DlpActionEnum.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
}