import { IBackboneElement, IElement } from '../base'; import { ICodeableConcept } from '../datatypes'; /** * @name IMedicationKnowledgeSubstitution * @description Information about a medication that is used to support knowledge. * @see MedicationKnowledgeSubstitution * @version R4 * @extends {IBackboneElement} * @author Claudia Alarcón Lazo */ export interface IMedicationKnowledgeSubstitution extends IBackboneElement { /** * @description Specifies the type of substitution allowed. */ type: ICodeableConcept; /** * @description Specifies if regulation allows for changes in the medication when dispensing. */ allowed: boolean; /** * @description Extensions for allowed */ _allowed?: IElement; }