Module Values.SearchResultLocationSource

Specifies a search result location within the content array, providing positioning information for cited content using search result index and block positions.

Sourcetype nonrec t = {
  1. searchResultIndex : SearchResultLocationSearchResultIndexInteger.t option;
    (*

    The index of the search result content block where the cited content is found.

    *)
  2. start : SearchResultLocationStartInteger.t option;
    (*

    The starting position in the content array where the cited content begins.

    *)
  3. end_ : SearchResultLocationEndInteger.t option;
    (*

    The ending position in the content array where the cited content ends.

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