mirror of
https://github.com/cwinfo/matterbridge.git
synced 2024-11-10 15:40:30 +00:00
22 lines
691 B
Go
22 lines
691 B
Go
|
// 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"`
|
||
|
}
|