GraphQL INPUT_OBJECT

UpdatePriceAbsoluteInput

link Definition

  • input UpdatePriceAbsoluteInput {
  • # Code of the default currency in which the product is priced, see ISO 4217. If no
  • # price is defined for a currency, the price for that currency is converted from
  • # the base currency based on the daily floating exchange rate.
  • baseCurrencyId: CurrencyEnum!
  • # Set to true if taxes should be included in the price.
  • isGross: Boolean
  • # Volume pricing method used for the price of the product.
  • volumePricingMethod: PricingMethodEnum
  • # List of price values.
  • priceAbsoluteValues: [CreatePriceAbsoluteValueInput]
  • }