setAddPaydataClearingReference()   A
last analyzed

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
 *
4
 * NOTICE OF LICENSE
5
 *
6
 * This source file is subject to the GNU General Public License (GPL 3)
7
 * that is bundled with this package in the file LICENSE.txt
8
 *
9
 * DISCLAIMER
10
 *
11
 * Do not edit or add to this file if you wish to upgrade Payone to newer
12
 * versions in the future. If you wish to customize Payone for your
13
 * needs please refer to http://www.payone.de for more information.
14
 *
15
 * @category        Payone
16
 * @package         Payone_Api
17
 * @subpackage      Response
18
 * @copyright       Copyright (c) 2012 <[email protected]> - www.noovias.com
19
 * @author          Matthias Walter <[email protected]>
20
 * @license         <http://www.gnu.org/licenses/> GNU General Public License (GPL 3)
21
 * @link            http://www.noovias.com
22
 */
23
24
/**
25
 *
26
 * @category        Payone
27
 * @package         Payone_Api
28
 * @subpackage      Response
29
 * @copyright       Copyright (c) 2012 <[email protected]> - www.noovias.com
30
 * @license         <http://www.gnu.org/licenses/> GNU General Public License (GPL 3)
31
 * @link            http://www.noovias.com
32
 */
33
class Payone_Api_Response_Capture_Approved extends Payone_Api_Response_Abstract
34
{
35
    /**
36
     * @var int
37
     */
38
    protected $txid = NULL;
39
    /**
40
     * @var string
41
     */
42
    protected $settleaccount = NULL;
43
    /**
44
     * @var string
45
     */
46
    protected $clearing_bankaccountholder = NULL;
47
    /**
48
     * @var string
49
     */
50
    protected $clearing_bankcountry = NULL;
51
    /**
52
     * @var string
53
     */
54
    protected $clearing_bankaccount = NULL;
55
    /**
56
     * @var string
57
     */
58
    protected $clearing_bankcode = NULL;
59
    /**
60
     * @var string
61
     */
62
    protected $clearing_bankiban = NULL;
63
    /**
64
     * @var string
65
     */
66
    protected $clearing_bankbic = NULL;
67
    /**
68
     * @var string
69
     */
70
    protected $clearing_bankcity = NULL;
71
    /**
72
     * @var string
73
     */
74
    protected $clearing_bankname = NULL;
75
76
    /** @var string */
77
    protected $clearing_legalnote = NULL;
78
79
    /**
80
     * (YYYYMMDD)
81
     * @var string
82
     */
83
    protected $clearing_duedate = NULL;
84
85
    /** @var string */
86
    protected $clearing_reference = NULL;
87
88
    /** @var string */
89
    protected $clearing_instructionnote = NULL;
90
91
    /**
92
     * @var string
93
     */
94
    protected $mandate_identification = NULL;
95
    /**
96
     * @var string
97
     */
98
    protected $creditor_identifier = NULL;
99
    /**
100
     * @var int
101
     */
102
    protected $clearing_date = NULL;
103
    /**
104
     * @var int
105
     */
106
    protected $clearing_amount = NULL;
107
    
108
    protected $paydata_clearing_reference = NULL;
109
110
    /**
111
     * @param string $clearing_bankaccount
112
     */
113
    public function setClearingBankaccount($clearing_bankaccount)
114
    {
115
        $this->clearing_bankaccount = $clearing_bankaccount;
116
    }
117
118
    /**
119
     * @return string
120
     */
121
    public function getClearingBankaccount()
122
    {
123
        return $this->clearing_bankaccount;
124
    }
125
126
    /**
127
     * @param string $clearing_bankaccountholder
128
     */
129
    public function setClearingBankaccountholder($clearing_bankaccountholder)
130
    {
131
        $this->clearing_bankaccountholder = $clearing_bankaccountholder;
132
    }
133
134
    /**
135
     * @return string
136
     */
137
    public function getClearingBankaccountholder()
138
    {
139
        return $this->clearing_bankaccountholder;
140
    }
141
142
    /**
143
     * @param string $clearing_bankbic
144
     */
145
    public function setClearingBankbic($clearing_bankbic)
146
    {
147
        $this->clearing_bankbic = $clearing_bankbic;
148
    }
149
150
    /**
151
     * @return string
152
     */
153
    public function getClearingBankbic()
154
    {
155
        return $this->clearing_bankbic;
156
    }
157
158
    /**
159
     * @param string $clearing_bankcity
160
     */
161
    public function setClearingBankcity($clearing_bankcity)
162
    {
163
        $this->clearing_bankcity = $clearing_bankcity;
164
    }
165
166
    /**
167
     * @return string
168
     */
169
    public function getClearingBankcity()
170
    {
171
        return $this->clearing_bankcity;
172
    }
173
174
    /**
175
     * @param string $clearing_bankcode
176
     */
177
    public function setClearingBankcode($clearing_bankcode)
178
    {
179
        $this->clearing_bankcode = $clearing_bankcode;
180
    }
181
182
    /**
183
     * @return string
184
     */
185
    public function getClearingBankcode()
186
    {
187
        return $this->clearing_bankcode;
188
    }
189
190
    /**
191
     * @param string $clearing_bankcountry
192
     */
193
    public function setClearingBankcountry($clearing_bankcountry)
194
    {
195
        $this->clearing_bankcountry = $clearing_bankcountry;
196
    }
197
198
    /**
199
     * @return string
200
     */
201
    public function getClearingBankcountry()
202
    {
203
        return $this->clearing_bankcountry;
204
    }
205
206
    /**
207
     * @param string $clearing_bankiban
208
     */
209
    public function setClearingBankiban($clearing_bankiban)
210
    {
211
        $this->clearing_bankiban = $clearing_bankiban;
212
    }
213
214
    /**
215
     * @return string
216
     */
217
    public function getClearingBankiban()
218
    {
219
        return $this->clearing_bankiban;
220
    }
221
222
    /**
223
     * @param string $clearing_bankname
224
     */
225
    public function setClearingBankname($clearing_bankname)
226
    {
227
        $this->clearing_bankname = $clearing_bankname;
228
    }
229
230
    /**
231
     * @return string
232
     */
233
    public function getClearingBankname()
234
    {
235
        return $this->clearing_bankname;
236
    }
237
238
    /**
239
     * @param string $settleaccount
240
     */
241
    public function setSettleaccount($settleaccount)
242
    {
243
        $this->settleaccount = $settleaccount;
244
    }
245
246
    /**
247
     * @return string
248
     */
249
    public function getSettleaccount()
250
    {
251
        return $this->settleaccount;
252
    }
253
254
    /**
255
     * @param int $txid
256
     */
257
    public function setTxid($txid)
258
    {
259
        $this->txid = $txid;
260
    }
261
262
    /**
263
     * @return int
264
     */
265
    public function getTxid()
266
    {
267
        return $this->txid;
268
    }
269
270
    /**
271
     * @param string $clearing_duedate
272
     */
273
    public function setClearingDuedate($clearing_duedate)
274
    {
275
        $this->clearing_duedate = $clearing_duedate;
276
    }
277
278
    /**
279
     * @return string
280
     */
281
    public function getClearingDuedate()
282
    {
283
        return $this->clearing_duedate;
284
    }
285
286
    /**
287
     * @param string $clearing_instructionnote
288
     */
289
    public function setClearingInstructionnote($clearing_instructionnote)
290
    {
291
        $this->clearing_instructionnote = $clearing_instructionnote;
292
    }
293
294
    /**
295
     * @return string
296
     */
297
    public function getClearingInstructionnote()
298
    {
299
        return $this->clearing_instructionnote;
300
    }
301
302
    /**
303
     * @param string $clearing_legalnote
304
     */
305
    public function setClearingLegalnote($clearing_legalnote)
306
    {
307
        $this->clearing_legalnote = $clearing_legalnote;
308
    }
309
310
    /**
311
     * @return string
312
     */
313
    public function getClearingLegalnote()
314
    {
315
        return $this->clearing_legalnote;
316
    }
317
318
    /**
319
     * @param string $clearing_reference
320
     */
321
    public function setClearingReference($clearing_reference)
322
    {
323
        $this->clearing_reference = $clearing_reference;
324
    }
325
326
    /**
327
     * @return string
328
     */
329
    public function getClearingReference()
330
    {
331
        return $this->clearing_reference;
332
    }
333
334
    /**
335
     * @param string $mandateIdentification
336
     */
337
    public function setMandateIdentification($mandateIdentification)
338
    {
339
        $this->mandate_identification = $mandateIdentification;
340
    }
341
342
    /**
343
     * @return string
344
     */
345
    public function getMandateIdentification()
346
    {
347
        return $this->mandate_identification;
348
    }
349
350
    /**
351
     * @param string $creditorIdentifier
352
     */
353
    public function setCreditorIdentifier($creditorIdentifier)
354
    {
355
        $this->creditor_identifier = $creditorIdentifier;
356
    }
357
358
    /**
359
     * @return string
360
     */
361
    public function getCreditorIdentifier()
362
    {
363
        return $this->creditor_identifier;
364
    }
365
366
    /**
367
     * @param int $clearingDate
368
     */
369
    public function setClearingDate($clearingDate)
370
    {
371
        $this->clearing_date = $clearingDate;
372
    }
373
374
    /**
375
     * @return int
376
     */
377
    public function getClearingDate()
378
    {
379
        return $this->clearing_date;
380
    }
381
382
    /**
383
     * @param int $clearingAmount
384
     */
385
    public function setClearingAmount($clearingAmount)
386
    {
387
        $this->clearing_amount = $clearingAmount;
388
    }
389
390
    /**
391
     * @return int
392
     */
393
    public function getClearingAmount()
394
    {
395
        return $this->clearing_amount;
396
    }
397
    
398
    public function getAddPaydataClearingReference() 
399
    {
400
        return $this->paydata_clearing_reference;
401
    }
402
403
    public function setAddPaydataClearingReference($sClearingReference) 
404
    {
405
        $this->paydata_clearing_reference = $sClearingReference;
406
    }
407
    
408
}
409