Module Values.ConflictingItemSource

Information about a conflicting query used across different sets of featured results. When you create a featured results set, you must check that the queries are unique per featured results set for each index.

Sourcetype nonrec t = {
  1. queryText : QueryText.t option;
    (*

    The text of the conflicting query.

    *)
  2. setName : String_.t option;
    (*

    The name for the set of featured results that the conflicting query belongs to.

    *)
  3. setId : String_.t option;
    (*

    The identifier of the set of featured results that the conflicting query belongs to.

    *)
}
Sourceval make : ?queryText:??? -> ?setName:??? -> ?setId:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of QueryText.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