StreamlineExpressResponse Data Type

Defines a response from the Streamline Express service.

Properties
name data type description
purchaseNumber string The number of the generated purchase.
countryCode string The country of the customer, in ISO alpha-2 format, for example SE.
currencyCode string The currency code (ISO 4217).
totalValue number The total value of the purchase.
shippingFee number The shipping fee of the purchase.
paymentFee number The payment fee of the purchase.
charge number The charge fee of the purchase.
discount number The discount value of the purchase.

Example

{
  "purchaseNumber" : "...",
  "countryCode" : "SE",
  "currencyCode" : "SEK",
  "totalValue" : 12345.0,
  "shippingFee" : 12345.0,
  "paymentFee" : 12345.0,
  "charge" : 12345.0,
  "discount" : 12345.0
}