GraphQL INPUT_OBJECT

UpdateApplicablePriceConfigurationInput

link Definition

  • input UpdateApplicablePriceConfigurationInput {
  • # The name of the applicable price configuration.
  • name: String!
  • # If a parameter is entered, the customer only receives the price if the parameter
  • # is passed in the URL.
  • parameterValue: String
  • # The price configuration.
  • priceConfigurationId: Int
  • # The region configuration for which the price is applicable. In the checkout
  • # process, the region is determined by the customer's IP address.
  • regionConfigurationId: Int
  • # The partner/affiliate group for which the price is applicable. Only partners who
  • # are included in the group receive the price when ordering.
  • partnerGroupId: Int
  • # The payment type for which the price is applicable when the customer selects the
  • # payment type in the checkout process.
  • paymentTypeId: ActivePaymentTypeEnum
  • # The language for which the price is applicable. In the checkout process, the
  • # language is determined by the customer's default browser language.
  • languageId: CheckoutLanguageEnum
  • # The minimum number of licenses that must be in the shopping cart for the price
  • # rule to be applied.
  • minLicenseNumber: Int
  • # The package discount to be used inside the applicable price configuration.
  • packageDiscountId: Int
  • # The additional package discount to be used inside the applicable price
  • # configuration.
  • additionalPackageDiscountId: Int
  • }