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

  • Optionaladditional_fee?: string | null

    Additional fee for custom product.

  • Optionalcalculation_status?: CalculationStatus
  • Optionalcurrency?: string | null

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

  • Optionaldigitization?: string | null

    Digitization costs.

  • Optionaldiscount?: string | null

    Discount sum.

  • Optionalfulfillment_fee?: string | null

    Custom product fulfillment fee.

  • Optionalretail_delivery_fee?: string | null

    Retail delivery fee.

  • Optionalshipping?: string | null

    Shipping costs.

  • Optionalsubtotal?: string | null

    Total cost of all items.

  • Optionaltax?: string | null

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

  • Optionaltotal?: string | null

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

  • Optionalvat?: string | null

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