InvoiceTotal
Contains price details from an invoice.
type InvoiceTotal = {
__typename?: 'InvoiceTotal'; /** The final base grand total amount in the base currency. */
base_grand_total: Money; /** The applied discounts to the invoice. */
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 invoice. */
shipping_handling?: Maybe<ShippingHandling>; /** The subtotal of the invoice, excluding shipping, discounts, and taxes. */
subtotal: Money; /** The invoice tax details. */
taxes?: Maybe<Array<Maybe<TaxItem>>>; /** The shipping amount for the invoice. */
total_shipping: Money; /** The amount of tax applied to the invoice. */
total_tax: Money;
};