Passed
Push — master ( 25c7eb...6c1a60 )
by Carl
06:08
created

BankwireDirectPayIn::getResultCode()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

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