/** * @name EncounterLocationStatus * @description The status of the location. * @description planned | active | reserved | completed * @see EncounterLocationStatus * @version R4 * @author Roberto Araneda Espinoza */ export type EncounterLocationStatusType = 'planned' | 'active' | 'reserved' | 'completed';