summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/yaegashi/msgraph.go/beta/ModelInformation.go
diff options
context:
space:
mode:
authorQais Patankar <qaisjp@gmail.com>2020-03-15 22:43:46 +0000
committerWim <wim@42.be>2020-03-22 00:02:48 +0100
commit76e5fe5a87d7e60919075f96eee599f3c6255a9f (patch)
treeaf3181ad6aadaea02069473a3718a827be888426 /vendor/github.com/yaegashi/msgraph.go/beta/ModelInformation.go
parent802c80f40c709ba4967de317e40a8d6abe57f6be (diff)
downloadmatterbridge-msglm-76e5fe5a87d7e60919075f96eee599f3c6255a9f.tar.gz
matterbridge-msglm-76e5fe5a87d7e60919075f96eee599f3c6255a9f.tar.bz2
matterbridge-msglm-76e5fe5a87d7e60919075f96eee599f3c6255a9f.zip
Update vendor yaegashi/msgraph.go to v0.1.2 (2)
Diffstat (limited to 'vendor/github.com/yaegashi/msgraph.go/beta/ModelInformation.go')
-rw-r--r--vendor/github.com/yaegashi/msgraph.go/beta/ModelInformation.go65
1 files changed, 65 insertions, 0 deletions
diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelInformation.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelInformation.go
new file mode 100644
index 00000000..20d28337
--- /dev/null
+++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelInformation.go
@@ -0,0 +1,65 @@
+// Code generated by msgraph-generate.go 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"`
+}