GraphQL INTERFACE

PriceSettingsInterface

Interface to specify pricing.

link Definition

  • interface PriceSettingsInterface {
  • # Unique ID of the price setting.
  • id: Int!
  • # Discount pricing method.
  • priceType: PriceType!
  • # Indicates whether the original and discounted price for fixed price discounts is
  • # shown.
  • 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
  • # Indicates whether other discounts in the cleverbridge platform, such as price
  • # configurations, can be combined with this discount.
  • doNotAllowOtherDiscounts: Boolean
  • # Indicates whether the discount is applied to a maximum of one billing interval
  • # per subscription.
  • applyToOneIntervalOnly: Boolean
  • }