GraphQL OBJECT

ErrorLogEntry

Error that occurred during the purchase process.

link Definition

  • type ErrorLogEntry {
  • # Unique ID of the error log entry.
  • id: Int
  • # Date and time when the error occured.
  • creationDate: DateTime
  • # Indicates whether you must investigate and fix the error. Only applies to key
  • # generation errors.
  • clientHandlesError: Boolean
  • # Further information about the error.
  • notes: String
  • # Indicates whether the situation leading to the error has been remedied.
  • isDone: Boolean
  • # Running number of the item in the purchase, if available.
  • purchaseItemRunningNumber: Int
  • # Type of error that occurred.
  • type: ErrorLogEntryType
  • # The related purchase.
  • purchase: Purchase
  • # The client to whom the error log entry belongs.
  • client: Client
  • }