1 | <?php namespace SimpleUPS\Track; |
||
8 | abstract class Response extends \SimpleUPS\Api\Response |
||
9 | { |
||
10 | |||
11 | private |
||
12 | /* @var Shipment $shipments */ |
||
13 | $shipments; |
||
14 | |||
15 | /** |
||
16 | * @param Shipment $shipment |
||
17 | * |
||
18 | * @return Response |
||
19 | */ |
||
20 | public function addShipment(Shipment $shipment) |
||
29 | |||
30 | /** |
||
31 | * @return Shipment[]|null |
||
32 | */ |
||
33 | public function getShipments() |
||
37 | |||
38 | abstract public function fromXml(\SimpleXMLElement $xml); |
||
39 | } |