| 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) |
||
| 25 | |||
| 26 | /** |
||
| 27 | * @return ShipmentCharge[] |
||
| 28 | */ |
||
| 29 | public function getShipmentCharges() |
||
| 33 | |||
| 34 | /** |
||
| 35 | * @param ShipmentCharge[] $charges |
||
| 36 | * @return $this |
||
| 37 | */ |
||
| 38 | public function setShipmentCharges(array $charges) |
||
| 44 | } |
||
| 45 |