diff options
Diffstat (limited to 'vendor/github.com/yaegashi/msgraph.go/beta/ModelOperation.go')
-rw-r--r-- | vendor/github.com/yaegashi/msgraph.go/beta/ModelOperation.go | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelOperation.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelOperation.go new file mode 100644 index 00000000..59e60029 --- /dev/null +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelOperation.go @@ -0,0 +1,27 @@ +// Code generated by msgraph-generate.go DO NOT EDIT. + +package msgraph + +import "time" + +// Operation undocumented +type Operation struct { + // Entity is the base model of Operation + Entity + // Status undocumented + Status *OperationStatus `json:"status,omitempty"` + // CreatedDateTime undocumented + CreatedDateTime *time.Time `json:"createdDateTime,omitempty"` + // LastActionDateTime undocumented + LastActionDateTime *time.Time `json:"lastActionDateTime,omitempty"` +} + +// OperationError undocumented +type OperationError struct { + // Object is the base model of OperationError + Object + // Code undocumented + Code *string `json:"code,omitempty"` + // Message undocumented + Message *string `json:"message,omitempty"` +} |