GWFTransitionResponseDto Data Type

The Class GWFTransitionResponseDto.

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

Example

{
  "gwfTransitionDto" : {
    "uuid" : "...",
    "fromStatus" : "...",
    "toStatus" : "...",
    "conditionEl" : "...",
    "priority" : 12345,
    "description" : "...",
    "actionScriptCode" : "...",
    "actions" : [ {
      "description" : "...",
      "uuid" : "...",
      "priority" : 12345,
      "type" : "NOTIFICATION",
      "conditionEl" : "...",
      "isAsynchronous" : true,
      "actionScriptCode" : "...",
      "notificationCode" : "...",
      "valueEl" : "...",
      "logLevel" : "INFO",
      "field" : "...",
      "parameters" : {
        "property1" : "...",
        "property2" : "..."
      }
    }, {
      "description" : "...",
      "uuid" : "...",
      "priority" : 12345,
      "type" : "NOTIFICATION",
      "conditionEl" : "...",
      "isAsynchronous" : true,
      "actionScriptCode" : "...",
      "notificationCode" : "...",
      "valueEl" : "...",
      "logLevel" : "TRACE",
      "field" : "...",
      "parameters" : {
        "property1" : "...",
        "property2" : "..."
      }
    } ]
  },
  "actionStatus" : {
    "status" : "WARNING",
    "errorCode" : { },
    "message" : "...",
    "entityId" : 12345,
    "entityCode" : "...",
    "nrAffected" : 12345,
    "json" : "..."
  }
}