Type alias FHIRPatientE

FHIRPatientE: R4.IPatient & {
    @type: "Patient";
    active: boolean;
    address?: R4.IAddress[];
    birthDate: string;
    communication?: R4.IPatient_Communication[];
    contact?: R4.IPatient_Contact[];
    gender: R4.PatientGenderKind;
    identifier: R4.IIdentifier[];
    name: R4.IHumanName[];
    resourceType: "Patient";
    telecom?: R4.IContactPoint[];
    [key: string]: unknown;
}

Type declaration

  • [key: string]: unknown
  • @type: "Patient"
  • active: boolean
  • Optional address?: R4.IAddress[]
  • birthDate: string
  • Optional communication?: R4.IPatient_Communication[]
  • Optional contact?: R4.IPatient_Contact[]
  • gender: R4.PatientGenderKind
  • identifier: R4.IIdentifier[]
  • name: R4.IHumanName[]
  • resourceType: "Patient"
  • Optional telecom?: R4.IContactPoint[]