Interface ActionCondition

The general condition definition.

interface ActionCondition {
    field: string;
    operator: "Euqal" | "NotEqual" | "LessThan" | "LessOrEqual" | "GreaterThan" | "GreaterOrEqual" | "StartWith" | "EndWith" | "Contain" | "IsNull";
    value: string;
}

Properties

Properties

field: string

The field to compare.

operator: "Euqal" | "NotEqual" | "LessThan" | "LessOrEqual" | "GreaterThan" | "GreaterOrEqual" | "StartWith" | "EndWith" | "Contain" | "IsNull"

The comparison operator.

value: string

The value to compare.