SearchResults

Properties

items: PageContent[SearchResultsItem];

List of found items

requestId: string;

User field for traceability of requests. The value was generated by the client requester.

totalHits: long;

Total number of documents matching the query

Source

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
interface SearchResults {

  /**
   * List of found items
   */
  items: PageContent[SearchResultsItem];

  /**
   * User field for traceability of requests. The value was generated by the client requester.
   */
  requestId: string;

  /**
   * Total number of documents matching the query
   */
  totalHits: long;

}