UNPKG

fhirtypes

Version:
13 lines (12 loc) 367 B
import { IAddress, ICodeableConcept, IContactPoint, IHumanName } from '../datatypes'; import { IBackboneElement } from '../base'; /** * @description FHIR R4 * @summary BackboneElement */ export interface IOrganizationContact extends IBackboneElement { purpose?: ICodeableConcept; name?: IHumanName; telecom?: IContactPoint[]; address?: IAddress; }