WorkflowHistoryDto Data Type

The Class WorkflowHistoryDto.

Implemented Interfaces
Serializable
Properties
name data type description
auditableField array of AuditableFieldDto
actionDate number The action date.
workflowCode string The workflow code.
entityInstanceCode string The entity instance code.
fromStatus string The from status.
toStatus string The to status.
action array of WorkflowHistoryActionDto The list workflow history action dto.

Example

{
  "auditableField" : [ {
    "entityClass" : "...",
    "fieldName" : "...",
    "id" : 12345,
    "changeOrigin" : "...",
    "auditableField" : [ { }, { } ],
    "originName" : "...",
    "code" : "...",
    "previousState" : "...",
    "currentState" : "...",
    "description" : "...",
    "created" : "...",
    "updatedCode" : "...",
    "actor" : "..."
  }, {
    "entityClass" : "...",
    "fieldName" : "...",
    "id" : 12345,
    "changeOrigin" : "...",
    "auditableField" : [ { }, { } ],
    "originName" : "...",
    "code" : "...",
    "previousState" : "...",
    "currentState" : "...",
    "description" : "...",
    "created" : "...",
    "updatedCode" : "...",
    "actor" : "..."
  } ],
  "actionDate" : 12345,
  "workflowCode" : "...",
  "entityInstanceCode" : "...",
  "fromStatus" : "...",
  "toStatus" : "...",
  "action" : [ {
    "action" : "...",
    "result" : "..."
  }, {
    "action" : "...",
    "result" : "..."
  } ]
}