Module Values.ClinicalNoteGenerationResultSource

Results of clinical note generation including note, transcript, and summary

Sourcetype nonrec t = {
  1. noteResult : ArtifactDetails.t option;
    (*

    Details about the generated clinical note

    *)
  2. transcriptResult : ArtifactDetails.t option;
    (*

    Details about the generated transcript

    *)
  3. afterVisitSummaryResult : ArtifactDetails.t option;
    (*

    Details about the generated after visit summary

    *)
}
Sourceval make : ?noteResult:??? -> ?transcriptResult:??? -> ?afterVisitSummaryResult:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Structure of (string * [> `Enum of string | `String of Uri_.t ]) list ]) 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