|
1
|
|
|
<?php |
|
2
|
|
|
|
|
3
|
|
|
namespace Ups\Entity; |
|
4
|
|
|
|
|
5
|
|
|
use LogicException; |
|
6
|
|
|
|
|
7
|
|
|
class ItemizedPaymentInformation |
|
8
|
|
|
{ |
|
9
|
|
|
|
|
10
|
|
|
/** |
|
11
|
|
|
* @var bool |
|
12
|
|
|
*/ |
|
13
|
|
|
private $splitDutyVATIndicator; |
|
14
|
|
|
|
|
15
|
|
|
/** |
|
16
|
|
|
* @var transportationShipmentCharge |
|
17
|
|
|
*/ |
|
18
|
|
|
private $transportationShipmentCharge; |
|
19
|
|
|
|
|
20
|
|
|
/** |
|
21
|
|
|
* @var dutiesAndTaxesShipmentCharge |
|
22
|
|
|
*/ |
|
23
|
|
|
private $dutiesAndTaxesShipmentCharge; |
|
24
|
|
|
|
|
25
|
|
|
public function __construct($transportationShipmentCharge = null, $dutiesAndTaxesShipmentCharge = null, $splitDutyVATIndicator = null) |
|
26
|
|
|
{ |
|
27
|
|
|
if ($transportationShipmentCharge) { |
|
28
|
|
|
$this->setShipmentCharge($transportationShipmentCharge); |
|
29
|
|
|
} |
|
30
|
|
|
if ($dutiesAndTaxesShipmentCharge) { |
|
31
|
|
|
$this->setShipmentCharge($dutiesAndTaxesShipmentCharge); |
|
32
|
|
|
} |
|
33
|
|
|
if ($splitDutyVATIndicator) { |
|
34
|
|
|
$this->setSplitDutyVATIndicator($splitDutyVATIndicator); |
|
35
|
|
|
} |
|
36
|
|
|
} |
|
37
|
|
|
|
|
38
|
|
|
/** |
|
39
|
|
|
* @return transportationShipmentCharge |
|
40
|
|
|
*/ |
|
41
|
|
|
public function getTransportationShipmentCharge() |
|
42
|
|
|
{ |
|
43
|
|
|
return $this->transportationShipmentCharge; |
|
44
|
|
|
} |
|
45
|
|
|
|
|
46
|
|
|
/** |
|
47
|
|
|
* @param ShipmentCharge $shipmentCharge |
|
48
|
|
|
* @return ItemizedPaymentInformation |
|
49
|
|
|
*/ |
|
50
|
|
|
public function setShipmentCharge(ShipmentCharge $shipmentCharge) |
|
51
|
|
|
{ |
|
52
|
|
|
if ($shipmentCharge->getType() === ShipmentCharge::SHIPMENT_CHARGE_TYPE_TRANSPORTATION) { |
|
53
|
|
|
$this->transportationShipmentCharge = $shipmentCharge; |
|
|
|
|
|
|
54
|
|
|
} elseif ($shipmentCharge->getType() === ShipmentCharge::SHIPMENT_CHARGE_TYPE_DUTIES) { |
|
55
|
|
|
$this->dutiesAndTaxesShipmentCharge = $shipmentCharge; |
|
|
|
|
|
|
56
|
|
|
} else { |
|
57
|
|
|
throw new LogicException(sprintf('Unknown ShipmentCharge charge type requested: "%s"', $type)); |
|
58
|
|
|
} |
|
59
|
|
|
return $this; |
|
60
|
|
|
} |
|
61
|
|
|
|
|
62
|
|
|
/** |
|
63
|
|
|
* @return DutiesAndTaxesShipmentCharge |
|
64
|
|
|
*/ |
|
65
|
|
|
public function getDutiesAndTaxesShipmentCharge() |
|
66
|
|
|
{ |
|
67
|
|
|
return $this->dutiesAndTaxesShipmentCharge; |
|
68
|
|
|
} |
|
69
|
|
|
|
|
70
|
|
|
/** |
|
71
|
|
|
* @return bool |
|
72
|
|
|
*/ |
|
73
|
|
|
public function getSplitDutyVATIndicator() |
|
74
|
|
|
{ |
|
75
|
|
|
return $this->splitDutyVATIndicator; |
|
76
|
|
|
} |
|
77
|
|
|
|
|
78
|
|
|
/** |
|
79
|
|
|
* @param bool $splitDutyVATIndicator |
|
80
|
|
|
* @return ItemizedPaymentInformation |
|
81
|
|
|
*/ |
|
82
|
|
|
public function setSplitDutyVATIndicator($splitDutyVATIndicator) |
|
83
|
|
|
{ |
|
84
|
|
|
$this->splitDutyVATIndicator = $splitDutyVATIndicator; |
|
85
|
|
|
|
|
86
|
|
|
return $this; |
|
87
|
|
|
} |
|
88
|
|
|
} |
|
89
|
|
|
|
Our type inference engine has found an assignment to a property that is incompatible with the declared type of that property.
Either this assignment is in error or the assigned type should be added to the documentation/type hint for that property..