WorkflowHistoryDto Data Type

Implemented Interfaces
Serializable
Properties
name data type description
actionDate number
workflowCode string
entityInstanceCode string
fromStatus string
toStatus string
action array of WorkflowHistoryActionDto

Example

{
  "actionDate" : 12345,
  "workflowCode" : "...",
  "entityInstanceCode" : "...",
  "fromStatus" : "...",
  "toStatus" : "...",
  "action" : [ {
    "action" : "...",
    "result" : "..."
  }, {
    "action" : "...",
    "result" : "..."
  } ]
}