Purchase Order
data class PurchaseOrder( val orderId: String, val chargedAmount: Double, val totalAmount: Double, val taxAmount: Double, val shippingAmount: Double, val discountAmount: Double? = null, val discountCodes: String? = "", val currency: String? = null, val shippingAddress: ShippingAddress? = null, val items: List<OrderItem>)
Content copied to clipboard
Constructors
Link copied to clipboard
fun PurchaseOrder( orderId: String, chargedAmount: Double, totalAmount: Double, taxAmount: Double, shippingAmount: Double, discountAmount: Double? = null, discountCodes: String? = "", currency: String? = null, shippingAddress: ShippingAddress? = null, items: List<OrderItem>)
Content copied to clipboard