algolia 2.3.4 → 3.0.0.alpha.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (602) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +21 -93
  3. data/Gemfile +1 -14
  4. data/Gemfile.lock +64 -0
  5. data/README.md +4 -6
  6. data/Rakefile +0 -39
  7. data/algolia.gemspec +24 -39
  8. data/lib/algolia/api/abtesting_client.rb +418 -0
  9. data/lib/algolia/api/analytics_client.rb +1294 -0
  10. data/lib/algolia/api/ingestion_client.rb +1659 -0
  11. data/lib/algolia/api/insights_client.rb +252 -0
  12. data/lib/algolia/api/monitoring_client.rb +555 -0
  13. data/lib/algolia/api/personalization_client.rb +365 -0
  14. data/lib/algolia/api/query_suggestions_client.rb +491 -0
  15. data/lib/algolia/api/recommend_client.rb +460 -0
  16. data/lib/algolia/api/search_client.rb +2723 -0
  17. data/lib/algolia/api_client.rb +153 -0
  18. data/lib/algolia/api_error.rb +48 -0
  19. data/lib/algolia/configuration.rb +41 -0
  20. data/lib/algolia/logger_helper.rb +1 -1
  21. data/lib/algolia/models/abtesting/ab_test.rb +332 -0
  22. data/lib/algolia/models/abtesting/ab_test_response.rb +219 -0
  23. data/lib/algolia/models/abtesting/ab_tests_variant.rb +217 -0
  24. data/lib/algolia/models/abtesting/ab_tests_variant_search_params.rb +236 -0
  25. data/lib/algolia/models/abtesting/add_ab_tests_request.rb +239 -0
  26. data/lib/algolia/models/abtesting/add_ab_tests_variant.rb +96 -0
  27. data/lib/algolia/models/abtesting/currencies_value.rb +223 -0
  28. data/lib/algolia/models/abtesting/custom_search_params.rb +195 -0
  29. data/lib/algolia/models/abtesting/error_base.rb +196 -0
  30. data/lib/algolia/models/abtesting/filter_effects.rb +202 -0
  31. data/lib/algolia/models/abtesting/filter_effects_empty_search.rb +204 -0
  32. data/lib/algolia/models/abtesting/filter_effects_outliers.rb +204 -0
  33. data/lib/algolia/models/abtesting/list_ab_tests_response.rb +221 -0
  34. data/lib/algolia/models/abtesting/variant.rb +399 -0
  35. data/lib/algolia/models/analytics/average_click_event.rb +219 -0
  36. data/lib/algolia/models/analytics/click_position.rb +209 -0
  37. data/lib/algolia/models/analytics/click_through_rate_event.rb +249 -0
  38. data/lib/algolia/models/analytics/conversion_rate_event.rb +249 -0
  39. data/lib/algolia/models/analytics/direction.rb +33 -0
  40. data/lib/algolia/models/analytics/error_base.rb +196 -0
  41. data/lib/algolia/models/analytics/get_average_click_position_response.rb +221 -0
  42. data/lib/algolia/models/analytics/get_click_positions_response.rb +215 -0
  43. data/lib/algolia/models/analytics/get_click_through_rate_response.rb +251 -0
  44. data/lib/algolia/models/analytics/get_conversation_rate_response.rb +251 -0
  45. data/lib/algolia/models/analytics/get_no_click_rate_response.rb +251 -0
  46. data/lib/algolia/models/analytics/get_no_results_rate_response.rb +251 -0
  47. data/lib/algolia/models/analytics/get_searches_count_response.rb +209 -0
  48. data/lib/algolia/models/analytics/get_searches_no_clicks_response.rb +197 -0
  49. data/lib/algolia/models/analytics/get_searches_no_results_response.rb +197 -0
  50. data/lib/algolia/models/analytics/get_status_response.rb +195 -0
  51. data/lib/algolia/models/analytics/get_top_countries_response.rb +197 -0
  52. data/lib/algolia/models/analytics/get_top_filter_attribute.rb +207 -0
  53. data/lib/algolia/models/analytics/get_top_filter_attributes_response.rb +197 -0
  54. data/lib/algolia/models/analytics/get_top_filter_for_attribute.rb +231 -0
  55. data/lib/algolia/models/analytics/get_top_filter_for_attribute_response.rb +197 -0
  56. data/lib/algolia/models/analytics/get_top_filters_no_results_response.rb +197 -0
  57. data/lib/algolia/models/analytics/get_top_filters_no_results_value.rb +219 -0
  58. data/lib/algolia/models/analytics/get_top_filters_no_results_values.rb +209 -0
  59. data/lib/algolia/models/analytics/get_top_hits_response.rb +96 -0
  60. data/lib/algolia/models/analytics/get_top_searches_response.rb +96 -0
  61. data/lib/algolia/models/analytics/get_users_count_response.rb +209 -0
  62. data/lib/algolia/models/analytics/no_click_rate_event.rb +249 -0
  63. data/lib/algolia/models/analytics/no_results_rate_event.rb +249 -0
  64. data/lib/algolia/models/analytics/order_by.rb +35 -0
  65. data/lib/algolia/models/analytics/search_event.rb +207 -0
  66. data/lib/algolia/models/analytics/search_no_click_event.rb +219 -0
  67. data/lib/algolia/models/analytics/search_no_result_event.rb +219 -0
  68. data/lib/algolia/models/analytics/top_country.rb +207 -0
  69. data/lib/algolia/models/analytics/top_hit.rb +207 -0
  70. data/lib/algolia/models/analytics/top_hit_with_analytics.rb +285 -0
  71. data/lib/algolia/models/analytics/top_hits_response.rb +197 -0
  72. data/lib/algolia/models/analytics/top_hits_response_with_analytics.rb +197 -0
  73. data/lib/algolia/models/analytics/top_search.rb +219 -0
  74. data/lib/algolia/models/analytics/top_search_with_analytics.rb +309 -0
  75. data/lib/algolia/models/analytics/top_searches_response.rb +197 -0
  76. data/lib/algolia/models/analytics/top_searches_response_with_analytics.rb +197 -0
  77. data/lib/algolia/models/analytics/user_with_date.rb +207 -0
  78. data/lib/algolia/models/ingestion/action_type.rb +34 -0
  79. data/lib/algolia/models/ingestion/auth_algolia.rb +207 -0
  80. data/lib/algolia/models/ingestion/auth_algolia_partial.rb +203 -0
  81. data/lib/algolia/models/ingestion/auth_api_key.rb +195 -0
  82. data/lib/algolia/models/ingestion/auth_api_key_partial.rb +193 -0
  83. data/lib/algolia/models/ingestion/auth_basic.rb +206 -0
  84. data/lib/algolia/models/ingestion/auth_basic_partial.rb +202 -0
  85. data/lib/algolia/models/ingestion/auth_google_service_account.rb +208 -0
  86. data/lib/algolia/models/ingestion/auth_google_service_account_partial.rb +204 -0
  87. data/lib/algolia/models/ingestion/auth_input.rb +99 -0
  88. data/lib/algolia/models/ingestion/auth_input_partial.rb +99 -0
  89. data/lib/algolia/models/ingestion/auth_o_auth.rb +220 -0
  90. data/lib/algolia/models/ingestion/auth_o_auth_partial.rb +214 -0
  91. data/lib/algolia/models/ingestion/authentication.rb +283 -0
  92. data/lib/algolia/models/ingestion/authentication_create.rb +249 -0
  93. data/lib/algolia/models/ingestion/authentication_create_response.rb +220 -0
  94. data/lib/algolia/models/ingestion/authentication_search.rb +197 -0
  95. data/lib/algolia/models/ingestion/authentication_sort_keys.rb +36 -0
  96. data/lib/algolia/models/ingestion/authentication_type.rb +36 -0
  97. data/lib/algolia/models/ingestion/authentication_update.rb +243 -0
  98. data/lib/algolia/models/ingestion/authentication_update_response.rb +220 -0
  99. data/lib/algolia/models/ingestion/big_commerce_channel.rb +207 -0
  100. data/lib/algolia/models/ingestion/big_commerce_metafield.rb +207 -0
  101. data/lib/algolia/models/ingestion/big_query_data_type.rb +33 -0
  102. data/lib/algolia/models/ingestion/delete_response.rb +195 -0
  103. data/lib/algolia/models/ingestion/destination.rb +283 -0
  104. data/lib/algolia/models/ingestion/destination_create.rb +250 -0
  105. data/lib/algolia/models/ingestion/destination_create_response.rb +220 -0
  106. data/lib/algolia/models/ingestion/destination_index_name.rb +238 -0
  107. data/lib/algolia/models/ingestion/destination_index_prefix.rb +195 -0
  108. data/lib/algolia/models/ingestion/destination_input.rb +96 -0
  109. data/lib/algolia/models/ingestion/destination_search.rb +197 -0
  110. data/lib/algolia/models/ingestion/destination_sort_keys.rb +35 -0
  111. data/lib/algolia/models/ingestion/destination_type.rb +34 -0
  112. data/lib/algolia/models/ingestion/destination_update.rb +243 -0
  113. data/lib/algolia/models/ingestion/destination_update_response.rb +220 -0
  114. data/lib/algolia/models/ingestion/docker_image_type.rb +34 -0
  115. data/lib/algolia/models/ingestion/docker_registry.rb +33 -0
  116. data/lib/algolia/models/ingestion/docker_source_discover.rb +207 -0
  117. data/lib/algolia/models/ingestion/docker_source_streams.rb +196 -0
  118. data/lib/algolia/models/ingestion/error_base.rb +196 -0
  119. data/lib/algolia/models/ingestion/event.rb +311 -0
  120. data/lib/algolia/models/ingestion/event_sort_keys.rb +34 -0
  121. data/lib/algolia/models/ingestion/event_status.rb +37 -0
  122. data/lib/algolia/models/ingestion/event_type.rb +35 -0
  123. data/lib/algolia/models/ingestion/list_authentications_response.rb +207 -0
  124. data/lib/algolia/models/ingestion/list_destinations_response.rb +207 -0
  125. data/lib/algolia/models/ingestion/list_events_response.rb +218 -0
  126. data/lib/algolia/models/ingestion/list_sources_response.rb +207 -0
  127. data/lib/algolia/models/ingestion/list_tasks_response.rb +208 -0
  128. data/lib/algolia/models/ingestion/mapping_type_csv.rb +36 -0
  129. data/lib/algolia/models/ingestion/method_type.rb +33 -0
  130. data/lib/algolia/models/ingestion/on_demand_date_utils_input.rb +208 -0
  131. data/lib/algolia/models/ingestion/on_demand_trigger.rb +227 -0
  132. data/lib/algolia/models/ingestion/on_demand_trigger_input.rb +217 -0
  133. data/lib/algolia/models/ingestion/on_demand_trigger_type.rb +32 -0
  134. data/lib/algolia/models/ingestion/order_keys.rb +33 -0
  135. data/lib/algolia/models/ingestion/pagination.rb +227 -0
  136. data/lib/algolia/models/ingestion/platform.rb +33 -0
  137. data/lib/algolia/models/ingestion/platform_none.rb +32 -0
  138. data/lib/algolia/models/ingestion/platform_with_none.rb +96 -0
  139. data/lib/algolia/models/ingestion/record_type.rb +33 -0
  140. data/lib/algolia/models/ingestion/run.rb +359 -0
  141. data/lib/algolia/models/ingestion/run_list_response.rb +218 -0
  142. data/lib/algolia/models/ingestion/run_outcome.rb +34 -0
  143. data/lib/algolia/models/ingestion/run_progress.rb +201 -0
  144. data/lib/algolia/models/ingestion/run_reason_code.rb +38 -0
  145. data/lib/algolia/models/ingestion/run_response.rb +208 -0
  146. data/lib/algolia/models/ingestion/run_sort_keys.rb +34 -0
  147. data/lib/algolia/models/ingestion/run_status.rb +36 -0
  148. data/lib/algolia/models/ingestion/run_type.rb +34 -0
  149. data/lib/algolia/models/ingestion/schedule_date_utils_input.rb +214 -0
  150. data/lib/algolia/models/ingestion/schedule_trigger.rb +251 -0
  151. data/lib/algolia/models/ingestion/schedule_trigger_input.rb +229 -0
  152. data/lib/algolia/models/ingestion/schedule_trigger_type.rb +32 -0
  153. data/lib/algolia/models/ingestion/source.rb +282 -0
  154. data/lib/algolia/models/ingestion/source_big_commerce.rb +235 -0
  155. data/lib/algolia/models/ingestion/source_big_query.rb +278 -0
  156. data/lib/algolia/models/ingestion/source_commercetools.rb +238 -0
  157. data/lib/algolia/models/ingestion/source_create.rb +248 -0
  158. data/lib/algolia/models/ingestion/source_create_response.rb +218 -0
  159. data/lib/algolia/models/ingestion/source_csv.rb +276 -0
  160. data/lib/algolia/models/ingestion/source_docker.rb +261 -0
  161. data/lib/algolia/models/ingestion/source_input.rb +100 -0
  162. data/lib/algolia/models/ingestion/source_json.rb +236 -0
  163. data/lib/algolia/models/ingestion/source_search.rb +196 -0
  164. data/lib/algolia/models/ingestion/source_sort_keys.rb +35 -0
  165. data/lib/algolia/models/ingestion/source_type.rb +37 -0
  166. data/lib/algolia/models/ingestion/source_update.rb +211 -0
  167. data/lib/algolia/models/ingestion/source_update_commercetools.rb +207 -0
  168. data/lib/algolia/models/ingestion/source_update_docker.rb +246 -0
  169. data/lib/algolia/models/ingestion/source_update_input.rb +99 -0
  170. data/lib/algolia/models/ingestion/source_update_response.rb +218 -0
  171. data/lib/algolia/models/ingestion/subscription_trigger.rb +217 -0
  172. data/lib/algolia/models/ingestion/subscription_trigger_type.rb +32 -0
  173. data/lib/algolia/models/ingestion/task.rb +334 -0
  174. data/lib/algolia/models/ingestion/task_create.rb +299 -0
  175. data/lib/algolia/models/ingestion/task_create_response.rb +208 -0
  176. data/lib/algolia/models/ingestion/task_create_trigger.rb +97 -0
  177. data/lib/algolia/models/ingestion/task_input.rb +96 -0
  178. data/lib/algolia/models/ingestion/task_search.rb +196 -0
  179. data/lib/algolia/models/ingestion/task_sort_keys.rb +36 -0
  180. data/lib/algolia/models/ingestion/task_update.rb +250 -0
  181. data/lib/algolia/models/ingestion/task_update_response.rb +208 -0
  182. data/lib/algolia/models/ingestion/trigger.rb +97 -0
  183. data/lib/algolia/models/ingestion/trigger_type.rb +34 -0
  184. data/lib/algolia/models/ingestion/trigger_update_input.rb +196 -0
  185. data/lib/algolia/models/ingestion/window.rb +208 -0
  186. data/lib/algolia/models/insights/add_to_cart_event.rb +32 -0
  187. data/lib/algolia/models/insights/added_to_cart_object_ids.rb +384 -0
  188. data/lib/algolia/models/insights/added_to_cart_object_ids_after_search.rb +419 -0
  189. data/lib/algolia/models/insights/click_event.rb +32 -0
  190. data/lib/algolia/models/insights/clicked_filters.rb +351 -0
  191. data/lib/algolia/models/insights/clicked_object_ids.rb +341 -0
  192. data/lib/algolia/models/insights/clicked_object_ids_after_search.rb +418 -0
  193. data/lib/algolia/models/insights/conversion_event.rb +32 -0
  194. data/lib/algolia/models/insights/converted_filters.rb +350 -0
  195. data/lib/algolia/models/insights/converted_object_ids.rb +351 -0
  196. data/lib/algolia/models/insights/converted_object_ids_after_search.rb +386 -0
  197. data/lib/algolia/models/insights/discount.rb +97 -0
  198. data/lib/algolia/models/insights/error_base.rb +196 -0
  199. data/lib/algolia/models/insights/events_items.rb +106 -0
  200. data/lib/algolia/models/insights/events_response.rb +204 -0
  201. data/lib/algolia/models/insights/insights_events.rb +215 -0
  202. data/lib/algolia/models/insights/object_data.rb +211 -0
  203. data/lib/algolia/models/insights/object_data_after_search.rb +221 -0
  204. data/lib/algolia/models/insights/price.rb +97 -0
  205. data/lib/algolia/models/insights/purchase_event.rb +32 -0
  206. data/lib/algolia/models/insights/purchased_object_ids.rb +384 -0
  207. data/lib/algolia/models/insights/purchased_object_ids_after_search.rb +419 -0
  208. data/lib/algolia/models/insights/view_event.rb +32 -0
  209. data/lib/algolia/models/insights/viewed_filters.rb +351 -0
  210. data/lib/algolia/models/insights/viewed_object_ids.rb +351 -0
  211. data/lib/algolia/models/monitoring/error_base.rb +196 -0
  212. data/lib/algolia/models/monitoring/get_inventory403_response.rb +192 -0
  213. data/lib/algolia/models/monitoring/incident.rb +225 -0
  214. data/lib/algolia/models/monitoring/incidents_inner.rb +202 -0
  215. data/lib/algolia/models/monitoring/incidents_response.rb +194 -0
  216. data/lib/algolia/models/monitoring/indexing_time_response.rb +192 -0
  217. data/lib/algolia/models/monitoring/indexing_time_response_metrics.rb +194 -0
  218. data/lib/algolia/models/monitoring/infrastructure_response.rb +192 -0
  219. data/lib/algolia/models/monitoring/infrastructure_response_metrics.rb +243 -0
  220. data/lib/algolia/models/monitoring/inventory_response.rb +194 -0
  221. data/lib/algolia/models/monitoring/latency_response.rb +192 -0
  222. data/lib/algolia/models/monitoring/latency_response_metrics.rb +194 -0
  223. data/lib/algolia/models/monitoring/metric.rb +37 -0
  224. data/lib/algolia/models/monitoring/period.rb +36 -0
  225. data/lib/algolia/models/monitoring/probes_metric.rb +203 -0
  226. data/lib/algolia/models/monitoring/region.rb +46 -0
  227. data/lib/algolia/models/monitoring/server.rb +272 -0
  228. data/lib/algolia/models/monitoring/server_status.rb +32 -0
  229. data/lib/algolia/models/monitoring/status.rb +35 -0
  230. data/lib/algolia/models/monitoring/status_response.rb +194 -0
  231. data/lib/algolia/models/monitoring/time_inner.rb +203 -0
  232. data/lib/algolia/models/monitoring/type.rb +32 -0
  233. data/lib/algolia/models/personalization/delete_user_profile_response.rb +207 -0
  234. data/lib/algolia/models/personalization/error_base.rb +196 -0
  235. data/lib/algolia/models/personalization/event_scoring.rb +219 -0
  236. data/lib/algolia/models/personalization/facet_scoring.rb +207 -0
  237. data/lib/algolia/models/personalization/get_user_token_response.rb +219 -0
  238. data/lib/algolia/models/personalization/personalization_strategy_params.rb +223 -0
  239. data/lib/algolia/models/personalization/set_personalization_strategy_response.rb +195 -0
  240. data/lib/algolia/models/query-suggestions/base_query_suggestions_configuration_response.rb +223 -0
  241. data/lib/algolia/models/query-suggestions/base_query_suggestions_configuration_with_index.rb +195 -0
  242. data/lib/algolia/models/query-suggestions/base_response.rb +203 -0
  243. data/lib/algolia/models/query-suggestions/error_base.rb +196 -0
  244. data/lib/algolia/models/query-suggestions/facet.rb +204 -0
  245. data/lib/algolia/models/query-suggestions/get_config_status200_response.rb +233 -0
  246. data/lib/algolia/models/query-suggestions/get_log_file200_response.rb +244 -0
  247. data/lib/algolia/models/query-suggestions/languages.rb +97 -0
  248. data/lib/algolia/models/query-suggestions/log_level.rb +34 -0
  249. data/lib/algolia/models/query-suggestions/query_suggestions_configuration.rb +255 -0
  250. data/lib/algolia/models/query-suggestions/query_suggestions_configuration_response.rb +315 -0
  251. data/lib/algolia/models/query-suggestions/query_suggestions_configuration_with_index.rb +275 -0
  252. data/lib/algolia/models/query-suggestions/source_index.rb +305 -0
  253. data/lib/algolia/models/recommend/advanced_syntax_features.rb +33 -0
  254. data/lib/algolia/models/recommend/alternatives_as_exact.rb +34 -0
  255. data/lib/algolia/models/recommend/anchoring.rb +35 -0
  256. data/lib/algolia/models/recommend/around_precision.rb +97 -0
  257. data/lib/algolia/models/recommend/around_precision_from_value_inner.rb +201 -0
  258. data/lib/algolia/models/recommend/around_radius.rb +97 -0
  259. data/lib/algolia/models/recommend/around_radius_all.rb +32 -0
  260. data/lib/algolia/models/recommend/automatic_facet_filter.rb +216 -0
  261. data/lib/algolia/models/recommend/automatic_facet_filters.rb +97 -0
  262. data/lib/algolia/models/recommend/base_recommend_request.rb +233 -0
  263. data/lib/algolia/models/recommend/base_recommendations_query.rb +246 -0
  264. data/lib/algolia/models/recommend/base_recommended_for_you_query.rb +234 -0
  265. data/lib/algolia/models/recommend/base_recommended_for_you_query_parameters.rb +195 -0
  266. data/lib/algolia/models/recommend/base_search_params.rb +564 -0
  267. data/lib/algolia/models/recommend/base_search_params_without_query.rb +546 -0
  268. data/lib/algolia/models/recommend/base_search_response.rb +517 -0
  269. data/lib/algolia/models/recommend/base_trending_facets_query.rb +226 -0
  270. data/lib/algolia/models/recommend/base_trending_items_query.rb +252 -0
  271. data/lib/algolia/models/recommend/condition.rb +244 -0
  272. data/lib/algolia/models/recommend/consequence.rb +239 -0
  273. data/lib/algolia/models/recommend/consequence_hide.rb +196 -0
  274. data/lib/algolia/models/recommend/consequence_params.rb +1121 -0
  275. data/lib/algolia/models/recommend/consequence_query.rb +97 -0
  276. data/lib/algolia/models/recommend/consequence_query_object.rb +207 -0
  277. data/lib/algolia/models/recommend/deleted_at_response.rb +208 -0
  278. data/lib/algolia/models/recommend/distinct.rb +97 -0
  279. data/lib/algolia/models/recommend/edit.rb +234 -0
  280. data/lib/algolia/models/recommend/edit_type.rb +33 -0
  281. data/lib/algolia/models/recommend/error_base.rb +196 -0
  282. data/lib/algolia/models/recommend/exact_on_single_word_query.rb +34 -0
  283. data/lib/algolia/models/recommend/exhaustive.rb +234 -0
  284. data/lib/algolia/models/recommend/facet_filters.rb +97 -0
  285. data/lib/algolia/models/recommend/facet_ordering.rb +205 -0
  286. data/lib/algolia/models/recommend/facets.rb +196 -0
  287. data/lib/algolia/models/recommend/facets_stats.rb +223 -0
  288. data/lib/algolia/models/recommend/get_recommend_task_response.rb +216 -0
  289. data/lib/algolia/models/recommend/get_recommendations_params.rb +198 -0
  290. data/lib/algolia/models/recommend/get_recommendations_response.rb +194 -0
  291. data/lib/algolia/models/recommend/highlight_result.rb +96 -0
  292. data/lib/algolia/models/recommend/highlight_result_option.rb +253 -0
  293. data/lib/algolia/models/recommend/ignore_plurals.rb +97 -0
  294. data/lib/algolia/models/recommend/index_settings_as_search_params.rb +723 -0
  295. data/lib/algolia/models/recommend/match_level.rb +34 -0
  296. data/lib/algolia/models/recommend/matched_geo_location.rb +213 -0
  297. data/lib/algolia/models/recommend/mixed_search_filters.rb +96 -0
  298. data/lib/algolia/models/recommend/mode.rb +33 -0
  299. data/lib/algolia/models/recommend/numeric_filters.rb +97 -0
  300. data/lib/algolia/models/recommend/optional_filters.rb +97 -0
  301. data/lib/algolia/models/recommend/params.rb +220 -0
  302. data/lib/algolia/models/recommend/personalization.rb +213 -0
  303. data/lib/algolia/models/recommend/promote.rb +96 -0
  304. data/lib/algolia/models/recommend/promote_object_id.rb +208 -0
  305. data/lib/algolia/models/recommend/promote_object_ids.rb +210 -0
  306. data/lib/algolia/models/recommend/query_type.rb +34 -0
  307. data/lib/algolia/models/recommend/ranking_info.rb +328 -0
  308. data/lib/algolia/models/recommend/re_ranking_apply_filter.rb +97 -0
  309. data/lib/algolia/models/recommend/recommend_hit.rb +271 -0
  310. data/lib/algolia/models/recommend/recommend_models.rb +35 -0
  311. data/lib/algolia/models/recommend/recommendation_models.rb +33 -0
  312. data/lib/algolia/models/recommend/recommendations_hit.rb +96 -0
  313. data/lib/algolia/models/recommend/recommendations_hits.rb +216 -0
  314. data/lib/algolia/models/recommend/recommendations_query.rb +304 -0
  315. data/lib/algolia/models/recommend/recommendations_request.rb +98 -0
  316. data/lib/algolia/models/recommend/recommendations_results.rb +553 -0
  317. data/lib/algolia/models/recommend/recommended_for_you_model.rb +32 -0
  318. data/lib/algolia/models/recommend/recommended_for_you_query.rb +292 -0
  319. data/lib/algolia/models/recommend/recommended_for_you_query_parameters.rb +1105 -0
  320. data/lib/algolia/models/recommend/redirect.rb +195 -0
  321. data/lib/algolia/models/recommend/redirect_rule_index_metadata.rb +242 -0
  322. data/lib/algolia/models/recommend/redirect_rule_index_metadata_data.rb +195 -0
  323. data/lib/algolia/models/recommend/remove_stop_words.rb +97 -0
  324. data/lib/algolia/models/recommend/remove_words_if_no_results.rb +35 -0
  325. data/lib/algolia/models/recommend/rendering_content.rb +193 -0
  326. data/lib/algolia/models/recommend/rule_response.rb +246 -0
  327. data/lib/algolia/models/recommend/rule_response_metadata.rb +193 -0
  328. data/lib/algolia/models/recommend/search_params_object.rb +1103 -0
  329. data/lib/algolia/models/recommend/search_params_query.rb +193 -0
  330. data/lib/algolia/models/recommend/search_recommend_rules_params.rb +268 -0
  331. data/lib/algolia/models/recommend/search_recommend_rules_response.rb +233 -0
  332. data/lib/algolia/models/recommend/semantic_search.rb +198 -0
  333. data/lib/algolia/models/recommend/snippet_result.rb +96 -0
  334. data/lib/algolia/models/recommend/snippet_result_option.rb +229 -0
  335. data/lib/algolia/models/recommend/sort_remaining_by.rb +34 -0
  336. data/lib/algolia/models/recommend/tag_filters.rb +97 -0
  337. data/lib/algolia/models/recommend/task_status.rb +33 -0
  338. data/lib/algolia/models/recommend/trending_facet_hit.rb +238 -0
  339. data/lib/algolia/models/recommend/trending_facets_model.rb +32 -0
  340. data/lib/algolia/models/recommend/trending_facets_query.rb +284 -0
  341. data/lib/algolia/models/recommend/trending_items_model.rb +32 -0
  342. data/lib/algolia/models/recommend/trending_items_query.rb +310 -0
  343. data/lib/algolia/models/recommend/typo_tolerance.rb +97 -0
  344. data/lib/algolia/models/recommend/typo_tolerance_enum.rb +33 -0
  345. data/lib/algolia/models/recommend/value.rb +226 -0
  346. data/lib/algolia/models/search/acl.rb +47 -0
  347. data/lib/algolia/models/search/action.rb +38 -0
  348. data/lib/algolia/models/search/add_api_key_response.rb +207 -0
  349. data/lib/algolia/models/search/advanced_syntax_features.rb +33 -0
  350. data/lib/algolia/models/search/alternatives_as_exact.rb +34 -0
  351. data/lib/algolia/models/search/anchoring.rb +35 -0
  352. data/lib/algolia/models/search/api_key.rb +272 -0
  353. data/lib/algolia/models/search/around_precision.rb +97 -0
  354. data/lib/algolia/models/search/around_precision_from_value_inner.rb +201 -0
  355. data/lib/algolia/models/search/around_radius.rb +97 -0
  356. data/lib/algolia/models/search/around_radius_all.rb +32 -0
  357. data/lib/algolia/models/search/assign_user_id_params.rb +196 -0
  358. data/lib/algolia/models/search/attribute_to_update.rb +96 -0
  359. data/lib/algolia/models/search/automatic_facet_filter.rb +216 -0
  360. data/lib/algolia/models/search/automatic_facet_filters.rb +97 -0
  361. data/lib/algolia/models/search/base_get_api_key_response.rb +205 -0
  362. data/lib/algolia/models/search/base_index_settings.rb +366 -0
  363. data/lib/algolia/models/search/base_search_params.rb +564 -0
  364. data/lib/algolia/models/search/base_search_params_without_query.rb +546 -0
  365. data/lib/algolia/models/search/base_search_response.rb +517 -0
  366. data/lib/algolia/models/search/batch_assign_user_ids_params.rb +210 -0
  367. data/lib/algolia/models/search/batch_dictionary_entries_params.rb +208 -0
  368. data/lib/algolia/models/search/batch_dictionary_entries_request.rb +227 -0
  369. data/lib/algolia/models/search/batch_params.rb +197 -0
  370. data/lib/algolia/models/search/batch_request.rb +228 -0
  371. data/lib/algolia/models/search/batch_response.rb +209 -0
  372. data/lib/algolia/models/search/batch_write_params.rb +197 -0
  373. data/lib/algolia/models/search/browse_params.rb +96 -0
  374. data/lib/algolia/models/search/browse_params_object.rb +1113 -0
  375. data/lib/algolia/models/search/browse_response.rb +568 -0
  376. data/lib/algolia/models/search/built_in_operation.rb +229 -0
  377. data/lib/algolia/models/search/built_in_operation_type.rb +38 -0
  378. data/lib/algolia/models/search/condition.rb +244 -0
  379. data/lib/algolia/models/search/consequence.rb +239 -0
  380. data/lib/algolia/models/search/consequence_hide.rb +196 -0
  381. data/lib/algolia/models/search/consequence_params.rb +1121 -0
  382. data/lib/algolia/models/search/consequence_query.rb +97 -0
  383. data/lib/algolia/models/search/consequence_query_object.rb +207 -0
  384. data/lib/algolia/models/search/created_at_response.rb +196 -0
  385. data/lib/algolia/models/search/cursor.rb +193 -0
  386. data/lib/algolia/models/search/delete_api_key_response.rb +195 -0
  387. data/lib/algolia/models/search/delete_by_params.rb +263 -0
  388. data/lib/algolia/models/search/delete_source_response.rb +195 -0
  389. data/lib/algolia/models/search/deleted_at_response.rb +208 -0
  390. data/lib/algolia/models/search/dictionary_action.rb +33 -0
  391. data/lib/algolia/models/search/dictionary_entry.rb +276 -0
  392. data/lib/algolia/models/search/dictionary_entry_state.rb +33 -0
  393. data/lib/algolia/models/search/dictionary_language.rb +194 -0
  394. data/lib/algolia/models/search/dictionary_settings_params.rb +195 -0
  395. data/lib/algolia/models/search/dictionary_type.rb +34 -0
  396. data/lib/algolia/models/search/distinct.rb +97 -0
  397. data/lib/algolia/models/search/edit.rb +234 -0
  398. data/lib/algolia/models/search/edit_type.rb +33 -0
  399. data/lib/algolia/models/search/error_base.rb +196 -0
  400. data/lib/algolia/models/search/exact_on_single_word_query.rb +34 -0
  401. data/lib/algolia/models/search/exhaustive.rb +234 -0
  402. data/lib/algolia/models/search/facet_filters.rb +97 -0
  403. data/lib/algolia/models/search/facet_hits.rb +219 -0
  404. data/lib/algolia/models/search/facet_ordering.rb +205 -0
  405. data/lib/algolia/models/search/facets.rb +196 -0
  406. data/lib/algolia/models/search/facets_stats.rb +223 -0
  407. data/lib/algolia/models/search/fetched_index.rb +313 -0
  408. data/lib/algolia/models/search/get_api_key_response.rb +301 -0
  409. data/lib/algolia/models/search/get_dictionary_settings_response.rb +194 -0
  410. data/lib/algolia/models/search/get_logs_response.rb +196 -0
  411. data/lib/algolia/models/search/get_objects_params.rb +197 -0
  412. data/lib/algolia/models/search/get_objects_request.rb +220 -0
  413. data/lib/algolia/models/search/get_objects_response.rb +197 -0
  414. data/lib/algolia/models/search/get_task_response.rb +216 -0
  415. data/lib/algolia/models/search/get_top_user_ids_response.rb +198 -0
  416. data/lib/algolia/models/search/has_pending_mappings_response.rb +207 -0
  417. data/lib/algolia/models/search/highlight_result.rb +96 -0
  418. data/lib/algolia/models/search/highlight_result_option.rb +253 -0
  419. data/lib/algolia/models/search/hit.rb +241 -0
  420. data/lib/algolia/models/search/ignore_plurals.rb +97 -0
  421. data/lib/algolia/models/search/index_settings.rb +912 -0
  422. data/lib/algolia/models/search/index_settings_as_search_params.rb +723 -0
  423. data/lib/algolia/models/search/languages.rb +221 -0
  424. data/lib/algolia/models/search/list_api_keys_response.rb +197 -0
  425. data/lib/algolia/models/search/list_clusters_response.rb +198 -0
  426. data/lib/algolia/models/search/list_indices_response.rb +207 -0
  427. data/lib/algolia/models/search/list_user_ids_response.rb +198 -0
  428. data/lib/algolia/models/search/log.rb +358 -0
  429. data/lib/algolia/models/search/log_query.rb +213 -0
  430. data/lib/algolia/models/search/log_type.rb +35 -0
  431. data/lib/algolia/models/search/match_level.rb +34 -0
  432. data/lib/algolia/models/search/matched_geo_location.rb +213 -0
  433. data/lib/algolia/models/search/mixed_search_filters.rb +96 -0
  434. data/lib/algolia/models/search/mode.rb +33 -0
  435. data/lib/algolia/models/search/multiple_batch_request.rb +240 -0
  436. data/lib/algolia/models/search/multiple_batch_response.rb +211 -0
  437. data/lib/algolia/models/search/numeric_filters.rb +97 -0
  438. data/lib/algolia/models/search/operation_index_params.rb +240 -0
  439. data/lib/algolia/models/search/operation_type.rb +33 -0
  440. data/lib/algolia/models/search/optional_filters.rb +97 -0
  441. data/lib/algolia/models/search/params.rb +220 -0
  442. data/lib/algolia/models/search/personalization.rb +213 -0
  443. data/lib/algolia/models/search/promote.rb +96 -0
  444. data/lib/algolia/models/search/promote_object_id.rb +208 -0
  445. data/lib/algolia/models/search/promote_object_ids.rb +210 -0
  446. data/lib/algolia/models/search/query_type.rb +34 -0
  447. data/lib/algolia/models/search/ranking_info.rb +328 -0
  448. data/lib/algolia/models/search/re_ranking_apply_filter.rb +97 -0
  449. data/lib/algolia/models/search/redirect.rb +195 -0
  450. data/lib/algolia/models/search/redirect_rule_index_metadata.rb +242 -0
  451. data/lib/algolia/models/search/redirect_rule_index_metadata_data.rb +195 -0
  452. data/lib/algolia/models/search/remove_stop_words.rb +97 -0
  453. data/lib/algolia/models/search/remove_user_id_response.rb +195 -0
  454. data/lib/algolia/models/search/remove_words_if_no_results.rb +35 -0
  455. data/lib/algolia/models/search/rendering_content.rb +193 -0
  456. data/lib/algolia/models/search/replace_source_response.rb +195 -0
  457. data/lib/algolia/models/search/rule.rb +249 -0
  458. data/lib/algolia/models/search/save_object_response.rb +217 -0
  459. data/lib/algolia/models/search/save_synonym_response.rb +219 -0
  460. data/lib/algolia/models/search/scope_type.rb +34 -0
  461. data/lib/algolia/models/search/search_dictionary_entries_params.rb +244 -0
  462. data/lib/algolia/models/search/search_for_facet_values_request.rb +227 -0
  463. data/lib/algolia/models/search/search_for_facet_values_response.rb +218 -0
  464. data/lib/algolia/models/search/search_for_facets.rb +1158 -0
  465. data/lib/algolia/models/search/search_for_facets_options.rb +274 -0
  466. data/lib/algolia/models/search/search_for_hits.rb +1134 -0
  467. data/lib/algolia/models/search/search_for_hits_options.rb +226 -0
  468. data/lib/algolia/models/search/search_hits.rb +223 -0
  469. data/lib/algolia/models/search/search_method_params.rb +227 -0
  470. data/lib/algolia/models/search/search_params.rb +96 -0
  471. data/lib/algolia/models/search/search_params_object.rb +1103 -0
  472. data/lib/algolia/models/search/search_params_query.rb +193 -0
  473. data/lib/algolia/models/search/search_params_string.rb +193 -0
  474. data/lib/algolia/models/search/search_query.rb +96 -0
  475. data/lib/algolia/models/search/search_response.rb +560 -0
  476. data/lib/algolia/models/search/search_responses.rb +196 -0
  477. data/lib/algolia/models/search/search_result.rb +96 -0
  478. data/lib/algolia/models/search/search_rules_params.rb +311 -0
  479. data/lib/algolia/models/search/search_rules_response.rb +233 -0
  480. data/lib/algolia/models/search/search_strategy.rb +33 -0
  481. data/lib/algolia/models/search/search_synonyms_params.rb +193 -0
  482. data/lib/algolia/models/search/search_synonyms_response.rb +212 -0
  483. data/lib/algolia/models/search/search_type_default.rb +32 -0
  484. data/lib/algolia/models/search/search_type_facet.rb +32 -0
  485. data/lib/algolia/models/search/search_user_ids_params.rb +244 -0
  486. data/lib/algolia/models/search/search_user_ids_response.rb +264 -0
  487. data/lib/algolia/models/search/semantic_search.rb +198 -0
  488. data/lib/algolia/models/search/snippet_result.rb +96 -0
  489. data/lib/algolia/models/search/snippet_result_option.rb +229 -0
  490. data/lib/algolia/models/search/sort_remaining_by.rb +34 -0
  491. data/lib/algolia/models/search/source.rb +206 -0
  492. data/lib/algolia/models/search/standard_entries.rb +224 -0
  493. data/lib/algolia/models/search/synonym_hit.rb +295 -0
  494. data/lib/algolia/models/search/synonym_type.rb +36 -0
  495. data/lib/algolia/models/search/tag_filters.rb +97 -0
  496. data/lib/algolia/models/search/task_status.rb +33 -0
  497. data/lib/algolia/models/search/time_range.rb +207 -0
  498. data/lib/algolia/models/search/typo_tolerance.rb +97 -0
  499. data/lib/algolia/models/search/typo_tolerance_enum.rb +33 -0
  500. data/lib/algolia/models/search/update_api_key_response.rb +207 -0
  501. data/lib/algolia/models/search/updated_at_response.rb +208 -0
  502. data/lib/algolia/models/search/updated_at_with_object_id_response.rb +214 -0
  503. data/lib/algolia/models/search/updated_rule_response.rb +219 -0
  504. data/lib/algolia/models/search/user_highlight_result.rb +205 -0
  505. data/lib/algolia/models/search/user_hit.rb +269 -0
  506. data/lib/algolia/models/search/user_id.rb +247 -0
  507. data/lib/algolia/models/search/value.rb +226 -0
  508. data/lib/algolia/transport/echo_requester.rb +10 -0
  509. data/lib/algolia/{http → transport/http}/http_requester.rb +24 -19
  510. data/lib/algolia/{http → transport/http}/response.rb +11 -1
  511. data/lib/algolia/transport/request_options.rb +19 -31
  512. data/lib/algolia/transport/retry_strategy.rb +5 -8
  513. data/lib/algolia/transport/stateful_host.rb +1 -2
  514. data/lib/algolia/transport/transport.rb +33 -73
  515. data/lib/algolia/user_agent.rb +4 -14
  516. data/lib/algolia/version.rb +3 -1
  517. data/lib/algolia.rb +23 -40
  518. metadata +522 -217
  519. data/.circleci/config.yml +0 -155
  520. data/.dockerignore +0 -38
  521. data/.github/ISSUE_TEMPLATE.md +0 -20
  522. data/.github/PULL_REQUEST_TEMPLATE.md +0 -22
  523. data/.gitignore +0 -40
  524. data/.rubocop.yml +0 -189
  525. data/.rubocop_todo.yml +0 -14
  526. data/CODE_OF_CONDUCT.md +0 -74
  527. data/CONTRIBUTING.MD +0 -184
  528. data/DOCKER_README.MD +0 -89
  529. data/Dockerfile +0 -7
  530. data/LICENSE +0 -21
  531. data/SECURITY.md +0 -3
  532. data/Steepfile +0 -6
  533. data/bin/console +0 -21
  534. data/bin/setup +0 -8
  535. data/lib/algolia/account_client.rb +0 -65
  536. data/lib/algolia/analytics_client.rb +0 -105
  537. data/lib/algolia/config/analytics_config.rb +0 -20
  538. data/lib/algolia/config/base_config.rb +0 -43
  539. data/lib/algolia/config/insights_config.rb +0 -20
  540. data/lib/algolia/config/personalization_config.rb +0 -20
  541. data/lib/algolia/config/recommend_config.rb +0 -6
  542. data/lib/algolia/config/recommendation_config.rb +0 -7
  543. data/lib/algolia/config/search_config.rb +0 -40
  544. data/lib/algolia/defaults.rb +0 -35
  545. data/lib/algolia/helpers.rb +0 -134
  546. data/lib/algolia/insights_client.rb +0 -238
  547. data/lib/algolia/iterators/base_iterator.rb +0 -19
  548. data/lib/algolia/iterators/object_iterator.rb +0 -28
  549. data/lib/algolia/iterators/paginator_iterator.rb +0 -46
  550. data/lib/algolia/iterators/rule_iterator.rb +0 -9
  551. data/lib/algolia/iterators/synonym_iterator.rb +0 -9
  552. data/lib/algolia/personalization_client.rb +0 -60
  553. data/lib/algolia/recommend_client.rb +0 -134
  554. data/lib/algolia/recommendation_client.rb +0 -7
  555. data/lib/algolia/responses/add_api_key_response.rb +0 -38
  556. data/lib/algolia/responses/base_response.rb +0 -9
  557. data/lib/algolia/responses/delete_api_key_response.rb +0 -40
  558. data/lib/algolia/responses/dictionary_response.rb +0 -33
  559. data/lib/algolia/responses/indexing_response.rb +0 -28
  560. data/lib/algolia/responses/multiple_batch_indexing_response.rb +0 -29
  561. data/lib/algolia/responses/multiple_response.rb +0 -45
  562. data/lib/algolia/responses/restore_api_key_response.rb +0 -36
  563. data/lib/algolia/responses/update_api_key_response.rb +0 -39
  564. data/lib/algolia/search_client.rb +0 -791
  565. data/lib/algolia/search_index.rb +0 -1059
  566. data/renovate.json +0 -5
  567. data/sig/config/algolia_config.rbs +0 -24
  568. data/sig/config/analytics_config.rbs +0 -11
  569. data/sig/config/insights_config.rbs +0 -11
  570. data/sig/config/recommendation_config.rbs +0 -11
  571. data/sig/config/search_config.rbs +0 -11
  572. data/sig/enums/call_type.rbs +0 -5
  573. data/sig/helpers.rbs +0 -12
  574. data/sig/http/http_requester.rbs +0 -17
  575. data/sig/http/response.rbs +0 -14
  576. data/sig/interfaces/_connection.rbs +0 -16
  577. data/sig/iterators/base_iterator.rbs +0 -15
  578. data/sig/iterators/object_iterator.rbs +0 -6
  579. data/sig/iterators/paginator_iterator.rbs +0 -8
  580. data/sig/iterators/rule_iterator.rbs +0 -5
  581. data/sig/iterators/synonym_iterator.rbs +0 -5
  582. data/sig/transport/request_options.rbs +0 -33
  583. data/sig/transport/stateful_host.rbs +0 -21
  584. data/test/algolia/integration/account_client_test.rb +0 -47
  585. data/test/algolia/integration/analytics_client_test.rb +0 -117
  586. data/test/algolia/integration/base_test.rb +0 -9
  587. data/test/algolia/integration/insights_client_test.rb +0 -80
  588. data/test/algolia/integration/mocks/mock_requester.rb +0 -47
  589. data/test/algolia/integration/personalization_client_test.rb +0 -30
  590. data/test/algolia/integration/recommend_client_test.rb +0 -70
  591. data/test/algolia/integration/recommendation_client_test.rb +0 -30
  592. data/test/algolia/integration/search_client_test.rb +0 -465
  593. data/test/algolia/integration/search_index_test.rb +0 -729
  594. data/test/algolia/unit/algolia_config_test.rb +0 -16
  595. data/test/algolia/unit/helpers_test.rb +0 -92
  596. data/test/algolia/unit/http_requester_test.rb +0 -27
  597. data/test/algolia/unit/retry_strategy_test.rb +0 -139
  598. data/test/algolia/unit/user_agent_test.rb +0 -16
  599. data/test/test_helper.rb +0 -121
  600. data/upgrade_guide.md +0 -603
  601. /data/lib/algolia/{enums → transport}/call_type.rb +0 -0
  602. /data/lib/algolia/{enums → transport}/retry_outcome_type.rb +0 -0
@@ -0,0 +1,1105 @@
1
+ # Code generated by OpenAPI Generator (https://openapi-generator.tech), manual changes will be lost - read more on https://github.com/algolia/api-clients-automation. DO NOT EDIT.
2
+
3
+ require 'date'
4
+ require 'time'
5
+
6
+ module Algolia
7
+ module Recommend
8
+ class RecommendedForYouQueryParameters
9
+ # Text to search for in an index.
10
+ attr_accessor :query
11
+
12
+ # Overrides the query parameter and performs a more generic search.
13
+ attr_accessor :similar_query
14
+
15
+ # [Filter](https://www.algolia.com/doc/guides/managing-results/refine-results/filtering/) the query with numeric, facet, or tag filters.
16
+ attr_accessor :filters
17
+
18
+ attr_accessor :facet_filters
19
+
20
+ attr_accessor :optional_filters
21
+
22
+ attr_accessor :numeric_filters
23
+
24
+ attr_accessor :tag_filters
25
+
26
+ # Determines how to calculate [filter scores](https://www.algolia.com/doc/guides/managing-results/refine-results/filtering/in-depth/filter-scoring/#accumulating-scores-with-sumorfiltersscores). If `false`, maximum score is kept. If `true`, score is summed.
27
+ attr_accessor :sum_or_filters_scores
28
+
29
+ # Restricts a query to only look at a subset of your [searchable attributes](https://www.algolia.com/doc/guides/managing-results/must-do/searchable-attributes/).
30
+ attr_accessor :restrict_searchable_attributes
31
+
32
+ # Returns [facets](https://www.algolia.com/doc/guides/managing-results/refine-results/faceting/#contextual-facet-values-and-counts), their facet values, and the number of matching facet values.
33
+ attr_accessor :facets
34
+
35
+ # Forces faceting to be applied after [de-duplication](https://www.algolia.com/doc/guides/managing-results/refine-results/grouping/) (with the distinct feature). Alternatively, the `afterDistinct` [modifier](https://www.algolia.com/doc/api-reference/api-parameters/attributesForFaceting/#modifiers) of `attributesForFaceting` allows for more granular control.
36
+ attr_accessor :faceting_after_distinct
37
+
38
+ # Page to retrieve (the first page is `0`, not `1`).
39
+ attr_accessor :page
40
+
41
+ # Specifies the offset of the first hit to return. > **Note**: Using `page` and `hitsPerPage` is the recommended method for [paging results](https://www.algolia.com/doc/guides/building-search-ui/ui-and-ux-patterns/pagination/js/). However, you can use `offset` and `length` to implement [an alternative approach to paging](https://www.algolia.com/doc/guides/building-search-ui/ui-and-ux-patterns/pagination/js/#retrieving-a-subset-of-records-with-offset-and-length).
42
+ attr_accessor :offset
43
+
44
+ # Sets the number of hits to retrieve (for use with `offset`). > **Note**: Using `page` and `hitsPerPage` is the recommended method for [paging results](https://www.algolia.com/doc/guides/building-search-ui/ui-and-ux-patterns/pagination/js/). However, you can use `offset` and `length` to implement [an alternative approach to paging](https://www.algolia.com/doc/guides/building-search-ui/ui-and-ux-patterns/pagination/js/#retrieving-a-subset-of-records-with-offset-and-length).
45
+ attr_accessor :length
46
+
47
+ # Search for entries [around a central location](https://www.algolia.com/doc/guides/managing-results/refine-results/geolocation/#filter-around-a-central-point), enabling a geographical search within a circular area.
48
+ attr_accessor :around_lat_lng
49
+
50
+ # Search for entries around a location. The location is automatically computed from the requester's IP address.
51
+ attr_accessor :around_lat_lng_via_ip
52
+
53
+ attr_accessor :around_radius
54
+
55
+ attr_accessor :around_precision
56
+
57
+ # Minimum radius (in meters) used for a geographical search when `aroundRadius` isn't set.
58
+ attr_accessor :minimum_around_radius
59
+
60
+ # Search inside a [rectangular area](https://www.algolia.com/doc/guides/managing-results/refine-results/geolocation/#filtering-inside-rectangular-or-polygonal-areas) (in geographical coordinates).
61
+ attr_accessor :inside_bounding_box
62
+
63
+ # Search inside a [polygon](https://www.algolia.com/doc/guides/managing-results/refine-results/geolocation/#filtering-inside-rectangular-or-polygonal-areas) (in geographical coordinates).
64
+ attr_accessor :inside_polygon
65
+
66
+ # Changes the default values of parameters that work best for a natural language query, such as `ignorePlurals`, `removeStopWords`, `removeWordsIfNoResults`, `analyticsTags`, and `ruleContexts`. These parameters work well together when the query consists of fuller natural language strings instead of keywords, for example when processing voice search queries.
67
+ attr_accessor :natural_languages
68
+
69
+ # Assigns [rule contexts](https://www.algolia.com/doc/guides/managing-results/rules/rules-overview/how-to/customize-search-results-by-platform/#whats-a-context) to search queries.
70
+ attr_accessor :rule_contexts
71
+
72
+ # Defines how much [Personalization affects results](https://www.algolia.com/doc/guides/personalization/personalizing-results/in-depth/configuring-personalization/#understanding-personalization-impact).
73
+ attr_accessor :personalization_impact
74
+
75
+ # Associates a [user token](https://www.algolia.com/doc/guides/sending-events/concepts/usertoken/) with the current search.
76
+ attr_accessor :user_token
77
+
78
+ # Incidates whether the search response includes [detailed ranking information](https://www.algolia.com/doc/guides/building-search-ui/going-further/backend-search/in-depth/understanding-the-api-response/#ranking-information).
79
+ attr_accessor :get_ranking_info
80
+
81
+ # Enriches the API's response with information about how the query was processed.
82
+ attr_accessor :explain
83
+
84
+ # Whether to take into account an index's synonyms for a particular search.
85
+ attr_accessor :synonyms
86
+
87
+ # Indicates whether a query ID parameter is included in the search response. This is required for [tracking click and conversion events](https://www.algolia.com/doc/guides/sending-events/concepts/event-types/#events-related-to-algolia-requests).
88
+ attr_accessor :click_analytics
89
+
90
+ # Indicates whether this query will be included in [analytics](https://www.algolia.com/doc/guides/search-analytics/guides/exclude-queries/).
91
+ attr_accessor :analytics
92
+
93
+ # Tags to apply to the query for [segmenting analytics data](https://www.algolia.com/doc/guides/search-analytics/guides/segments/).
94
+ attr_accessor :analytics_tags
95
+
96
+ # Whether to include or exclude a query from the processing-time percentile computation.
97
+ attr_accessor :percentile_computation
98
+
99
+ # Incidates whether this search will be considered in A/B testing.
100
+ attr_accessor :enable_ab_test
101
+
102
+ # Attributes used for [faceting](https://www.algolia.com/doc/guides/managing-results/refine-results/faceting/) and the [modifiers](https://www.algolia.com/doc/api-reference/api-parameters/attributesForFaceting/#modifiers) that can be applied: `filterOnly`, `searchable`, and `afterDistinct`.
103
+ attr_accessor :attributes_for_faceting
104
+
105
+ # Attributes to include in the API response. To reduce the size of your response, you can retrieve only some of the attributes. By default, the response includes all attributes.
106
+ attr_accessor :attributes_to_retrieve
107
+
108
+ # Determines the order in which Algolia [returns your results](https://www.algolia.com/doc/guides/managing-results/relevance-overview/in-depth/ranking-criteria/).
109
+ attr_accessor :ranking
110
+
111
+ # Specifies the [Custom ranking criterion](https://www.algolia.com/doc/guides/managing-results/must-do/custom-ranking/). Use the `asc` and `desc` modifiers to specify the ranking order: ascending or descending.
112
+ attr_accessor :custom_ranking
113
+
114
+ # Relevancy threshold below which less relevant results aren't included in the results.
115
+ attr_accessor :relevancy_strictness
116
+
117
+ # Attributes to highlight. Strings that match the search query in the attributes are highlighted by surrounding them with HTML tags (`highlightPreTag` and `highlightPostTag`).
118
+ attr_accessor :attributes_to_highlight
119
+
120
+ # Attributes to _snippet_. 'Snippeting' is shortening the attribute to a certain number of words. If not specified, the attribute is shortened to the 10 words around the matching string but you can specify the number. For example: `body:20`.
121
+ attr_accessor :attributes_to_snippet
122
+
123
+ # HTML string to insert before the highlighted parts in all highlight and snippet results.
124
+ attr_accessor :highlight_pre_tag
125
+
126
+ # HTML string to insert after the highlighted parts in all highlight and snippet results.
127
+ attr_accessor :highlight_post_tag
128
+
129
+ # String used as an ellipsis indicator when a snippet is truncated.
130
+ attr_accessor :snippet_ellipsis_text
131
+
132
+ # Restrict highlighting and snippeting to items that matched the query.
133
+ attr_accessor :restrict_highlight_and_snippet_arrays
134
+
135
+ # Number of hits per page.
136
+ attr_accessor :hits_per_page
137
+
138
+ # Minimum number of characters a word in the query string must contain to accept matches with [one typo](https://www.algolia.com/doc/guides/managing-results/optimize-search-results/typo-tolerance/in-depth/configuring-typo-tolerance/#configuring-word-length-for-typos).
139
+ attr_accessor :min_word_sizefor1_typo
140
+
141
+ # Minimum number of characters a word in the query string must contain to accept matches with [two typos](https://www.algolia.com/doc/guides/managing-results/optimize-search-results/typo-tolerance/in-depth/configuring-typo-tolerance/#configuring-word-length-for-typos).
142
+ attr_accessor :min_word_sizefor2_typos
143
+
144
+ attr_accessor :typo_tolerance
145
+
146
+ # Whether to allow typos on numbers (\"numeric tokens\") in the query string.
147
+ attr_accessor :allow_typos_on_numeric_tokens
148
+
149
+ # Attributes for which you want to turn off [typo tolerance](https://www.algolia.com/doc/guides/managing-results/optimize-search-results/typo-tolerance/).
150
+ attr_accessor :disable_typo_tolerance_on_attributes
151
+
152
+ attr_accessor :ignore_plurals
153
+
154
+ attr_accessor :remove_stop_words
155
+
156
+ # Characters that the engine shouldn't automatically [normalize](https://www.algolia.com/doc/guides/managing-results/optimize-search-results/handling-natural-languages-nlp/in-depth/normalization/).
157
+ attr_accessor :keep_diacritics_on_characters
158
+
159
+ # Sets your user's search language. This adjusts language-specific settings and features such as `ignorePlurals`, `removeStopWords`, and [CJK](https://www.algolia.com/doc/guides/managing-results/optimize-search-results/handling-natural-languages-nlp/in-depth/normalization/#normalization-for-logogram-based-languages-cjk) word detection.
160
+ attr_accessor :query_languages
161
+
162
+ # [Splits compound words](https://www.algolia.com/doc/guides/managing-results/optimize-search-results/handling-natural-languages-nlp/in-depth/language-specific-configurations/#splitting-compound-words) into their component word parts in the query.
163
+ attr_accessor :decompound_query
164
+
165
+ # Incidates whether [Rules](https://www.algolia.com/doc/guides/managing-results/rules/rules-overview/) are enabled.
166
+ attr_accessor :enable_rules
167
+
168
+ # Incidates whether [Personalization](https://www.algolia.com/doc/guides/personalization/what-is-personalization/) is enabled.
169
+ attr_accessor :enable_personalization
170
+
171
+ attr_accessor :query_type
172
+
173
+ attr_accessor :remove_words_if_no_results
174
+
175
+ attr_accessor :mode
176
+
177
+ attr_accessor :semantic_search
178
+
179
+ # Enables the [advanced query syntax](https://www.algolia.com/doc/guides/managing-results/optimize-search-results/override-search-engine-defaults/#advanced-syntax).
180
+ attr_accessor :advanced_syntax
181
+
182
+ # Words which should be considered [optional](https://www.algolia.com/doc/guides/managing-results/optimize-search-results/empty-or-insufficient-results/#creating-a-list-of-optional-words) when found in a query.
183
+ attr_accessor :optional_words
184
+
185
+ # Attributes for which you want to [turn off the exact ranking criterion](https://www.algolia.com/doc/guides/managing-results/optimize-search-results/override-search-engine-defaults/in-depth/adjust-exact-settings/#turn-off-exact-for-some-attributes).
186
+ attr_accessor :disable_exact_on_attributes
187
+
188
+ attr_accessor :exact_on_single_word_query
189
+
190
+ # Alternatives that should be considered an exact match by [the exact ranking criterion](https://www.algolia.com/doc/guides/managing-results/optimize-search-results/override-search-engine-defaults/in-depth/adjust-exact-settings/#turn-off-exact-for-some-attributes).
191
+ attr_accessor :alternatives_as_exact
192
+
193
+ # Allows you to specify which advanced syntax features are active when `advancedSyntax` is enabled.
194
+ attr_accessor :advanced_syntax_features
195
+
196
+ attr_accessor :distinct
197
+
198
+ # Whether to highlight and snippet the original word that matches the synonym or the synonym itself.
199
+ attr_accessor :replace_synonyms_in_highlight
200
+
201
+ # Precision of the [proximity ranking criterion](https://www.algolia.com/doc/guides/managing-results/relevance-overview/in-depth/ranking-criteria/#proximity).
202
+ attr_accessor :min_proximity
203
+
204
+ # Attributes to include in the API response for search and browse queries.
205
+ attr_accessor :response_fields
206
+
207
+ # Maximum number of facet hits to return when [searching for facet values](https://www.algolia.com/doc/guides/managing-results/refine-results/faceting/#search-for-facet-values).
208
+ attr_accessor :max_facet_hits
209
+
210
+ # Maximum number of facet values to return for each facet.
211
+ attr_accessor :max_values_per_facet
212
+
213
+ # Controls how facet values are fetched.
214
+ attr_accessor :sort_facet_values_by
215
+
216
+ # When the [Attribute criterion is ranked above Proximity](https://www.algolia.com/doc/guides/managing-results/relevance-overview/in-depth/ranking-criteria/#attribute-and-proximity-combinations) in your ranking formula, Proximity is used to select which searchable attribute is matched in the Attribute ranking stage.
217
+ attr_accessor :attribute_criteria_computed_by_min_proximity
218
+
219
+ attr_accessor :rendering_content
220
+
221
+ # Indicates whether this search will use [Dynamic Re-Ranking](https://www.algolia.com/doc/guides/algolia-ai/re-ranking/).
222
+ attr_accessor :enable_re_ranking
223
+
224
+ attr_accessor :re_ranking_apply_filter
225
+
226
+ class EnumAttributeValidator
227
+ attr_reader :datatype
228
+ attr_reader :allowable_values
229
+
230
+ def initialize(datatype, allowable_values)
231
+ @allowable_values = allowable_values.map do |value|
232
+ case datatype.to_s
233
+ when /Integer/i
234
+ value.to_i
235
+ when /Float/i
236
+ value.to_f
237
+ else
238
+ value
239
+ end
240
+ end
241
+ end
242
+
243
+ def valid?(value)
244
+ !value || allowable_values.include?(value)
245
+ end
246
+ end
247
+
248
+ # Attribute mapping from ruby-style variable name to JSON key.
249
+ def self.attribute_map
250
+ {
251
+ :query => :query,
252
+ :similar_query => :similarQuery,
253
+ :filters => :filters,
254
+ :facet_filters => :facetFilters,
255
+ :optional_filters => :optionalFilters,
256
+ :numeric_filters => :numericFilters,
257
+ :tag_filters => :tagFilters,
258
+ :sum_or_filters_scores => :sumOrFiltersScores,
259
+ :restrict_searchable_attributes => :restrictSearchableAttributes,
260
+ :facets => :facets,
261
+ :faceting_after_distinct => :facetingAfterDistinct,
262
+ :page => :page,
263
+ :offset => :offset,
264
+ :length => :length,
265
+ :around_lat_lng => :aroundLatLng,
266
+ :around_lat_lng_via_ip => :aroundLatLngViaIP,
267
+ :around_radius => :aroundRadius,
268
+ :around_precision => :aroundPrecision,
269
+ :minimum_around_radius => :minimumAroundRadius,
270
+ :inside_bounding_box => :insideBoundingBox,
271
+ :inside_polygon => :insidePolygon,
272
+ :natural_languages => :naturalLanguages,
273
+ :rule_contexts => :ruleContexts,
274
+ :personalization_impact => :personalizationImpact,
275
+ :user_token => :userToken,
276
+ :get_ranking_info => :getRankingInfo,
277
+ :explain => :explain,
278
+ :synonyms => :synonyms,
279
+ :click_analytics => :clickAnalytics,
280
+ :analytics => :analytics,
281
+ :analytics_tags => :analyticsTags,
282
+ :percentile_computation => :percentileComputation,
283
+ :enable_ab_test => :enableABTest,
284
+ :attributes_for_faceting => :attributesForFaceting,
285
+ :attributes_to_retrieve => :attributesToRetrieve,
286
+ :ranking => :ranking,
287
+ :custom_ranking => :customRanking,
288
+ :relevancy_strictness => :relevancyStrictness,
289
+ :attributes_to_highlight => :attributesToHighlight,
290
+ :attributes_to_snippet => :attributesToSnippet,
291
+ :highlight_pre_tag => :highlightPreTag,
292
+ :highlight_post_tag => :highlightPostTag,
293
+ :snippet_ellipsis_text => :snippetEllipsisText,
294
+ :restrict_highlight_and_snippet_arrays => :restrictHighlightAndSnippetArrays,
295
+ :hits_per_page => :hitsPerPage,
296
+ :min_word_sizefor1_typo => :minWordSizefor1Typo,
297
+ :min_word_sizefor2_typos => :minWordSizefor2Typos,
298
+ :typo_tolerance => :typoTolerance,
299
+ :allow_typos_on_numeric_tokens => :allowTyposOnNumericTokens,
300
+ :disable_typo_tolerance_on_attributes => :disableTypoToleranceOnAttributes,
301
+ :ignore_plurals => :ignorePlurals,
302
+ :remove_stop_words => :removeStopWords,
303
+ :keep_diacritics_on_characters => :keepDiacriticsOnCharacters,
304
+ :query_languages => :queryLanguages,
305
+ :decompound_query => :decompoundQuery,
306
+ :enable_rules => :enableRules,
307
+ :enable_personalization => :enablePersonalization,
308
+ :query_type => :queryType,
309
+ :remove_words_if_no_results => :removeWordsIfNoResults,
310
+ :mode => :mode,
311
+ :semantic_search => :semanticSearch,
312
+ :advanced_syntax => :advancedSyntax,
313
+ :optional_words => :optionalWords,
314
+ :disable_exact_on_attributes => :disableExactOnAttributes,
315
+ :exact_on_single_word_query => :exactOnSingleWordQuery,
316
+ :alternatives_as_exact => :alternativesAsExact,
317
+ :advanced_syntax_features => :advancedSyntaxFeatures,
318
+ :distinct => :distinct,
319
+ :replace_synonyms_in_highlight => :replaceSynonymsInHighlight,
320
+ :min_proximity => :minProximity,
321
+ :response_fields => :responseFields,
322
+ :max_facet_hits => :maxFacetHits,
323
+ :max_values_per_facet => :maxValuesPerFacet,
324
+ :sort_facet_values_by => :sortFacetValuesBy,
325
+ :attribute_criteria_computed_by_min_proximity => :attributeCriteriaComputedByMinProximity,
326
+ :rendering_content => :renderingContent,
327
+ :enable_re_ranking => :enableReRanking,
328
+ :re_ranking_apply_filter => :reRankingApplyFilter
329
+ }
330
+ end
331
+
332
+ # Returns all the JSON keys this model knows about
333
+ def self.acceptable_attributes
334
+ attribute_map.values
335
+ end
336
+
337
+ # Attribute type mapping.
338
+ def self.types_mapping
339
+ {
340
+ :query => :String,
341
+ :similar_query => :String,
342
+ :filters => :String,
343
+ :facet_filters => :FacetFilters,
344
+ :optional_filters => :OptionalFilters,
345
+ :numeric_filters => :NumericFilters,
346
+ :tag_filters => :TagFilters,
347
+ :sum_or_filters_scores => :Boolean,
348
+ :restrict_searchable_attributes => :'Array<String>',
349
+ :facets => :'Array<String>',
350
+ :faceting_after_distinct => :Boolean,
351
+ :page => :Integer,
352
+ :offset => :Integer,
353
+ :length => :Integer,
354
+ :around_lat_lng => :String,
355
+ :around_lat_lng_via_ip => :Boolean,
356
+ :around_radius => :AroundRadius,
357
+ :around_precision => :AroundPrecision,
358
+ :minimum_around_radius => :Integer,
359
+ :inside_bounding_box => :'Array<Array<Float>>',
360
+ :inside_polygon => :'Array<Array<Float>>',
361
+ :natural_languages => :'Array<String>',
362
+ :rule_contexts => :'Array<String>',
363
+ :personalization_impact => :Integer,
364
+ :user_token => :String,
365
+ :get_ranking_info => :Boolean,
366
+ :explain => :'Array<String>',
367
+ :synonyms => :Boolean,
368
+ :click_analytics => :Boolean,
369
+ :analytics => :Boolean,
370
+ :analytics_tags => :'Array<String>',
371
+ :percentile_computation => :Boolean,
372
+ :enable_ab_test => :Boolean,
373
+ :attributes_for_faceting => :'Array<String>',
374
+ :attributes_to_retrieve => :'Array<String>',
375
+ :ranking => :'Array<String>',
376
+ :custom_ranking => :'Array<String>',
377
+ :relevancy_strictness => :Integer,
378
+ :attributes_to_highlight => :'Array<String>',
379
+ :attributes_to_snippet => :'Array<String>',
380
+ :highlight_pre_tag => :String,
381
+ :highlight_post_tag => :String,
382
+ :snippet_ellipsis_text => :String,
383
+ :restrict_highlight_and_snippet_arrays => :Boolean,
384
+ :hits_per_page => :Integer,
385
+ :min_word_sizefor1_typo => :Integer,
386
+ :min_word_sizefor2_typos => :Integer,
387
+ :typo_tolerance => :TypoTolerance,
388
+ :allow_typos_on_numeric_tokens => :Boolean,
389
+ :disable_typo_tolerance_on_attributes => :'Array<String>',
390
+ :ignore_plurals => :IgnorePlurals,
391
+ :remove_stop_words => :RemoveStopWords,
392
+ :keep_diacritics_on_characters => :String,
393
+ :query_languages => :'Array<String>',
394
+ :decompound_query => :Boolean,
395
+ :enable_rules => :Boolean,
396
+ :enable_personalization => :Boolean,
397
+ :query_type => :QueryType,
398
+ :remove_words_if_no_results => :RemoveWordsIfNoResults,
399
+ :mode => :Mode,
400
+ :semantic_search => :SemanticSearch,
401
+ :advanced_syntax => :Boolean,
402
+ :optional_words => :'Array<String>',
403
+ :disable_exact_on_attributes => :'Array<String>',
404
+ :exact_on_single_word_query => :ExactOnSingleWordQuery,
405
+ :alternatives_as_exact => :'Array<AlternativesAsExact>',
406
+ :advanced_syntax_features => :'Array<AdvancedSyntaxFeatures>',
407
+ :distinct => :Distinct,
408
+ :replace_synonyms_in_highlight => :Boolean,
409
+ :min_proximity => :Integer,
410
+ :response_fields => :'Array<String>',
411
+ :max_facet_hits => :Integer,
412
+ :max_values_per_facet => :Integer,
413
+ :sort_facet_values_by => :String,
414
+ :attribute_criteria_computed_by_min_proximity => :Boolean,
415
+ :rendering_content => :RenderingContent,
416
+ :enable_re_ranking => :Boolean,
417
+ :re_ranking_apply_filter => :ReRankingApplyFilter
418
+ }
419
+ end
420
+
421
+ # List of attributes with nullable: true
422
+ def self.openapi_nullable
423
+ Set.new([
424
+ :re_ranking_apply_filter
425
+ ])
426
+ end
427
+
428
+ # List of class defined in allOf (OpenAPI v3)
429
+ def self.openapi_all_of
430
+ [
431
+ :BaseRecommendedForYouQueryParameters,
432
+ :SearchParamsObject
433
+ ]
434
+ end
435
+
436
+ # Initializes the object
437
+ # @param [Hash] attributes Model attributes in the form of hash
438
+ def initialize(attributes = {})
439
+ unless attributes.is_a?(Hash)
440
+ raise ArgumentError, "The input argument (attributes) must be a hash in `Algolia::RecommendedForYouQueryParameters` initialize method"
441
+ end
442
+
443
+ # check to see if the attribute exists and convert string to symbol for hash key
444
+ attributes = attributes.each_with_object({}) do |(k, v), h|
445
+ unless self.class.attribute_map.key?(k.to_sym)
446
+ raise ArgumentError,
447
+ "`#{k}` is not a valid attribute in `Algolia::RecommendedForYouQueryParameters`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
448
+ end
449
+
450
+ h[k.to_sym] = v
451
+ end
452
+
453
+ if attributes.key?(:query)
454
+ self.query = attributes[:query]
455
+ end
456
+
457
+ if attributes.key?(:similar_query)
458
+ self.similar_query = attributes[:similar_query]
459
+ end
460
+
461
+ if attributes.key?(:filters)
462
+ self.filters = attributes[:filters]
463
+ end
464
+
465
+ if attributes.key?(:facet_filters)
466
+ self.facet_filters = attributes[:facet_filters]
467
+ end
468
+
469
+ if attributes.key?(:optional_filters)
470
+ self.optional_filters = attributes[:optional_filters]
471
+ end
472
+
473
+ if attributes.key?(:numeric_filters)
474
+ self.numeric_filters = attributes[:numeric_filters]
475
+ end
476
+
477
+ if attributes.key?(:tag_filters)
478
+ self.tag_filters = attributes[:tag_filters]
479
+ end
480
+
481
+ if attributes.key?(:sum_or_filters_scores)
482
+ self.sum_or_filters_scores = attributes[:sum_or_filters_scores]
483
+ end
484
+
485
+ if attributes.key?(:restrict_searchable_attributes)
486
+ if (value = attributes[:restrict_searchable_attributes]).is_a?(Array)
487
+ self.restrict_searchable_attributes = value
488
+ end
489
+ end
490
+
491
+ if attributes.key?(:facets)
492
+ if (value = attributes[:facets]).is_a?(Array)
493
+ self.facets = value
494
+ end
495
+ end
496
+
497
+ if attributes.key?(:faceting_after_distinct)
498
+ self.faceting_after_distinct = attributes[:faceting_after_distinct]
499
+ end
500
+
501
+ if attributes.key?(:page)
502
+ self.page = attributes[:page]
503
+ end
504
+
505
+ if attributes.key?(:offset)
506
+ self.offset = attributes[:offset]
507
+ end
508
+
509
+ if attributes.key?(:length)
510
+ self.length = attributes[:length]
511
+ end
512
+
513
+ if attributes.key?(:around_lat_lng)
514
+ self.around_lat_lng = attributes[:around_lat_lng]
515
+ end
516
+
517
+ if attributes.key?(:around_lat_lng_via_ip)
518
+ self.around_lat_lng_via_ip = attributes[:around_lat_lng_via_ip]
519
+ end
520
+
521
+ if attributes.key?(:around_radius)
522
+ self.around_radius = attributes[:around_radius]
523
+ end
524
+
525
+ if attributes.key?(:around_precision)
526
+ self.around_precision = attributes[:around_precision]
527
+ end
528
+
529
+ if attributes.key?(:minimum_around_radius)
530
+ self.minimum_around_radius = attributes[:minimum_around_radius]
531
+ end
532
+
533
+ if attributes.key?(:inside_bounding_box)
534
+ if (value = attributes[:inside_bounding_box]).is_a?(Array)
535
+ self.inside_bounding_box = value
536
+ end
537
+ end
538
+
539
+ if attributes.key?(:inside_polygon)
540
+ if (value = attributes[:inside_polygon]).is_a?(Array)
541
+ self.inside_polygon = value
542
+ end
543
+ end
544
+
545
+ if attributes.key?(:natural_languages)
546
+ if (value = attributes[:natural_languages]).is_a?(Array)
547
+ self.natural_languages = value
548
+ end
549
+ end
550
+
551
+ if attributes.key?(:rule_contexts)
552
+ if (value = attributes[:rule_contexts]).is_a?(Array)
553
+ self.rule_contexts = value
554
+ end
555
+ end
556
+
557
+ if attributes.key?(:personalization_impact)
558
+ self.personalization_impact = attributes[:personalization_impact]
559
+ end
560
+
561
+ if attributes.key?(:user_token)
562
+ self.user_token = attributes[:user_token]
563
+ else
564
+ self.user_token = nil
565
+ end
566
+
567
+ if attributes.key?(:get_ranking_info)
568
+ self.get_ranking_info = attributes[:get_ranking_info]
569
+ end
570
+
571
+ if attributes.key?(:explain)
572
+ if (value = attributes[:explain]).is_a?(Array)
573
+ self.explain = value
574
+ end
575
+ end
576
+
577
+ if attributes.key?(:synonyms)
578
+ self.synonyms = attributes[:synonyms]
579
+ end
580
+
581
+ if attributes.key?(:click_analytics)
582
+ self.click_analytics = attributes[:click_analytics]
583
+ end
584
+
585
+ if attributes.key?(:analytics)
586
+ self.analytics = attributes[:analytics]
587
+ end
588
+
589
+ if attributes.key?(:analytics_tags)
590
+ if (value = attributes[:analytics_tags]).is_a?(Array)
591
+ self.analytics_tags = value
592
+ end
593
+ end
594
+
595
+ if attributes.key?(:percentile_computation)
596
+ self.percentile_computation = attributes[:percentile_computation]
597
+ end
598
+
599
+ if attributes.key?(:enable_ab_test)
600
+ self.enable_ab_test = attributes[:enable_ab_test]
601
+ end
602
+
603
+ if attributes.key?(:attributes_for_faceting)
604
+ if (value = attributes[:attributes_for_faceting]).is_a?(Array)
605
+ self.attributes_for_faceting = value
606
+ end
607
+ end
608
+
609
+ if attributes.key?(:attributes_to_retrieve)
610
+ if (value = attributes[:attributes_to_retrieve]).is_a?(Array)
611
+ self.attributes_to_retrieve = value
612
+ end
613
+ end
614
+
615
+ if attributes.key?(:ranking)
616
+ if (value = attributes[:ranking]).is_a?(Array)
617
+ self.ranking = value
618
+ end
619
+ end
620
+
621
+ if attributes.key?(:custom_ranking)
622
+ if (value = attributes[:custom_ranking]).is_a?(Array)
623
+ self.custom_ranking = value
624
+ end
625
+ end
626
+
627
+ if attributes.key?(:relevancy_strictness)
628
+ self.relevancy_strictness = attributes[:relevancy_strictness]
629
+ end
630
+
631
+ if attributes.key?(:attributes_to_highlight)
632
+ if (value = attributes[:attributes_to_highlight]).is_a?(Array)
633
+ self.attributes_to_highlight = value
634
+ end
635
+ end
636
+
637
+ if attributes.key?(:attributes_to_snippet)
638
+ if (value = attributes[:attributes_to_snippet]).is_a?(Array)
639
+ self.attributes_to_snippet = value
640
+ end
641
+ end
642
+
643
+ if attributes.key?(:highlight_pre_tag)
644
+ self.highlight_pre_tag = attributes[:highlight_pre_tag]
645
+ end
646
+
647
+ if attributes.key?(:highlight_post_tag)
648
+ self.highlight_post_tag = attributes[:highlight_post_tag]
649
+ end
650
+
651
+ if attributes.key?(:snippet_ellipsis_text)
652
+ self.snippet_ellipsis_text = attributes[:snippet_ellipsis_text]
653
+ end
654
+
655
+ if attributes.key?(:restrict_highlight_and_snippet_arrays)
656
+ self.restrict_highlight_and_snippet_arrays = attributes[:restrict_highlight_and_snippet_arrays]
657
+ end
658
+
659
+ if attributes.key?(:hits_per_page)
660
+ self.hits_per_page = attributes[:hits_per_page]
661
+ end
662
+
663
+ if attributes.key?(:min_word_sizefor1_typo)
664
+ self.min_word_sizefor1_typo = attributes[:min_word_sizefor1_typo]
665
+ end
666
+
667
+ if attributes.key?(:min_word_sizefor2_typos)
668
+ self.min_word_sizefor2_typos = attributes[:min_word_sizefor2_typos]
669
+ end
670
+
671
+ if attributes.key?(:typo_tolerance)
672
+ self.typo_tolerance = attributes[:typo_tolerance]
673
+ end
674
+
675
+ if attributes.key?(:allow_typos_on_numeric_tokens)
676
+ self.allow_typos_on_numeric_tokens = attributes[:allow_typos_on_numeric_tokens]
677
+ end
678
+
679
+ if attributes.key?(:disable_typo_tolerance_on_attributes)
680
+ if (value = attributes[:disable_typo_tolerance_on_attributes]).is_a?(Array)
681
+ self.disable_typo_tolerance_on_attributes = value
682
+ end
683
+ end
684
+
685
+ if attributes.key?(:ignore_plurals)
686
+ self.ignore_plurals = attributes[:ignore_plurals]
687
+ end
688
+
689
+ if attributes.key?(:remove_stop_words)
690
+ self.remove_stop_words = attributes[:remove_stop_words]
691
+ end
692
+
693
+ if attributes.key?(:keep_diacritics_on_characters)
694
+ self.keep_diacritics_on_characters = attributes[:keep_diacritics_on_characters]
695
+ end
696
+
697
+ if attributes.key?(:query_languages)
698
+ if (value = attributes[:query_languages]).is_a?(Array)
699
+ self.query_languages = value
700
+ end
701
+ end
702
+
703
+ if attributes.key?(:decompound_query)
704
+ self.decompound_query = attributes[:decompound_query]
705
+ end
706
+
707
+ if attributes.key?(:enable_rules)
708
+ self.enable_rules = attributes[:enable_rules]
709
+ end
710
+
711
+ if attributes.key?(:enable_personalization)
712
+ self.enable_personalization = attributes[:enable_personalization]
713
+ end
714
+
715
+ if attributes.key?(:query_type)
716
+ self.query_type = attributes[:query_type]
717
+ end
718
+
719
+ if attributes.key?(:remove_words_if_no_results)
720
+ self.remove_words_if_no_results = attributes[:remove_words_if_no_results]
721
+ end
722
+
723
+ if attributes.key?(:mode)
724
+ self.mode = attributes[:mode]
725
+ end
726
+
727
+ if attributes.key?(:semantic_search)
728
+ self.semantic_search = attributes[:semantic_search]
729
+ end
730
+
731
+ if attributes.key?(:advanced_syntax)
732
+ self.advanced_syntax = attributes[:advanced_syntax]
733
+ end
734
+
735
+ if attributes.key?(:optional_words)
736
+ if (value = attributes[:optional_words]).is_a?(Array)
737
+ self.optional_words = value
738
+ end
739
+ end
740
+
741
+ if attributes.key?(:disable_exact_on_attributes)
742
+ if (value = attributes[:disable_exact_on_attributes]).is_a?(Array)
743
+ self.disable_exact_on_attributes = value
744
+ end
745
+ end
746
+
747
+ if attributes.key?(:exact_on_single_word_query)
748
+ self.exact_on_single_word_query = attributes[:exact_on_single_word_query]
749
+ end
750
+
751
+ if attributes.key?(:alternatives_as_exact)
752
+ if (value = attributes[:alternatives_as_exact]).is_a?(Array)
753
+ self.alternatives_as_exact = value
754
+ end
755
+ end
756
+
757
+ if attributes.key?(:advanced_syntax_features)
758
+ if (value = attributes[:advanced_syntax_features]).is_a?(Array)
759
+ self.advanced_syntax_features = value
760
+ end
761
+ end
762
+
763
+ if attributes.key?(:distinct)
764
+ self.distinct = attributes[:distinct]
765
+ end
766
+
767
+ if attributes.key?(:replace_synonyms_in_highlight)
768
+ self.replace_synonyms_in_highlight = attributes[:replace_synonyms_in_highlight]
769
+ end
770
+
771
+ if attributes.key?(:min_proximity)
772
+ self.min_proximity = attributes[:min_proximity]
773
+ end
774
+
775
+ if attributes.key?(:response_fields)
776
+ if (value = attributes[:response_fields]).is_a?(Array)
777
+ self.response_fields = value
778
+ end
779
+ end
780
+
781
+ if attributes.key?(:max_facet_hits)
782
+ self.max_facet_hits = attributes[:max_facet_hits]
783
+ end
784
+
785
+ if attributes.key?(:max_values_per_facet)
786
+ self.max_values_per_facet = attributes[:max_values_per_facet]
787
+ end
788
+
789
+ if attributes.key?(:sort_facet_values_by)
790
+ self.sort_facet_values_by = attributes[:sort_facet_values_by]
791
+ end
792
+
793
+ if attributes.key?(:attribute_criteria_computed_by_min_proximity)
794
+ self.attribute_criteria_computed_by_min_proximity = attributes[:attribute_criteria_computed_by_min_proximity]
795
+ end
796
+
797
+ if attributes.key?(:rendering_content)
798
+ self.rendering_content = attributes[:rendering_content]
799
+ end
800
+
801
+ if attributes.key?(:enable_re_ranking)
802
+ self.enable_re_ranking = attributes[:enable_re_ranking]
803
+ end
804
+
805
+ if attributes.key?(:re_ranking_apply_filter)
806
+ self.re_ranking_apply_filter = attributes[:re_ranking_apply_filter]
807
+ end
808
+ end
809
+
810
+ # Custom attribute writer method with validation
811
+ # @param [Object] length Value to be assigned
812
+ def length=(length)
813
+ if length.nil?
814
+ raise ArgumentError, 'length cannot be nil'
815
+ end
816
+
817
+ if length > 1000
818
+ raise ArgumentError, 'invalid value for "length", must be smaller than or equal to 1000.'
819
+ end
820
+
821
+ if length < 1
822
+ raise ArgumentError, 'invalid value for "length", must be greater than or equal to 1.'
823
+ end
824
+
825
+ @length = length
826
+ end
827
+
828
+ # Custom attribute writer method with validation
829
+ # @param [Object] minimum_around_radius Value to be assigned
830
+ def minimum_around_radius=(minimum_around_radius)
831
+ if minimum_around_radius.nil?
832
+ raise ArgumentError, 'minimum_around_radius cannot be nil'
833
+ end
834
+
835
+ if minimum_around_radius < 1
836
+ raise ArgumentError, 'invalid value for "minimum_around_radius", must be greater than or equal to 1.'
837
+ end
838
+
839
+ @minimum_around_radius = minimum_around_radius
840
+ end
841
+
842
+ # Custom attribute writer method with validation
843
+ # @param [Object] hits_per_page Value to be assigned
844
+ def hits_per_page=(hits_per_page)
845
+ if hits_per_page.nil?
846
+ raise ArgumentError, 'hits_per_page cannot be nil'
847
+ end
848
+
849
+ if hits_per_page > 1000
850
+ raise ArgumentError, 'invalid value for "hits_per_page", must be smaller than or equal to 1000.'
851
+ end
852
+
853
+ if hits_per_page < 1
854
+ raise ArgumentError, 'invalid value for "hits_per_page", must be greater than or equal to 1.'
855
+ end
856
+
857
+ @hits_per_page = hits_per_page
858
+ end
859
+
860
+ # Custom attribute writer method with validation
861
+ # @param [Object] min_proximity Value to be assigned
862
+ def min_proximity=(min_proximity)
863
+ if min_proximity.nil?
864
+ raise ArgumentError, 'min_proximity cannot be nil'
865
+ end
866
+
867
+ if min_proximity > 7
868
+ raise ArgumentError, 'invalid value for "min_proximity", must be smaller than or equal to 7.'
869
+ end
870
+
871
+ if min_proximity < 1
872
+ raise ArgumentError, 'invalid value for "min_proximity", must be greater than or equal to 1.'
873
+ end
874
+
875
+ @min_proximity = min_proximity
876
+ end
877
+
878
+ # Custom attribute writer method with validation
879
+ # @param [Object] max_facet_hits Value to be assigned
880
+ def max_facet_hits=(max_facet_hits)
881
+ if max_facet_hits.nil?
882
+ raise ArgumentError, 'max_facet_hits cannot be nil'
883
+ end
884
+
885
+ if max_facet_hits > 100
886
+ raise ArgumentError, 'invalid value for "max_facet_hits", must be smaller than or equal to 100.'
887
+ end
888
+
889
+ @max_facet_hits = max_facet_hits
890
+ end
891
+
892
+ # Checks equality by comparing each attribute.
893
+ # @param [Object] Object to be compared
894
+ def ==(other)
895
+ return true if equal?(other)
896
+
897
+ self.class == other.class &&
898
+ query == other.query &&
899
+ similar_query == other.similar_query &&
900
+ filters == other.filters &&
901
+ facet_filters == other.facet_filters &&
902
+ optional_filters == other.optional_filters &&
903
+ numeric_filters == other.numeric_filters &&
904
+ tag_filters == other.tag_filters &&
905
+ sum_or_filters_scores == other.sum_or_filters_scores &&
906
+ restrict_searchable_attributes == other.restrict_searchable_attributes &&
907
+ facets == other.facets &&
908
+ faceting_after_distinct == other.faceting_after_distinct &&
909
+ page == other.page &&
910
+ offset == other.offset &&
911
+ length == other.length &&
912
+ around_lat_lng == other.around_lat_lng &&
913
+ around_lat_lng_via_ip == other.around_lat_lng_via_ip &&
914
+ around_radius == other.around_radius &&
915
+ around_precision == other.around_precision &&
916
+ minimum_around_radius == other.minimum_around_radius &&
917
+ inside_bounding_box == other.inside_bounding_box &&
918
+ inside_polygon == other.inside_polygon &&
919
+ natural_languages == other.natural_languages &&
920
+ rule_contexts == other.rule_contexts &&
921
+ personalization_impact == other.personalization_impact &&
922
+ user_token == other.user_token &&
923
+ get_ranking_info == other.get_ranking_info &&
924
+ explain == other.explain &&
925
+ synonyms == other.synonyms &&
926
+ click_analytics == other.click_analytics &&
927
+ analytics == other.analytics &&
928
+ analytics_tags == other.analytics_tags &&
929
+ percentile_computation == other.percentile_computation &&
930
+ enable_ab_test == other.enable_ab_test &&
931
+ attributes_for_faceting == other.attributes_for_faceting &&
932
+ attributes_to_retrieve == other.attributes_to_retrieve &&
933
+ ranking == other.ranking &&
934
+ custom_ranking == other.custom_ranking &&
935
+ relevancy_strictness == other.relevancy_strictness &&
936
+ attributes_to_highlight == other.attributes_to_highlight &&
937
+ attributes_to_snippet == other.attributes_to_snippet &&
938
+ highlight_pre_tag == other.highlight_pre_tag &&
939
+ highlight_post_tag == other.highlight_post_tag &&
940
+ snippet_ellipsis_text == other.snippet_ellipsis_text &&
941
+ restrict_highlight_and_snippet_arrays == other.restrict_highlight_and_snippet_arrays &&
942
+ hits_per_page == other.hits_per_page &&
943
+ min_word_sizefor1_typo == other.min_word_sizefor1_typo &&
944
+ min_word_sizefor2_typos == other.min_word_sizefor2_typos &&
945
+ typo_tolerance == other.typo_tolerance &&
946
+ allow_typos_on_numeric_tokens == other.allow_typos_on_numeric_tokens &&
947
+ disable_typo_tolerance_on_attributes == other.disable_typo_tolerance_on_attributes &&
948
+ ignore_plurals == other.ignore_plurals &&
949
+ remove_stop_words == other.remove_stop_words &&
950
+ keep_diacritics_on_characters == other.keep_diacritics_on_characters &&
951
+ query_languages == other.query_languages &&
952
+ decompound_query == other.decompound_query &&
953
+ enable_rules == other.enable_rules &&
954
+ enable_personalization == other.enable_personalization &&
955
+ query_type == other.query_type &&
956
+ remove_words_if_no_results == other.remove_words_if_no_results &&
957
+ mode == other.mode &&
958
+ semantic_search == other.semantic_search &&
959
+ advanced_syntax == other.advanced_syntax &&
960
+ optional_words == other.optional_words &&
961
+ disable_exact_on_attributes == other.disable_exact_on_attributes &&
962
+ exact_on_single_word_query == other.exact_on_single_word_query &&
963
+ alternatives_as_exact == other.alternatives_as_exact &&
964
+ advanced_syntax_features == other.advanced_syntax_features &&
965
+ distinct == other.distinct &&
966
+ replace_synonyms_in_highlight == other.replace_synonyms_in_highlight &&
967
+ min_proximity == other.min_proximity &&
968
+ response_fields == other.response_fields &&
969
+ max_facet_hits == other.max_facet_hits &&
970
+ max_values_per_facet == other.max_values_per_facet &&
971
+ sort_facet_values_by == other.sort_facet_values_by &&
972
+ attribute_criteria_computed_by_min_proximity == other.attribute_criteria_computed_by_min_proximity &&
973
+ rendering_content == other.rendering_content &&
974
+ enable_re_ranking == other.enable_re_ranking &&
975
+ re_ranking_apply_filter == other.re_ranking_apply_filter
976
+ end
977
+
978
+ # @see the `==` method
979
+ # @param [Object] Object to be compared
980
+ def eql?(other)
981
+ self == other
982
+ end
983
+
984
+ # Calculates hash code according to all attributes.
985
+ # @return [Integer] Hash code
986
+ def hash
987
+ [query, similar_query, filters, facet_filters, optional_filters, numeric_filters, tag_filters, sum_or_filters_scores, restrict_searchable_attributes, facets,
988
+ faceting_after_distinct, page, offset, length, around_lat_lng, around_lat_lng_via_ip, around_radius, around_precision, minimum_around_radius, inside_bounding_box, inside_polygon, natural_languages, rule_contexts, personalization_impact, user_token, get_ranking_info, explain, synonyms, click_analytics, analytics, analytics_tags, percentile_computation, enable_ab_test, attributes_for_faceting, attributes_to_retrieve, ranking, custom_ranking, relevancy_strictness, attributes_to_highlight, attributes_to_snippet, highlight_pre_tag, highlight_post_tag, snippet_ellipsis_text, restrict_highlight_and_snippet_arrays, hits_per_page, min_word_sizefor1_typo, min_word_sizefor2_typos, typo_tolerance, allow_typos_on_numeric_tokens, disable_typo_tolerance_on_attributes, ignore_plurals, remove_stop_words, keep_diacritics_on_characters, query_languages, decompound_query, enable_rules, enable_personalization, query_type, remove_words_if_no_results, mode, semantic_search, advanced_syntax, optional_words, disable_exact_on_attributes, exact_on_single_word_query, alternatives_as_exact, advanced_syntax_features, distinct, replace_synonyms_in_highlight, min_proximity, response_fields, max_facet_hits, max_values_per_facet, sort_facet_values_by, attribute_criteria_computed_by_min_proximity, rendering_content, enable_re_ranking, re_ranking_apply_filter].hash
989
+ end
990
+
991
+ # Builds the object from hash
992
+ # @param [Hash] attributes Model attributes in the form of hash
993
+ # @return [Object] Returns the model itself
994
+ def self.build_from_hash(attributes)
995
+ return nil unless attributes.is_a?(Hash)
996
+
997
+ attributes = attributes.transform_keys(&:to_sym)
998
+ transformed_hash = {}
999
+ types_mapping.each_pair do |key, type|
1000
+ if attributes.key?(attribute_map[key]) && attributes[attribute_map[key]].nil?
1001
+ transformed_hash[key.to_s] = nil
1002
+ elsif type =~ /\AArray<(.*)>/i
1003
+ # check to ensure the input is an array given that the attribute
1004
+ # is documented as an array but the input is not
1005
+ if attributes[attribute_map[key]].is_a?(Array)
1006
+ transformed_hash[key.to_s] = attributes[attribute_map[key]].map { |v| _deserialize(::Regexp.last_match(1), v) }
1007
+ end
1008
+ elsif !attributes[attribute_map[key]].nil?
1009
+ transformed_hash[key.to_s] = _deserialize(type, attributes[attribute_map[key]])
1010
+ end
1011
+ end
1012
+ new(transformed_hash)
1013
+ end
1014
+
1015
+ # Deserializes the data based on type
1016
+ # @param string type Data type
1017
+ # @param string value Value to be deserialized
1018
+ # @return [Object] Deserialized data
1019
+ def self._deserialize(type, value)
1020
+ case type.to_sym
1021
+ when :Time
1022
+ Time.parse(value)
1023
+ when :Date
1024
+ Date.parse(value)
1025
+ when :String
1026
+ value.to_s
1027
+ when :Integer
1028
+ value.to_i
1029
+ when :Float
1030
+ value.to_f
1031
+ when :Boolean
1032
+ if value.to_s =~ /\A(true|t|yes|y|1)\z/i
1033
+ true
1034
+ else
1035
+ false
1036
+ end
1037
+ when :Object
1038
+ # generic object (usually a Hash), return directly
1039
+ value
1040
+ when /\AArray<(?<inner_type>.+)>\z/
1041
+ inner_type = Regexp.last_match[:inner_type]
1042
+ value.map { |v| _deserialize(inner_type, v) }
1043
+ when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
1044
+ k_type = Regexp.last_match[:k_type]
1045
+ v_type = Regexp.last_match[:v_type]
1046
+ {}.tap do |hash|
1047
+ value.each do |k, v|
1048
+ hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
1049
+ end
1050
+ end
1051
+ else # model
1052
+ # models (e.g. Pet) or oneOf
1053
+ klass = Algolia::Recommend.const_get(type)
1054
+ klass.respond_to?(:openapi_any_of) || klass.respond_to?(:openapi_one_of) ? klass.build(value) : klass.build_from_hash(value)
1055
+ end
1056
+ end
1057
+
1058
+ # Returns the string representation of the object
1059
+ # @return [String] String presentation of the object
1060
+ def to_s
1061
+ to_hash.to_s
1062
+ end
1063
+
1064
+ # to_body is an alias to to_hash (backward compatibility)
1065
+ # @return [Hash] Returns the object in the form of hash
1066
+ def to_body
1067
+ to_hash
1068
+ end
1069
+
1070
+ # Returns the object in the form of hash
1071
+ # @return [Hash] Returns the object in the form of hash
1072
+ def to_hash
1073
+ hash = {}
1074
+ self.class.attribute_map.each_pair do |attr, param|
1075
+ value = send(attr)
1076
+ if value.nil?
1077
+ is_nullable = self.class.openapi_nullable.include?(attr)
1078
+ next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
1079
+ end
1080
+
1081
+ hash[param] = _to_hash(value)
1082
+ end
1083
+ hash
1084
+ end
1085
+
1086
+ # Outputs non-array value in the form of hash
1087
+ # For object, use to_hash. Otherwise, just return the value
1088
+ # @param [Object] value Any valid value
1089
+ # @return [Hash] Returns the value in the form of hash
1090
+ def _to_hash(value)
1091
+ if value.is_a?(Array)
1092
+ value.compact.map { |v| _to_hash(v) }
1093
+ elsif value.is_a?(Hash)
1094
+ {}.tap do |hash|
1095
+ value.each { |k, v| hash[k] = _to_hash(v) }
1096
+ end
1097
+ elsif value.respond_to? :to_hash
1098
+ value.to_hash
1099
+ else
1100
+ value
1101
+ end
1102
+ end
1103
+ end
1104
+ end
1105
+ end