The workflow stored for the specified version.

interface WorkflowDocumentDto {
    created?: string;
    description?: string;
    id?: string;
    lastUpdateAuthorAAID?: string;
    loopedTransitionContainerLayout?: null | WorkflowLayout;
    name?: string;
    scope?: WorkflowScope;
    startPointLayout?: null | WorkflowLayout;
    statuses?: WorkflowReferenceStatus[];
    transitions?: WorkflowTransitions[];
    updated?: string;
    version?: DocumentVersion;
}

Properties

created?: string
description?: string
id?: string
lastUpdateAuthorAAID?: string
loopedTransitionContainerLayout?: null | WorkflowLayout

The starting point for the statuses in the workflow.

name?: string

The scope of the workflow.

startPointLayout?: null | WorkflowLayout

The starting point for the statuses in the workflow.

transitions?: WorkflowTransitions[]
updated?: string
version?: DocumentVersion

The current version details of this workflow scheme.