open class PriceRange : Serializable
Object that contains price range information, between min/max values inclusive. The price range is a value which evaluates price on a scale from, for example, "Cheap" to "Very Expensive".
PriceRange()
Object that contains price range information, between min/max values inclusive. The price range is a value which evaluates price on a scale from, for example, "Cheap" to "Very Expensive". |
open fun getLabel(): Optional<String!>!
Gets the label which describes the price range, for example: "Cheap", "Moderate", "Expensive", "Very Expensive". Values may differ per data provider. |
|
open fun getMaxValue(): Optional<Double!>!
Gets the max value of the price range. |
|
open fun getMinValue(): Optional<Double!>!
Gets the min value of the price range. |
|
open fun getValue(): Optional<Double!>!
Returns the price range value between min/max values inclusive. |
|
open fun toString(): String |