SearchDictionaryEntriesResponse
algoliasearch.search.SearchDictionaryEntriesResponse
case class SearchDictionaryEntriesResponse(hits: Seq[DictionaryEntry], page: Int, nbHits: Int, nbPages: Int)
SearchDictionaryEntriesResponse
Value parameters
- hits
-
Dictionary entries matching the search criteria.
- nbHits
-
Number of results (hits).
- nbPages
-
Number of pages of results.
- page
-
Requested page of the API response. Algolia uses
page
andhitsPerPage
to control how search results are displayed (paginated). -hitsPerPage
: sets the number of search results (hits) displayed per page. -page
: specifies the page number of the search results you want to retrieve. Page numbering starts at 0, so the first page ispage=0
, the second ispage=1
, and so on. For example, to display 10 results per page starting from the third page, sethitsPerPage
to 10 andpage
to 2.
Attributes
- Graph
-
- Supertypes
-
trait Serializabletrait Producttrait Equalsclass Objecttrait Matchableclass Any
Members list
In this article