Action to take when the rule is triggered.

interface RuleAction {
    actionType?: RuleActionType;
    targetField?: string;
    value?: string;
}

Properties

actionType?: RuleActionType

Type of action to take when the rule is triggered.

targetField?: string

Field on which the action should be taken.

value?: string

Value to apply on target field, once the action is taken.