type OrderItemPrices = { __typename?: 'OrderItemPrices'; /** An array of discounts to be applied to the cart item. */ discounts?: Maybe<Array<Maybe<Discount>>>; fixed_product_taxes: Array<Maybe<FixedProductTax>>; /** The original price of the item. */ original_price?: Maybe<Money>; /** The original price of the item including tax. */ original_price_including_tax?: Maybe<Money>; /** The value of the original price multiplied by the quantity of the item. */ original_row_total: Money; /** The value of the original price multiplied by the quantity of the item including tax. */ original_row_total_including_tax: Money; /** The price of the item before any discounts were applied. The price that might include tax, depending on the configured display settings for cart. */ price: Money; /** The price of the item before any discounts were applied. The price that might include tax, depending on the configured display settings for cart. */ price_including_tax: Money; /** The value of the price multiplied by the quantity of the item. */ row_total: Money; /** The value of `row_total` plus the tax applied to the item. */ row_total_including_tax: Money; /** The total of all discounts applied to the item. */ total_item_discount: Money;};