GraphQL INPUT_OBJECT

UpdatePackageDiscountInput

Input for update of package discount.

link Definition

  • input UpdatePackageDiscountInput {
  • # Unique Id of the package discount.
  • id: Int!
  • # Name of the package discount.
  • name: String
  • # First date and time in which the package discount is valid.
  • validFrom: DateTime
  • # Last date and time in which the package discount is valid.
  • validTo: DateTime
  • # Package discount parameter.
  • parameter: String
  • # Flag that states if the package discount is active.
  • isActive: Boolean
  • # Package discount's definitions.
  • definitions: [UpdatePackageDiscountDefinitionInput]
  • }

link Required by