Item

data class Item(    val sku: String? = null,     val quantity: Long,     val isFree: Boolean,     val price: OrderResponse.Price? = null)

Constructors

Link copied to clipboard
fun Item(    sku: String? = null,     quantity: Long,     isFree: Boolean,     price: OrderResponse.Price? = null)

Properties

Link copied to clipboard
@SerializedName(value = "is_free")
val isFree: Boolean
Link copied to clipboard
val price: OrderResponse.Price? = null
Link copied to clipboard
val quantity: Long
Link copied to clipboard
val sku: String? = null

Sources

Link copied to clipboard