workflowHistoryDto Data Type

The Class WorkflowHistoryDto.

Namespace
(Default)
Properties
name data type type namespace min/max occurs wrapped by description
action workflowHistoryActionDto element 0/unbounded actions The list workflow history action dto.
actionDate dateTime element 0/1   The action date.
entityInstanceCode string element 0/1   The entity instance code.
fromStatus string element 0/1   The from status.
toStatus string element 0/1   The to status.
workflowCode string element 0/1   The workflow code.
Properties inherited from auditableEntityDto
auditable auditableDto element 0/1    
auditableField auditableFieldDto element 0/unbounded auditableFields  

Example

<workflowHistoryDto>
  <actionDate>...</actionDate>
  <workflowCode>...</workflowCode>
  <entityInstanceCode>...</entityInstanceCode>
  <fromStatus>...</fromStatus>
  <toStatus>...</toStatus>
  <actions>
    <action>
      <action>...</action>
      <result>...</result>
    </action>
  </actions>
  <auditable created="..." creator="..." updated="..." updater="..."/>
  <auditableFields>
    <auditableField actor="..." changeOrigin="..." code="..." created="..." currentState="..." description="..." entityClass="..." fieldName="..." id="..." originName="..." previousState="...">
      <auditable/>
      <auditableFields>
        <auditableField/>
      </auditableFields>
      <updatedCode>...</updatedCode>
    </auditableField>
  </auditableFields>
</workflowHistoryDto>