@ahryman40k/ts-fhir-types
Version:
Typescript / Javascript object model for FHIR standard Model follows FHIR R4 specifications.
47 lines (46 loc) • 1.57 kB
TypeScript
import * as t from 'io-ts';
import { IMeta } from './RTTI_Meta';
import { IElement } from './RTTI_Element';
import { INarrative } from './RTTI_Narrative';
import { IResourceList } from '../Union/RTTI_ResourceList';
import { IExtension } from './RTTI_Extension';
import { IIdentifier } from './RTTI_Identifier';
import { IHumanName } from './RTTI_HumanName';
import { IContactPoint } from './RTTI_ContactPoint';
import { IAddress } from './RTTI_Address';
import { IAttachment } from './RTTI_Attachment';
import { IPractitioner_Qualification } from './RTTI_Practitioner_Qualification';
import { ICodeableConcept } from './RTTI_CodeableConcept';
export declare enum PractitionerGenderKind {
_male = "male",
_female = "female",
_other = "other",
_unknown = "unknown"
}
export interface IPractitioner {
resourceType: 'Practitioner';
id?: string;
meta?: IMeta;
implicitRules?: string;
_implicitRules?: IElement;
language?: string;
_language?: IElement;
text?: INarrative;
contained?: IResourceList[];
extension?: IExtension[];
modifierExtension?: IExtension[];
identifier?: IIdentifier[];
active?: boolean;
_active?: IElement;
name?: IHumanName[];
telecom?: IContactPoint[];
address?: IAddress[];
gender?: PractitionerGenderKind;
_gender?: IElement;
birthDate?: string;
_birthDate?: IElement;
photo?: IAttachment[];
qualification?: IPractitioner_Qualification[];
communication?: ICodeableConcept[];
}
export declare const RTTI_Practitioner: t.Type<IPractitioner>;