TestStatus

public enum TestStatus: String

The TestStatus enum describes the various states an individual lung function test can be in.

  • Indicates the has been initialized and started.

    Declaration

    Swift

    case started = "Started"
  • Indicates the test has finished uploading and processing and without any errors.

    Declaration

    Swift

    case complete = "Complete"
  • Indicates the test has finished uploading the recording.

    Declaration

    Swift

    case uploaded = "Uploaded"
  • Indicates the test is currently processing.

    Declaration

    Swift

    case processing = "Processing"
  • Indicates that an error occurred while processing the test.

    Declaration

    Swift

    case error = "Error"