GraphQL INPUT_OBJECT

PriceSettingsInput

link Definition

  • input PriceSettingsInput {
  • # Price type code. Determines the discount pricing method.
  • priceTypeId: PriceTypeEnum
  • # Set to true to show original and discounted price for fixed price discounts.
  • showOriginalAndDiscountPrice: Boolean
  • # Maximum number of billing intervals a discount can be applied to.
  • maxIntervalCount: Int
  • # Maximum number of units that can be discounted.
  • maxQuantity: Int
  • # Allows you to set a specific amount that will be subtracted from the price of
  • # the product.
  • absolutePrice: PriceAbsoluteInput
  • # Allows you to set a specific percentage that will be subtracted from the price
  • # of the product.
  • percentagePrice: PricePercentageInput
  • }