Interface WorkflowTransitionRulesUpdateErrorDetails

Details of any errors encountered while updating workflow transition rules for a workflow.

interface WorkflowTransitionRulesUpdateErrorDetails {
    ruleUpdateErrors: {
        [key: string]: string[];
    };
    updateErrors: string[];
    workflowId: WorkflowId;
}

Properties

ruleUpdateErrors: {
    [key: string]: string[];
}

A list of transition rule update errors, indexed by the transition rule ID. Any transition rule that appears here wasn't updated.

Type declaration

  • [key: string]: string[]

    A list of transition rule update errors, indexed by the transition rule ID. Any transition rule that appears here wasn't updated.

updateErrors: string[]

The list of errors that specify why the workflow update failed. The workflow was not updated if the list contains any entries.

workflowId: WorkflowId

Properties that identify a workflow.