UNPKG

fhirtypes

Version:
21 lines (20 loc) 695 B
/** * @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 */ export declare enum AppointmentStatusEnum { PROPOSED = "proposed", PENDING = "pending", BOOKED = "booked", ARRIVED = "arrived", FULFILLED = "fulfilled", CANCELLED = "cancelled", NOSHOW = "noshow", ENTERED_IN_ERROR = "entered-in-error", CHECKED_IN = "checked-in", WAITLIST = "waitlist" }