PriceRange
data class PriceRange( val value: Double, val label: String, val minValue: Double, val maxValue: Double)
Content copied to clipboard
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)
Content copied to clipboard