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: 20/01/2017 |
9
|
|
|
* Time: 15:14 |
10
|
|
|
* File: PayOutBankWire.php |
11
|
|
|
**/ |
12
|
|
|
|
13
|
|
|
namespace PartFire\MangoPayBundle\Models\DTOs; |
14
|
|
|
|
15
|
|
|
class PayOutBankWire |
16
|
|
|
{ |
17
|
|
|
private $authorId; |
18
|
|
|
|
19
|
|
|
private $tag; |
20
|
|
|
|
21
|
|
|
private $debitedWalletId; |
22
|
|
|
|
23
|
|
|
private $debitedFundsCurrency; |
24
|
|
|
|
25
|
|
|
private $debitedFundsAmount; |
26
|
|
|
|
27
|
|
|
private $feesCurrency; |
28
|
|
|
|
29
|
|
|
private $feesAmount; |
30
|
|
|
|
31
|
|
|
private $paymentType; |
32
|
|
|
|
33
|
|
|
private $bankAccountId; |
34
|
|
|
|
35
|
|
|
private $status; |
36
|
|
|
|
37
|
|
|
private $resultCode; |
38
|
|
|
|
39
|
|
|
private $resultMessage; |
40
|
|
|
|
41
|
|
|
private $type; |
42
|
|
|
|
43
|
|
|
private $nature; |
44
|
|
|
|
45
|
|
|
private $bankWireRef; |
46
|
|
|
|
47
|
|
|
private $resourceId; |
48
|
|
|
|
49
|
|
|
/** |
50
|
|
|
* @return mixed |
51
|
|
|
*/ |
52
|
|
|
public function getAuthorId() |
53
|
|
|
{ |
54
|
|
|
return $this->authorId; |
55
|
|
|
} |
56
|
|
|
|
57
|
|
|
/** |
58
|
|
|
* @param mixed $authorId |
59
|
|
|
*/ |
60
|
|
|
public function setAuthorId($authorId) |
61
|
|
|
{ |
62
|
|
|
$this->authorId = $authorId; |
63
|
|
|
} |
64
|
|
|
|
65
|
|
|
/** |
66
|
|
|
* @return mixed |
67
|
|
|
*/ |
68
|
|
|
public function getTag() |
69
|
|
|
{ |
70
|
|
|
return $this->tag; |
71
|
|
|
} |
72
|
|
|
|
73
|
|
|
/** |
74
|
|
|
* @param mixed $tag |
75
|
|
|
*/ |
76
|
|
|
public function setTag($tag) |
77
|
|
|
{ |
78
|
|
|
$this->tag = $tag; |
79
|
|
|
} |
80
|
|
|
|
81
|
|
|
/** |
82
|
|
|
* @return mixed |
83
|
|
|
*/ |
84
|
|
|
public function getDebitedWalletId() |
85
|
|
|
{ |
86
|
|
|
return $this->debitedWalletId; |
87
|
|
|
} |
88
|
|
|
|
89
|
|
|
/** |
90
|
|
|
* @param mixed $debitedWalletId |
91
|
|
|
*/ |
92
|
|
|
public function setDebitedWalletId($debitedWalletId) |
93
|
|
|
{ |
94
|
|
|
$this->debitedWalletId = $debitedWalletId; |
95
|
|
|
} |
96
|
|
|
|
97
|
|
|
/** |
98
|
|
|
* @return mixed |
99
|
|
|
*/ |
100
|
|
|
public function getDebitedFundsCurrency() |
101
|
|
|
{ |
102
|
|
|
return $this->debitedFundsCurrency; |
103
|
|
|
} |
104
|
|
|
|
105
|
|
|
/** |
106
|
|
|
* @param mixed $debitedFundsCurrency |
107
|
|
|
*/ |
108
|
|
|
public function setDebitedFundsCurrency($debitedFundsCurrency) |
109
|
|
|
{ |
110
|
|
|
$this->debitedFundsCurrency = $debitedFundsCurrency; |
111
|
|
|
} |
112
|
|
|
|
113
|
|
|
/** |
114
|
|
|
* @return mixed |
115
|
|
|
*/ |
116
|
|
|
public function getDebitedFundsAmount() |
117
|
|
|
{ |
118
|
|
|
return $this->debitedFundsAmount; |
119
|
|
|
} |
120
|
|
|
|
121
|
|
|
/** |
122
|
|
|
* @param mixed $debitedFundsAmount |
123
|
|
|
*/ |
124
|
|
|
public function setDebitedFundsAmount($debitedFundsAmount) |
125
|
|
|
{ |
126
|
|
|
$this->debitedFundsAmount = $debitedFundsAmount; |
127
|
|
|
} |
128
|
|
|
|
129
|
|
|
/** |
130
|
|
|
* @return mixed |
131
|
|
|
*/ |
132
|
|
|
public function getFeesCurrency() |
133
|
|
|
{ |
134
|
|
|
return $this->feesCurrency; |
135
|
|
|
} |
136
|
|
|
|
137
|
|
|
/** |
138
|
|
|
* @param mixed $feesCurrency |
139
|
|
|
*/ |
140
|
|
|
public function setFeesCurrency($feesCurrency) |
141
|
|
|
{ |
142
|
|
|
$this->feesCurrency = $feesCurrency; |
143
|
|
|
} |
144
|
|
|
|
145
|
|
|
/** |
146
|
|
|
* @return mixed |
147
|
|
|
*/ |
148
|
|
|
public function getFeesAmount() |
149
|
|
|
{ |
150
|
|
|
return $this->feesAmount; |
151
|
|
|
} |
152
|
|
|
|
153
|
|
|
/** |
154
|
|
|
* @param mixed $feesAmount |
155
|
|
|
*/ |
156
|
|
|
public function setFeesAmount($feesAmount) |
157
|
|
|
{ |
158
|
|
|
$this->feesAmount = $feesAmount; |
159
|
|
|
} |
160
|
|
|
|
161
|
|
|
/** |
162
|
|
|
* @return mixed |
163
|
|
|
*/ |
164
|
|
|
public function getPaymentType() |
165
|
|
|
{ |
166
|
|
|
return $this->paymentType; |
167
|
|
|
} |
168
|
|
|
|
169
|
|
|
/** |
170
|
|
|
* @param mixed $paymentType |
171
|
|
|
*/ |
172
|
|
|
public function setPaymentType($paymentType) |
173
|
|
|
{ |
174
|
|
|
$this->paymentType = $paymentType; |
175
|
|
|
} |
176
|
|
|
|
177
|
|
|
/** |
178
|
|
|
* @return mixed |
179
|
|
|
*/ |
180
|
|
|
public function getBankAccountId() |
181
|
|
|
{ |
182
|
|
|
return $this->bankAccountId; |
183
|
|
|
} |
184
|
|
|
|
185
|
|
|
/** |
186
|
|
|
* @param mixed $bankAccountId |
187
|
|
|
*/ |
188
|
|
|
public function setBankAccountId($bankAccountId) |
189
|
|
|
{ |
190
|
|
|
$this->bankAccountId = $bankAccountId; |
191
|
|
|
} |
192
|
|
|
|
193
|
|
|
/** |
194
|
|
|
* @return mixed |
195
|
|
|
*/ |
196
|
|
|
public function getStatus() |
197
|
|
|
{ |
198
|
|
|
return $this->status; |
199
|
|
|
} |
200
|
|
|
|
201
|
|
|
/** |
202
|
|
|
* @param mixed $status |
203
|
|
|
*/ |
204
|
|
|
public function setStatus($status) |
205
|
|
|
{ |
206
|
|
|
$this->status = $status; |
207
|
|
|
} |
208
|
|
|
|
209
|
|
|
/** |
210
|
|
|
* @return mixed |
211
|
|
|
*/ |
212
|
|
|
public function getResultCode() |
213
|
|
|
{ |
214
|
|
|
return $this->resultCode; |
215
|
|
|
} |
216
|
|
|
|
217
|
|
|
/** |
218
|
|
|
* @param mixed $resultCode |
219
|
|
|
*/ |
220
|
|
|
public function setResultCode($resultCode) |
221
|
|
|
{ |
222
|
|
|
$this->resultCode = $resultCode; |
223
|
|
|
} |
224
|
|
|
|
225
|
|
|
/** |
226
|
|
|
* @return mixed |
227
|
|
|
*/ |
228
|
|
|
public function getResultMessage() |
229
|
|
|
{ |
230
|
|
|
return $this->resultMessage; |
231
|
|
|
} |
232
|
|
|
|
233
|
|
|
/** |
234
|
|
|
* @param mixed $resultMessage |
235
|
|
|
*/ |
236
|
|
|
public function setResultMessage($resultMessage) |
237
|
|
|
{ |
238
|
|
|
$this->resultMessage = $resultMessage; |
239
|
|
|
} |
240
|
|
|
|
241
|
|
|
/** |
242
|
|
|
* @return mixed |
243
|
|
|
*/ |
244
|
|
|
public function getType() |
245
|
|
|
{ |
246
|
|
|
return $this->type; |
247
|
|
|
} |
248
|
|
|
|
249
|
|
|
/** |
250
|
|
|
* @param mixed $type |
251
|
|
|
*/ |
252
|
|
|
public function setType($type) |
253
|
|
|
{ |
254
|
|
|
$this->type = $type; |
255
|
|
|
} |
256
|
|
|
|
257
|
|
|
/** |
258
|
|
|
* @return mixed |
259
|
|
|
*/ |
260
|
|
|
public function getNature() |
261
|
|
|
{ |
262
|
|
|
return $this->nature; |
263
|
|
|
} |
264
|
|
|
|
265
|
|
|
/** |
266
|
|
|
* @param mixed $nature |
267
|
|
|
*/ |
268
|
|
|
public function setNature($nature) |
269
|
|
|
{ |
270
|
|
|
$this->nature = $nature; |
271
|
|
|
} |
272
|
|
|
|
273
|
|
|
/** |
274
|
|
|
* @return mixed |
275
|
|
|
*/ |
276
|
|
|
public function getBankWireRef() |
277
|
|
|
{ |
278
|
|
|
return $this->bankWireRef; |
279
|
|
|
} |
280
|
|
|
|
281
|
|
|
/** |
282
|
|
|
* @param mixed $bankWireRef |
283
|
|
|
*/ |
284
|
|
|
public function setBankWireRef($bankWireRef) |
285
|
|
|
{ |
286
|
|
|
$this->bankWireRef = $bankWireRef; |
287
|
|
|
} |
288
|
|
|
|
289
|
|
|
/** |
290
|
|
|
* @return mixed |
291
|
|
|
*/ |
292
|
|
|
public function getResourceId() |
293
|
|
|
{ |
294
|
|
|
return $this->resourceId; |
295
|
|
|
} |
296
|
|
|
|
297
|
|
|
/** |
298
|
|
|
* @param mixed $resourceId |
299
|
|
|
*/ |
300
|
|
|
public function setResourceId($resourceId) |
301
|
|
|
{ |
302
|
|
|
$this->resourceId = $resourceId; |
303
|
|
|
} |
304
|
|
|
} |
305
|
|
|
|