GraphQL INPUT_OBJECT
PriceAbsoluteInput
Input for absolute price of a given product.
link Definition
- input PriceAbsoluteInput {
- #   Code of the default currency in which the product is priced, see ISO 4217. 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.
- : CurrencyEnum!
- #   Set to true if taxes should be included in the price.
- : Boolean
- #   Volume pricing method used for the price of the product.
- : PricingMethodEnum
- #   List of price values.
- : [PriceAbsoluteValueInput]!
- }