1 | <?php |
||
11 | class EntryTransactionDetail |
||
12 | { |
||
13 | /** |
||
14 | * @var Reference[] |
||
15 | */ |
||
16 | private $references = []; |
||
17 | /** |
||
18 | * @var RelatedParty[] |
||
19 | */ |
||
20 | private $relatedParties = []; |
||
21 | /** |
||
22 | * @var RemittanceInformation |
||
23 | */ |
||
24 | private $remittanceInformation; |
||
25 | /** |
||
26 | * @var ReturnInformation |
||
27 | */ |
||
28 | private $returnInformation; |
||
29 | /** |
||
30 | * @var AdditionalTransactionInformation |
||
31 | */ |
||
32 | private $additionalTransactionInformation; |
||
33 | |||
34 | /** |
||
35 | * @param Reference $reference |
||
36 | */ |
||
37 | 7 | public function addReference(Reference $reference) |
|
41 | |||
42 | /** |
||
43 | * @return Reference[] |
||
44 | */ |
||
45 | 1 | public function getReferences() |
|
49 | |||
50 | /** |
||
51 | * @return Reference |
||
52 | * @throws BadMethodCallException |
||
53 | */ |
||
54 | 1 | public function getReference() |
|
62 | |||
63 | /** |
||
64 | * @param RelatedParty $relatedParty |
||
65 | */ |
||
66 | 9 | public function addRelatedParty(RelatedParty $relatedParty) |
|
70 | |||
71 | /** |
||
72 | * @return RelatedParty[] |
||
73 | */ |
||
74 | 1 | public function getRelatedParties() |
|
78 | |||
79 | /** |
||
80 | * @return RelatedParty |
||
81 | * @throws BadMethodCallException |
||
82 | */ |
||
83 | 1 | public function getRelatedParty() |
|
91 | |||
92 | /** |
||
93 | * @param RemittanceInformation $remittanceInformation |
||
94 | */ |
||
95 | 9 | public function setRemittanceInformation(RemittanceInformation $remittanceInformation) |
|
99 | |||
100 | /** |
||
101 | * @return RemittanceInformation |
||
102 | */ |
||
103 | 3 | public function getRemittanceInformation() |
|
110 | |||
111 | /** |
||
112 | * @return ReturnInformation|null |
||
113 | */ |
||
114 | public function getReturnInformation() |
||
118 | |||
119 | /** |
||
120 | * @param ReturnInformation $information |
||
121 | */ |
||
122 | public function setReturnInformation(ReturnInformation $information) |
||
126 | |||
127 | /** |
||
128 | * @param AdditionalTransactionInformation $additionalTransactionInformation |
||
129 | */ |
||
130 | public function setAdditionalTransactionInformation(AdditionalTransactionInformation $additionalTransactionInformation) |
||
134 | |||
135 | /** |
||
136 | * @return AdditionalTransactionInformation |
||
137 | */ |
||
138 | public function getAdditionalTransactionInformation() |
||
145 | } |
||
146 |