Module Values.SearchByAttributeValueSource

The search input attribute value.

Sourcetype nonrec t = {
  1. dICOMPatientId : DICOMPatientId.t option;
    (*

    The patient ID input for search.

    *)
  2. dICOMAccessionNumber : DICOMAccessionNumber.t option;
    (*

    The DICOM accession number for search.

    *)
  3. dICOMStudyId : DICOMStudyId.t option;
    (*

    The DICOM study ID for search.

    *)
  4. dICOMStudyInstanceUID : DICOMStudyInstanceUID.t option;
    (*

    The DICOM study instance UID for search.

    *)
  5. dICOMSeriesInstanceUID : DICOMSeriesInstanceUID.t option;
    (*

    The Series Instance UID input for search.

    *)
  6. createdAt : Date.t option;
    (*

    The created at time of the image set provided for search.

    *)
  7. updatedAt : Date.t option;
    (*

    The timestamp input for search.

    *)
  8. dICOMStudyDateAndTime : DICOMStudyDateAndTime.t option;
    (*

    The aggregated structure containing DICOM study date and study time for search.

    *)
  9. isPrimary : Boolean.t option;
    (*

    The primary image set flag provided for search.

    *)
}
Sourceval make : ?dICOMPatientId:??? -> ?dICOMAccessionNumber:??? -> ?dICOMStudyId:??? -> ?dICOMStudyInstanceUID:??? -> ?dICOMSeriesInstanceUID:??? -> ?createdAt:??? -> ?updatedAt:??? -> ?dICOMStudyDateAndTime:??? -> ?isPrimary:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `String of DICOMPatientId.t | `Structure of (string * [> `String of DICOMStudyDate.t ]) list | `Timestamp of Date.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