ShippingHandling
Contains details about shipping and handling costs.
type ShippingHandling = {
__typename?: 'ShippingHandling'; /** The shipping amount, excluding tax. */
amount_excluding_tax?: Maybe<Money>; /** The shipping amount, including tax. */
amount_including_tax?: Maybe<Money>; /** The applied discounts to the shipping. */
discounts?: Maybe<Array<Maybe<ShippingDiscount>>>; /** Details about taxes applied for shipping. */
taxes?: Maybe<Array<Maybe<TaxItem>>>; /** The total amount for shipping. */
total_amount: Money;
};