PurchaseOrder
data class PurchaseOrder(val products: List<PhysicalProduct>? = null, val shipping: Shipping? = null, val type: String? = null) : AirwallexModel, AirwallexRequestModel, Parcelable
Purchase order information
Constructors
Link copied to clipboard
constructor(products: List<PhysicalProduct>? = null, shipping: Shipping? = null, type: String? = null)