summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/matterbridge/msgraph.go/beta/JobResponseBaseModel.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/matterbridge/msgraph.go/beta/JobResponseBaseModel.go')
-rw-r--r--vendor/github.com/matterbridge/msgraph.go/beta/JobResponseBaseModel.go25
1 files changed, 25 insertions, 0 deletions
diff --git a/vendor/github.com/matterbridge/msgraph.go/beta/JobResponseBaseModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/JobResponseBaseModel.go
new file mode 100644
index 00000000..0b2d2712
--- /dev/null
+++ b/vendor/github.com/matterbridge/msgraph.go/beta/JobResponseBaseModel.go
@@ -0,0 +1,25 @@
+// Code generated by msgraph-generate.go DO NOT EDIT.
+
+package msgraph
+
+import "time"
+
+// JobResponseBase undocumented
+type JobResponseBase struct {
+ // Entity is the base model of JobResponseBase
+ Entity
+ // Type undocumented
+ Type *string `json:"type,omitempty"`
+ // Status undocumented
+ Status *string `json:"status,omitempty"`
+ // TenantID undocumented
+ TenantID *string `json:"tenantId,omitempty"`
+ // CreationDateTime undocumented
+ CreationDateTime *time.Time `json:"creationDateTime,omitempty"`
+ // StartDateTime undocumented
+ StartDateTime *time.Time `json:"startDateTime,omitempty"`
+ // EndDateTime undocumented
+ EndDateTime *time.Time `json:"endDateTime,omitempty"`
+ // Error undocumented
+ Error *ClassificationError `json:"error,omitempty"`
+}