ResponseType

public enum ResponseType: String

The kind of response to a message

URL: http://hl7.org/fhir/response-code ValueSet: http://hl7.org/fhir/ValueSet/response-code

  • ok

    The message was accepted and processed without error.

    Declaration

    Swift

    case ok = "ok"
  • Some internal unexpected error occurred - wait and try again. Note - this is usually used for things like database unavailable, which may be expected to resolve, though human intervention may be required.

    Declaration

    Swift

    case transientError = "transient-error"
  • The message was rejected because of a problem with the content. There is no point in re-sending without change. The response narrative SHALL describe the issue.

    Declaration

    Swift

    case fatalError = "fatal-error"