Type Alias Costs

Costs: {
    additional_fee: string | null;
    calculation_status: CalculationStatus;
    currency: string | null;
    digitization: string | null;
    discount: string | null;
    fulfillment_fee: string | null;
    retail_delivery_fee: string | null;
    shipping: string | null;
    subtotal: string | null;
    tax: string | null;
    total: string | null;
    vat: string | null;
}

The Order costs (Printful prices)

Type declaration

  • additional_fee: string | null

    Additional fee for custom product.

  • calculation_status: CalculationStatus
  • currency: string | null

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

  • digitization: string | null

    Digitization costs.

  • discount: string | null

    Discount sum.

  • fulfillment_fee: string | null

    Custom product fulfillment fee.

  • retail_delivery_fee: string | null

    Retail delivery fee.

  • shipping: string | null

    Shipping costs.

  • subtotal: string | null

    Total cost of all items.

  • tax: string | null

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

  • total: string | null

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

  • vat: string | null

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