Module Values.DicomMetadataMappingSource

Maps DCM files to their metadata.

Sourcetype nonrec t = {
  1. studyInstanceUID : DICOMStudyInstanceUID.t;
    (*

    The Study Instance UID that identifies the study.

    *)
  2. seriesInstanceUID : DICOMSeriesInstanceUID.t option;
    (*

    The Series Instance UID that identifies the series. This parameter is optional because the mapping might be at the study level.

    *)
  3. metadataFilePath : MetadataFilePath.t;
    (*

    The path to the JSON metadata file relative to inputS3Uri.

    *)
}
Sourceval context_ : string
Sourceval make : ?seriesInstanceUID:??? -> studyInstanceUID:DICOMStudyInstanceUID.t -> metadataFilePath:MetadataFilePath.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of DICOMStudyInstanceUID.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