Skip to main content

Overview

Encounter type represents a clinical encounter with patient information. The code snippet below shows how to use the Encounter type to create an encounter object.
JavaScript
type Encounter = {
  identifier?: string;
  patient: Patient;
};

Properties