mirror of
https://github.com/42wim/matterbridge.git
synced 2024-11-28 13:42:01 -08:00
22 lines
701 B
Go
22 lines
701 B
Go
|
// Code generated by msgraph-generate.go DO NOT EDIT.
|
||
|
|
||
|
package msgraph
|
||
|
|
||
|
// DetectedSensitiveContent undocumented
|
||
|
type DetectedSensitiveContent struct {
|
||
|
// Object is the base model of DetectedSensitiveContent
|
||
|
Object
|
||
|
// ID undocumented
|
||
|
ID *UUID `json:"id,omitempty"`
|
||
|
// DisplayName undocumented
|
||
|
DisplayName *string `json:"displayName,omitempty"`
|
||
|
// UniqueCount undocumented
|
||
|
UniqueCount *int `json:"uniqueCount,omitempty"`
|
||
|
// Confidence undocumented
|
||
|
Confidence *int `json:"confidence,omitempty"`
|
||
|
// RecommendedConfidence undocumented
|
||
|
RecommendedConfidence *int `json:"recommendedConfidence,omitempty"`
|
||
|
// Matches undocumented
|
||
|
Matches []SensitiveContentLocation `json:"matches,omitempty"`
|
||
|
}
|