fhirtypes
Version:
25 lines (24 loc) • 1.27 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.DiagnosticReportStatusEnum = void 0;
/**
* @name DiagnosticReportStatus
* @description The status of the diagnostic report.
* @description registered | partial | preliminary | final | amended | corrected | appended | cancelled | entered-in-error | unknown
* @see <a href="https://hl7.org/fhir/R4/valueset-diagnostic-report-status.html">DiagnosticReportStatus</a>
* @version R4
* @author Claudia Alarcón Lazo
*/
var DiagnosticReportStatusEnum;
(function (DiagnosticReportStatusEnum) {
DiagnosticReportStatusEnum["REGISTERED"] = "registered";
DiagnosticReportStatusEnum["PARTIAL"] = "partial";
DiagnosticReportStatusEnum["PRELIMINARY"] = "preliminary";
DiagnosticReportStatusEnum["FINAL"] = "final";
DiagnosticReportStatusEnum["AMENDED"] = "amended";
DiagnosticReportStatusEnum["CORRECTED"] = "corrected";
DiagnosticReportStatusEnum["APPENDED"] = "appended";
DiagnosticReportStatusEnum["CANCELLED"] = "cancelled";
DiagnosticReportStatusEnum["ENTERED_IN_ERROR"] = "entered-in-error";
DiagnosticReportStatusEnum["UNKNOWN"] = "unknown";
})(DiagnosticReportStatusEnum || (exports.DiagnosticReportStatusEnum = DiagnosticReportStatusEnum = {}));