GraphQL INPUT_OBJECT

CreateKeyGeneratorInput

Input for create key generator.

link Definition

  • input CreateKeyGeneratorInput {
  • # Type of the key generator.
  • keyGeneratorTypeId: KeyGeneratorTypeEnum!
  • # Unique ID of the client.
  • clientId: Int!
  • # Name of the key generator.
  • name: String!
  • # Full URL of the key generator.
  • path: String!
  • # username to access the key generator.
  • userName: String
  • # password to access the key generator.
  • password: String
  • # interface of the key generator.
  • keyGeneratorInterfaceId: KeyGeneratorInterfaceEnum!
  • # encoding of the key generator.
  • encodingId: CharacterEncodingEnum
  • # Set to true if this key generator should use romanized values.
  • useRomanizedContactValues: Boolean
  • # Set to true if the key generator is called for the entire purchase. If not set
  • # true, the key generator is called for every purchase item in the purchase.
  • callOncePerPurchase: Boolean
  • # Document type of the notification.
  • documentType: KeyGeneratorDocumentTypeEnum
  • # Schema of the notification.
  • xmlSchemaId: XmlSchemaEnum
  • # Set to true if errors are handled on client side. If not set true, cleverbridge
  • # manages key generation errors (recommended).
  • clientHandlesErrors: Boolean
  • }

link Required by