Passed
Push — master ( b94297...d3f672 )
by Carl
07:13
created

CardDirectPayIn::setCreditedWalletId()   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 1
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 $tag;
18
19
    private $authorId;
20
21
    private $creditedUserId;
22
23
    private $creditedWalletId;
24
25
    private $debitedFunds;
26
27
    private $fees;
28
29
    private $feesCurrency;
30
31
    private $secureModeReturnUrl;
32
33
    private $cardId;
34
35
    private $secureMode;
36
37
    private $secureModeNeeded;
38
39
    private $secureModeRedirectUrl;
40
41
    private $statementDescriptor;
42
43
    private $amount;
44
45
    private $currency;
46
47
    private $cardType;
48
49
    private $status;
50
51
    /**
52
     * @return mixed
53
     */
54
    public function getTag()
55
    {
56
        return $this->tag;
57
    }
58
59
    /**
60
     * @param mixed $tag
61
     */
62
    public function setTag($tag)
63
    {
64
        $this->tag = $tag;
65
    }
66
67
    /**
68
     * @return mixed
69
     */
70
    public function getAuthorId()
71
    {
72
        return $this->authorId;
73
    }
74
75
    /**
76
     * @param mixed $authorId
77
     */
78
    public function setAuthorId($authorId)
79
    {
80
        $this->authorId = $authorId;
81
    }
82
83
    /**
84
     * @return mixed
85
     */
86
    public function getCreditedUserId()
87
    {
88
        return $this->creditedUserId;
89
    }
90
91
    /**
92
     * @param mixed $creditedUserId
93
     */
94
    public function setCreditedUserId($creditedUserId)
95
    {
96
        $this->creditedUserId = $creditedUserId;
97
    }
98
99
    /**
100
     * @return mixed
101
     */
102
    public function getCreditedWalletId()
103
    {
104
        return $this->creditedWalletId;
105
    }
106
107
    /**
108
     * @param mixed $creditedWalletId
109
     */
110
    public function setCreditedWalletId($creditedWalletId)
111
    {
112
        $this->creditedWalletId = $creditedWalletId;
113
    }
114
115
    /**
116
     * @return mixed
117
     */
118
    public function getDebitedFunds()
119
    {
120
        return $this->debitedFunds;
121
    }
122
123
    /**
124
     * @param mixed $debitedFunds
125
     */
126
    public function setDebitedFunds($debitedFunds)
127
    {
128
        $this->debitedFunds = $debitedFunds;
129
    }
130
131
    /**
132
     * @return mixed
133
     */
134
    public function getFees()
135
    {
136
        return $this->fees;
137
    }
138
139
    /**
140
     * @param mixed $fees
141
     */
142
    public function setFees($fees)
143
    {
144
        $this->fees = $fees;
145
    }
146
147
    /**
148
     * @return mixed
149
     */
150
    public function getFeesCurrency()
151
    {
152
        return $this->feesCurrency;
153
    }
154
155
    /**
156
     * @param mixed $feesCurrency
157
     */
158
    public function setFeesCurrency($feesCurrency)
159
    {
160
        $this->feesCurrency = $feesCurrency;
161
    }
162
163
    /**
164
     * @return mixed
165
     */
166
    public function getSecureModeReturnUrl()
167
    {
168
        return $this->secureModeReturnUrl;
169
    }
170
171
    /**
172
     * @param mixed $secureModeReturnUrl
173
     */
174
    public function setSecureModeReturnUrl($secureModeReturnUrl)
175
    {
176
        $this->secureModeReturnUrl = $secureModeReturnUrl;
177
    }
178
179
    /**
180
     * @return mixed
181
     */
182
    public function getCardId()
183
    {
184
        return $this->cardId;
185
    }
186
187
    /**
188
     * @param mixed $cardId
189
     */
190
    public function setCardId($cardId)
191
    {
192
        $this->cardId = $cardId;
193
    }
194
195
    /**
196
     * @return mixed
197
     */
198
    public function getSecureMode()
199
    {
200
        return $this->secureMode;
201
    }
202
203
    /**
204
     * @param mixed $secureMode
205
     */
206
    public function setSecureMode($secureMode)
207
    {
208
        $this->secureMode = $secureMode;
209
    }
210
211
    /**
212
     * @return mixed
213
     */
214
    public function getStatementDescriptor()
215
    {
216
        return $this->statementDescriptor;
217
    }
218
219
    /**
220
     * @param mixed $statementDescriptor
221
     */
222
    public function setStatementDescriptor($statementDescriptor)
223
    {
224
        $this->statementDescriptor = $statementDescriptor;
225
    }
226
227
    /**
228
     * @return mixed
229
     */
230
    public function getAmount()
231
    {
232
        return $this->amount;
233
    }
234
235
    /**
236
     * @param mixed $amount
237
     */
238
    public function setAmount($amount)
239
    {
240
        $this->amount = $amount;
241
    }
242
243
    /**
244
     * @return mixed
245
     */
246
    public function getCurrency()
247
    {
248
        return $this->currency;
249
    }
250
251
    /**
252
     * @param mixed $currency
253
     */
254
    public function setCurrency($currency)
255
    {
256
        $this->currency = $currency;
257
    }
258
259
    /**
260
     * @return mixed
261
     */
262
    public function getCardType()
263
    {
264
        return $this->cardType;
265
    }
266
267
    /**
268
     * @param mixed $cardType
269
     */
270
    public function setCardType($cardType)
271
    {
272
        $this->cardType = $cardType;
273
    }
274
275
    /**
276
     * @return mixed
277
     */
278
    public function getStatus()
279
    {
280
        return $this->status;
281
    }
282
283
    /**
284
     * @param mixed $status
285
     */
286
    public function setStatus($status)
287
    {
288
        $this->status = $status;
289
    }
290
291
    /**
292
     * @return mixed
293
     */
294
    public function getSecureModeNeeded()
295
    {
296
        return $this->secureModeNeeded;
297
    }
298
299
    /**
300
     * @param mixed $secureModeNeeded
301
     */
302
    public function setSecureModeNeeded($secureModeNeeded)
303
    {
304
        $this->secureModeNeeded = $secureModeNeeded;
305
    }
306
307
    /**
308
     * @return mixed
309
     */
310
    public function getSecureModeRedirectUrl()
311
    {
312
        return $this->secureModeRedirectUrl;
313
    }
314
315
    /**
316
     * @param mixed $secureModeRedirectUrl
317
     */
318
    public function setSecureModeRedirectUrl($secureModeRedirectUrl)
319
    {
320
        $this->secureModeRedirectUrl = $secureModeRedirectUrl;
321
    }
322
}
323