PriceRangeResponse

data class PriceRangeResponse(var type: String? = null, var currency: String? = null, var min: Double = 0.0, var max: Double = 0.0)

Represents a price range response from the Discovery API.

Holds price range details, including type, currency, and range values.

Constructors

Link copied to clipboard
constructor(type: String? = null, currency: String? = null, min: Double = 0.0, max: Double = 0.0)

Properties

Link copied to clipboard

The currency of the price range, if available.

Link copied to clipboard
var max: Double

The maximum price, defaults to 0.0.

Link copied to clipboard
var min: Double

The minimum price, defaults to 0.0.

Link copied to clipboard
var type: String?

The type of price range, if available.