Interface ListenerRuleArgs

interface ListenerRuleArgs {
    actions: any;
    conditions: ListenerRuleArgs;
    priority?: any;
}

Properties

actions: any

An Action block. Action blocks are documented below.

conditions: ListenerRuleArgs

A Condition block. Condition blocks are documented below.

priority?: any

The priority for the rule between 1 and 50000. Leaving it unset will automatically set the rule with next available priority after currently existing highest rule. A listener can't have multiple rules with the same priority.

Generated using TypeDoc