Module Values.PatientInsightsPatientContextSource

Details for a patient

Sourcetype nonrec t = {
  1. patientId : SensitiveNonEmptyString.t;
    (*

    Unique identifier of the patient

    *)
  2. dateOfBirth : SensitiveIsoDateString.t option;
    (*

    Date of birth of the patient.

    *)
  3. pronouns : Pronouns.t option;
    (*

    Pronouns preferred by the patient.

    *)
}
Sourceval context_ : string
Sourceval make : ?dateOfBirth:??? -> ?pronouns:??? -> patientId:SensitiveNonEmptyString.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of SensitiveNonEmptyString.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t