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)

Types

Link copied to clipboard

Properties

Link copied to clipboard

Product list

Link copied to clipboard
open val sdkType: String
Link copied to clipboard
open val sdkVersion: String
Link copied to clipboard
val shipping: Shipping? = null

Shipping address

Link copied to clipboard
val type: String? = null

Industry category of the order

Functions

Link copied to clipboard
abstract fun describeContents(): Int
Link copied to clipboard
open override fun toParamMap(): Map<String, Any>
Link copied to clipboard
abstract fun writeToParcel(p0: Parcel, p1: Int)