/** * @name EventStatus * @description Codes identifying the lifecycle stage of an event. * @description preparation | in-progress | not-done | on-hold | stopped | completed | entered-in-error | unknown * @see EventStatus * @version R4 * @author Roberto Araneda Espinoza */ export type EventStatusType = 'preparation' | 'in-progress' | 'not-done' | 'on-hold' | 'stopped' | 'completed' | 'entered-in-error' | 'unknown';