GraphQL INPUT_OBJECT

DynamicPriceInput

link Definition

  • input DynamicPriceInput {
  • # Set to true if taxes should be included in the price.
  • isGross: Boolean!
  • # Price value.
  • amount: Decimal!
  • # Currency code.
  • currencyId: CurrencyEnum!
  • # Applies only if you define gross prices (IsGross=true). Set to true to increase
  • # the net price for tax-exempt customers by the applicable tax rate in the
  • # customer's country. All customers pay the same total price, whether they are
  • # liable to tax or not.
  • increaseNetPrice: Boolean!
  • # The subscription interval up to which the dynamic price is to be applied.
  • # Counting of intervals starts at 0. For an unlimited dynamic price do not set
  • # maxIntervalNo.
  • maxIntervalNo: Int
  • }