GraphQL INPUT_OBJECT

CreatePackageDiscountInput

Input for creation of package discount.

link Definition

  • input CreatePackageDiscountInput {
  • # Name of the package discount.
  • name: String!
  • # The clientId of the client the package discount belongs to.
  • clientId: Int!
  • # 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: [CreatePackageDiscountDefinitionInput]
  • }

link Required by