Request class/object to update the rule.

interface UpdateProcessRuleRequest {
    actions?: RuleAction[];
    conditions?: RuleCondition[];
    id?: string;
    isDisabled?: boolean;
    name?: string;
}

Hierarchy (View Summary)

Properties

actions?: RuleAction[]

List of actions to take when the rule is triggered.

conditions?: RuleCondition[]

List of conditions when the rule should be triggered.

id?: string

Id to uniquely identify the rule.

isDisabled?: boolean

Indicates if the rule is disabled.

name?: string

Name for the rule.