Module Values_2.MetadataInfoSource

A structure containing metadata information for a schema version.

Sourcetype nonrec t = {
  1. metadataValue : MetadataValueString.t option;
    (*

    The metadata key’s corresponding value.

    *)
  2. createdTime : Values_1.CreatedTimestamp.t option;
    (*

    The time at which the entry was created.

    *)
  3. otherMetadataValueList : OtherMetadataValueList.t option;
    (*

    Other metadata belonging to the same metadata key.

    *)
}
Sourceval make : ?metadataValue:??? -> ?createdTime:??? -> ?otherMetadataValueList:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of MetadataValueString.t ]) list ] list | `String of MetadataValueString.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