export interface Price_gross { __typename: "Money"; /** * Amount of money. */ amount: number; /** * Currency code. */ currency: string; } export interface Price_net { __typename: "Money"; /** * Amount of money. */ amount: number; /** * Currency code. */ currency: string; } export interface Price_tax { __typename: "Money"; /** * Amount of money. */ amount: number; /** * Currency code. */ currency: string; } export interface Price { __typename: "TaxedMoney"; /** * Amount of money including taxes. */ gross: Price_gross; /** * Amount of money without taxes. */ net: Price_net; /** * Amount of taxes. */ tax: Price_tax; }