/** * @name MedicationStatementStatusCodes * @description Medication Status Codes. * @description active | completed | entered-in-error | intended | stopped | on-hold | unknown | not-taken * @see MedicationStatementStatusCodes * @version R4 * @author Claudia Alarcón Lazo */ export type MedicationStatementStatusCodesType = 'active' | 'completed' | 'entered-in-error' | 'intended' | 'stopped' | 'on-hold' | 'unknown' | 'not-taken';