JobStatus Data Type

Response containing the job status for a background job

Properties
name data type constraints description
running boolean required boolean True when the job is running, false if not
messages array of Message   Messages contained in the response (which should be shown to the user)
progress JobProgress   Get job progress
responseInfo ResponseInfo  

Example

{
  "running" : true,
  "messages" : [ { }, { } ],
  "progress" : {
    "done" : 12345,
    "total" : 12345,
    "started" : 12345,
    "finished" : 12345
  },
  "responseInfo" : {
    "responseCode" : "OK",
    "responseMessage" : "...",
    "property" : "..."
  }
}