blob: 885a1fd80b46750f8ba76434bdd1c2c406e30373 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
// Code generated by msgraph-generate.go DO NOT EDIT.
package msgraph
// SensitiveContentEvidence undocumented
type SensitiveContentEvidence struct {
// Object is the base model of SensitiveContentEvidence
Object
// Match undocumented
Match *string `json:"match,omitempty"`
// Offset undocumented
Offset *int `json:"offset,omitempty"`
// Length undocumented
Length *int `json:"length,omitempty"`
}
// SensitiveContentLocation undocumented
type SensitiveContentLocation struct {
// Object is the base model of SensitiveContentLocation
Object
// IDMatch undocumented
IDMatch *string `json:"idMatch,omitempty"`
// Offset undocumented
Offset *int `json:"offset,omitempty"`
// Length undocumented
Length *int `json:"length,omitempty"`
// Evidences undocumented
Evidences []SensitiveContentEvidence `json:"evidences,omitempty"`
}
// SensitiveType undocumented
type SensitiveType struct {
// Entity is the base model of SensitiveType
Entity
// Name undocumented
Name *string `json:"name,omitempty"`
// Description undocumented
Description *string `json:"description,omitempty"`
// RulePackageID undocumented
RulePackageID *string `json:"rulePackageId,omitempty"`
// RulePackageType undocumented
RulePackageType *string `json:"rulePackageType,omitempty"`
// PublisherName undocumented
PublisherName *string `json:"publisherName,omitempty"`
// State undocumented
State *string `json:"state,omitempty"`
}
|