/**
 * @name FHIRDeviceStatus
 * @description The availability status of the device.
 * @description active | inactive | entered-in-error | unknown
 * @see <a href="https://hl7.org/fhir/R4/valueset-device-status.html">FHIRDeviceStatus</a>
 * @version R4
 * @author Claudia Alarcón Lazo
 */
export type FHIRDeviceStatusType = 'active' | 'inactive' | 'entered-in-error' | 'unknown';
