PiCartItem

data class PiCartItem(val item: String, val quantity: Int, val price: Double, val uniqueId: String?) : Parcelable

A cart content item to be used as part of the PiCart.cartItems.

Constructors

Link copied to clipboard
constructor(item: String, quantity: Int, price: Double)
constructor(item: String, quantity: Int, price: Double, uniqueId: String?)

Properties

Link copied to clipboard
@get:JvmName(name = "item")
val item: String
Link copied to clipboard
@get:JvmName(name = "price")
val price: Double
Link copied to clipboard
@get:JvmName(name = "quantity")
val quantity: Int
Link copied to clipboard
@get:JvmName(name = "uniqueId")
val uniqueId: String?