GraphQL OBJECT

PriceAbsolute

Price of the product.

link Definition

  • type PriceAbsolute 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
  • # Default currency in which the product is priced. 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.
  • baseCurrency: Currency!
  • # Currencies available for the product.
  • availableCurrencies: [Currency]
  • # Volume pricing method used for the price of the product.
  • volumePricingMethod: PricingMethod!
  • # Indicates whether taxes are included in the price.
  • isGross: Boolean!
  • # List of price values.
  • priceAbsoluteValues: [PriceAbsoluteValue]!
  • # 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
  • }