Workflow
Member Summary
| Public Members | ||
| public |
The workflow's unique identifier. |
|
| public |
The workflow's name. By default workflows have a name of "* This workflow needs a name". |
|
| public |
steps: Array<WorkflowStep>: * An unordered list of workflow steps in the workflow. |
|
Method Summary
| Public Methods | ||
| public |
Convenience method for returning the workflow's approver step. |
|
| public |
Returns a list of WorkflowSteps in the order they have been designed to flow. |
|
| public |
getStepByPosition(position: number): WorkflowStep Returns a WorkflowStep by it's position within the workflow. |
|
Public Members
public name: string source
The workflow's name. By default workflows have a name of "* This workflow needs a name".
Public Methods
public getApproverStep(): WorkflowStep source
Convenience method for returning the workflow's approver step.
public getOrderedSteps(): Array<WorkflowStep> source
Returns a list of WorkflowSteps in the order they have been designed to flow.
public getStepByPosition(position: number): WorkflowStep source
Returns a WorkflowStep by it's position within the workflow.
Params:
| Name | Type | Attribute | Description |
| position | number | The workflow step position |