GraphQL OBJECT

PricePercentage

link Definition

  • type PricePercentage implements PriceSettingsInterface {
  • # ID of the price.
  • id: Int!
  • # Price type.
  • priceType: PriceType!
  • # 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 quantity.
  • maxQuantity: Int
  • # List of price values.
  • pricePercentageValues: [PricePercentageValue]!
  • # Prevents other discounts in the cleverbridge platform, such as price
  • # configurations, from being combined with this discount.
  • doNotAllowOtherDiscounts: Boolean
  • # Applies the discount to a maximum of one billing interval per subscription.
  • applyToOneIntervalOnly: Boolean
  • }

link Required by

This element is not required by anyone