/** * @name SlotStatus * @description The free/busy status of the slot. * @description busy | free | busy-unavailable | busy-tentative | entered-in-error * @see SlotStatus * @version R4 * @author Roberto Araneda Espinoza */ export type SlotStatusType = 'busy' | 'free' | 'busy-unavailable' | 'busy-tentative' | 'entered-in-error';