ProductPrice

class ProductPrice(val current: String, val old: String? = null)

Represents the price information for a product.

Constructors

Link copied to clipboard
constructor(current: String, old: String? = null)

Properties

Link copied to clipboard

Current price of the product, formatted as a localized string including currency symbol and amount.

Link copied to clipboard
val old: String? = null

Optional old price of the product, formatted as a localized string.