import { IBackboneElement, IElement } from '../base'; import { ICodeableConcept } from '../datatypes'; /** * @name IMedicationKnowledgeMonitoringProgram * @description Information about a medication that is used to support knowledge. * @see MedicationKnowledgeMonitoringProgram * @version R4 * @extends {IBackboneElement} * @author Claudia Alarcón Lazo */ export interface IMedicationKnowledgeMonitoringProgram extends IBackboneElement { /** * @description Type of program under which the medication is monitored. */ type?: ICodeableConcept; /** * @description Name of the reviewing program. */ name?: string; /** * @description Extensions for name */ _name?: IElement; }