TestReportActionResult
public enum TestReportActionResult: String
The results of executing an action.
URL: http://hl7.org/fhir/report-action-result-codes ValueSet: http://hl7.org/fhir/ValueSet/report-action-result-codes
-
The action was successful.
Declaration
Swift
case pass = "pass"
-
The action was skipped.
Declaration
Swift
case skip = "skip"
-
The action failed.
Declaration
Swift
case fail = "fail"
-
The action passed but with warnings.
Declaration
Swift
case warning = "warning"
-
The action encountered a fatal error and the engine was unable to process.
Declaration
Swift
case error = "error"