OrderTotal
Contains details about the sales total amounts used to calculate the final price.
type OrderTotal = {
__typename?: 'OrderTotal'; /** The final base grand total amount in the base currency. */
base_grand_total: Money; /** The applied discounts to the order. */
discounts?: Maybe<Array<Maybe<Discount>>>; /** The final total amount, including shipping, discounts, and taxes. */
grand_total: Money; /** Details about the shipping and handling costs for the order. */
shipping_handling?: Maybe<ShippingHandling>;
subtotal: Money; /** The subtotal of the order, excluding taxes. */
subtotal_excl_tax: Money; /** The subtotal of the order, including taxes. */
subtotal_incl_tax: Money; /** The order tax details. */
taxes?: Maybe<Array<Maybe<TaxItem>>>; /** The shipping amount for the order. */
total_shipping: Money; /** The amount of tax applied to the order. */
total_tax: Money;
};