|
6 | 6 |
|
7 | 7 | use Algolia\AlgoliaSearch\Algolia; |
8 | 8 | use Algolia\AlgoliaSearch\Configuration\AbtestingConfig; |
| 9 | +use Algolia\AlgoliaSearch\Model\Abtesting\ABTest; |
| 10 | +use Algolia\AlgoliaSearch\Model\Abtesting\ABTestResponse; |
9 | 11 | use Algolia\AlgoliaSearch\Model\Abtesting\AddABTestsRequest; |
10 | 12 | use Algolia\AlgoliaSearch\Model\Abtesting\EstimateABTestRequest; |
| 13 | +use Algolia\AlgoliaSearch\Model\Abtesting\EstimateABTestResponse; |
| 14 | +use Algolia\AlgoliaSearch\Model\Abtesting\ListABTestsResponse; |
| 15 | +use Algolia\AlgoliaSearch\Model\Abtesting\ScheduleABTestResponse; |
11 | 16 | use Algolia\AlgoliaSearch\Model\Abtesting\ScheduleABTestsRequest; |
12 | 17 | use Algolia\AlgoliaSearch\ObjectSerializer; |
13 | 18 | use Algolia\AlgoliaSearch\RetryStrategy\ApiWrapper; |
@@ -125,7 +130,7 @@ public function setClientApiKey($apiKey) |
125 | 130 | * |
126 | 131 | * @param array $requestOptions the requestOptions to send along with the query, they will be merged with the transporter requestOptions |
127 | 132 | * |
128 | | - * @return \Algolia\AlgoliaSearch\Model\Abtesting\ABTestResponse|array<string, mixed> |
| 133 | + * @return ABTestResponse|array<string, mixed> |
129 | 134 | */ |
130 | 135 | public function addABTests($addABTestsRequest, $requestOptions = []) |
131 | 136 | { |
@@ -311,7 +316,7 @@ public function customPut($path, $parameters = null, $body = null, $requestOptio |
311 | 316 | * @param int $id Unique A/B test identifier. (required) |
312 | 317 | * @param array $requestOptions the requestOptions to send along with the query, they will be merged with the transporter requestOptions |
313 | 318 | * |
314 | | - * @return \Algolia\AlgoliaSearch\Model\Abtesting\ABTestResponse|array<string, mixed> |
| 319 | + * @return ABTestResponse|array<string, mixed> |
315 | 320 | */ |
316 | 321 | public function deleteABTest($id, $requestOptions = []) |
317 | 322 | { |
@@ -353,7 +358,7 @@ public function deleteABTest($id, $requestOptions = []) |
353 | 358 | * |
354 | 359 | * @param array $requestOptions the requestOptions to send along with the query, they will be merged with the transporter requestOptions |
355 | 360 | * |
356 | | - * @return \Algolia\AlgoliaSearch\Model\Abtesting\EstimateABTestResponse|array<string, mixed> |
| 361 | + * @return array<string, mixed>|EstimateABTestResponse |
357 | 362 | */ |
358 | 363 | public function estimateABTest($estimateABTestRequest, $requestOptions = []) |
359 | 364 | { |
@@ -381,7 +386,7 @@ public function estimateABTest($estimateABTestRequest, $requestOptions = []) |
381 | 386 | * @param int $id Unique A/B test identifier. (required) |
382 | 387 | * @param array $requestOptions the requestOptions to send along with the query, they will be merged with the transporter requestOptions |
383 | 388 | * |
384 | | - * @return \Algolia\AlgoliaSearch\Model\Abtesting\ABTest|array<string, mixed> |
| 389 | + * @return ABTest|array<string, mixed> |
385 | 390 | */ |
386 | 391 | public function getABTest($id, $requestOptions = []) |
387 | 392 | { |
@@ -421,7 +426,7 @@ public function getABTest($id, $requestOptions = []) |
421 | 426 | * @param string $indexSuffix Index name suffix. Only A/B tests for indices ending with this string are included in the response. (optional) |
422 | 427 | * @param array $requestOptions the requestOptions to send along with the query, they will be merged with the transporter requestOptions |
423 | 428 | * |
424 | | - * @return \Algolia\AlgoliaSearch\Model\Abtesting\ListABTestsResponse|array<string, mixed> |
| 429 | + * @return array<string, mixed>|ListABTestsResponse |
425 | 430 | */ |
426 | 431 | public function listABTests($offset = null, $limit = null, $indexPrefix = null, $indexSuffix = null, $requestOptions = []) |
427 | 432 | { |
@@ -465,7 +470,7 @@ public function listABTests($offset = null, $limit = null, $indexPrefix = null, |
465 | 470 | * |
466 | 471 | * @param array $requestOptions the requestOptions to send along with the query, they will be merged with the transporter requestOptions |
467 | 472 | * |
468 | | - * @return \Algolia\AlgoliaSearch\Model\Abtesting\ScheduleABTestResponse|array<string, mixed> |
| 473 | + * @return array<string, mixed>|ScheduleABTestResponse |
469 | 474 | */ |
470 | 475 | public function scheduleABTest($scheduleABTestsRequest, $requestOptions = []) |
471 | 476 | { |
@@ -493,7 +498,7 @@ public function scheduleABTest($scheduleABTestsRequest, $requestOptions = []) |
493 | 498 | * @param int $id Unique A/B test identifier. (required) |
494 | 499 | * @param array $requestOptions the requestOptions to send along with the query, they will be merged with the transporter requestOptions |
495 | 500 | * |
496 | | - * @return \Algolia\AlgoliaSearch\Model\Abtesting\ABTestResponse|array<string, mixed> |
| 501 | + * @return ABTestResponse|array<string, mixed> |
497 | 502 | */ |
498 | 503 | public function stopABTest($id, $requestOptions = []) |
499 | 504 | { |
|
0 commit comments