Type Alias RetailCosts

RetailCosts: {
    calculation_status: CalculationStatus;
    currency: string;
    discount: string;
    shipping: string;
    subtotal: string | null;
    tax: string;
    total: string | null;
    vat: string;
}

The Order's retail costs

Type declaration

  • calculation_status: CalculationStatus
  • currency: string

    The code of the currency in which the retail costs are returned.

  • discount: string

    Discount sum.

  • shipping: string

    Shipping costs.

  • subtotal: string | null

    Total cost of all items.

  • tax: string

    Sum of taxes (not included in the item price).

  • total: string | null

    Grand Total (subtotal-discount+tax+vat+shipping).

  • vat: string

    Sum of VAT (not included in the item price).