forked from clousale/amazon-sp-api-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFeedsApi.php
734 lines (662 loc) · 30.6 KB
/
FeedsApi.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
<?php
/**
* FeedsApi.
*
* @author Stefan Neuhaus
*/
/**
* Selling Partner API for Feeds.
*
* The Selling Partner API for Feeds lets you upload data to Amazon on behalf of a selling partner.
*
* OpenAPI spec version: 2020-09-04
*/
namespace Luigel\AmazonSellingPartnerAPI\Api;
use Luigel\AmazonSellingPartnerAPI\Configuration;
use Luigel\AmazonSellingPartnerAPI\HeaderSelector;
use Luigel\AmazonSellingPartnerAPI\Helpers\SellingPartnerApiRequest;
use Luigel\AmazonSellingPartnerAPI\Models\Feeds\CancelFeedResponse;
use Luigel\AmazonSellingPartnerAPI\Models\Feeds\CreateFeedDocumentResponse;
use Luigel\AmazonSellingPartnerAPI\Models\Feeds\CreateFeedResponse;
use Luigel\AmazonSellingPartnerAPI\Models\Feeds\GetFeedDocumentResponse;
use Luigel\AmazonSellingPartnerAPI\Models\Feeds\GetFeedResponse;
use Luigel\AmazonSellingPartnerAPI\Models\Feeds\GetFeedsResponse;
use Luigel\AmazonSellingPartnerAPI\ObjectSerializer;
use GuzzleHttp\Client;
use GuzzleHttp\ClientInterface;
/**
* FeedsApi Class Doc Comment.
*
* @author Stefan Neuhaus
*/
class FeedsApi
{
use SellingPartnerApiRequest;
/**
* @var ClientInterface
*/
protected $client;
/**
* @var Configuration
*/
protected $config;
/**
* @var HeaderSelector
*/
protected $headerSelector;
public function __construct(Configuration $config)
{
$this->client = new Client();
$this->config = $config;
$this->headerSelector = new HeaderSelector();
}
/**
* @return Configuration
*/
public function getConfig()
{
return $this->config;
}
/**
* Operation cancelFeed.
*
* @param string $feed_id The identifier for the feed. This identifier is unique only in combination with a seller ID. (required)
*
* @throws \InvalidArgumentException
* @throws \Luigel\AmazonSellingPartnerAPI\ApiException on non-2xx response
*
* @return \Luigel\AmazonSellingPartnerAPI\Models\Feeds\CancelFeedResponse
*/
public function cancelFeed($feed_id)
{
list($response) = $this->cancelFeedWithHttpInfo($feed_id);
return $response;
}
/**
* Operation cancelFeedWithHttpInfo.
*
* @param string $feed_id The identifier for the feed. This identifier is unique only in combination with a seller ID. (required)
*
* @throws \InvalidArgumentException
* @throws \Luigel\AmazonSellingPartnerAPI\ApiException on non-2xx response
*
* @return array of \Luigel\AmazonSellingPartnerAPI\Models\Feeds\CancelFeedResponse, HTTP status code, HTTP response headers (array of strings)
*/
public function cancelFeedWithHttpInfo($feed_id)
{
$returnType = '\Luigel\AmazonSellingPartnerAPI\Models\Feeds\CancelFeedResponse';
$request = $this->cancelFeedRequest($feed_id);
return $this->sendRequest($request, CancelFeedResponse::class);
}
/**
* Operation cancelFeedAsync.
*
* @param string $feed_id The identifier for the feed. This identifier is unique only in combination with a seller ID. (required)
*
* @throws \InvalidArgumentException
*
* @return \GuzzleHttp\Promise\PromiseInterface
*/
public function cancelFeedAsync($feed_id)
{
return $this->cancelFeedAsyncWithHttpInfo($feed_id)
->then(
function ($response) {
return $response[0];
}
);
}
/**
* Operation cancelFeedAsyncWithHttpInfo.
*
* @param string $feed_id The identifier for the feed. This identifier is unique only in combination with a seller ID. (required)
*
* @throws \InvalidArgumentException
*
* @return \GuzzleHttp\Promise\PromiseInterface
*/
public function cancelFeedAsyncWithHttpInfo($feed_id)
{
$request = $this->cancelFeedRequest($feed_id);
return $this->sendRequestAsync($request, CancelFeedResponse::class);
}
/**
* Create request for operation 'cancelFeed'.
*
* @param string $feed_id The identifier for the feed. This identifier is unique only in combination with a seller ID. (required)
*
* @throws \InvalidArgumentException
*
* @return \GuzzleHttp\Psr7\Request
*/
protected function cancelFeedRequest($feed_id)
{
// verify the required parameter 'feed_id' is set
if (null === $feed_id || (is_array($feed_id) && 0 === count($feed_id))) {
throw new \InvalidArgumentException('Missing the required parameter $feed_id when calling cancelFeed');
}
$resourcePath = '/feeds/2020-09-04/feeds/{feedId}';
$formParams = [];
$queryParams = [];
$headerParams = [];
$httpBody = '';
$multipart = false;
// path params
if (null !== $feed_id) {
$resourcePath = str_replace(
'{'.'feedId'.'}',
ObjectSerializer::toPathValue($feed_id),
$resourcePath
);
}
return $this->generateRequest($multipart, $formParams, $queryParams, $resourcePath, $headerParams, 'DELETE', $httpBody);
}
/**
* Operation createFeed.
*
* @param \Luigel\AmazonSellingPartnerAPI\Models\Feeds\CreateFeedSpecification $body body (required)
*
* @throws \InvalidArgumentException
* @throws \Luigel\AmazonSellingPartnerAPI\ApiException on non-2xx response
*
* @return \Luigel\AmazonSellingPartnerAPI\Models\Feeds\CreateFeedResponse
*/
public function createFeed($body)
{
list($response) = $this->createFeedWithHttpInfo($body);
return $response;
}
/**
* Operation createFeedWithHttpInfo.
*
* @param \Luigel\AmazonSellingPartnerAPI\Models\Feeds\CreateFeedSpecification $body (required)
*
* @throws \InvalidArgumentException
* @throws \Luigel\AmazonSellingPartnerAPI\ApiException on non-2xx response
*
* @return array of \Luigel\AmazonSellingPartnerAPI\Models\Feeds\CreateFeedResponse, HTTP status code, HTTP response headers (array of strings)
*/
public function createFeedWithHttpInfo($body)
{
$returnType = '\Luigel\AmazonSellingPartnerAPI\Models\Feeds\CreateFeedResponse';
$request = $this->createFeedRequest($body);
return $this->sendRequest($request, CreateFeedResponse::class);
}
/**
* Operation createFeedAsync.
*
* @param \Luigel\AmazonSellingPartnerAPI\Models\Feeds\CreateFeedSpecification $body (required)
*
* @throws \InvalidArgumentException
*
* @return \GuzzleHttp\Promise\PromiseInterface
*/
public function createFeedAsync($body)
{
return $this->createFeedAsyncWithHttpInfo($body)
->then(
function ($response) {
return $response[0];
}
);
}
/**
* Operation createFeedAsyncWithHttpInfo.
*
* @param \Luigel\AmazonSellingPartnerAPI\Models\Feeds\CreateFeedSpecification $body (required)
*
* @throws \InvalidArgumentException
*
* @return \GuzzleHttp\Promise\PromiseInterface
*/
public function createFeedAsyncWithHttpInfo($body)
{
$request = $this->createFeedRequest($body);
return $this->sendRequestAsync($request, CreateFeedResponse::class);
}
/**
* Create request for operation 'createFeed'.
*
* @param \Luigel\AmazonSellingPartnerAPI\Models\Feeds\CreateFeedSpecification $body (required)
*
* @throws \InvalidArgumentException
*
* @return \GuzzleHttp\Psr7\Request
*/
protected function createFeedRequest($body)
{
// verify the required parameter 'body' is set
if (null === $body || (is_array($body) && 0 === count($body))) {
throw new \InvalidArgumentException('Missing the required parameter $body when calling createFeed');
}
$resourcePath = '/feeds/2020-09-04/feeds';
$formParams = [];
$queryParams = [];
$headerParams = [];
$httpBody = $body;
$multipart = false;
return $this->generateRequest($multipart, $formParams, $queryParams, $resourcePath, $headerParams, 'POST', $httpBody);
}
/**
* Operation createFeedDocument.
*
* @param \Luigel\AmazonSellingPartnerAPI\Models\Feeds\CreateFeedDocumentSpecification $body body (required)
*
* @throws \InvalidArgumentException
* @throws \Luigel\AmazonSellingPartnerAPI\ApiException on non-2xx response
*
* @return \Luigel\AmazonSellingPartnerAPI\Models\Feeds\CreateFeedDocumentResponse
*/
public function createFeedDocument($body)
{
list($response) = $this->createFeedDocumentWithHttpInfo($body);
return $response;
}
/**
* Operation createFeedDocumentWithHttpInfo.
*
* @param \Luigel\AmazonSellingPartnerAPI\Models\Feeds\CreateFeedDocumentSpecification $body (required)
*
* @throws \InvalidArgumentException
* @throws \Luigel\AmazonSellingPartnerAPI\ApiException on non-2xx response
*
* @return array of \Luigel\AmazonSellingPartnerAPI\Models\Feeds\CreateFeedDocumentResponse, HTTP status code, HTTP response headers (array of strings)
*/
public function createFeedDocumentWithHttpInfo($body)
{
$request = $this->createFeedDocumentRequest($body);
return $this->sendRequest($request, CreateFeedDocumentResponse::class);
}
/**
* Operation createFeedDocumentAsync.
*
* @param \Luigel\AmazonSellingPartnerAPI\Models\Feeds\CreateFeedDocumentSpecification $body (required)
*
* @throws \InvalidArgumentException
*
* @return \GuzzleHttp\Promise\PromiseInterface
*/
public function createFeedDocumentAsync($body)
{
return $this->createFeedDocumentAsyncWithHttpInfo($body)
->then(
function ($response) {
return $response[0];
}
);
}
/**
* Operation createFeedDocumentAsyncWithHttpInfo.
*
* @param \Luigel\AmazonSellingPartnerAPI\Models\Feeds\CreateFeedDocumentSpecification $body (required)
*
* @throws \InvalidArgumentException
*
* @return \GuzzleHttp\Promise\PromiseInterface
*/
public function createFeedDocumentAsyncWithHttpInfo($body)
{
$request = $this->createFeedDocumentRequest($body);
return $this->sendRequestAsync($request, CreateFeedDocumentResponse::class);
}
/**
* Create request for operation 'createFeedDocument'.
*
* @param \Luigel\AmazonSellingPartnerAPI\Models\Feeds\CreateFeedDocumentSpecification $body (required)
*
* @throws \InvalidArgumentException
*
* @return \GuzzleHttp\Psr7\Request
*/
protected function createFeedDocumentRequest($body)
{
// verify the required parameter 'body' is set
if (null === $body || (is_array($body) && 0 === count($body))) {
throw new \InvalidArgumentException('Missing the required parameter $body when calling createFeedDocument');
}
$resourcePath = '/feeds/2020-09-04/documents';
$formParams = [];
$queryParams = [];
$headerParams = [];
$httpBody = $body;
$multipart = false;
return $this->generateRequest($multipart, $formParams, $queryParams, $resourcePath, $headerParams, 'POST', $httpBody);
}
/**
* Operation getFeed.
*
* @param string $feed_id The identifier for the feed. This identifier is unique only in combination with a seller ID. (required)
*
* @throws \InvalidArgumentException
* @throws \Luigel\AmazonSellingPartnerAPI\ApiException on non-2xx response
*
* @return \Luigel\AmazonSellingPartnerAPI\Models\Feeds\GetFeedResponse
*/
public function getFeed($feed_id)
{
list($response) = $this->getFeedWithHttpInfo($feed_id);
return $response;
}
/**
* Operation getFeedWithHttpInfo.
*
* @param string $feed_id The identifier for the feed. This identifier is unique only in combination with a seller ID. (required)
*
* @throws \InvalidArgumentException
* @throws \Luigel\AmazonSellingPartnerAPI\ApiException on non-2xx response
*
* @return array of \Luigel\AmazonSellingPartnerAPI\Models\Feeds\GetFeedResponse, HTTP status code, HTTP response headers (array of strings)
*/
public function getFeedWithHttpInfo($feed_id)
{
$returnType = '\Luigel\AmazonSellingPartnerAPI\Models\Feeds\GetFeedResponse';
$request = $this->getFeedRequest($feed_id);
return $this->sendRequest($request, GetFeedResponse::class);
}
/**
* Operation getFeedAsync.
*
* @param string $feed_id The identifier for the feed. This identifier is unique only in combination with a seller ID. (required)
*
* @throws \InvalidArgumentException
*
* @return \GuzzleHttp\Promise\PromiseInterface
*/
public function getFeedAsync($feed_id)
{
return $this->getFeedAsyncWithHttpInfo($feed_id)
->then(
function ($response) {
return $response[0];
}
);
}
/**
* Operation getFeedAsyncWithHttpInfo.
*
* @param string $feed_id The identifier for the feed. This identifier is unique only in combination with a seller ID. (required)
*
* @throws \InvalidArgumentException
*
* @return \GuzzleHttp\Promise\PromiseInterface
*/
public function getFeedAsyncWithHttpInfo($feed_id)
{
$returnType = '\Luigel\AmazonSellingPartnerAPI\Models\Feeds\GetFeedResponse';
$request = $this->getFeedRequest($feed_id);
return $this->sendRequestAsync($request, GetFeedResponse::class);
}
/**
* Create request for operation 'getFeed'.
*
* @param string $feed_id The identifier for the feed. This identifier is unique only in combination with a seller ID. (required)
*
* @throws \InvalidArgumentException
*
* @return \GuzzleHttp\Psr7\Request
*/
protected function getFeedRequest($feed_id)
{
// verify the required parameter 'feed_id' is set
if (null === $feed_id || (is_array($feed_id) && 0 === count($feed_id))) {
throw new \InvalidArgumentException('Missing the required parameter $feed_id when calling getFeed');
}
$resourcePath = '/feeds/2020-09-04/feeds/{feedId}';
$formParams = [];
$queryParams = [];
$headerParams = [];
$httpBody = '';
$multipart = false;
// path params
if (null !== $feed_id) {
$resourcePath = str_replace(
'{'.'feedId'.'}',
ObjectSerializer::toPathValue($feed_id),
$resourcePath
);
}
return $this->generateRequest($multipart, $formParams, $queryParams, $resourcePath, $headerParams, 'GET', $httpBody);
}
/**
* Operation getFeedDocument.
*
* @param string $feed_document_id The identifier of the feed document. (required)
*
* @throws \InvalidArgumentException
* @throws \Luigel\AmazonSellingPartnerAPI\ApiException on non-2xx response
*
* @return \Luigel\AmazonSellingPartnerAPI\Models\Feeds\GetFeedDocumentResponse
*/
public function getFeedDocument($feed_document_id)
{
list($response) = $this->getFeedDocumentWithHttpInfo($feed_document_id);
return $response;
}
/**
* Operation getFeedDocumentWithHttpInfo.
*
* @param string $feed_document_id The identifier of the feed document. (required)
*
* @throws \InvalidArgumentException
* @throws \Luigel\AmazonSellingPartnerAPI\ApiException on non-2xx response
*
* @return array of \Luigel\AmazonSellingPartnerAPI\Models\Feeds\GetFeedDocumentResponse, HTTP status code, HTTP response headers (array of strings)
*/
public function getFeedDocumentWithHttpInfo($feed_document_id)
{
$request = $this->getFeedDocumentRequest($feed_document_id);
return $this->sendRequest($request, GetFeedDocumentResponse::class);
}
/**
* Operation getFeedDocumentAsync.
*
* @param string $feed_document_id The identifier of the feed document. (required)
*
* @throws \InvalidArgumentException
*
* @return \GuzzleHttp\Promise\PromiseInterface
*/
public function getFeedDocumentAsync($feed_document_id)
{
return $this->getFeedDocumentAsyncWithHttpInfo($feed_document_id)
->then(
function ($response) {
return $response[0];
}
);
}
/**
* Operation getFeedDocumentAsyncWithHttpInfo.
*
* @param string $feed_document_id The identifier of the feed document. (required)
*
* @throws \InvalidArgumentException
*
* @return \GuzzleHttp\Promise\PromiseInterface
*/
public function getFeedDocumentAsyncWithHttpInfo($feed_document_id)
{
$request = $this->getFeedDocumentRequest($feed_document_id);
return $this->sendRequestAsync($request, GetFeedDocumentResponse::class);
}
/**
* Create request for operation 'getFeedDocument'.
*
* @param string $feed_document_id The identifier of the feed document. (required)
*
* @throws \InvalidArgumentException
*
* @return \GuzzleHttp\Psr7\Request
*/
protected function getFeedDocumentRequest($feed_document_id)
{
// verify the required parameter 'feed_document_id' is set
if (null === $feed_document_id || (is_array($feed_document_id) && 0 === count($feed_document_id))) {
throw new \InvalidArgumentException('Missing the required parameter $feed_document_id when calling getFeedDocument');
}
$resourcePath = '/feeds/2020-09-04/documents/{feedDocumentId}';
$formParams = [];
$queryParams = [];
$headerParams = [];
$httpBody = '';
$multipart = false;
// path params
if (null !== $feed_document_id) {
$resourcePath = str_replace(
'{'.'feedDocumentId'.'}',
ObjectSerializer::toPathValue($feed_document_id),
$resourcePath
);
}
return $this->generateRequest($multipart, $formParams, $queryParams, $resourcePath, $headerParams, 'GET', $httpBody);
}
/**
* Operation getFeeds.
*
* @param string[] $feed_types A list of feed types used to filter feeds. When feedTypes is provided, the other filter parameters (processingStatuses, marketplaceIds, createdSince, createdUntil) and pageSize may also be provided. Either feedTypes or nextToken is required. (optional)
* @param string[] $marketplace_ids A list of marketplace identifiers used to filter feeds. The feeds returned will match at least one of the marketplaces that you specify. (optional)
* @param int $page_size The maximum number of feeds to return in a single call. (optional, default to 10)
* @param string[] $processing_statuses A list of processing statuses used to filter feeds. (optional)
* @param \DateTime $created_since The earliest feed creation date and time for feeds included in the response, in ISO 8601 format. The default is 90 days ago. Feeds are retained for a maximum of 90 days. (optional)
* @param \DateTime $created_until The latest feed creation date and time for feeds included in the response, in ISO 8601 format. The default is now. (optional)
* @param string $next_token A string token returned in the response to your previous request. nextToken is returned when the number of results exceeds the specified pageSize value. To get the next page of results, call the getFeeds operation and include this token as the only parameter. Specifying nextToken with any other parameters will cause the request to fail. (optional)
*
* @throws \Luigel\AmazonSellingPartnerAPI\ApiException on non-2xx response
* @throws \InvalidArgumentException
*
* @return \Luigel\AmazonSellingPartnerAPI\Models\Feeds\GetFeedsResponse
*/
public function getFeeds($feed_types = null, $marketplace_ids = null, $page_size = '10', $processing_statuses = null, $created_since = null, $created_until = null, $next_token = null)
{
list($response) = $this->getFeedsWithHttpInfo($feed_types, $marketplace_ids, $page_size, $processing_statuses, $created_since, $created_until, $next_token);
return $response;
}
/**
* Operation getFeedsWithHttpInfo.
*
* @param string[] $feed_types A list of feed types used to filter feeds. When feedTypes is provided, the other filter parameters (processingStatuses, marketplaceIds, createdSince, createdUntil) and pageSize may also be provided. Either feedTypes or nextToken is required. (optional)
* @param string[] $marketplace_ids A list of marketplace identifiers used to filter feeds. The feeds returned will match at least one of the marketplaces that you specify. (optional)
* @param int $page_size The maximum number of feeds to return in a single call. (optional, default to 10)
* @param string[] $processing_statuses A list of processing statuses used to filter feeds. (optional)
* @param \DateTime $created_since The earliest feed creation date and time for feeds included in the response, in ISO 8601 format. The default is 90 days ago. Feeds are retained for a maximum of 90 days. (optional)
* @param \DateTime $created_until The latest feed creation date and time for feeds included in the response, in ISO 8601 format. The default is now. (optional)
* @param string $next_token A string token returned in the response to your previous request. nextToken is returned when the number of results exceeds the specified pageSize value. To get the next page of results, call the getFeeds operation and include this token as the only parameter. Specifying nextToken with any other parameters will cause the request to fail. (optional)
*
* @throws \Luigel\AmazonSellingPartnerAPI\ApiException on non-2xx response
* @throws \InvalidArgumentException
*
* @return array of \Luigel\AmazonSellingPartnerAPI\Models\Feeds\GetFeedsResponse, HTTP status code, HTTP response headers (array of strings)
*/
public function getFeedsWithHttpInfo($feed_types = null, $marketplace_ids = null, $page_size = '10', $processing_statuses = null, $created_since = null, $created_until = null, $next_token = null)
{
$request = $this->getFeedsRequest($feed_types, $marketplace_ids, $page_size, $processing_statuses, $created_since, $created_until, $next_token);
return $this->sendRequest($request, GetFeedsResponse::class);
}
/**
* Operation getFeedsAsync.
*
* @param string[] $feed_types A list of feed types used to filter feeds. When feedTypes is provided, the other filter parameters (processingStatuses, marketplaceIds, createdSince, createdUntil) and pageSize may also be provided. Either feedTypes or nextToken is required. (optional)
* @param string[] $marketplace_ids A list of marketplace identifiers used to filter feeds. The feeds returned will match at least one of the marketplaces that you specify. (optional)
* @param int $page_size The maximum number of feeds to return in a single call. (optional, default to 10)
* @param string[] $processing_statuses A list of processing statuses used to filter feeds. (optional)
* @param \DateTime $created_since The earliest feed creation date and time for feeds included in the response, in ISO 8601 format. The default is 90 days ago. Feeds are retained for a maximum of 90 days. (optional)
* @param \DateTime $created_until The latest feed creation date and time for feeds included in the response, in ISO 8601 format. The default is now. (optional)
* @param string $next_token A string token returned in the response to your previous request. nextToken is returned when the number of results exceeds the specified pageSize value. To get the next page of results, call the getFeeds operation and include this token as the only parameter. Specifying nextToken with any other parameters will cause the request to fail. (optional)
*
* @throws \InvalidArgumentException
*
* @return \GuzzleHttp\Promise\PromiseInterface
*/
public function getFeedsAsync($feed_types = null, $marketplace_ids = null, $page_size = '10', $processing_statuses = null, $created_since = null, $created_until = null, $next_token = null)
{
return $this->getFeedsAsyncWithHttpInfo($feed_types, $marketplace_ids, $page_size, $processing_statuses, $created_since, $created_until, $next_token)
->then(
function ($response) {
return $response[0];
}
);
}
/**
* Operation getFeedsAsyncWithHttpInfo.
*
* @param string[] $feed_types A list of feed types used to filter feeds. When feedTypes is provided, the other filter parameters (processingStatuses, marketplaceIds, createdSince, createdUntil) and pageSize may also be provided. Either feedTypes or nextToken is required. (optional)
* @param string[] $marketplace_ids A list of marketplace identifiers used to filter feeds. The feeds returned will match at least one of the marketplaces that you specify. (optional)
* @param int $page_size The maximum number of feeds to return in a single call. (optional, default to 10)
* @param string[] $processing_statuses A list of processing statuses used to filter feeds. (optional)
* @param \DateTime $created_since The earliest feed creation date and time for feeds included in the response, in ISO 8601 format. The default is 90 days ago. Feeds are retained for a maximum of 90 days. (optional)
* @param \DateTime $created_until The latest feed creation date and time for feeds included in the response, in ISO 8601 format. The default is now. (optional)
* @param string $next_token A string token returned in the response to your previous request. nextToken is returned when the number of results exceeds the specified pageSize value. To get the next page of results, call the getFeeds operation and include this token as the only parameter. Specifying nextToken with any other parameters will cause the request to fail. (optional)
*
* @throws \InvalidArgumentException
*
* @return \GuzzleHttp\Promise\PromiseInterface
*/
public function getFeedsAsyncWithHttpInfo($feed_types = null, $marketplace_ids = null, $page_size = '10', $processing_statuses = null, $created_since = null, $created_until = null, $next_token = null)
{
$returnType = '\Luigel\AmazonSellingPartnerAPI\Models\Feeds\GetFeedsResponse';
$request = $this->getFeedsRequest($feed_types, $marketplace_ids, $page_size, $processing_statuses, $created_since, $created_until, $next_token);
return $this->sendRequestAsync($request, GetFeedsResponse::class);
}
/**
* Create request for operation 'getFeeds'.
*
* @param string[] $feed_types A list of feed types used to filter feeds. When feedTypes is provided, the other filter parameters (processingStatuses, marketplaceIds, createdSince, createdUntil) and pageSize may also be provided. Either feedTypes or nextToken is required. (optional)
* @param string[] $marketplace_ids A list of marketplace identifiers used to filter feeds. The feeds returned will match at least one of the marketplaces that you specify. (optional)
* @param int $page_size The maximum number of feeds to return in a single call. (optional, default to 10)
* @param string[] $processing_statuses A list of processing statuses used to filter feeds. (optional)
* @param \DateTime $created_since The earliest feed creation date and time for feeds included in the response, in ISO 8601 format. The default is 90 days ago. Feeds are retained for a maximum of 90 days. (optional)
* @param \DateTime $created_until The latest feed creation date and time for feeds included in the response, in ISO 8601 format. The default is now. (optional)
* @param string $next_token A string token returned in the response to your previous request. nextToken is returned when the number of results exceeds the specified pageSize value. To get the next page of results, call the getFeeds operation and include this token as the only parameter. Specifying nextToken with any other parameters will cause the request to fail. (optional)
*
* @throws \InvalidArgumentException
*
* @return \GuzzleHttp\Psr7\Request
*/
protected function getFeedsRequest($feed_types = null, $marketplace_ids = null, $page_size = '10', $processing_statuses = null, $created_since = null, $created_until = null, $next_token = null)
{
$resourcePath = '/feeds/2020-09-04/feeds';
$formParams = [];
$queryParams = [];
$headerParams = [];
$httpBody = '';
$multipart = false;
// query params
if (is_array($feed_types)) {
$feed_types = ObjectSerializer::serializeCollection($feed_types, 'csv', true);
}
if (null !== $feed_types) {
$queryParams['feedTypes'] = ObjectSerializer::toQueryValue($feed_types);
}
// query params
if (is_array($marketplace_ids)) {
$marketplace_ids = ObjectSerializer::serializeCollection($marketplace_ids, 'csv', true);
}
if (null !== $marketplace_ids) {
$queryParams['marketplaceIds'] = ObjectSerializer::toQueryValue($marketplace_ids);
}
// query params
if (null !== $page_size) {
$queryParams['pageSize'] = ObjectSerializer::toQueryValue($page_size);
}
// query params
if (is_array($processing_statuses)) {
$processing_statuses = ObjectSerializer::serializeCollection($processing_statuses, 'csv', true);
}
if (null !== $processing_statuses) {
$queryParams['processingStatuses'] = ObjectSerializer::toQueryValue($processing_statuses);
}
// query params
if (null !== $created_since) {
$queryParams['createdSince'] = ObjectSerializer::toQueryValue($created_since);
}
// query params
if (null !== $created_until) {
$queryParams['createdUntil'] = ObjectSerializer::toQueryValue($created_until);
}
// query params
if (null !== $next_token) {
$queryParams['nextToken'] = ObjectSerializer::toQueryValue($next_token);
}
return $this->generateRequest($multipart, $formParams, $queryParams, $resourcePath, $headerParams, 'GET', $httpBody);
}
}