Passed
Push — master ( ffec38...d087b3 )
by
unknown
02:56
created

CardDirectPayIn::getResultCode()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 4
rs 10
c 0
b 0
f 0
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:    12:21
10
 * File:    CardDirectPayIn.php
11
 **/
12
13
namespace PartFire\MangoPayBundle\Models\DTOs;
14
15
class CardDirectPayIn
16
{
17
    private $resourceId;
18
19
    private $tag;
20
21
    private $authorId;
22
23
    private $creditedUserId;
24
25
    private $creditedWalletId;
26
27
    private $debitedFunds;
28
29
    private $fees;
30
31
    private $feesCurrency;
32
33
    private $secureModeReturnUrl;
34
35
    private $cardId;
36
37
    private $secureMode;
38
39
    private $secureModeNeeded;
40
41
    private $secureModeRedirectUrl;
42
43
    private $statementDescriptor;
44
45
    private $amount;
46
47
    private $currency;
48
49
    private $cardType;
50
51
    private $status;
52
53
    private $resultCode;
54
55
    private $resultMessage;
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 getCreditedUserId()
93
    {
94
        return $this->creditedUserId;
95
    }
96
97
    /**
98
     * @param mixed $creditedUserId
99
     */
100
    public function setCreditedUserId($creditedUserId)
101
    {
102
        $this->creditedUserId = $creditedUserId;
103
    }
104
105
    /**
106
     * @return mixed
107
     */
108
    public function getCreditedWalletId()
109
    {
110
        return $this->creditedWalletId;
111
    }
112
113
    /**
114
     * @param mixed $creditedWalletId
115
     */
116
    public function setCreditedWalletId($creditedWalletId)
117
    {
118
        $this->creditedWalletId = $creditedWalletId;
119
    }
120
121
    /**
122
     * @return mixed
123
     */
124
    public function getDebitedFunds()
125
    {
126
        return $this->debitedFunds;
127
    }
128
129
    /**
130
     * @param mixed $debitedFunds
131
     */
132
    public function setDebitedFunds($debitedFunds)
133
    {
134
        $this->debitedFunds = $debitedFunds;
135
    }
136
137
    /**
138
     * @return mixed
139
     */
140
    public function getFees()
141
    {
142
        return $this->fees;
143
    }
144
145
    /**
146
     * @param mixed $fees
147
     */
148
    public function setFees($fees)
149
    {
150
        $this->fees = $fees;
151
    }
152
153
    /**
154
     * @return mixed
155
     */
156
    public function getFeesCurrency()
157
    {
158
        return $this->feesCurrency;
159
    }
160
161
    /**
162
     * @param mixed $feesCurrency
163
     */
164
    public function setFeesCurrency($feesCurrency)
165
    {
166
        $this->feesCurrency = $feesCurrency;
167
    }
168
169
    /**
170
     * @return mixed
171
     */
172
    public function getSecureModeReturnUrl()
173
    {
174
        return $this->secureModeReturnUrl;
175
    }
176
177
    /**
178
     * @param mixed $secureModeReturnUrl
179
     */
180
    public function setSecureModeReturnUrl($secureModeReturnUrl)
181
    {
182
        $this->secureModeReturnUrl = $secureModeReturnUrl;
183
    }
184
185
    /**
186
     * @return mixed
187
     */
188
    public function getCardId()
189
    {
190
        return $this->cardId;
191
    }
192
193
    /**
194
     * @param mixed $cardId
195
     */
196
    public function setCardId($cardId)
197
    {
198
        $this->cardId = $cardId;
199
    }
200
201
    /**
202
     * @return mixed
203
     */
204
    public function getSecureMode()
205
    {
206
        return $this->secureMode;
207
    }
208
209
    /**
210
     * @param mixed $secureMode
211
     */
212
    public function setSecureMode($secureMode)
213
    {
214
        $this->secureMode = $secureMode;
215
    }
216
217
    /**
218
     * @return mixed
219
     */
220
    public function getStatementDescriptor()
221
    {
222
        return $this->statementDescriptor;
223
    }
224
225
    /**
226
     * @param mixed $statementDescriptor
227
     */
228
    public function setStatementDescriptor($statementDescriptor)
229
    {
230
        $this->statementDescriptor = $statementDescriptor;
231
    }
232
233
    /**
234
     * @return mixed
235
     */
236
    public function getAmount()
237
    {
238
        return $this->amount;
239
    }
240
241
    /**
242
     * @param mixed $amount
243
     */
244
    public function setAmount($amount)
245
    {
246
        $this->amount = $amount;
247
    }
248
249
    /**
250
     * @return mixed
251
     */
252
    public function getCurrency()
253
    {
254
        return $this->currency;
255
    }
256
257
    /**
258
     * @param mixed $currency
259
     */
260
    public function setCurrency($currency)
261
    {
262
        $this->currency = $currency;
263
    }
264
265
    /**
266
     * @return mixed
267
     */
268
    public function getCardType()
269
    {
270
        return $this->cardType;
271
    }
272
273
    /**
274
     * @param mixed $cardType
275
     */
276
    public function setCardType($cardType)
277
    {
278
        $this->cardType = $cardType;
279
    }
280
281
    /**
282
     * @return mixed
283
     */
284
    public function getStatus()
285
    {
286
        return $this->status;
287
    }
288
289
    /**
290
     * @param mixed $status
291
     */
292
    public function setStatus($status)
293
    {
294
        $this->status = $status;
295
    }
296
297
    /**
298
     * @return mixed
299
     */
300
    public function getSecureModeNeeded()
301
    {
302
        return $this->secureModeNeeded;
303
    }
304
305
    /**
306
     * @param mixed $secureModeNeeded
307
     */
308
    public function setSecureModeNeeded($secureModeNeeded)
309
    {
310
        $this->secureModeNeeded = $secureModeNeeded;
311
    }
312
313
    /**
314
     * @return mixed
315
     */
316
    public function getSecureModeRedirectUrl()
317
    {
318
        return $this->secureModeRedirectUrl;
319
    }
320
321
    /**
322
     * @param mixed $secureModeRedirectUrl
323
     */
324
    public function setSecureModeRedirectUrl($secureModeRedirectUrl)
325
    {
326
        $this->secureModeRedirectUrl = $secureModeRedirectUrl;
327
    }
328
329
    /**
330
     * @return mixed
331
     */
332
    public function getResourceId()
333
    {
334
        return $this->resourceId;
335
    }
336
337
    /**
338
     * @param mixed $resourceId
339
     */
340
    public function setResourceId($resourceId)
341
    {
342
        $this->resourceId = $resourceId;
343
    }
344
345
    /**
346
     * @return mixed
347
     */
348
    public function getResultCode()
349
    {
350
        return $this->resultCode;
351
    }
352
353
    /**
354
     * @param mixed $resultCode
355
     */
356
    public function setResultCode($resultCode)
357
    {
358
        $this->resultCode = $resultCode;
359
    }
360
361
    /**
362
     * @return mixed
363
     */
364
    public function getResultMessage()
365
    {
366
        return $this->resultMessage;
367
    }
368
369
    /**
370
     * @param mixed $resultMessage
371
     */
372
    public function setResultMessage($resultMessage)
373
    {
374
        $this->resultMessage = $resultMessage;
375
    }
376
377
378
379
}
380