AddToCartEvent

data class AddToCartEvent(val cart: WebCart?)

Represents an event for adding items to a shopping cart.

Parameters

cart

The WebCart containing details of the cart to be updated, or null if no cart is provided.

Constructors

Link copied to clipboard
constructor(cart: WebCart?)

Properties

Link copied to clipboard
@SerializedName(value = "cart")
val cart: WebCart?