export interface OrderPriceWithTax_gross { __typename: "Money"; /** * Amount of money. */ amount: number; /** * Currency code. */ currency: string; } export interface OrderPriceWithTax_net { __typename: "Money"; /** * Amount of money. */ amount: number; /** * Currency code. */ currency: string; } export interface OrderPriceWithTax_tax { __typename: "Money"; /** * Currency code. */ currency: string; /** * Amount of money. */ amount: number; } export interface OrderPriceWithTax { __typename: "TaxedMoney"; /** * Amount of money including taxes. */ gross: OrderPriceWithTax_gross; /** * Amount of money without taxes. */ net: OrderPriceWithTax_net; /** * Amount of taxes. */ tax: OrderPriceWithTax_tax; }