BundleProcessingInformation

open_in_new

Current information about the processing of a bundle purchase.

GraphQL Schema definition

  • type BundleProcessingInformation {
  • # The identifier for the bundle.
  • bundleId: String!
  • # The organization the model belongs to.
  • organizationId: ID!
  • # The current processing status for the bundle.
  • status: BundleProcessingStatus!
  • # The last time the processing information was updated.
  • lastModified: DateTime!
  • # If there is a failure a code that may be used as a key to provide context.
  • failureCode: String
  • # The reason if it was provided along with the code when the process failure was
  • # triggered.
  • failureReason: String
  • }