WFTransitionResponseDto Data Type

The Class WFTransitionResponseDto.

Implemented Interfaces
Serializable
Properties
name data type description
wfTransitionDto WFTransitionDto The wf transition dto.
actionStatus ActionStatus The status response of the web service response.

Example

{
  "wfTransitionDto" : {
    "uuid" : "...",
    "fromStatus" : "...",
    "toStatus" : "...",
    "conditionEl" : "...",
    "priority" : 12345,
    "description" : "...",
    "action" : [ {
      "uuid" : "...",
      "actionEl" : "...",
      "priority" : 12345,
      "conditionEl" : "..."
    }, {
      "uuid" : "...",
      "actionEl" : "...",
      "priority" : 12345,
      "conditionEl" : "..."
    } ],
    "decisionRule" : [ {
      "name" : "...",
      "value" : "..."
    }, {
      "name" : "...",
      "value" : "..."
    } ]
  },
  "actionStatus" : {
    "status" : "SUCCESS",
    "errorCode" : { },
    "message" : "...",
    "entityId" : 12345,
    "entityCode" : "...",
    "nrAffected" : 12345,
    "json" : "..."
  }
}