Skip to main content

linear.estimatecomparator

Home > @runlightyear/linear > EstimateComparator

EstimateComparator interface

Signature:
interface EstimateComparator 

Optional Properties

PropertyModifiersTypeDescription
and?Array<NullableNumberComparator>Compound filters, one of which need to be matched by the estimate.
eq?numberEquals constraint.
gt?numberGreater-than constraint. Matches any values that are greater than the given value.
gte?numberGreater-than-or-equal constraint. Matches any values that are greater than or equal to the given value.
in?Array<number>In-array constraint.
lt?numberLess-than constraint. Matches any values that are less than the given value.
lte?numberLess-than-or-equal constraint. Matches any values that are less than or equal to the given value.
neq?numberNot-equals constraint.
nin?Array<string>Not-in-array constraint.
null?booleanNull constraint. Matches any non-null values if the given value is false, otherwise it matches null values.
or?Array<NullableNumberComparator>Compound filters, all of which need to be matched by the estimate.