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
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" : [ {
    "fieldName" : "...",
    "message" : "...",
    "type" : "WARNING",
    "timestamp" : 12345,
    "image" : "...",
    "sender" : {
      "id" : 12345,
      "firstName" : "...",
      "lastName" : "...",
      "description" : "...",
      "email" : "...",
      "groups" : [ { }, { } ],
      "login" : "...",
      "password" : "..."
    },
    "id" : 12345
  }, {
    "fieldName" : "...",
    "message" : "...",
    "type" : "SUCCESS",
    "timestamp" : 12345,
    "image" : "...",
    "sender" : {
      "id" : 12345,
      "firstName" : "...",
      "lastName" : "...",
      "description" : "...",
      "email" : "...",
      "groups" : [ { }, { } ],
      "login" : "...",
      "password" : "..."
    },
    "id" : 12345
  } ],
  "responseInfo" : {
    "responseCode" : "INVALIDDATA",
    "responseMessage" : "...",
    "property" : "..."
  }
}