DeviceRequestStatus

public enum DeviceRequestStatus : String, Equatable, Codable, Sendable
  • request has been created but is not yet complete or ready for action.

    Declaration

    Swift

    case draft
  • The request is in force and ready to be acted upon.

    Declaration

    Swift

    case active
  • The request has been temporarily withdrawn but is expected to resume in the future.

    Declaration

    Swift

    case onHold = "on-hold"
  • The request has been terminated prior. No further activity should occur.

    Declaration

    Swift

    case revoked
  • The request has been fully performed. No further activity will occur.

    Declaration

    Swift

    case completed
  • This request should never have existed and should be considered ‘void’. If real-world activity has occurred, the status should be “revoked”

    Declaration

    Swift

    case enteredInError = "entered-in-error"
  • The authoring/source system does not know which of the status values currently applies for this request.

    Declaration

    Swift

    case unknown