1 | <?php |
||
5 | class ItemizedPaymentInformation |
||
6 | { |
||
7 | |||
8 | /** |
||
9 | * Charges for Transportation (max 1) and Duties and Tax (max 1) |
||
10 | * |
||
11 | * @var array |
||
12 | */ |
||
13 | private $charges = array(); |
||
14 | |||
15 | /** |
||
16 | * @param ShipmentCharge $charge |
||
17 | * @return $this |
||
18 | */ |
||
19 | public function addShipmentCharge(ShipmentCharge $charge) { |
||
24 | |||
25 | /** |
||
26 | * @return ShipmentCharge[] |
||
27 | */ |
||
28 | public function getShipmentCharges() { |
||
31 | |||
32 | /** |
||
33 | * @param ShipmentCharge[] $charges |
||
34 | * @return $this |
||
35 | */ |
||
36 | public function setShipmentCharges(array $charges) { |
||
41 | |||
42 | } |
||
43 |