import { IBackboneElement } from '../base'; import { ICodeableConcept, IReference } from '../datatypes'; /** * @name IImmunizationPerformer * @description Describes the event of a patient being administered a vaccine or a record of an immunization as reported by a patient, a clinician or another party. * @see ImmunizationPerformer * @version R4 * @extends {IBackboneElement} * @uthor Claudia Alarcón Lazo */ export interface IImmunizationPerformer extends IBackboneElement { /** * @description Describes the type of performance (e.g. ordering provider, administering provider, etc.). */ function?: ICodeableConcept; /** * @description The practitioner or organization who performed the action. */ actor: IReference; }