WishListItem

@Serializable(with = WishListItemSerializer::class)
data class WishListItem(val productId: String, val inStock: Boolean, val sku: String? = null, val price: Price? = null, val regularPrice: Price? = null, val title: String? = null, val image: URL? = null, val dateAdded: Date? = null, val priceWhenAdded: Price? = null)

Represents a product within a wish list.

Parameters

productId

The parent ID of the product.

inStock

Whether the item is currently in stock.

sku

The specific SKU of the product/variant (optional).

price

The current unit price of the product after discount or sale pricing (optional).

regularPrice

The regular price of the product before sales or discounts (optional).

title

The name or title of the product (optional).

image

The address of the product image (optional).

dateAdded

The date when the product was added to the list (optional).

priceWhenAdded

The price of the product when it was added to the list (optional).

Constructors

Link copied to clipboard
constructor(product: Product, dateAdded: Date? = null, priceWhenAdded: Price? = null)
constructor(productId: String, inStock: Boolean, sku: String? = null, price: Price? = null, regularPrice: Price? = null, title: String? = null, image: URL? = null, dateAdded: Date? = null, priceWhenAdded: Price? = null)

Initializes a WishListItem instance.

Properties

Link copied to clipboard
val dateAdded: Date? = null
Link copied to clipboard
val image: URL? = null
Link copied to clipboard
Link copied to clipboard
val price: Price? = null
Link copied to clipboard
val priceWhenAdded: Price? = null
Link copied to clipboard
Link copied to clipboard
val regularPrice: Price? = null
Link copied to clipboard
val sku: String? = null
Link copied to clipboard
val title: String? = null