/**
 * @name AuditEventOutcome
 * @description Indicates whether the event succeeded or failed.
 * @description 0 | 4 | 8 | 12
 * @see <a href="https://hl7.org/fhir/R4/valueset-audit-event-outcome.html">AuditEventOutcome</a>
 * @version R4
 * @author Roberto Araneda Espinoza
 */
export type AuditEventOutcomeType = '0' | '4' | '8' | '12';
