fhirtypes
Version:
10 lines (9 loc) • 369 B
TypeScript
/**
* @name IssueSeverity
* @description How the issue affects the success of the action.
* @description fatal | error | warning | information
* @see <a href="https://hl7.org/fhir/R4/valueset-issue-severity.html">IssueSeverity</a>
* @version R4
* @author Roberto Araneda Espinoza
*/
export type IssueSeverityType = 'fatal' | 'error' | 'warning' | 'information';