PriceRange

data class PriceRange(val value: Double, val label: String, val minValue: Double, val maxValue: Double)

An object that contains price range information.

Important: This is a Public Preview API. It may be changed or removed at any time.

Constructors

Link copied to clipboard
fun PriceRange(value: Double, label: String, minValue: Double, maxValue: Double)

Properties

Link copied to clipboard

Label which describes the price range, for example: "Cheap", "Moderate", "Expensive", "Very Expensive". Values may differ per data provider.

Link copied to clipboard

Max value of the price range.

Link copied to clipboard

Min value of the price range.

Link copied to clipboard

Price range value, between min/max values inclusive.