The configuration of the rule.

interface WorkflowRuleConfiguration {
    id?: null | string;
    parameters?: {
        [key: string]: string;
    };
    ruleKey: string;
}

Properties

id?: null | string

The ID of the rule.

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

The parameters related to the rule.

Type declaration

  • [key: string]: string

    The parameters related to the rule.

ruleKey: string

The rule key of the rule.