CartTaxItem
Contains tax information about an item in the cart.
type CartTaxItem = {
__typename?: 'CartTaxItem'; /** The amount of tax applied to the item. */
amount: Money; /** The description of the tax. */
label: Scalars['String']['output'];
};