BundleProcessingStatus

open_in_new

The processing status for bundles. Not all bundles will use all of these.

GraphQL Schema definition

  • enum BundleProcessingStatus {
  • # A user has ordered the bundle but the process to fulfill that order has not
  • # started.
  • ordered
  • # When a third party partner is responsible for fulling the order, this state is
  • # used to indicate that they
  • # have been informed of the purchase but before they have started work.
  • #
  • # Note: This is not always available and in those situations the processing state
  • # will be immediately be
  • # put into inprogress.
  • placed
  • # The process for completing the order is ongoing.
  • inprogress
  • # When a third party partner is responsible for fulling the order, this state is
  • # used to indicate that the ordered
  • # resources is available for preview before publishing.
  • previewable
  • # The process has completed and any assets associated with the bundle should be
  • # available for download.
  • completed
  • # The process failed
  • failed
  • }