A workflow transition rule.

interface AppWorkflowTransitionRule {
    configuration: RuleConfiguration;
    id: string;
    key: string;
    transition?: WorkflowTransition;
}

Properties

configuration: RuleConfiguration

A rule configuration.

id: string

The ID of the transition rule.

key: string

The key of the rule, as defined in the Connect or the Forge app descriptor.

transition?: WorkflowTransition