forked from JeremyDunn/php-fedex-api-wrapper
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRequest.php
More file actions
475 lines (424 loc) · 21.9 KB
/
Request.php
File metadata and controls
475 lines (424 loc) · 21.9 KB
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
<?php
namespace FedEx\OpenShipService;
use FedEx\AbstractRequest;
/**
* Request sends the SOAP call to the FedEx servers and returns the response
*
* @author Jeremy Dunn <jeremy@jsdunn.info>
* @package PHP FedEx API wrapper
* @subpackage OpenShip Service
*/
class Request extends AbstractRequest
{
const PRODUCTION_URL = 'https://ws.fedex.com:443/web-services/openship';
const TESTING_URL = 'https://wsbeta.fedex.com:443/web-services/openship';
protected static $wsdlFileName = 'OpenShipService_v11.wsdl';
/**
* Sends the ModifyConsolidationRequest and returns the response
*
* @param ComplexType\ModifyConsolidationRequest $modifyConsolidationRequest
* @param bool $returnStdClass Return the $stdClass response directly from \SoapClient
* @return ComplexType\ModifyConsolidationReply|stdClass
*/
public function getModifyConsolidationReply(ComplexType\ModifyConsolidationRequest $modifyConsolidationRequest, $returnStdClass = false)
{
$response = $this->getSoapClient()->modifyConsolidation($modifyConsolidationRequest->toArray());
if ($returnStdClass) {
return $response;
}
$modifyConsolidationReply = new ComplexType\ModifyConsolidationReply;
$modifyConsolidationReply->populateFromStdClass($response);
return $modifyConsolidationReply;
}
/**
* Sends the ValidateOpenShipmentRequest and returns the response
*
* @param ComplexType\ValidateOpenShipmentRequest $validateOpenShipmentRequest
* @param bool $returnStdClass Return the $stdClass response directly from \SoapClient
* @return ComplexType\ValidateOpenShipmentReply|stdClass
*/
public function getValidateOpenShipmentReply(ComplexType\ValidateOpenShipmentRequest $validateOpenShipmentRequest, $returnStdClass = false)
{
$response = $this->getSoapClient()->validateOpenShipment($validateOpenShipmentRequest->toArray());
if ($returnStdClass) {
return $response;
}
$validateOpenShipmentReply = new ComplexType\ValidateOpenShipmentReply;
$validateOpenShipmentReply->populateFromStdClass($response);
return $validateOpenShipmentReply;
}
/**
* Sends the RetrieveOpenShipmentRequest and returns the response
*
* @param ComplexType\RetrieveOpenShipmentRequest $retrieveOpenShipmentRequest
* @param bool $returnStdClass Return the $stdClass response directly from \SoapClient
* @return ComplexType\RetrieveOpenShipmentReply|stdClass
*/
public function getRetrieveOpenShipmentReply(ComplexType\RetrieveOpenShipmentRequest $retrieveOpenShipmentRequest, $returnStdClass = false)
{
$response = $this->getSoapClient()->retrieveOpenShipment($retrieveOpenShipmentRequest->toArray());
if ($returnStdClass) {
return $response;
}
$retrieveOpenShipmentReply = new ComplexType\RetrieveOpenShipmentReply;
$retrieveOpenShipmentReply->populateFromStdClass($response);
return $retrieveOpenShipmentReply;
}
/**
* Sends the DeleteOpenConsolidationRequest and returns the response
*
* @param ComplexType\DeleteOpenConsolidationRequest $deleteOpenConsolidationRequest
* @param bool $returnStdClass Return the $stdClass response directly from \SoapClient
* @return ComplexType\DeleteOpenConsolidationReply|stdClass
*/
public function getDeleteOpenConsolidationReply(ComplexType\DeleteOpenConsolidationRequest $deleteOpenConsolidationRequest, $returnStdClass = false)
{
$response = $this->getSoapClient()->deleteOpenConsolidation($deleteOpenConsolidationRequest->toArray());
if ($returnStdClass) {
return $response;
}
$deleteOpenConsolidationReply = new ComplexType\DeleteOpenConsolidationReply;
$deleteOpenConsolidationReply->populateFromStdClass($response);
return $deleteOpenConsolidationReply;
}
/**
* Sends the CreateConsolidationRequest and returns the response
*
* @param ComplexType\CreateConsolidationRequest $createConsolidationRequest
* @param bool $returnStdClass Return the $stdClass response directly from \SoapClient
* @return ComplexType\CreateConsolidationReply|stdClass
*/
public function getCreateConsolidationReply(ComplexType\CreateConsolidationRequest $createConsolidationRequest, $returnStdClass = false)
{
$response = $this->getSoapClient()->createConsolidation($createConsolidationRequest->toArray());
if ($returnStdClass) {
return $response;
}
$createConsolidationReply = new ComplexType\CreateConsolidationReply;
$createConsolidationReply->populateFromStdClass($response);
return $createConsolidationReply;
}
/**
* Sends the RetrievePackageInOpenShipmentRequest and returns the response
*
* @param ComplexType\RetrievePackageInOpenShipmentRequest $retrievePackageInOpenShipmentRequest
* @param bool $returnStdClass Return the $stdClass response directly from \SoapClient
* @return ComplexType\RetrievePackageInOpenShipmentReply|stdClass
*/
public function getRetrievePackageInOpenShipmentReply(ComplexType\RetrievePackageInOpenShipmentRequest $retrievePackageInOpenShipmentRequest, $returnStdClass = false)
{
$response = $this->getSoapClient()->retrievePackageInOpenShipment($retrievePackageInOpenShipmentRequest->toArray());
if ($returnStdClass) {
return $response;
}
$retrievePackageInOpenShipmentReply = new ComplexType\RetrievePackageInOpenShipmentReply;
$retrievePackageInOpenShipmentReply->populateFromStdClass($response);
return $retrievePackageInOpenShipmentReply;
}
/**
* Sends the RetrieveConsolidatedCommoditiesRequest and returns the response
*
* @param ComplexType\RetrieveConsolidatedCommoditiesRequest $retrieveConsolidatedCommoditiesRequest
* @param bool $returnStdClass Return the $stdClass response directly from \SoapClient
* @return ComplexType\RetrieveConsolidatedCommoditiesReply|stdClass
*/
public function getRetrieveConsolidatedCommoditiesReply(ComplexType\RetrieveConsolidatedCommoditiesRequest $retrieveConsolidatedCommoditiesRequest, $returnStdClass = false)
{
$response = $this->getSoapClient()->retrieveConsolidatedCommodities($retrieveConsolidatedCommoditiesRequest->toArray());
if ($returnStdClass) {
return $response;
}
$retrieveConsolidatedCommoditiesReply = new ComplexType\RetrieveConsolidatedCommoditiesReply;
$retrieveConsolidatedCommoditiesReply->populateFromStdClass($response);
return $retrieveConsolidatedCommoditiesReply;
}
/**
* Sends the ModifyPackageInOpenShipmentRequest and returns the response
*
* @param ComplexType\ModifyPackageInOpenShipmentRequest $modifyPackageInOpenShipmentRequest
* @param bool $returnStdClass Return the $stdClass response directly from \SoapClient
* @return ComplexType\ModifyPackageInOpenShipmentReply|stdClass
*/
public function getModifyPackageInOpenShipmentReply(ComplexType\ModifyPackageInOpenShipmentRequest $modifyPackageInOpenShipmentRequest, $returnStdClass = false)
{
$response = $this->getSoapClient()->modifyPackageInOpenShipment($modifyPackageInOpenShipmentRequest->toArray());
if ($returnStdClass) {
return $response;
}
$modifyPackageInOpenShipmentReply = new ComplexType\ModifyPackageInOpenShipmentReply;
$modifyPackageInOpenShipmentReply->populateFromStdClass($response);
return $modifyPackageInOpenShipmentReply;
}
/**
* Sends the DeleteShipmentRequest and returns the response
*
* @param ComplexType\DeleteShipmentRequest $deleteShipmentRequest
* @param bool $returnStdClass Return the $stdClass response directly from \SoapClient
* @return ComplexType\ShipmentReply|stdClass
*/
public function getDeleteShipmentReply(ComplexType\DeleteShipmentRequest $deleteShipmentRequest, $returnStdClass = false)
{
$response = $this->getSoapClient()->deleteShipment($deleteShipmentRequest->toArray());
if ($returnStdClass) {
return $response;
}
$shipmentReply = new ComplexType\ShipmentReply;
$shipmentReply->populateFromStdClass($response);
return $shipmentReply;
}
/**
* Sends the CreateOpenShipmentRequest and returns the response
*
* @param ComplexType\CreateOpenShipmentRequest $createOpenShipmentRequest
* @param bool $returnStdClass Return the $stdClass response directly from \SoapClient
* @return ComplexType\CreateOpenShipmentReply|stdClass
*/
public function getCreateOpenShipmentReply(ComplexType\CreateOpenShipmentRequest $createOpenShipmentRequest, $returnStdClass = false)
{
$response = $this->getSoapClient()->createOpenShipment($createOpenShipmentRequest->toArray());
if ($returnStdClass) {
return $response;
}
$createOpenShipmentReply = new ComplexType\CreateOpenShipmentReply;
$createOpenShipmentReply->populateFromStdClass($response);
return $createOpenShipmentReply;
}
/**
* Sends the DeletePendingShipmentRequest and returns the response
*
* @param ComplexType\DeletePendingShipmentRequest $deletePendingShipmentRequest
* @param bool $returnStdClass Return the $stdClass response directly from \SoapClient
* @return ComplexType\DeletePendingShipmentReply|stdClass
*/
public function getDeletePendingShipmentReply(ComplexType\DeletePendingShipmentRequest $deletePendingShipmentRequest, $returnStdClass = false)
{
$response = $this->getSoapClient()->deletePendingShipment($deletePendingShipmentRequest->toArray());
if ($returnStdClass) {
return $response;
}
$deletePendingShipmentReply = new ComplexType\DeletePendingShipmentReply;
$deletePendingShipmentReply->populateFromStdClass($response);
return $deletePendingShipmentReply;
}
/**
* Sends the ConfirmOpenShipmentRequest and returns the response
*
* @param ComplexType\ConfirmOpenShipmentRequest $confirmOpenShipmentRequest
* @param bool $returnStdClass Return the $stdClass response directly from \SoapClient
* @return ComplexType\ConfirmOpenShipmentReply|stdClass
*/
public function getConfirmOpenShipmentReply(ComplexType\ConfirmOpenShipmentRequest $confirmOpenShipmentRequest, $returnStdClass = false)
{
$response = $this->getSoapClient()->confirmOpenShipment($confirmOpenShipmentRequest->toArray());
if ($returnStdClass) {
return $response;
}
$confirmOpenShipmentReply = new ComplexType\ConfirmOpenShipmentReply;
$confirmOpenShipmentReply->populateFromStdClass($response);
return $confirmOpenShipmentReply;
}
/**
* Sends the GetConfirmOpenShipmentResultsRequest and returns the response
*
* @param ComplexType\GetConfirmOpenShipmentResultsRequest $getConfirmOpenShipmentResultsRequest
* @param bool $returnStdClass Return the $stdClass response directly from \SoapClient
* @return ComplexType\GetConfirmOpenShipmentResultsReply|stdClass
*/
public function getGetConfirmOpenShipmentResultsReply(ComplexType\GetConfirmOpenShipmentResultsRequest $getConfirmOpenShipmentResultsRequest, $returnStdClass = false)
{
$response = $this->getSoapClient()->getConfirmOpenShipmentResults($getConfirmOpenShipmentResultsRequest->toArray());
if ($returnStdClass) {
return $response;
}
$getConfirmOpenShipmentResultsReply = new ComplexType\GetConfirmOpenShipmentResultsReply;
$getConfirmOpenShipmentResultsReply->populateFromStdClass($response);
return $getConfirmOpenShipmentResultsReply;
}
/**
* Sends the GetConfirmConsolidationResultsRequest and returns the response
*
* @param ComplexType\GetConfirmConsolidationResultsRequest $getConfirmConsolidationResultsRequest
* @param bool $returnStdClass Return the $stdClass response directly from \SoapClient
* @return ComplexType\GetConfirmConsolidationResultsReply|stdClass
*/
public function getGetConfirmConsolidationResultsReply(ComplexType\GetConfirmConsolidationResultsRequest $getConfirmConsolidationResultsRequest, $returnStdClass = false)
{
$response = $this->getSoapClient()->getConfirmConsolidationResults($getConfirmConsolidationResultsRequest->toArray());
if ($returnStdClass) {
return $response;
}
$getConfirmConsolidationResultsReply = new ComplexType\GetConfirmConsolidationResultsReply;
$getConfirmConsolidationResultsReply->populateFromStdClass($response);
return $getConfirmConsolidationResultsReply;
}
/**
* Sends the ModifyOpenShipmentRequest and returns the response
*
* @param ComplexType\ModifyOpenShipmentRequest $modifyOpenShipmentRequest
* @param bool $returnStdClass Return the $stdClass response directly from \SoapClient
* @return ComplexType\ModifyOpenShipmentReply|stdClass
*/
public function getModifyOpenShipmentReply(ComplexType\ModifyOpenShipmentRequest $modifyOpenShipmentRequest, $returnStdClass = false)
{
$response = $this->getSoapClient()->modifyOpenShipment($modifyOpenShipmentRequest->toArray());
if ($returnStdClass) {
return $response;
}
$modifyOpenShipmentReply = new ComplexType\ModifyOpenShipmentReply;
$modifyOpenShipmentReply->populateFromStdClass($response);
return $modifyOpenShipmentReply;
}
/**
* Sends the ConfirmConsolidationRequest and returns the response
*
* @param ComplexType\ConfirmConsolidationRequest $confirmConsolidationRequest
* @param bool $returnStdClass Return the $stdClass response directly from \SoapClient
* @return ComplexType\ConfirmConsolidationReply|stdClass
*/
public function getConfirmConsolidationReply(ComplexType\ConfirmConsolidationRequest $confirmConsolidationRequest, $returnStdClass = false)
{
$response = $this->getSoapClient()->confirmConsolidation($confirmConsolidationRequest->toArray());
if ($returnStdClass) {
return $response;
}
$confirmConsolidationReply = new ComplexType\ConfirmConsolidationReply;
$confirmConsolidationReply->populateFromStdClass($response);
return $confirmConsolidationReply;
}
/**
* Sends the CreateOpenShipmentRequest and returns the response
*
* @param ComplexType\CreateOpenShipmentRequest $createOpenShipmentRequest
* @param bool $returnStdClass Return the $stdClass response directly from \SoapClient
* @return ComplexType\CreateOpenShipmentReply|stdClass
*/
public function getCreatePendingShipmentReply(ComplexType\CreateOpenShipmentRequest $createOpenShipmentRequest, $returnStdClass = false)
{
$response = $this->getSoapClient()->createPendingShipment($createOpenShipmentRequest->toArray());
if ($returnStdClass) {
return $response;
}
$createOpenShipmentReply = new ComplexType\CreateOpenShipmentReply;
$createOpenShipmentReply->populateFromStdClass($response);
return $createOpenShipmentReply;
}
/**
* Sends the GetModifyOpenShipmentResultsRequest and returns the response
*
* @param ComplexType\GetModifyOpenShipmentResultsRequest $getModifyOpenShipmentResultsRequest
* @param bool $returnStdClass Return the $stdClass response directly from \SoapClient
* @return ComplexType\GetModifyOpenShipmentResultsReply|stdClass
*/
public function getGetModifyOpenShipmentResultsReply(ComplexType\GetModifyOpenShipmentResultsRequest $getModifyOpenShipmentResultsRequest, $returnStdClass = false)
{
$response = $this->getSoapClient()->getModifyOpenShipmentResults($getModifyOpenShipmentResultsRequest->toArray());
if ($returnStdClass) {
return $response;
}
$getModifyOpenShipmentResultsReply = new ComplexType\GetModifyOpenShipmentResultsReply;
$getModifyOpenShipmentResultsReply->populateFromStdClass($response);
return $getModifyOpenShipmentResultsReply;
}
/**
* Sends the DeletePackagesFromOpenShipmentRequest and returns the response
*
* @param ComplexType\DeletePackagesFromOpenShipmentRequest $deletePackagesFromOpenShipmentRequest
* @param bool $returnStdClass Return the $stdClass response directly from \SoapClient
* @return ComplexType\DeletePackagesFromOpenShipmentReply|stdClass
*/
public function getDeletePackagesFromOpenShipmentReply(ComplexType\DeletePackagesFromOpenShipmentRequest $deletePackagesFromOpenShipmentRequest, $returnStdClass = false)
{
$response = $this->getSoapClient()->deletePackagesFromOpenShipment($deletePackagesFromOpenShipmentRequest->toArray());
if ($returnStdClass) {
return $response;
}
$deletePackagesFromOpenShipmentReply = new ComplexType\DeletePackagesFromOpenShipmentReply;
$deletePackagesFromOpenShipmentReply->populateFromStdClass($response);
return $deletePackagesFromOpenShipmentReply;
}
/**
* Sends the ReprintShippingDocumentsRequest and returns the response
*
* @param ComplexType\ReprintShippingDocumentsRequest $reprintShippingDocumentsRequest
* @param bool $returnStdClass Return the $stdClass response directly from \SoapClient
* @return ComplexType\ReprintShippingDocumentsReply|stdClass
*/
public function getReprintShippingDocumentsReply(ComplexType\ReprintShippingDocumentsRequest $reprintShippingDocumentsRequest, $returnStdClass = false)
{
$response = $this->getSoapClient()->reprintShippingDocuments($reprintShippingDocumentsRequest->toArray());
if ($returnStdClass) {
return $response;
}
$reprintShippingDocumentsReply = new ComplexType\ReprintShippingDocumentsReply;
$reprintShippingDocumentsReply->populateFromStdClass($response);
return $reprintShippingDocumentsReply;
}
/**
* Sends the AddPackagesToOpenShipmentRequest and returns the response
*
* @param ComplexType\AddPackagesToOpenShipmentRequest $addPackagesToOpenShipmentRequest
* @param bool $returnStdClass Return the $stdClass response directly from \SoapClient
* @return ComplexType\AddPackagesToOpenShipmentReply|stdClass
*/
public function getAddPackagesToOpenShipmentReply(ComplexType\AddPackagesToOpenShipmentRequest $addPackagesToOpenShipmentRequest, $returnStdClass = false)
{
$response = $this->getSoapClient()->addPackagesToOpenShipment($addPackagesToOpenShipmentRequest->toArray());
if ($returnStdClass) {
return $response;
}
$addPackagesToOpenShipmentReply = new ComplexType\AddPackagesToOpenShipmentReply;
$addPackagesToOpenShipmentReply->populateFromStdClass($response);
return $addPackagesToOpenShipmentReply;
}
/**
* Sends the GetCreateOpenShipmentResultsRequest and returns the response
*
* @param ComplexType\GetCreateOpenShipmentResultsRequest $getCreateOpenShipmentResultsRequest
* @param bool $returnStdClass Return the $stdClass response directly from \SoapClient
* @return ComplexType\GetCreateOpenShipmentResultsReply|stdClass
*/
public function getGetCreateOpenShipmentResultsReply(ComplexType\GetCreateOpenShipmentResultsRequest $getCreateOpenShipmentResultsRequest, $returnStdClass = false)
{
$response = $this->getSoapClient()->getCreateOpenShipmentResults($getCreateOpenShipmentResultsRequest->toArray());
if ($returnStdClass) {
return $response;
}
$getCreateOpenShipmentResultsReply = new ComplexType\GetCreateOpenShipmentResultsReply;
$getCreateOpenShipmentResultsReply->populateFromStdClass($response);
return $getCreateOpenShipmentResultsReply;
}
/**
* Sends the RetrieveConsolidationRequest and returns the response
*
* @param ComplexType\RetrieveConsolidationRequest $retrieveConsolidationRequest
* @param bool $returnStdClass Return the $stdClass response directly from \SoapClient
* @return ComplexType\RetrieveConsolidationReply|stdClass
*/
public function getRetrieveConsolidationReply(ComplexType\RetrieveConsolidationRequest $retrieveConsolidationRequest, $returnStdClass = false)
{
$response = $this->getSoapClient()->retrieveConsolidation($retrieveConsolidationRequest->toArray());
if ($returnStdClass) {
return $response;
}
$retrieveConsolidationReply = new ComplexType\RetrieveConsolidationReply;
$retrieveConsolidationReply->populateFromStdClass($response);
return $retrieveConsolidationReply;
}
/**
* Sends the DeleteOpenShipmentRequest and returns the response
*
* @param ComplexType\DeleteOpenShipmentRequest $deleteOpenShipmentRequest
* @param bool $returnStdClass Return the $stdClass response directly from \SoapClient
* @return ComplexType\DeleteOpenShipmentReply|stdClass
*/
public function getDeleteOpenShipmentReply(ComplexType\DeleteOpenShipmentRequest $deleteOpenShipmentRequest, $returnStdClass = false)
{
$response = $this->getSoapClient()->deleteOpenShipment($deleteOpenShipmentRequest->toArray());
if ($returnStdClass) {
return $response;
}
$deleteOpenShipmentReply = new ComplexType\DeleteOpenShipmentReply;
$deleteOpenShipmentReply->populateFromStdClass($response);
return $deleteOpenShipmentReply;
}
}