Process Rule Response.

interface ProcessRule {
    actions?: RuleAction[];
    conditions?: RuleCondition[];
    customizationType?: CustomizationType;
    id?: string;
    isDisabled?: boolean;
    name?: string;
    url?: 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.

customizationType?: CustomizationType

Indicates if the rule is system generated or created by user.

id?: string

Id to uniquely identify the rule.

isDisabled?: boolean

Indicates if the rule is disabled.

name?: string

Name for the rule.

url?: string

Resource Url.