WebCart

data class WebCart(val products: List<ProductItem?>?, val total: Total?)

Represents a web-based shopping cart containing products and pricing details.

Parameters

products

A list of ProductItem objects representing the items in the cart, or null if no items are present.

total

The Total object containing the cart's pricing summary, or null if not available.

Constructors

Link copied to clipboard
constructor(products: List<ProductItem?>?, total: Total?)

Properties

Link copied to clipboard
@SerializedName(value = "item")
val products: List<ProductItem?>?
Link copied to clipboard
@SerializedName(value = "total")
val total: Total?