A facet range with start and end values.
Inherits From: expected_type
View aliases
Main aliases
`google.appengine.api.search.search.FacetRange`
google.appengine.api.search.FacetRange(
start=None, end=None
)
An example of a FacetRange for good rating is:
FacetRange(start=3.0, end=3.5)
Args |
start
|
Start value for the range, inclusive.
|
end
|
End value for the range. exclusive.
|
Raises |
TypeError
|
If any of the parameters have invalid types, or an unknown
attribute is passed.
|
ValueError
|
If any of the parameters have invalid values.
|
Attributes |
end
|
Returns exclusive end of the range.
|
start
|
Returns inclusive start of the range.
|