1
|
|
|
<?php |
2
|
|
|
/** |
3
|
|
|
* Created by Carl Owens ([email protected]) |
4
|
|
|
* Company: PartFire Ltd (www.partfire.co.uk) |
5
|
|
|
* Copyright © 2017 PartFire Ltd. All rights reserved. |
6
|
|
|
* |
7
|
|
|
* User: Carl Owens |
8
|
|
|
* Date: 19/01/2017 |
9
|
|
|
* Time: 15:31 |
10
|
|
|
* File: BankwireDirectPayIn.php |
11
|
|
|
**/ |
12
|
|
|
|
13
|
|
|
namespace PartFire\MangoPayBundle\Models\DTOs; |
14
|
|
|
|
15
|
|
|
class BankwireDirectPayIn |
16
|
|
|
{ |
17
|
|
|
private $resourceId; |
18
|
|
|
|
19
|
|
|
private $tag; |
20
|
|
|
|
21
|
|
|
private $authorId; |
22
|
|
|
|
23
|
|
|
private $creditedWalletId; |
24
|
|
|
|
25
|
|
|
private $creditedUserId; |
26
|
|
|
|
27
|
|
|
private $declaredDebitedFundsCurrency; |
28
|
|
|
|
29
|
|
|
private $declaredDebitedFundsAmount; |
30
|
|
|
|
31
|
|
|
private $declaredFeesCurrency; |
32
|
|
|
|
33
|
|
|
private $declaredFeesAmount; |
34
|
|
|
|
35
|
|
|
private $status; |
36
|
|
|
|
37
|
|
|
private $resultCode; |
38
|
|
|
|
39
|
|
|
private $resultMessage; |
40
|
|
|
|
41
|
|
|
private $type; |
42
|
|
|
|
43
|
|
|
private $nature; |
44
|
|
|
|
45
|
|
|
private $paymentType; |
46
|
|
|
|
47
|
|
|
private $executionType; |
48
|
|
|
|
49
|
|
|
private $wireReference; |
50
|
|
|
|
51
|
|
|
private $bankAccountType; |
52
|
|
|
|
53
|
|
|
private $bankAccountOwnerName; |
54
|
|
|
|
55
|
|
|
private $bankAccountIban; |
56
|
|
|
|
57
|
|
|
private $bankAccountBic; |
58
|
|
|
|
59
|
|
|
/** |
60
|
|
|
* @return mixed |
61
|
|
|
*/ |
62
|
|
|
public function getTag() |
63
|
|
|
{ |
64
|
|
|
return $this->tag; |
65
|
|
|
} |
66
|
|
|
|
67
|
|
|
/** |
68
|
|
|
* @param mixed $tag |
69
|
|
|
*/ |
70
|
|
|
public function setTag($tag) |
71
|
|
|
{ |
72
|
|
|
$this->tag = $tag; |
73
|
|
|
} |
74
|
|
|
|
75
|
|
|
/** |
76
|
|
|
* @return mixed |
77
|
|
|
*/ |
78
|
|
|
public function getAuthorId() |
79
|
|
|
{ |
80
|
|
|
return $this->authorId; |
81
|
|
|
} |
82
|
|
|
|
83
|
|
|
/** |
84
|
|
|
* @param mixed $authorId |
85
|
|
|
*/ |
86
|
|
|
public function setAuthorId($authorId) |
87
|
|
|
{ |
88
|
|
|
$this->authorId = $authorId; |
89
|
|
|
} |
90
|
|
|
|
91
|
|
|
/** |
92
|
|
|
* @return mixed |
93
|
|
|
*/ |
94
|
|
|
public function getCreditedWalletId() |
95
|
|
|
{ |
96
|
|
|
return $this->creditedWalletId; |
97
|
|
|
} |
98
|
|
|
|
99
|
|
|
/** |
100
|
|
|
* @param mixed $creditedWalletId |
101
|
|
|
*/ |
102
|
|
|
public function setCreditedWalletId($creditedWalletId) |
103
|
|
|
{ |
104
|
|
|
$this->creditedWalletId = $creditedWalletId; |
105
|
|
|
} |
106
|
|
|
|
107
|
|
|
/** |
108
|
|
|
* @return mixed |
109
|
|
|
*/ |
110
|
|
|
public function getCreditedUserId() |
111
|
|
|
{ |
112
|
|
|
return $this->creditedUserId; |
113
|
|
|
} |
114
|
|
|
|
115
|
|
|
/** |
116
|
|
|
* @param mixed $creditedUserId |
117
|
|
|
*/ |
118
|
|
|
public function setCreditedUserId($creditedUserId) |
119
|
|
|
{ |
120
|
|
|
$this->creditedUserId = $creditedUserId; |
121
|
|
|
} |
122
|
|
|
|
123
|
|
|
/** |
124
|
|
|
* @return mixed |
125
|
|
|
*/ |
126
|
|
|
public function getDeclaredDebitedFundsCurrency() |
127
|
|
|
{ |
128
|
|
|
return $this->declaredDebitedFundsCurrency; |
129
|
|
|
} |
130
|
|
|
|
131
|
|
|
/** |
132
|
|
|
* @param mixed $declaredDebitedFundsCurrency |
133
|
|
|
*/ |
134
|
|
|
public function setDeclaredDebitedFundsCurrency($declaredDebitedFundsCurrency) |
135
|
|
|
{ |
136
|
|
|
$this->declaredDebitedFundsCurrency = $declaredDebitedFundsCurrency; |
137
|
|
|
} |
138
|
|
|
|
139
|
|
|
/** |
140
|
|
|
* @return mixed |
141
|
|
|
*/ |
142
|
|
|
public function getDeclaredDebitedFundsAmount() |
143
|
|
|
{ |
144
|
|
|
return $this->declaredDebitedFundsAmount; |
145
|
|
|
} |
146
|
|
|
|
147
|
|
|
/** |
148
|
|
|
* @param mixed $declaredDebitedFundsAmount |
149
|
|
|
*/ |
150
|
|
|
public function setDeclaredDebitedFundsAmount($declaredDebitedFundsAmount) |
151
|
|
|
{ |
152
|
|
|
$this->declaredDebitedFundsAmount = $declaredDebitedFundsAmount; |
153
|
|
|
} |
154
|
|
|
|
155
|
|
|
/** |
156
|
|
|
* @return mixed |
157
|
|
|
*/ |
158
|
|
|
public function getDeclaredFeesCurrency() |
159
|
|
|
{ |
160
|
|
|
return $this->declaredFeesCurrency; |
161
|
|
|
} |
162
|
|
|
|
163
|
|
|
/** |
164
|
|
|
* @param mixed $declaredFeesCurrency |
165
|
|
|
*/ |
166
|
|
|
public function setDeclaredFeesCurrency($declaredFeesCurrency) |
167
|
|
|
{ |
168
|
|
|
$this->declaredFeesCurrency = $declaredFeesCurrency; |
169
|
|
|
} |
170
|
|
|
|
171
|
|
|
/** |
172
|
|
|
* @return mixed |
173
|
|
|
*/ |
174
|
|
|
public function getDeclaredFeesAmount() |
175
|
|
|
{ |
176
|
|
|
return $this->declaredFeesAmount; |
177
|
|
|
} |
178
|
|
|
|
179
|
|
|
/** |
180
|
|
|
* @param mixed $declaredFeesAmount |
181
|
|
|
*/ |
182
|
|
|
public function setDeclaredFeesAmount($declaredFeesAmount) |
183
|
|
|
{ |
184
|
|
|
$this->declaredFeesAmount = $declaredFeesAmount; |
185
|
|
|
} |
186
|
|
|
|
187
|
|
|
/** |
188
|
|
|
* @return mixed |
189
|
|
|
*/ |
190
|
|
|
public function getStatus() |
191
|
|
|
{ |
192
|
|
|
return $this->status; |
193
|
|
|
} |
194
|
|
|
|
195
|
|
|
/** |
196
|
|
|
* @param mixed $status |
197
|
|
|
*/ |
198
|
|
|
public function setStatus($status) |
199
|
|
|
{ |
200
|
|
|
$this->status = $status; |
201
|
|
|
} |
202
|
|
|
|
203
|
|
|
/** |
204
|
|
|
* @return mixed |
205
|
|
|
*/ |
206
|
|
|
public function getResultCode() |
207
|
|
|
{ |
208
|
|
|
return $this->resultCode; |
209
|
|
|
} |
210
|
|
|
|
211
|
|
|
/** |
212
|
|
|
* @param mixed $resultCode |
213
|
|
|
*/ |
214
|
|
|
public function setResultCode($resultCode) |
215
|
|
|
{ |
216
|
|
|
$this->resultCode = $resultCode; |
217
|
|
|
} |
218
|
|
|
|
219
|
|
|
/** |
220
|
|
|
* @return mixed |
221
|
|
|
*/ |
222
|
|
|
public function getResultMessage() |
223
|
|
|
{ |
224
|
|
|
return $this->resultMessage; |
225
|
|
|
} |
226
|
|
|
|
227
|
|
|
/** |
228
|
|
|
* @param mixed $resultMessage |
229
|
|
|
*/ |
230
|
|
|
public function setResultMessage($resultMessage) |
231
|
|
|
{ |
232
|
|
|
$this->resultMessage = $resultMessage; |
233
|
|
|
} |
234
|
|
|
|
235
|
|
|
/** |
236
|
|
|
* @return mixed |
237
|
|
|
*/ |
238
|
|
|
public function getType() |
239
|
|
|
{ |
240
|
|
|
return $this->type; |
241
|
|
|
} |
242
|
|
|
|
243
|
|
|
/** |
244
|
|
|
* @param mixed $type |
245
|
|
|
*/ |
246
|
|
|
public function setType($type) |
247
|
|
|
{ |
248
|
|
|
$this->type = $type; |
249
|
|
|
} |
250
|
|
|
|
251
|
|
|
/** |
252
|
|
|
* @return mixed |
253
|
|
|
*/ |
254
|
|
|
public function getNature() |
255
|
|
|
{ |
256
|
|
|
return $this->nature; |
257
|
|
|
} |
258
|
|
|
|
259
|
|
|
/** |
260
|
|
|
* @param mixed $nature |
261
|
|
|
*/ |
262
|
|
|
public function setNature($nature) |
263
|
|
|
{ |
264
|
|
|
$this->nature = $nature; |
265
|
|
|
} |
266
|
|
|
|
267
|
|
|
/** |
268
|
|
|
* @return mixed |
269
|
|
|
*/ |
270
|
|
|
public function getPaymentType() |
271
|
|
|
{ |
272
|
|
|
return $this->paymentType; |
273
|
|
|
} |
274
|
|
|
|
275
|
|
|
/** |
276
|
|
|
* @param mixed $paymentType |
277
|
|
|
*/ |
278
|
|
|
public function setPaymentType($paymentType) |
279
|
|
|
{ |
280
|
|
|
$this->paymentType = $paymentType; |
281
|
|
|
} |
282
|
|
|
|
283
|
|
|
/** |
284
|
|
|
* @return mixed |
285
|
|
|
*/ |
286
|
|
|
public function getExecutionType() |
287
|
|
|
{ |
288
|
|
|
return $this->executionType; |
289
|
|
|
} |
290
|
|
|
|
291
|
|
|
/** |
292
|
|
|
* @param mixed $executionType |
293
|
|
|
*/ |
294
|
|
|
public function setExecutionType($executionType) |
295
|
|
|
{ |
296
|
|
|
$this->executionType = $executionType; |
297
|
|
|
} |
298
|
|
|
|
299
|
|
|
/** |
300
|
|
|
* @return mixed |
301
|
|
|
*/ |
302
|
|
|
public function getWireReference() |
303
|
|
|
{ |
304
|
|
|
return $this->wireReference; |
305
|
|
|
} |
306
|
|
|
|
307
|
|
|
/** |
308
|
|
|
* @param mixed $wireReference |
309
|
|
|
*/ |
310
|
|
|
public function setWireReference($wireReference) |
311
|
|
|
{ |
312
|
|
|
$this->wireReference = $wireReference; |
313
|
|
|
} |
314
|
|
|
|
315
|
|
|
/** |
316
|
|
|
* @return mixed |
317
|
|
|
*/ |
318
|
|
|
public function getBankAccountType() |
319
|
|
|
{ |
320
|
|
|
return $this->bankAccountType; |
321
|
|
|
} |
322
|
|
|
|
323
|
|
|
/** |
324
|
|
|
* @param mixed $bankAccountType |
325
|
|
|
*/ |
326
|
|
|
public function setBankAccountType($bankAccountType) |
327
|
|
|
{ |
328
|
|
|
$this->bankAccountType = $bankAccountType; |
329
|
|
|
} |
330
|
|
|
|
331
|
|
|
/** |
332
|
|
|
* @return mixed |
333
|
|
|
*/ |
334
|
|
|
public function getBankAccountOwnerName() |
335
|
|
|
{ |
336
|
|
|
return $this->bankAccountOwnerName; |
337
|
|
|
} |
338
|
|
|
|
339
|
|
|
/** |
340
|
|
|
* @param mixed $bankAccountOwnerName |
341
|
|
|
*/ |
342
|
|
|
public function setBankAccountOwnerName($bankAccountOwnerName) |
343
|
|
|
{ |
344
|
|
|
$this->bankAccountOwnerName = $bankAccountOwnerName; |
345
|
|
|
} |
346
|
|
|
|
347
|
|
|
/** |
348
|
|
|
* @return mixed |
349
|
|
|
*/ |
350
|
|
|
public function getBankAccountIban() |
351
|
|
|
{ |
352
|
|
|
return $this->bankAccountIban; |
353
|
|
|
} |
354
|
|
|
|
355
|
|
|
/** |
356
|
|
|
* @param mixed $bankAccountIban |
357
|
|
|
*/ |
358
|
|
|
public function setBankAccountIban($bankAccountIban) |
359
|
|
|
{ |
360
|
|
|
$this->bankAccountIban = $bankAccountIban; |
361
|
|
|
} |
362
|
|
|
|
363
|
|
|
/** |
364
|
|
|
* @return mixed |
365
|
|
|
*/ |
366
|
|
|
public function getBankAccountBic() |
367
|
|
|
{ |
368
|
|
|
return $this->bankAccountBic; |
369
|
|
|
} |
370
|
|
|
|
371
|
|
|
/** |
372
|
|
|
* @param mixed $bankAccountBic |
373
|
|
|
*/ |
374
|
|
|
public function setBankAccountBic($bankAccountBic) |
375
|
|
|
{ |
376
|
|
|
$this->bankAccountBic = $bankAccountBic; |
377
|
|
|
} |
378
|
|
|
|
379
|
|
|
/** |
380
|
|
|
* @return mixed |
381
|
|
|
*/ |
382
|
|
|
public function getResourceId() |
383
|
|
|
{ |
384
|
|
|
return $this->resourceId; |
385
|
|
|
} |
386
|
|
|
|
387
|
|
|
/** |
388
|
|
|
* @param mixed $resourceId |
389
|
|
|
*/ |
390
|
|
|
public function setResourceId($resourceId) |
391
|
|
|
{ |
392
|
|
|
$this->resourceId = $resourceId; |
393
|
|
|
} |
394
|
|
|
} |
395
|
|
|
|