Module Values.ImageSetsMetadataSummarySource

Summary of the image set metadata.

Sourcetype nonrec t = {
  1. imageSetId : ImageSetId.t option;
    (*

    The image set identifier.

    *)
  2. version : Integer.t option;
    (*

    The image set version.

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

    The time an image set is created. Sample creation date is provided in 1985-04-12T23:20:50.52Z format.

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

    The time an image set was last updated.

    *)
  5. lastAccessedAt : Date.t option;
    (*

    When the image set was last accessed.

    *)
  6. storageTier : StorageTier.t option;
    (*

    The image set's storage tier.

    *)
  7. dICOMTags : DICOMTags.t option;
    (*

    The DICOM tags associated with the image set.

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

    The flag to determine whether the image set is primary or not.

    *)
}
Sourceval make : ?imageSetId:??? -> ?version:??? -> ?createdAt:??? -> ?updatedAt:??? -> ?lastAccessedAt:??? -> ?storageTier:??? -> ?dICOMTags:??? -> ?isPrimary:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `Enum of string | `Integer of Integer.t | `String of ImageSetId.t | `Structure of (string * [> `Integer of DICOMNumberOfStudyRelatedSeries.t | `String of DICOMPatientId.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