blob: 8aa815e2c20abd5d435cb5bc9ae792b807bf6f88 (
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
|
// Code generated by msgraph.go/gen DO NOT EDIT.
package msgraph
// InferenceClassification undocumented
type InferenceClassification struct {
// Entity is the base model of InferenceClassification
Entity
// Overrides undocumented
Overrides []InferenceClassificationOverride `json:"overrides,omitempty"`
}
// InferenceClassificationOverride undocumented
type InferenceClassificationOverride struct {
// Entity is the base model of InferenceClassificationOverride
Entity
// ClassifyAs undocumented
ClassifyAs *InferenceClassificationType `json:"classifyAs,omitempty"`
// SenderEmailAddress undocumented
SenderEmailAddress *EmailAddress `json:"senderEmailAddress,omitempty"`
}
// InferenceData undocumented
type InferenceData struct {
// Object is the base model of InferenceData
Object
// ConfidenceScore undocumented
ConfidenceScore *float64 `json:"confidenceScore,omitempty"`
// UserHasVerifiedAccuracy undocumented
UserHasVerifiedAccuracy *bool `json:"userHasVerifiedAccuracy,omitempty"`
}
|