-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathShipmentManagement.php
31 lines (25 loc) · 1.04 KB
/
ShipmentManagement.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
<?php
namespace Imper86\PhpAllegroApi\Resource;
use Imper86\PhpAllegroApi\Resource\ShipmentManagement\DeliveryServices;
use Imper86\PhpAllegroApi\Resource\ShipmentManagement\Label;
use Imper86\PhpAllegroApi\Resource\ShipmentManagement\Protocol;
use Imper86\PhpAllegroApi\Resource\ShipmentManagement\Shipment;
use Imper86\PhpAllegroApi\Resource\ShipmentManagement\ShipmentCancelCommands;
use Imper86\PhpAllegroApi\Resource\ShipmentManagement\ShipmentCreateCommands;
use Imper86\PhpAllegroApi\Resource\ShipmentManagement\PickupCreateCommands;
use Imper86\PhpAllegroApi\Resource\ShipmentManagement\PickupProposals;
/**
* Class ShipmentManagement
*
* @method DeliveryServices deliveryServices()
* @method ShipmentCreateCommands shipmentCreateCommands()
* @method ShipmentCancelCommands shipmentCancelCommands()
* @method PickupCreateCommands pickupCreateCommands()
* @method Shipment shipment()
* @method Label label()
* @method Protocol protocol()
* @method PickupProposals pickupProposals()
*
*/
class ShipmentManagement extends AbstractResource {
}