linear.estimatecomparator
Home > @runlightyear/linear > EstimateComparator
EstimateComparator interface
Signature:interface EstimateComparator
Optional Properties
Property | Modifiers | Type | Description |
---|---|---|---|
and? | Array<NullableNumberComparator> | Compound filters, one of which need to be matched by the estimate. | |
eq? | number | Equals constraint. | |
gt? | number | Greater-than constraint. Matches any values that are greater than the given value. | |
gte? | number | Greater-than-or-equal constraint. Matches any values that are greater than or equal to the given value. | |
in? | Array<number> | In-array constraint. | |
lt? | number | Less-than constraint. Matches any values that are less than the given value. | |
lte? | number | Less-than-or-equal constraint. Matches any values that are less than or equal to the given value. | |
neq? | number | Not-equals constraint. | |
nin? | Array<string> | Not-in-array constraint. | |
null? | boolean | Null 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. |