You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* @param processingTimeMS Time the server took to process the request, in milliseconds.
14
-
* @param page Page of search results to retrieve.
15
-
* @param nbHits Number of results (hits).
16
-
* @param nbPages Number of pages of results.
17
-
* @param hitsPerPage Number of hits per page.
18
14
* @param hits Search results (hits). Hits are records from your index that match the search criteria, augmented with additional attributes, such as, for highlighting.
19
15
* @param query Search query.
20
16
* @param params URL-encoded string of all search parameters.
* @param userData An object with custom data. You can store up to 32kB as custom data.
43
39
* @param queryID Unique identifier for the query. This is used for [click analytics](https://www.algolia.com/doc/guides/analytics/click-analytics/).
44
40
* @param automaticInsights Whether automatic events collection is enabled for the application.
41
+
* @param page Page of search results to retrieve.
42
+
* @param nbHits Number of results (hits).
43
+
* @param nbPages Number of pages of results.
44
+
* @param hitsPerPage Number of hits per page.
45
45
*/
46
46
@Serializable(SearchResponseSerializer::class)
47
47
publicdata classSearchResponse(
48
48
49
49
/** Time the server took to process the request, in milliseconds. */
50
50
valprocessingTimeMS:Int,
51
51
52
-
/** Page of search results to retrieve. */
53
-
valpage:Int,
54
-
55
-
/** Number of results (hits). */
56
-
valnbHits:Int,
57
-
58
-
/** Number of pages of results. */
59
-
valnbPages:Int,
60
-
61
-
/** Number of hits per page. */
62
-
valhitsPerPage:Int,
63
-
64
52
/** Search results (hits). Hits are records from your index that match the search criteria, augmented with additional attributes, such as, for highlighting. */
65
53
valhits:List<Hit>,
66
54
@@ -142,17 +130,25 @@ public data class SearchResponse(
142
130
/** Whether automatic events collection is enabled for the application. */
0 commit comments