GraphQL INPUT_OBJECT

CreatePromotionPriceSettingsInput

Input for price settings of the created promotion.

link Definition

  • input CreatePromotionPriceSettingsInput {
  • # Price type code. Determines the discount pricing method.
  • priceTypeId: PriceTypeEnum!
  • # Maximum number of billing intervals a discount can be applied to.
  • maxIntervalCount: Int
  • # Maximum number of units that can be discounted.
  • maxQuantity: Int
  • # Set to true to prevent other discounts in the cleverbridge platform, such as
  • # price configurations, from being combined with this discount.
  • doNotAllowOtherDiscounts: Boolean
  • # Set to true to apply the discount to a maximum of one billing interval per
  • # subscription.
  • applyToOneIntervalOnly: Boolean
  • # 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
  • # Set to true to show the original and discounted price for fixed price discounts.
  • showOriginalAndDiscountPrice: Boolean
  • }