Module Values.FoundByKeyValueSource

A data type pair that consists of a KeyName and Values list that were used to find a profile returned in response to a SearchProfiles request.

Sourcetype nonrec t = {
  1. keyName : Name.t option;
    (*

    A searchable identifier of a customer profile.

    *)
  2. values : RequestValueList.t option;
    (*

    A list of key values.

    *)
}
Sourceval make : ?keyName:??? -> ?values:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of String1To255.t ] list | `String of Name.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