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
Copy file name to clipboardExpand all lines: algoliasearch/Models/Composition/SearchResultsItem.cs
+48-48Lines changed: 48 additions & 48 deletions
Original file line number
Diff line number
Diff line change
@@ -25,32 +25,32 @@ public SearchResultsItem() { }
25
25
/// <summary>
26
26
/// Initializes a new instance of the SearchResultsItem class.
27
27
/// </summary>
28
-
/// <param name="page">The current page of the results. (required).</param>
28
+
/// <param name="hits">Search results (hits). Hits are records from your index that match the search criteria, augmented with additional attributes, such as, for highlighting. (required).</param>
29
+
/// <param name="hitsPerPage">Number of hits returned per page. (required).</param>
29
30
/// <param name="nbHits">Number of results (hits). (required).</param>
30
31
/// <param name="nbPages">Number of pages of results. (required).</param>
31
-
/// <param name="hitsPerPage">Number of hits returned per page. (required).</param>
32
-
/// <param name="hits">Search results (hits). Hits are records from your index that match the search criteria, augmented with additional attributes, such as, for highlighting. (required).</param>
/// Search results (hits). Hits are records from your index that match the search criteria, augmented with additional attributes, such as, for highlighting.
241
241
/// </summary>
242
-
/// <value>The current page of the results.</value>
243
-
[JsonPropertyName("page")]
244
-
publicintPage{get;set;}
242
+
/// <value>Search results (hits). Hits are records from your index that match the search criteria, augmented with additional attributes, such as, for highlighting. </value>
243
+
[JsonPropertyName("hits")]
244
+
publicList<T>Hits{get;set;}
245
+
246
+
/// <summary>
247
+
/// Number of hits returned per page.
248
+
/// </summary>
249
+
/// <value>Number of hits returned per page.</value>
/// <value>Number of hits returned per page.</value>
264
-
[JsonPropertyName("hitsPerPage")]
265
-
publicintHitsPerPage{get;set;}
270
+
/// <value>The current page of the results.</value>
271
+
[JsonPropertyName("page")]
272
+
publicintPage{get;set;}
266
273
267
274
/// <summary>
268
-
/// Search results (hits). Hits are records from your index that match the search criteria, augmented with additional attributes, such as, for highlighting.
275
+
/// URL-encoded string of all search parameters.
269
276
/// </summary>
270
-
/// <value>Search results (hits). Hits are records from your index that match the search criteria, augmented with additional attributes, such as, for highlighting. </value>
271
-
[JsonPropertyName("hits")]
272
-
publicList<T>Hits{get;set;}
277
+
/// <value>URL-encoded string of all search parameters.</value>
0 commit comments