Price breakdown information.

interface ShopifyPrice {
    discounts?: ShopifyDiscount[];
    shipping?: ShopifyMoney;
    subtotal?: ShopifyMoney;
    taxes?: ShopifyMoney;
    total?: ShopifyMoney;
}

Properties

discounts?: ShopifyDiscount[]

List of discounts applied to the order.

shipping?: ShopifyMoney

Shipping cost.

subtotal?: ShopifyMoney

Subtotal before taxes and shipping.

taxes?: ShopifyMoney

Tax amount.

total?: ShopifyMoney

Total order amount.