GraphQL OBJECT
PackageDiscountSearchResultItem
The flat package discount as result of a search.
link Definition
- type PackageDiscountSearchResultItem {
- # Unique Id of the package discount.
- : Int!
- # Name of the package discount.
- : String!
- # The ID of client the package discount belongs to. Deprecated: Please use client
- # instead.
- : Int! @deprecated( reason: "Please use client instead." )
- # Information about client the package discount belongs to.
- : ClientInformation
- # Date and time when the package discount created.
- : DateTime
- # User who created the package discount.
- : UserAccountInformation
- # Date and time when the last edit occurred.
- : DateTime
- # User that last modified the package discount.
- : UserAccountInformation
- # First date and time in which the package discount is valid.
- : DateTime
- # Last date and time in which the package discount is valid.
- : DateTime
- # Package discount parameter.
- : String
- # Flag that states if the package discount is active.
- : Boolean!
- # Package discount's definitions.
- : [PackageDiscountDefinitionSearchResultItem]
- }