TaxItem
Contains tax item details.
type TaxItem = {
__typename?: 'TaxItem'; /** The amount of tax applied to the item. */
amount: Money; /** The rate used to calculate the tax. */
rate: Scalars['Float']['output']; /** A title that describes the tax. */
title: Scalars['String']['output'];
};