CartItem

data class CartItem(    val sku: String?,     val quantity: Int?,     val shortDescription: String?,     val name: String?,     val price: Double?,     val tax: Double?,     val subtotal: Double?,     val total: Double?,     val priceCode: String?,     val gift: Boolean?)

Constructors

Link copied to clipboard
fun CartItem(    sku: String?,     quantity: Int?,     shortDescription: String?,     name: String?,     price: Double?,     tax: Double?,     subtotal: Double?,     total: Double?,     priceCode: String?,     gift: Boolean?)

Properties

Link copied to clipboard
val gift: Boolean?
Link copied to clipboard
val name: String?
Link copied to clipboard
val price: Double?
Link copied to clipboard
val priceCode: String?
Link copied to clipboard
val quantity: Int?
Link copied to clipboard
val shortDescription: String?
Link copied to clipboard
val sku: String?
Link copied to clipboard
val subtotal: Double?
Link copied to clipboard
val tax: Double?
Link copied to clipboard
val total: Double?