PriceRange

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

An object that contains price range information.

Parameters

value

Price range value, between min/max values inclusive.

label

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

minValue

Min value of the price range.

maxValue

Max value of the price range.

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
val label: String
Link copied to clipboard
val maxValue: Double
Link copied to clipboard
val minValue: Double
Link copied to clipboard
val value: Double