ModelState

open_in_new

Overall state of the model

GraphQL Schema definition

  • enum ModelState {
  • # Currently being uploaded by capture.
  • staging
  • # All assets have been uploaded and the model is being processed.
  • processing
  • # Model processing failed and will require manual intervention to resume.
  • failed
  • # A deactivate/archive request has been received but has not started.
  • inactivation_pending
  • # The model is in the process of becoming inactive.
  • inactivating
  • # The model is inactive.
  • inactive
  • # An activate/unarchive request has been received but has not started.
  • activation_pending
  • # The model is in the process of becoming active.
  • activating
  • # The model is active.
  • active
  • # The model is pending activation. This state occurs when an model is being added
  • # to an organization prior to
  • # determining if they have the flex space capacity to transition the model to
  • # active.
  • pending
  • }