The statuses referenced in the workflow.

interface WorkflowReferenceStatus {
    approvalConfiguration?: null | ApprovalConfiguration;
    deprecated?: boolean;
    layout?: null | WorkflowStatusLayout;
    properties?: {
        [key: string]: string;
    };
    statusReference?: string;
}

Properties

approvalConfiguration?: null | ApprovalConfiguration

The approval configuration of a status within a workflow. Applies only to Jira Service Management approvals.

deprecated?: boolean

Indicates if the status is deprecated.

layout?: null | WorkflowStatusLayout

The x and y location of the status in the workflow.

properties?: {
    [key: string]: string;
}

The properties associated with the status.

Type declaration

  • [key: string]: string

    The properties associated with the status.

statusReference?: string

The reference of the status.