Module Values.ThesaurusSummarySource

An array of summary information for a thesaurus or multiple thesauri.

Sourcetype nonrec t = {
  1. id : ThesaurusId.t option;
    (*

    The identifier of the thesaurus.

    *)
  2. name : ThesaurusName.t option;
    (*

    The name of the thesaurus.

    *)
  3. status : ThesaurusStatus.t option;
    (*

    The status of the thesaurus.

    *)
  4. createdAt : Timestamp.t option;
    (*

    The Unix timestamp when the thesaurus was created.

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

    The Unix timestamp when the thesaurus was last updated.

    *)
}
Sourceval make : ?id:??? -> ?name:??? -> ?status:??? -> ?createdAt:??? -> ?updatedAt:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of ThesaurusId.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