Module Values.DataSetSummarySource

A subset of the possible data set attributes.

Sourcetype nonrec t = {
  1. creationTime : Timestamp.t option;
    (*

    The timestamp when the data set was created.

    *)
  2. dataSetName : String200.t option;
    (*

    The name of the data set.

    *)
  3. dataSetOrg : String20.t option;
    (*

    The type of data set. The only supported value is VSAM.

    *)
  4. format : String20.t option;
    (*

    The format of the data set.

    *)
  5. lastReferencedTime : Timestamp.t option;
    (*

    The last time the data set was referenced.

    *)
  6. lastUpdatedTime : Timestamp.t option;
    (*

    The last time the data set was updated.

    *)
}
Sourceval make : ?creationTime:??? -> ?dataSetName:??? -> ?dataSetOrg:??? -> ?format:??? -> ?lastReferencedTime:??? -> ?lastUpdatedTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of String200.t | `Timestamp of Timestamp.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