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 RelatedAgent[] |
||
23 | */ |
||
24 | private $relatedAgents = []; |
||
25 | /** |
||
26 | * @var RemittanceInformation |
||
27 | */ |
||
28 | private $remittanceInformation; |
||
29 | /** |
||
30 | * @var RelatedDates |
||
31 | */ |
||
32 | private $relatedDates; |
||
33 | /** |
||
34 | * @var ReturnInformation |
||
35 | */ |
||
36 | private $returnInformation; |
||
37 | /** |
||
38 | * @var AdditionalTransactionInformation |
||
39 | */ |
||
40 | private $additionalTransactionInformation; |
||
41 | |||
42 | /** |
||
43 | * @var BankTransactionCode |
||
44 | */ |
||
45 | private $bankTransactionCode; |
||
46 | |||
47 | /** |
||
48 | * @var Charges |
||
49 | */ |
||
50 | private $charges; |
||
51 | |||
52 | /** |
||
53 | * @var AmountDetails |
||
54 | */ |
||
55 | private $amountDetails; |
||
56 | |||
57 | /** |
||
58 | * @var Amount |
||
59 | */ |
||
60 | private $amount; |
||
61 | |||
62 | /** |
||
63 | * @param Reference $reference |
||
64 | */ |
||
65 | 16 | public function addReference(Reference $reference) |
|
69 | |||
70 | /** |
||
71 | * @return Reference[] |
||
72 | */ |
||
73 | 1 | public function getReferences() |
|
77 | |||
78 | /** |
||
79 | * @return Reference |
||
80 | * @throws BadMethodCallException |
||
81 | */ |
||
82 | 1 | public function getReference() |
|
90 | |||
91 | /** |
||
92 | * @param RelatedParty $relatedParty |
||
93 | */ |
||
94 | 20 | public function addRelatedParty(RelatedParty $relatedParty) |
|
98 | |||
99 | /** |
||
100 | * @return RelatedParty[] |
||
101 | */ |
||
102 | 3 | public function getRelatedParties() |
|
106 | |||
107 | /** |
||
108 | * @return RelatedParty |
||
109 | * @throws BadMethodCallException |
||
110 | */ |
||
111 | 1 | public function getRelatedParty() |
|
119 | |||
120 | /** |
||
121 | * @param RelatedAgent $relatedAgent |
||
122 | */ |
||
123 | 16 | public function addRelatedAgent(RelatedAgent $relatedAgent) |
|
127 | |||
128 | /** |
||
129 | * @return RelatedAgent[] |
||
130 | */ |
||
131 | 1 | public function getRelatedAgents() |
|
135 | |||
136 | /** |
||
137 | * @return RelatedAgent |
||
138 | * @throws BadMethodCallException |
||
139 | */ |
||
140 | public function getRelatedAgent() |
||
148 | |||
149 | /** |
||
150 | * @param RemittanceInformation $remittanceInformation |
||
151 | */ |
||
152 | 16 | public function setRemittanceInformation(RemittanceInformation $remittanceInformation) |
|
156 | |||
157 | /** |
||
158 | * @return RemittanceInformation |
||
159 | */ |
||
160 | 3 | public function getRemittanceInformation() |
|
167 | |||
168 | /** |
||
169 | * @param RelatedDates $relatedDates |
||
170 | */ |
||
171 | public function setRelatedDates(RelatedDates $relatedDates) |
||
175 | |||
176 | /** |
||
177 | * @return RelatedDates |
||
178 | */ |
||
179 | public function getRelatedDates() |
||
183 | |||
184 | /** |
||
185 | * @return ReturnInformation|null |
||
186 | */ |
||
187 | public function getReturnInformation() |
||
191 | |||
192 | /** |
||
193 | * @param ReturnInformation $information |
||
194 | */ |
||
195 | public function setReturnInformation(ReturnInformation $information) |
||
199 | |||
200 | /** |
||
201 | * @param AdditionalTransactionInformation $additionalTransactionInformation |
||
202 | */ |
||
203 | public function setAdditionalTransactionInformation(AdditionalTransactionInformation $additionalTransactionInformation) |
||
207 | |||
208 | /** |
||
209 | * @return AdditionalTransactionInformation |
||
210 | */ |
||
211 | public function getAdditionalTransactionInformation() |
||
218 | |||
219 | /** |
||
220 | * @return BankTransactionCode |
||
221 | */ |
||
222 | 1 | public function getBankTransactionCode() |
|
226 | |||
227 | /** |
||
228 | * @param BankTransactionCode $bankTransactionCode |
||
229 | */ |
||
230 | 20 | public function setBankTransactionCode(BankTransactionCode $bankTransactionCode) |
|
234 | |||
235 | /** |
||
236 | * @return Charges |
||
237 | */ |
||
238 | public function getCharges() |
||
242 | |||
243 | /** |
||
244 | * @param Charges $charges |
||
245 | */ |
||
246 | 3 | public function setCharges(Charges $charges) |
|
250 | |||
251 | /** |
||
252 | * @return AmountDetails |
||
253 | */ |
||
254 | public function getAmountDetails() |
||
258 | |||
259 | /** |
||
260 | * @param AmountDetails $amountDetails |
||
261 | */ |
||
262 | 6 | public function setAmountDetails(AmountDetails $amountDetails) |
|
266 | |||
267 | /** |
||
268 | * @return Amount |
||
269 | */ |
||
270 | public function getAmount() |
||
274 | |||
275 | /** |
||
276 | * @param Amount $amount |
||
277 | */ |
||
278 | 13 | public function setAmount(Amount $amount) |
|
282 | |||
283 | } |
||
284 |