interface NumericFieldExpression {
    field: string;
    negate?: boolean;
    operator: NumericOperator;
    value: number;
}

Hierarchy (View Summary)

Properties

field: string

The field name.

negate?: boolean

If true, the inverse expression will be created.

operator: NumericOperator

The operator to use when comparing field and value.

value: number

The value to match against the field.