PurchaseOrder

data class PurchaseOrder(orderId: String, chargedAmount: Double, totalAmount: Double, taxAmount: Double, shippingAmount: Double, discountAmount: Double?, discountCodes: String?, currency: String?, shippingAddress: ShippingAddress?, items: List<OrderItem>)

Properties

chargedAmount
Link copied to clipboard
common
val chargedAmount: Double
currency
Link copied to clipboard
common
val currency: String? = null
discountAmount
Link copied to clipboard
common
val discountAmount: Double? = null
discountCodes
Link copied to clipboard
common
val discountCodes: String?
items
Link copied to clipboard
common
val items: List<OrderItem>
orderId
Link copied to clipboard
common
val orderId: String
shippingAddress
Link copied to clipboard
common
val shippingAddress: ShippingAddress? = null
shippingAmount
Link copied to clipboard
common
val shippingAmount: Double
taxAmount
Link copied to clipboard
common
val taxAmount: Double
totalAmount
Link copied to clipboard
common
val totalAmount: Double