The type that defines the fields to support filtering by a range of values.
Type that uses RangeValue
Calls that use RangeValue
Fields
end
Specifies the end or upper limit of the range. This can be empty which equates to greater than or equal to the start or lower limit.
exclusiveEnd
Specifies whether the
end
value is to be included in the range. For example, if end
is 100
, and exclusiveEnd
is true
, the end range would be <100. But if it is set to false
, it is <=100.exclusiveStart
Specifies whether the
start
value is to be included in the range. For example, if start
is 60
, and exclusiveStart
is true
, the start range would be >60. But if it is set to false
, it is >=60.start
Specifies the start or lower limit of the range. This can be empty which equates to lesser than or equal to the end or upper limit.