diff options
Diffstat (limited to 'vendor/github.com/yaegashi/msgraph.go/beta/DeviceActionResultModel.go')
-rw-r--r-- | vendor/github.com/yaegashi/msgraph.go/beta/DeviceActionResultModel.go | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/DeviceActionResultModel.go b/vendor/github.com/yaegashi/msgraph.go/beta/DeviceActionResultModel.go new file mode 100644 index 00000000..3e00ab4b --- /dev/null +++ b/vendor/github.com/yaegashi/msgraph.go/beta/DeviceActionResultModel.go @@ -0,0 +1,19 @@ +// Code generated by msgraph-generate.go DO NOT EDIT. + +package msgraph + +import "time" + +// DeviceActionResult undocumented +type DeviceActionResult struct { + // Object is the base model of DeviceActionResult + Object + // ActionName Action name + ActionName *string `json:"actionName,omitempty"` + // ActionState State of the action + ActionState *ActionState `json:"actionState,omitempty"` + // StartDateTime Time the action was initiated + StartDateTime *time.Time `json:"startDateTime,omitempty"` + // LastUpdatedDateTime Time the action state was last updated + LastUpdatedDateTime *time.Time `json:"lastUpdatedDateTime,omitempty"` +} |