summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/yaegashi/msgraph.go/beta/ModelInformation.go
blob: 591270521dedeaa93b8e58f89bb4b87df1a9222e (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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
// Code generated by msgraph.go/gen DO NOT EDIT.

package msgraph

import "time"

// InformationProtection undocumented
type InformationProtection struct {
	// Entity is the base model of InformationProtection
	Entity
	// Policy undocumented
	Policy *InformationProtectionPolicy `json:"policy,omitempty"`
	// SensitivityLabels undocumented
	SensitivityLabels []SensitivityLabel `json:"sensitivityLabels,omitempty"`
	// SensitivityPolicySettings undocumented
	SensitivityPolicySettings *SensitivityPolicySettings `json:"sensitivityPolicySettings,omitempty"`
	// DataLossPreventionPolicies undocumented
	DataLossPreventionPolicies []DataLossPreventionPolicy `json:"dataLossPreventionPolicies,omitempty"`
	// ThreatAssessmentRequests undocumented
	ThreatAssessmentRequests []ThreatAssessmentRequestObject `json:"threatAssessmentRequests,omitempty"`
}

// InformationProtectionAction undocumented
type InformationProtectionAction struct {
	// Object is the base model of InformationProtectionAction
	Object
}

// InformationProtectionContentLabel undocumented
type InformationProtectionContentLabel struct {
	// Object is the base model of InformationProtectionContentLabel
	Object
	// CreationDateTime undocumented
	CreationDateTime *time.Time `json:"creationDateTime,omitempty"`
	// AssignmentMethod undocumented
	AssignmentMethod *AssignmentMethod `json:"assignmentMethod,omitempty"`
	// Label undocumented
	Label *LabelDetails `json:"label,omitempty"`
}

// InformationProtectionLabel undocumented
type InformationProtectionLabel struct {
	// Entity is the base model of InformationProtectionLabel
	Entity
	// Name undocumented
	Name *string `json:"name,omitempty"`
	// Description undocumented
	Description *string `json:"description,omitempty"`
	// Color undocumented
	Color *string `json:"color,omitempty"`
	// Sensitivity undocumented
	Sensitivity *int `json:"sensitivity,omitempty"`
	// Tooltip undocumented
	Tooltip *string `json:"tooltip,omitempty"`
	// IsActive undocumented
	IsActive *bool `json:"isActive,omitempty"`
}

// InformationProtectionPolicy undocumented
type InformationProtectionPolicy struct {
	// Entity is the base model of InformationProtectionPolicy
	Entity
	// Labels undocumented
	Labels []InformationProtectionLabel `json:"labels,omitempty"`
}