Module Values_2.MetadataKeyValuePairSource

A structure containing a key value pair for metadata.

Sourcetype nonrec t = {
  1. metadataKey : MetadataKeyString.t option;
    (*

    A metadata key.

    *)
  2. metadataValue : MetadataValueString.t option;
    (*

    A metadata key’s corresponding value.

    *)
}
Sourceval make : ?metadataKey:??? -> ?metadataValue:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of MetadataKeyString.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