CartResponse
data class CartResponse( val cartId: String? = null, val price: Price? = null, val isFree: Boolean, val items: List<CartResponse.Item> = emptyList())
Content copied to clipboard
Constructors
Link copied to clipboard
fun CartResponse( cartId: String? = null, price: Price? = null, isFree: Boolean, items: List<CartResponse.Item> = emptyList())
Content copied to clipboard
Types
Link copied to clipboard
data class Item( val sku: String? = null, val groups: List<Group> = emptyList(), val name: String? = null, val type: String? = null, val description: String? = null, val imageUrl: String? = null, val quantity: Long, val isFree: Boolean, val attributes: List<Any> = emptyList(), val price: Price? = null, val virtualPrices: List<VirtualPrice> = emptyList(), val inventoryOption: InventoryOption? = null)
Content copied to clipboard