Module Values.FeaturedResultsConflictExceptionSource

An error message with a list of conflicting queries used across different sets of featured results. This occurred with the request for a new featured results set. Check that the queries you specified for featured results are unique per featured results set for each index.

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

    An explanation for the conflicting queries.

    *)
  2. conflictingItems : ConflictingItems.t option;
    (*

    A list of the conflicting queries, including the query text, the name for the featured results set, and the identifier of the featured results set.

    *)
}
Sourceval make : ?message:??? -> ?conflictingItems:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of QueryText.t ]) list ] list | `String of String_.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