fhirtypes
Version:
25 lines (24 loc) • 1.17 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.AppointmentStatusEnum = void 0;
/**
* @name AppointmentStatus
* @description The free/busy status of an appointment.
* @description proposed | pending | booked | arrived | fulfilled | cancelled | noshow | entered-in-error | checked-in | waitlist
* @see <a href="https://hl7.org/fhir/R4/valueset-appointmentstatus.html">AppointmentStatus</a>
* @version R4
* @author Roberto Araneda Espinoza
*/
var AppointmentStatusEnum;
(function (AppointmentStatusEnum) {
AppointmentStatusEnum["PROPOSED"] = "proposed";
AppointmentStatusEnum["PENDING"] = "pending";
AppointmentStatusEnum["BOOKED"] = "booked";
AppointmentStatusEnum["ARRIVED"] = "arrived";
AppointmentStatusEnum["FULFILLED"] = "fulfilled";
AppointmentStatusEnum["CANCELLED"] = "cancelled";
AppointmentStatusEnum["NOSHOW"] = "noshow";
AppointmentStatusEnum["ENTERED_IN_ERROR"] = "entered-in-error";
AppointmentStatusEnum["CHECKED_IN"] = "checked-in";
AppointmentStatusEnum["WAITLIST"] = "waitlist";
})(AppointmentStatusEnum || (exports.AppointmentStatusEnum = AppointmentStatusEnum = {}));