/** * @name FHIRDeviceStatus * @description The availability status of the device. * @description active | inactive | entered-in-error | unknown * @see FHIRDeviceStatus * @version R4 * @author Claudia Alarcón Lazo */ export type FHIRDeviceStatusType = 'active' | 'inactive' | 'entered-in-error' | 'unknown';