Module Values.MetadataAttributeSource

Contains information about a metadata attribute.

Sourcetype nonrec t = {
  1. key : Key.t;
    (*

    The key of the metadata attribute.

    *)
  2. value : MetadataAttributeValue.t;
    (*

    Contains the value of the metadata attribute.

    *)
}
Sourceval context_ : string
Sourceval make : key:Key.t -> value:MetadataAttributeValue.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of Key.t | `Structure of (string * [> `Boolean of Boolean.t | `Double of NumberValue.t | `Enum of string | `List of [> `String of StringValue.t ] list | `String of StringValue.t ]) list ]) 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