GraphQL OBJECT

PackageDiscount

The package discount.

link Definition

  • type PackageDiscount {
  • # Unique Id of the package discount.
  • id: Int!
  • # Name of the package discount.
  • name: String!
  • # The client the package discount belongs to.
  • client: Client!
  • # Date and time when the package discount created.
  • creationDate: DateTime
  • # User who created the package discount.
  • createdBy: UserAccount
  • # Date and time when the last edit occurred.
  • lastModifyDate: DateTime
  • # User that last modified the package discount.
  • lastModifiedBy: UserAccount
  • # 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: [PackageDiscountDefinition]
  • # List of applicable price configurations in which the package discounts used.
  • referringApplicablePriceConfigurations: [ApplicablePriceConfiguration]
  • }