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
26 lines
782 B
Go
26 lines
782 B
Go
// Code generated by msgraph-generate.go DO NOT EDIT.
|
|
|
|
package msgraph
|
|
|
|
// ThreatAssessmentStatus undocumented
|
|
type ThreatAssessmentStatus int
|
|
|
|
const (
|
|
// ThreatAssessmentStatusVPending undocumented
|
|
ThreatAssessmentStatusVPending ThreatAssessmentStatus = 1
|
|
// ThreatAssessmentStatusVCompleted undocumented
|
|
ThreatAssessmentStatusVCompleted ThreatAssessmentStatus = 2
|
|
)
|
|
|
|
// ThreatAssessmentStatusPPending returns a pointer to ThreatAssessmentStatusVPending
|
|
func ThreatAssessmentStatusPPending() *ThreatAssessmentStatus {
|
|
v := ThreatAssessmentStatusVPending
|
|
return &v
|
|
}
|
|
|
|
// ThreatAssessmentStatusPCompleted returns a pointer to ThreatAssessmentStatusVCompleted
|
|
func ThreatAssessmentStatusPCompleted() *ThreatAssessmentStatus {
|
|
v := ThreatAssessmentStatusVCompleted
|
|
return &v
|
|
}
|