GraphQL OBJECT
PriceAbsolute
Price of the product.
link Definition
- type PriceAbsolute implements PriceSettingsInterface {
- # ID of the price.
- : Int!
- # Price type.
- : PriceType!
- # Show original and discounted price for fixed price discounts.
- : Boolean
- # Maximum number of billing intervals a discount can be applied to.
- : Int
- # Maximum quantity.
- : 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.
- : Currency!
- # Currencies available for the product.
- : [Currency]
- # Volume pricing method used for the price of the product.
- : PricingMethod!
- # Indicates whether taxes are included in the price.
- : Boolean!
- # List of price values.
- : [PriceAbsoluteValue]!
- # Prevents other discounts in the cleverbridge platform, such as price
- # configurations, from being combined with this discount.
- : Boolean
- # Applies the discount to a maximum of one billing interval per subscription.
- : Boolean
- }