Module Values.DICOMUpdatesSource

The object containing removableAttributes and updatableAttributes.

Sourcetype nonrec t = {
  1. removableAttributes : DICOMAttribute.t option;
    (*

    The DICOM tags to be removed from ImageSetMetadata.

    *)
  2. updatableAttributes : DICOMAttribute.t option;
    (*

    The DICOM tags that need to be updated in ImageSetMetadata.

    *)
}
Sourceval make : ?removableAttributes:??? -> ?updatableAttributes:??? -> unit -> t
Sourceval of_header_and_body : ('a * DICOMAttribute.t) -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Blob of DICOMAttribute.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