Skip to content

Commit 75e420d

Browse files
refactor(specs): extract results field in a dedicated directory (generated)
algolia/api-clients-automation#5739 Co-authored-by: algolia-bot <accounts+algolia-api-client-bot@algolia.com> Co-authored-by: Clara Muller <5667350+ClaraMuller@users.noreply.github.com>
1 parent 81f119b commit 75e420d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

algoliasearch/composition/models/search_results_item.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -125,17 +125,17 @@ class SearchResultsItem(BaseModel):
125125
automatic_insights: Optional[bool] = None
126126
""" Whether automatic events collection is enabled for the application. """
127127
page: int
128-
""" Page of search results to retrieve. """
128+
""" The current page of the results. """
129129
nb_hits: int
130130
""" Number of results (hits). """
131131
nb_pages: int
132132
""" Number of pages of results. """
133133
hits_per_page: int
134-
""" Number of hits per page. """
134+
""" Number of hits returned per page. """
135135
hits: List[Hit]
136136
""" Search results (hits). Hits are records from your index that match the search criteria, augmented with additional attributes, such as, for highlighting. """
137137
query: str
138-
""" Search query. """
138+
""" The search query string. """
139139
params: str
140140
""" URL-encoded string of all search parameters. """
141141
compositions: Dict[str, ResultsCompositionInfoResponse]

0 commit comments

Comments
 (0)