blob: 4d77efe6c1c2503585b03ad494591baa1230fb51 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
// Code generated by msgraph-generate.go DO NOT EDIT.
package msgraph
import "time"
// ExactMatchJobBase undocumented
type ExactMatchJobBase struct {
// Entity is the base model of ExactMatchJobBase
Entity
// CreationDateTime undocumented
CreationDateTime *time.Time `json:"creationDateTime,omitempty"`
// StartDateTime undocumented
StartDateTime *time.Time `json:"startDateTime,omitempty"`
// LastUpdatedDateTime undocumented
LastUpdatedDateTime *time.Time `json:"lastUpdatedDateTime,omitempty"`
// CompletionDateTime undocumented
CompletionDateTime *time.Time `json:"completionDateTime,omitempty"`
// Error undocumented
Error *ClassificationError `json:"error,omitempty"`
}
|