mirror of
https://github.com/cwinfo/matterbridge.git
synced 2024-11-10 14:30:26 +00:00
795a8705c3
Documentation on https://github.com/42wim/matterbridge/wiki/MS-Teams-setup
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
|
|
}
|