UNPKG

fhirtypes

Version:
10 lines (9 loc) 398 B
/** * @name EndpointStatus * @description The status of the endpoint. * @description active | suspended | error | off | entered-in-error | test * @see <a href="https://hl7.org/fhir/R4/valueset-endpoint-status.html">EndpointStatus</a> * @version R4 * @author Roberto Araneda Espinoza */ export type EndpointStatusType = 'active' | 'suspended' | 'error' | 'off' | 'entered-in-error' | 'test';