Module Values.ExpandConfigurationSource

Specifies the configuration information needed to customize how collapsed search result groups expand.

Sourcetype nonrec t = {
  1. maxResultItemsToExpand : Integer.t option;
    (*

    The number of collapsed search result groups to expand. If you set this value to 10, for example, only the first 10 out of 100 result groups will have expand functionality.

    *)
  2. maxExpandedResultsPerItem : Integer.t option;
    (*

    The number of expanded results to show per collapsed primary document. For instance, if you set this value to 3, then at most 3 results per collapsed group will be displayed.

    *)
}
Sourceval make : ?maxResultItemsToExpand:??? -> ?maxExpandedResultsPerItem:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Integer.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