Module Values.AdditionalResultAttributeSource

An attribute returned from an index query.

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

    The key that identifies the attribute.

    *)
  2. valueType : AdditionalResultAttributeValueType.t option;
    (*

    The data type of the Value property.

    *)
  3. value : AdditionalResultAttributeValue.t option;
    (*

    An object that contains the attribute value.

    *)
}
Sourceval make : ?key:??? -> ?valueType:??? -> ?value:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of String_.t | `Structure of (string * [> `Structure of (string * [> `List of [> `Structure of (string * [> `Boolean of Boolean.t | `Enum of string | `Integer of Integer.t ]) list ] list | `String of String_.t ]) list ]) 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