GraphQL OBJECT

KeyGenerator

Key generator that creates customized licensing information for customers at the time of purchase

link Definition

  • type KeyGenerator {
  • # ID of the key generator
  • id: Int
  • # Name of the key generator
  • name: String
  • # Type of the key generator
  • keyGeneratorType: KeyGeneratorType
  • # Interface of the key generator
  • keyGeneratorInterface: KeyGeneratorInterface
  • # Client who owns the key generator.
  • client: Client!
  • # Date and time when the key generator was created
  • creationDate: DateTime
  • # User who created the key generator
  • createdBy: UserAccount
  • # Date and time when the key generator was last modified
  • lastModifiedDate: DateTime
  • # User who last modified the key generator
  • lastModifiedBy: UserAccount
  • # Path of the key generator
  • path: String
  • # UserName associated with the key Generator
  • userName: String
  • # Encoding associated with the key generator
  • encoding: CharacterEncoding
  • # Are western characters when displaying contact values
  • useRomanizedContactValues: Boolean
  • # Is the key generator called once for the entire purchase
  • callOncePerPurchase: Boolean
  • # Document type of the notification: JSON or XML
  • documentType: KeyGeneratorDocumentTypeEnum
  • # Does the client handle key generation errors
  • clientHandlesErrors: Boolean
  • # The XML Schema
  • xmlSchema: XmlSchema
  • # List of referring product deliveries
  • referringProductDeliveries: [ProductDelivery]
  • }