ProcessQueueResponse Data Type

Generic response containing the response code and response messages (no additional objects)

Properties
name data type description
entries array of ProcessQueueEntry
Properties inherited from GenericResponse
messages array of Message Messages contained in the response (which should be shown to the user)
responseInfo ResponseInfo

Example

{
  "entries" : [ {
    "id" : "...",
    "entryId" : 12345,
    "objectId" : 12345,
    "objectType" : "...",
    "processKey" : "...",
    "data" : "...",
    "state" : "...",
    "timestamp" : 12345
  }, {
    "id" : "...",
    "entryId" : 12345,
    "objectId" : 12345,
    "objectType" : "...",
    "processKey" : "...",
    "data" : "...",
    "state" : "...",
    "timestamp" : 12345
  } ],
  "messages" : [ { }, { } ],
  "responseInfo" : {
    "responseCode" : "OK",
    "responseMessage" : "...",
    "property" : "..."
  }
}