forked from clousale/amazon-sp-api-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathServiceApi.php
846 lines (772 loc) · 44.4 KB
/
ServiceApi.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
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
<?php
/**
* ServiceApi.
*
* @author Stefan Neuhaus
*/
/**
* Selling Partner API for Services.
*
* With the Services API, you can build applications that help service providers get and modify their service orders.
*
* OpenAPI spec version: v1
*/
namespace Luigel\AmazonSellingPartnerAPI\Api;
use Luigel\AmazonSellingPartnerAPI\Configuration;
use Luigel\AmazonSellingPartnerAPI\HeaderSelector;
use Luigel\AmazonSellingPartnerAPI\Helpers\SellingPartnerApiRequest;
use Luigel\AmazonSellingPartnerAPI\Models\Services\CancelServiceJobByServiceJobIdResponse;
use Luigel\AmazonSellingPartnerAPI\Models\Services\CompleteServiceJobByServiceJobIdResponse;
use Luigel\AmazonSellingPartnerAPI\Models\Services\GetServiceJobByServiceJobIdResponse;
use Luigel\AmazonSellingPartnerAPI\Models\Services\GetServiceJobsResponse;
use Luigel\AmazonSellingPartnerAPI\Models\Services\SetAppointmentResponse;
use Luigel\AmazonSellingPartnerAPI\ObjectSerializer;
use GuzzleHttp\Client;
use GuzzleHttp\ClientInterface;
use GuzzleHttp\Psr7\Request;
/**
* ServiceApi Class Doc Comment.
*
* @author Stefan Neuhaus
*/
class ServiceApi
{
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 addAppointmentForServiceJobByServiceJobId.
*
* @param \Luigel\AmazonSellingPartnerAPI\Models\Services\AddAppointmentRequest $body Add appointment operation input details. (required)
* @param string $service_job_id An Amazon defined service job identifier. (required)
*
* @throws \Luigel\AmazonSellingPartnerAPI\ApiException on non-2xx response
* @throws \InvalidArgumentException
*
* @return \Luigel\AmazonSellingPartnerAPI\Models\Services\SetAppointmentResponse
*/
public function addAppointmentForServiceJobByServiceJobId($body, $service_job_id)
{
list($response) = $this->addAppointmentForServiceJobByServiceJobIdWithHttpInfo($body, $service_job_id);
return $response;
}
/**
* Operation addAppointmentForServiceJobByServiceJobIdWithHttpInfo.
*
* @param \Luigel\AmazonSellingPartnerAPI\Models\Services\AddAppointmentRequest $body Add appointment operation input details. (required)
* @param string $service_job_id An Amazon defined service job identifier. (required)
*
* @throws \Luigel\AmazonSellingPartnerAPI\ApiException on non-2xx response
* @throws \InvalidArgumentException
*
* @return array of \Luigel\AmazonSellingPartnerAPI\Models\Services\SetAppointmentResponse, HTTP status code, HTTP response headers (array of strings)
*/
public function addAppointmentForServiceJobByServiceJobIdWithHttpInfo($body, $service_job_id)
{
$request = $this->addAppointmentForServiceJobByServiceJobIdRequest($body, $service_job_id);
return $this->sendRequest($request, SetAppointmentResponse::class);
}
/**
* Operation addAppointmentForServiceJobByServiceJobIdAsync.
*
* @param \Luigel\AmazonSellingPartnerAPI\Models\Services\AddAppointmentRequest $body Add appointment operation input details. (required)
* @param string $service_job_id An Amazon defined service job identifier. (required)
*
* @throws \InvalidArgumentException
*
* @return \GuzzleHttp\Promise\PromiseInterface
*/
public function addAppointmentForServiceJobByServiceJobIdAsync($body, $service_job_id)
{
return $this->addAppointmentForServiceJobByServiceJobIdAsyncWithHttpInfo($body, $service_job_id)
->then(
function ($response) {
return $response[0];
}
);
}
/**
* Operation addAppointmentForServiceJobByServiceJobIdAsyncWithHttpInfo.
*
* @param \Luigel\AmazonSellingPartnerAPI\Models\Services\AddAppointmentRequest $body Add appointment operation input details. (required)
* @param string $service_job_id An Amazon defined service job identifier. (required)
*
* @throws \InvalidArgumentException
*
* @return \GuzzleHttp\Promise\PromiseInterface
*/
public function addAppointmentForServiceJobByServiceJobIdAsyncWithHttpInfo($body, $service_job_id)
{
$request = $this->addAppointmentForServiceJobByServiceJobIdRequest($body, $service_job_id);
return $this->sendRequestAsync($request, SetAppointmentResponse::class);
}
/**
* Create request for operation 'addAppointmentForServiceJobByServiceJobId'.
*
* @param \Luigel\AmazonSellingPartnerAPI\Models\Services\AddAppointmentRequest $body Add appointment operation input details. (required)
* @param string $service_job_id An Amazon defined service job identifier. (required)
*
* @throws \InvalidArgumentException
*
* @return \GuzzleHttp\Psr7\Request
*/
protected function addAppointmentForServiceJobByServiceJobIdRequest($body, $service_job_id)
{
// 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 addAppointmentForServiceJobByServiceJobId');
}
// verify the required parameter 'service_job_id' is set
if (null === $service_job_id || (is_array($service_job_id) && 0 === count($service_job_id))) {
throw new \InvalidArgumentException('Missing the required parameter $service_job_id when calling addAppointmentForServiceJobByServiceJobId');
}
$resourcePath = '/service/v1/serviceJobs/{serviceJobId}/appointments';
$formParams = [];
$queryParams = [];
$headerParams = [];
$httpBody = $body;
$multipart = false;
// path params
if (null !== $service_job_id) {
$resourcePath = str_replace(
'{'.'serviceJobId'.'}',
ObjectSerializer::toPathValue($service_job_id),
$resourcePath
);
}
return $this->generateRequest($multipart, $formParams, $queryParams, $resourcePath, $headerParams, 'POST', $httpBody);
}
/**
* Operation cancelServiceJobByServiceJobId.
*
* @param string $service_job_id An Amazon defined service job identifier. (required)
* @param string $cancellation_reason_code A cancel reason code that specifies the reason for cancelling a service job. (required)
*
* @throws \Luigel\AmazonSellingPartnerAPI\ApiException on non-2xx response
* @throws \InvalidArgumentException
*
* @return \Luigel\AmazonSellingPartnerAPI\Models\Services\CancelServiceJobByServiceJobIdResponse
*/
public function cancelServiceJobByServiceJobId($service_job_id, $cancellation_reason_code)
{
list($response) = $this->cancelServiceJobByServiceJobIdWithHttpInfo($service_job_id, $cancellation_reason_code);
return $response;
}
/**
* Operation cancelServiceJobByServiceJobIdWithHttpInfo.
*
* @param string $service_job_id An Amazon defined service job identifier. (required)
* @param string $cancellation_reason_code A cancel reason code that specifies the reason for cancelling a service job. (required)
*
* @throws \Luigel\AmazonSellingPartnerAPI\ApiException on non-2xx response
* @throws \InvalidArgumentException
*
* @return array of \Luigel\AmazonSellingPartnerAPI\Models\Services\CancelServiceJobByServiceJobIdResponse, HTTP status code, HTTP response headers (array of strings)
*/
public function cancelServiceJobByServiceJobIdWithHttpInfo($service_job_id, $cancellation_reason_code)
{
$request = $this->cancelServiceJobByServiceJobIdRequest($service_job_id, $cancellation_reason_code);
return $this->sendRequest($request, CancelServiceJobByServiceJobIdResponse::class);
}
/**
* Operation cancelServiceJobByServiceJobIdAsync.
*
* @param string $service_job_id An Amazon defined service job identifier. (required)
* @param string $cancellation_reason_code A cancel reason code that specifies the reason for cancelling a service job. (required)
*
* @throws \InvalidArgumentException
*
* @return \GuzzleHttp\Promise\PromiseInterface
*/
public function cancelServiceJobByServiceJobIdAsync($service_job_id, $cancellation_reason_code)
{
return $this->cancelServiceJobByServiceJobIdAsyncWithHttpInfo($service_job_id, $cancellation_reason_code)
->then(
function ($response) {
return $response[0];
}
);
}
/**
* Operation cancelServiceJobByServiceJobIdAsyncWithHttpInfo.
*
* @param string $service_job_id An Amazon defined service job identifier. (required)
* @param string $cancellation_reason_code A cancel reason code that specifies the reason for cancelling a service job. (required)
*
* @throws \InvalidArgumentException
*
* @return \GuzzleHttp\Promise\PromiseInterface
*/
public function cancelServiceJobByServiceJobIdAsyncWithHttpInfo($service_job_id, $cancellation_reason_code)
{
$request = $this->cancelServiceJobByServiceJobIdRequest($service_job_id, $cancellation_reason_code);
return $this->sendRequestAsync($request, CancelServiceJobByServiceJobIdResponse::class);
}
/**
* Create request for operation 'cancelServiceJobByServiceJobId'.
*
* @param string $service_job_id An Amazon defined service job identifier. (required)
* @param string $cancellation_reason_code A cancel reason code that specifies the reason for cancelling a service job. (required)
*
* @throws \InvalidArgumentException
*
* @return \GuzzleHttp\Psr7\Request
*/
protected function cancelServiceJobByServiceJobIdRequest($service_job_id, $cancellation_reason_code)
{
// verify the required parameter 'service_job_id' is set
if (null === $service_job_id || (is_array($service_job_id) && 0 === count($service_job_id))) {
throw new \InvalidArgumentException('Missing the required parameter $service_job_id when calling cancelServiceJobByServiceJobId');
}
// verify the required parameter 'cancellation_reason_code' is set
if (null === $cancellation_reason_code || (is_array($cancellation_reason_code) && 0 === count($cancellation_reason_code))) {
throw new \InvalidArgumentException('Missing the required parameter $cancellation_reason_code when calling cancelServiceJobByServiceJobId');
}
$resourcePath = '/service/v1/serviceJobs/{serviceJobId}/cancellations';
$formParams = [];
$queryParams = [];
$headerParams = [];
$httpBody = '';
$multipart = false;
// query params
if (null !== $cancellation_reason_code) {
$queryParams['cancellationReasonCode'] = ObjectSerializer::toQueryValue($cancellation_reason_code);
}
// path params
if (null !== $service_job_id) {
$resourcePath = str_replace(
'{'.'serviceJobId'.'}',
ObjectSerializer::toPathValue($service_job_id),
$resourcePath
);
}
return $this->generateRequest($multipart, $formParams, $queryParams, $resourcePath, $headerParams, 'PUT', $httpBody);
}
/**
* Operation completeServiceJobByServiceJobId.
*
* @param string $service_job_id An Amazon defined service job identifier. (required)
*
* @throws \Luigel\AmazonSellingPartnerAPI\ApiException on non-2xx response
* @throws \InvalidArgumentException
*
* @return \Luigel\AmazonSellingPartnerAPI\Models\Services\CompleteServiceJobByServiceJobIdResponse
*/
public function completeServiceJobByServiceJobId($service_job_id)
{
list($response) = $this->completeServiceJobByServiceJobIdWithHttpInfo($service_job_id);
return $response;
}
/**
* Operation completeServiceJobByServiceJobIdWithHttpInfo.
*
* @param string $service_job_id An Amazon defined service job identifier. (required)
*
* @throws \Luigel\AmazonSellingPartnerAPI\ApiException on non-2xx response
* @throws \InvalidArgumentException
*
* @return array of \Luigel\AmazonSellingPartnerAPI\Models\Services\CompleteServiceJobByServiceJobIdResponse, HTTP status code, HTTP response headers (array of strings)
*/
public function completeServiceJobByServiceJobIdWithHttpInfo($service_job_id)
{
$request = $this->completeServiceJobByServiceJobIdRequest($service_job_id);
return $this->sendRequest($request, CompleteServiceJobByServiceJobIdResponse::class);
}
/**
* Operation completeServiceJobByServiceJobIdAsync.
*
* @param string $service_job_id An Amazon defined service job identifier. (required)
*
* @throws \InvalidArgumentException
*
* @return \GuzzleHttp\Promise\PromiseInterface
*/
public function completeServiceJobByServiceJobIdAsync($service_job_id)
{
return $this->completeServiceJobByServiceJobIdAsyncWithHttpInfo($service_job_id)
->then(
function ($response) {
return $response[0];
}
);
}
/**
* Operation completeServiceJobByServiceJobIdAsyncWithHttpInfo.
*
* @param string $service_job_id An Amazon defined service job identifier. (required)
*
* @throws \InvalidArgumentException
*
* @return \GuzzleHttp\Promise\PromiseInterface
*/
public function completeServiceJobByServiceJobIdAsyncWithHttpInfo($service_job_id)
{
$request = $this->completeServiceJobByServiceJobIdRequest($service_job_id);
return $this->sendRequestAsync($request, CompleteServiceJobByServiceJobIdResponse::class);
}
/**
* Create request for operation 'completeServiceJobByServiceJobId'.
*
* @param string $service_job_id An Amazon defined service job identifier. (required)
*
* @throws \InvalidArgumentException
*
* @return \GuzzleHttp\Psr7\Request
*/
protected function completeServiceJobByServiceJobIdRequest($service_job_id)
{
// verify the required parameter 'service_job_id' is set
if (null === $service_job_id || (is_array($service_job_id) && 0 === count($service_job_id))) {
throw new \InvalidArgumentException('Missing the required parameter $service_job_id when calling completeServiceJobByServiceJobId');
}
$resourcePath = '/service/v1/serviceJobs/{serviceJobId}/completions';
$formParams = [];
$queryParams = [];
$headerParams = [];
$httpBody = '';
$multipart = false;
return $this->generateRequest($multipart, $formParams, $queryParams, $resourcePath, $headerParams, 'PUT', $httpBody);
}
/**
* Operation getServiceJobByServiceJobId.
*
* @param string $service_job_id A service job identifier. (required)
*
* @throws \Luigel\AmazonSellingPartnerAPI\ApiException on non-2xx response
* @throws \InvalidArgumentException
*
* @return \Luigel\AmazonSellingPartnerAPI\Models\Services\GetServiceJobByServiceJobIdResponse
*/
public function getServiceJobByServiceJobId($service_job_id)
{
list($response) = $this->getServiceJobByServiceJobIdWithHttpInfo($service_job_id);
return $response;
}
/**
* Operation getServiceJobByServiceJobIdWithHttpInfo.
*
* @param string $service_job_id A service job identifier. (required)
*
* @throws \Luigel\AmazonSellingPartnerAPI\ApiException on non-2xx response
* @throws \InvalidArgumentException
*
* @return array of \Luigel\AmazonSellingPartnerAPI\Models\Services\GetServiceJobByServiceJobIdResponse, HTTP status code, HTTP response headers (array of strings)
*/
public function getServiceJobByServiceJobIdWithHttpInfo($service_job_id)
{
$request = $this->getServiceJobByServiceJobIdRequest($service_job_id);
return $this->sendRequest($request, GetServiceJobByServiceJobIdResponse::class);
}
/**
* Operation getServiceJobByServiceJobIdAsync.
*
* @param string $service_job_id A service job identifier. (required)
*
* @throws \InvalidArgumentException
*
* @return \GuzzleHttp\Promise\PromiseInterface
*/
public function getServiceJobByServiceJobIdAsync($service_job_id)
{
return $this->getServiceJobByServiceJobIdAsyncWithHttpInfo($service_job_id)
->then(
function ($response) {
return $response[0];
}
);
}
/**
* Operation getServiceJobByServiceJobIdAsyncWithHttpInfo.
*
* @param string $service_job_id A service job identifier. (required)
*
* @throws \InvalidArgumentException
*
* @return \GuzzleHttp\Promise\PromiseInterface
*/
public function getServiceJobByServiceJobIdAsyncWithHttpInfo($service_job_id)
{
$returnType = '\Luigel\AmazonSellingPartnerAPI\Models\Services\GetServiceJobByServiceJobIdResponse';
$request = $this->getServiceJobByServiceJobIdRequest($service_job_id);
return $this->sendRequestAsync($request, GetServiceJobByServiceJobIdResponse::class);
}
/**
* Create request for operation 'getServiceJobByServiceJobId'.
*
* @param string $service_job_id A service job identifier. (required)
*
* @throws \InvalidArgumentException
*
* @return \GuzzleHttp\Psr7\Request
*/
protected function getServiceJobByServiceJobIdRequest($service_job_id)
{
// verify the required parameter 'service_job_id' is set
if (null === $service_job_id || (is_array($service_job_id) && 0 === count($service_job_id))) {
throw new \InvalidArgumentException('Missing the required parameter $service_job_id when calling getServiceJobByServiceJobId');
}
$resourcePath = '/service/v1/serviceJobs/{serviceJobId}';
$formParams = [];
$queryParams = [];
$headerParams = [];
$httpBody = '';
$multipart = false;
// path params
if (null !== $service_job_id) {
$resourcePath = str_replace(
'{'.'serviceJobId'.'}',
ObjectSerializer::toPathValue($service_job_id),
$resourcePath
);
}
return $this->generateRequest($multipart, $formParams, $queryParams, $resourcePath, $headerParams, 'GET', $httpBody);
}
/**
* Operation getServiceJobs.
*
* @param string[] $marketplace_ids Used to select jobs that were placed in the specified marketplaces. (required)
* @param string[] $service_order_ids List of service order ids for the query you want to perform.Max values supported 20. (optional)
* @param string[] $service_job_status A list of one or more job status by which to filter the list of jobs. (optional)
* @param string $page_token String returned in the response of your previous request. (optional)
* @param int $page_size A non-negative integer that indicates the maximum number of jobs to return in the list, Value must be 1 - 20. Default 20. (optional, default to 20)
* @param string $sort_field Sort fields on which you want to sort the output. (optional)
* @param string $sort_order Sort order for the query you want to perform. (optional)
* @param string $created_after A date used for selecting jobs created after (or at) a specified time must be in ISO 8601 format. Required if LastUpdatedAfter is not specified.Specifying both CreatedAfter and LastUpdatedAfter returns an error. (optional)
* @param string $created_before A date used for selecting jobs created before (or at) a specified time must be in ISO 8601 format. (optional)
* @param string $last_updated_after A date used for selecting jobs updated after (or at) a specified time must be in ISO 8601 format. Required if createdAfter is not specified.Specifying both CreatedAfter and LastUpdatedAfter returns an error. (optional)
* @param string $last_updated_before A date used for selecting jobs updated before (or at) a specified time must be in ISO 8601 format. (optional)
* @param string $schedule_start_date A date used for filtering jobs schedule after (or at) a specified time must be in ISO 8601 format. schedule end date should not be earlier than schedule start date. (optional)
* @param string $schedule_end_date A date used for filtering jobs schedule before (or at) a specified time must be in ISO 8601 format. schedule end date should not be earlier than schedule start date. (optional)
*
* @throws \Luigel\AmazonSellingPartnerAPI\ApiException on non-2xx response
* @throws \InvalidArgumentException
*
* @return \Luigel\AmazonSellingPartnerAPI\Models\Services\GetServiceJobsResponse
*/
public function getServiceJobs($marketplace_ids, $service_order_ids = null, $service_job_status = null, $page_token = null, $page_size = '20', $sort_field = null, $sort_order = null, $created_after = null, $created_before = null, $last_updated_after = null, $last_updated_before = null, $schedule_start_date = null, $schedule_end_date = null)
{
list($response) = $this->getServiceJobsWithHttpInfo($marketplace_ids, $service_order_ids, $service_job_status, $page_token, $page_size, $sort_field, $sort_order, $created_after, $created_before, $last_updated_after, $last_updated_before, $schedule_start_date, $schedule_end_date);
return $response;
}
/**
* Operation getServiceJobsWithHttpInfo.
*
* @param string[] $marketplace_ids Used to select jobs that were placed in the specified marketplaces. (required)
* @param string[] $service_order_ids List of service order ids for the query you want to perform.Max values supported 20. (optional)
* @param string[] $service_job_status A list of one or more job status by which to filter the list of jobs. (optional)
* @param string $page_token String returned in the response of your previous request. (optional)
* @param int $page_size A non-negative integer that indicates the maximum number of jobs to return in the list, Value must be 1 - 20. Default 20. (optional, default to 20)
* @param string $sort_field Sort fields on which you want to sort the output. (optional)
* @param string $sort_order Sort order for the query you want to perform. (optional)
* @param string $created_after A date used for selecting jobs created after (or at) a specified time must be in ISO 8601 format. Required if LastUpdatedAfter is not specified.Specifying both CreatedAfter and LastUpdatedAfter returns an error. (optional)
* @param string $created_before A date used for selecting jobs created before (or at) a specified time must be in ISO 8601 format. (optional)
* @param string $last_updated_after A date used for selecting jobs updated after (or at) a specified time must be in ISO 8601 format. Required if createdAfter is not specified.Specifying both CreatedAfter and LastUpdatedAfter returns an error. (optional)
* @param string $last_updated_before A date used for selecting jobs updated before (or at) a specified time must be in ISO 8601 format. (optional)
* @param string $schedule_start_date A date used for filtering jobs schedule after (or at) a specified time must be in ISO 8601 format. schedule end date should not be earlier than schedule start date. (optional)
* @param string $schedule_end_date A date used for filtering jobs schedule before (or at) a specified time must be in ISO 8601 format. schedule end date should not be earlier than schedule start date. (optional)
*
* @throws \Luigel\AmazonSellingPartnerAPI\ApiException on non-2xx response
* @throws \InvalidArgumentException
*
* @return array of \Luigel\AmazonSellingPartnerAPI\Models\Services\GetServiceJobsResponse, HTTP status code, HTTP response headers (array of strings)
*/
public function getServiceJobsWithHttpInfo($marketplace_ids, $service_order_ids = null, $service_job_status = null, $page_token = null, $page_size = '20', $sort_field = null, $sort_order = null, $created_after = null, $created_before = null, $last_updated_after = null, $last_updated_before = null, $schedule_start_date = null, $schedule_end_date = null)
{
$request = $this->getServiceJobsRequest($marketplace_ids, $service_order_ids, $service_job_status, $page_token, $page_size, $sort_field, $sort_order, $created_after, $created_before, $last_updated_after, $last_updated_before, $schedule_start_date, $schedule_end_date);
return $this->sendRequest($request, GetServiceJobsResponse::class);
}
/**
* Operation getServiceJobsAsync.
*
* @param string[] $marketplace_ids Used to select jobs that were placed in the specified marketplaces. (required)
* @param string[] $service_order_ids List of service order ids for the query you want to perform.Max values supported 20. (optional)
* @param string[] $service_job_status A list of one or more job status by which to filter the list of jobs. (optional)
* @param string $page_token String returned in the response of your previous request. (optional)
* @param int $page_size A non-negative integer that indicates the maximum number of jobs to return in the list, Value must be 1 - 20. Default 20. (optional, default to 20)
* @param string $sort_field Sort fields on which you want to sort the output. (optional)
* @param string $sort_order Sort order for the query you want to perform. (optional)
* @param string $created_after A date used for selecting jobs created after (or at) a specified time must be in ISO 8601 format. Required if LastUpdatedAfter is not specified.Specifying both CreatedAfter and LastUpdatedAfter returns an error. (optional)
* @param string $created_before A date used for selecting jobs created before (or at) a specified time must be in ISO 8601 format. (optional)
* @param string $last_updated_after A date used for selecting jobs updated after (or at) a specified time must be in ISO 8601 format. Required if createdAfter is not specified.Specifying both CreatedAfter and LastUpdatedAfter returns an error. (optional)
* @param string $last_updated_before A date used for selecting jobs updated before (or at) a specified time must be in ISO 8601 format. (optional)
* @param string $schedule_start_date A date used for filtering jobs schedule after (or at) a specified time must be in ISO 8601 format. schedule end date should not be earlier than schedule start date. (optional)
* @param string $schedule_end_date A date used for filtering jobs schedule before (or at) a specified time must be in ISO 8601 format. schedule end date should not be earlier than schedule start date. (optional)
*
* @throws \InvalidArgumentException
*
* @return \GuzzleHttp\Promise\PromiseInterface
*/
public function getServiceJobsAsync($marketplace_ids, $service_order_ids = null, $service_job_status = null, $page_token = null, $page_size = '20', $sort_field = null, $sort_order = null, $created_after = null, $created_before = null, $last_updated_after = null, $last_updated_before = null, $schedule_start_date = null, $schedule_end_date = null)
{
return $this->getServiceJobsAsyncWithHttpInfo($marketplace_ids, $service_order_ids, $service_job_status, $page_token, $page_size, $sort_field, $sort_order, $created_after, $created_before, $last_updated_after, $last_updated_before, $schedule_start_date, $schedule_end_date)
->then(
function ($response) {
return $response[0];
}
);
}
/**
* Operation getServiceJobsAsyncWithHttpInfo.
*
* @param string[] $marketplace_ids Used to select jobs that were placed in the specified marketplaces. (required)
* @param string[] $service_order_ids List of service order ids for the query you want to perform.Max values supported 20. (optional)
* @param string[] $service_job_status A list of one or more job status by which to filter the list of jobs. (optional)
* @param string $page_token String returned in the response of your previous request. (optional)
* @param int $page_size A non-negative integer that indicates the maximum number of jobs to return in the list, Value must be 1 - 20. Default 20. (optional, default to 20)
* @param string $sort_field Sort fields on which you want to sort the output. (optional)
* @param string $sort_order Sort order for the query you want to perform. (optional)
* @param string $created_after A date used for selecting jobs created after (or at) a specified time must be in ISO 8601 format. Required if LastUpdatedAfter is not specified.Specifying both CreatedAfter and LastUpdatedAfter returns an error. (optional)
* @param string $created_before A date used for selecting jobs created before (or at) a specified time must be in ISO 8601 format. (optional)
* @param string $last_updated_after A date used for selecting jobs updated after (or at) a specified time must be in ISO 8601 format. Required if createdAfter is not specified.Specifying both CreatedAfter and LastUpdatedAfter returns an error. (optional)
* @param string $last_updated_before A date used for selecting jobs updated before (or at) a specified time must be in ISO 8601 format. (optional)
* @param string $schedule_start_date A date used for filtering jobs schedule after (or at) a specified time must be in ISO 8601 format. schedule end date should not be earlier than schedule start date. (optional)
* @param string $schedule_end_date A date used for filtering jobs schedule before (or at) a specified time must be in ISO 8601 format. schedule end date should not be earlier than schedule start date. (optional)
*
* @throws \InvalidArgumentException
*
* @return \GuzzleHttp\Promise\PromiseInterface
*/
public function getServiceJobsAsyncWithHttpInfo($marketplace_ids, $service_order_ids = null, $service_job_status = null, $page_token = null, $page_size = '20', $sort_field = null, $sort_order = null, $created_after = null, $created_before = null, $last_updated_after = null, $last_updated_before = null, $schedule_start_date = null, $schedule_end_date = null)
{
$request = $this->getServiceJobsRequest($marketplace_ids, $service_order_ids, $service_job_status, $page_token, $page_size, $sort_field, $sort_order, $created_after, $created_before, $last_updated_after, $last_updated_before, $schedule_start_date, $schedule_end_date);
return $this->sendRequestAsync($request, GetServiceJobsResponse::class);
}
/**
* Create request for operation 'getServiceJobs'.
*
* @param string[] $marketplace_ids Used to select jobs that were placed in the specified marketplaces. (required)
* @param string[] $service_order_ids List of service order ids for the query you want to perform.Max values supported 20. (optional)
* @param string[] $service_job_status A list of one or more job status by which to filter the list of jobs. (optional)
* @param string $page_token String returned in the response of your previous request. (optional)
* @param int $page_size A non-negative integer that indicates the maximum number of jobs to return in the list, Value must be 1 - 20. Default 20. (optional, default to 20)
* @param string $sort_field Sort fields on which you want to sort the output. (optional)
* @param string $sort_order Sort order for the query you want to perform. (optional)
* @param string $created_after A date used for selecting jobs created after (or at) a specified time must be in ISO 8601 format. Required if LastUpdatedAfter is not specified.Specifying both CreatedAfter and LastUpdatedAfter returns an error. (optional)
* @param string $created_before A date used for selecting jobs created before (or at) a specified time must be in ISO 8601 format. (optional)
* @param string $last_updated_after A date used for selecting jobs updated after (or at) a specified time must be in ISO 8601 format. Required if createdAfter is not specified.Specifying both CreatedAfter and LastUpdatedAfter returns an error. (optional)
* @param string $last_updated_before A date used for selecting jobs updated before (or at) a specified time must be in ISO 8601 format. (optional)
* @param string $schedule_start_date A date used for filtering jobs schedule after (or at) a specified time must be in ISO 8601 format. schedule end date should not be earlier than schedule start date. (optional)
* @param string $schedule_end_date A date used for filtering jobs schedule before (or at) a specified time must be in ISO 8601 format. schedule end date should not be earlier than schedule start date. (optional)
*
* @throws \InvalidArgumentException
*
* @return \GuzzleHttp\Psr7\Request
*/
protected function getServiceJobsRequest($marketplace_ids, $service_order_ids = null, $service_job_status = null, $page_token = null, $page_size = '20', $sort_field = null, $sort_order = null, $created_after = null, $created_before = null, $last_updated_after = null, $last_updated_before = null, $schedule_start_date = null, $schedule_end_date = null)
{
// verify the required parameter 'marketplace_ids' is set
if (null === $marketplace_ids || (is_array($marketplace_ids) && 0 === count($marketplace_ids))) {
throw new \InvalidArgumentException('Missing the required parameter $marketplace_ids when calling getServiceJobs');
}
$resourcePath = '/service/v1/serviceJobs';
$formParams = [];
$queryParams = [];
$headerParams = [];
$httpBody = '';
$multipart = false;
// query params
if (is_array($service_order_ids)) {
$service_order_ids = ObjectSerializer::serializeCollection($service_order_ids, 'csv', true);
}
if (null !== $service_order_ids) {
$queryParams['serviceOrderIds'] = ObjectSerializer::toQueryValue($service_order_ids);
}
// query params
if (is_array($service_job_status)) {
$service_job_status = ObjectSerializer::serializeCollection($service_job_status, 'csv', true);
}
if (null !== $service_job_status) {
$queryParams['serviceJobStatus'] = ObjectSerializer::toQueryValue($service_job_status);
}
// query params
if (null !== $page_token) {
$queryParams['pageToken'] = ObjectSerializer::toQueryValue($page_token);
}
// query params
if (null !== $page_size) {
$queryParams['pageSize'] = ObjectSerializer::toQueryValue($page_size);
}
// query params
if (null !== $sort_field) {
$queryParams['sortField'] = ObjectSerializer::toQueryValue($sort_field);
}
// query params
if (null !== $sort_order) {
$queryParams['sortOrder'] = ObjectSerializer::toQueryValue($sort_order);
}
// query params
if (null !== $created_after) {
$queryParams['createdAfter'] = ObjectSerializer::toQueryValue($created_after);
}
// query params
if (null !== $created_before) {
$queryParams['createdBefore'] = ObjectSerializer::toQueryValue($created_before);
}
// query params
if (null !== $last_updated_after) {
$queryParams['lastUpdatedAfter'] = ObjectSerializer::toQueryValue($last_updated_after);
}
// query params
if (null !== $last_updated_before) {
$queryParams['lastUpdatedBefore'] = ObjectSerializer::toQueryValue($last_updated_before);
}
// query params
if (null !== $schedule_start_date) {
$queryParams['scheduleStartDate'] = ObjectSerializer::toQueryValue($schedule_start_date);
}
// query params
if (null !== $schedule_end_date) {
$queryParams['scheduleEndDate'] = ObjectSerializer::toQueryValue($schedule_end_date);
}
// 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);
}
return $this->generateRequest($multipart, $formParams, $queryParams, $resourcePath, $headerParams, 'GET', $httpBody);
}
/**
* Operation rescheduleAppointmentForServiceJobByServiceJobId.
*
* @param \Luigel\AmazonSellingPartnerAPI\Models\Services\RescheduleAppointmentRequest $body Reschedule appointment operation input details. (required)
* @param string $service_job_id An Amazon defined service job identifier. (required)
* @param string $appointment_id An existing appointment identifier for the Service Job. (required)
*
* @throws \Luigel\AmazonSellingPartnerAPI\ApiException on non-2xx response
* @throws \InvalidArgumentException
*
* @return \Luigel\AmazonSellingPartnerAPI\Models\Services\SetAppointmentResponse
*/
public function rescheduleAppointmentForServiceJobByServiceJobId($body, $service_job_id, $appointment_id)
{
list($response) = $this->rescheduleAppointmentForServiceJobByServiceJobIdWithHttpInfo($body, $service_job_id, $appointment_id);
return $response;
}
/**
* Operation rescheduleAppointmentForServiceJobByServiceJobIdWithHttpInfo.
*
* @param \Luigel\AmazonSellingPartnerAPI\Models\Services\RescheduleAppointmentRequest $body Reschedule appointment operation input details. (required)
* @param string $service_job_id An Amazon defined service job identifier. (required)
* @param string $appointment_id An existing appointment identifier for the Service Job. (required)
*
* @throws \Luigel\AmazonSellingPartnerAPI\ApiException on non-2xx response
* @throws \InvalidArgumentException
*
* @return array of \Luigel\AmazonSellingPartnerAPI\Models\Services\SetAppointmentResponse, HTTP status code, HTTP response headers (array of strings)
*/
public function rescheduleAppointmentForServiceJobByServiceJobIdWithHttpInfo($body, $service_job_id, $appointment_id)
{
$request = $this->rescheduleAppointmentForServiceJobByServiceJobIdRequest($body, $service_job_id, $appointment_id);
return $this->sendRequest($request, SetAppointmentResponse::class);
}
/**
* Operation rescheduleAppointmentForServiceJobByServiceJobIdAsync.
*
* @param \Luigel\AmazonSellingPartnerAPI\Models\Services\RescheduleAppointmentRequest $body Reschedule appointment operation input details. (required)
* @param string $service_job_id An Amazon defined service job identifier. (required)
* @param string $appointment_id An existing appointment identifier for the Service Job. (required)
*
* @throws \InvalidArgumentException
*
* @return \GuzzleHttp\Promise\PromiseInterface
*/
public function rescheduleAppointmentForServiceJobByServiceJobIdAsync($body, $service_job_id, $appointment_id)
{
return $this->rescheduleAppointmentForServiceJobByServiceJobIdAsyncWithHttpInfo($body, $service_job_id, $appointment_id)
->then(
function ($response) {
return $response[0];
}
);
}
/**
* Operation rescheduleAppointmentForServiceJobByServiceJobIdAsyncWithHttpInfo.
*
* @param \Luigel\AmazonSellingPartnerAPI\Models\Services\RescheduleAppointmentRequest $body Reschedule appointment operation input details. (required)
* @param string $service_job_id An Amazon defined service job identifier. (required)
* @param string $appointment_id An existing appointment identifier for the Service Job. (required)
*
* @throws \InvalidArgumentException
*
* @return \GuzzleHttp\Promise\PromiseInterface
*/
public function rescheduleAppointmentForServiceJobByServiceJobIdAsyncWithHttpInfo($body, $service_job_id, $appointment_id)
{
$request = $this->rescheduleAppointmentForServiceJobByServiceJobIdRequest($body, $service_job_id, $appointment_id);
return $this->sendRequestAsync($request, SetAppointmentResponse::class);
}
/**
* Create request for operation 'rescheduleAppointmentForServiceJobByServiceJobId'.
*
* @param \Luigel\AmazonSellingPartnerAPI\Models\Services\RescheduleAppointmentRequest $body Reschedule appointment operation input details. (required)
* @param string $service_job_id An Amazon defined service job identifier. (required)
* @param string $appointment_id An existing appointment identifier for the Service Job. (required)
*
* @throws \InvalidArgumentException
*
* @return \GuzzleHttp\Psr7\Request
*/
protected function rescheduleAppointmentForServiceJobByServiceJobIdRequest($body, $service_job_id, $appointment_id)
{
// 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 rescheduleAppointmentForServiceJobByServiceJobId');
}
// verify the required parameter 'service_job_id' is set
if (null === $service_job_id || (is_array($service_job_id) && 0 === count($service_job_id))) {
throw new \InvalidArgumentException('Missing the required parameter $service_job_id when calling rescheduleAppointmentForServiceJobByServiceJobId');
}
// verify the required parameter 'appointment_id' is set
if (null === $appointment_id || (is_array($appointment_id) && 0 === count($appointment_id))) {
throw new \InvalidArgumentException('Missing the required parameter $appointment_id when calling rescheduleAppointmentForServiceJobByServiceJobId');
}
$resourcePath = '/service/v1/serviceJobs/{serviceJobId}/appointments/{appointmentId}';
$formParams = [];
$queryParams = [];
$headerParams = [];
$httpBody = $body;
$multipart = false;
// path params
if (null !== $service_job_id) {
$resourcePath = str_replace(
'{'.'serviceJobId'.'}',
ObjectSerializer::toPathValue($service_job_id),
$resourcePath
);
}
// path params
if (null !== $appointment_id) {
$resourcePath = str_replace(
'{'.'appointmentId'.'}',
ObjectSerializer::toPathValue($appointment_id),
$resourcePath
);
}
return $this->generateRequest($multipart, $formParams, $queryParams, $resourcePath, $headerParams, 'POST', $httpBody);
}
}