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