UNPKG

fhirtypes

Version:
10 lines (9 loc) 401 B
/** * @name SlotStatus * @description The free/busy status of the slot. * @description busy | free | busy-unavailable | busy-tentative | entered-in-error * @see <a href="https://hl7.org/fhir/R4/valueset-slotstatus.html">SlotStatus</a> * @version R4 * @author Roberto Araneda Espinoza */ export type SlotStatusType = 'busy' | 'free' | 'busy-unavailable' | 'busy-tentative' | 'entered-in-error';