getClearingBankbic()   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 0
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
abstract class Payone_Api_Response_Authorization_Abstract
34
    extends Payone_Api_Response_Abstract
35
{
36
    /**
37
     * @var int
38
     */
39
    protected $txid = NULL;
40
    /**
41
     * @var int
42
     */
43
    protected $userid = NULL;
44
    /**
45
     * @var string
46
     */
47
    protected $protect_result_avs = NULL;
48
    /**
49
     * @var string
50
     */
51
    protected $clearing_bankaccountholder = NULL;
52
    /**
53
     * @var string
54
     */
55
    protected $clearing_bankcountry = NULL;
56
    /**
57
     * @var string
58
     */
59
    protected $clearing_bankaccount = NULL;
60
    /**
61
     * @var string
62
     */
63
    protected $clearing_bankcode = NULL;
64
    /**
65
     * @var string
66
     */
67
    protected $clearing_bankiban = NULL;
68
    /**
69
     * @var string
70
     */
71
    protected $clearing_bankbic = NULL;
72
    /**
73
     * @var string
74
     */
75
    protected $clearing_bankcity = NULL;
76
    /**
77
     * @var string
78
     */
79
    protected $clearing_bankname = NULL;
80
81
    /**
82
     * @var string
83
     */
84
    protected $mandate_identification = NULL;
85
    
86
    /**
87
     * @var string
88
     */
89
    protected $paydata_content_encoding = NULL;
90
    
91
    /**
92
     * @var string
93
     */
94
    protected $paydata_instruction_notes = NULL;
95
    
96
    /**
97
     * @var string
98
     */
99
    protected $paydata_content_format = NULL;
100
101
    /**
102
     * @var string
103
     */
104
    protected $clearing_instructionnote = NULL;
105
    
106
    /**
107
     * @var string
108
     */
109
    protected $clearing_reference = NULL;
110
    
111
    /**
112
     * @var string
113
     */
114
    protected $clearing_legalnote = NULL;
115
    
116
    /**
117
     * @var string
118
     */
119
    protected $clearing_duedate = NULL;
120
    
121
    protected $paydata_clearing_reference = NULL;
122
123
    /**
124
     * @param string $clearing_bankaccount
125
     */
126
    public function setClearingBankaccount($clearing_bankaccount)
127
    {
128
        $this->clearing_bankaccount = $clearing_bankaccount;
129
    }
130
131
    /**
132
     * @return string
133
     */
134
    public function getClearingBankaccount()
135
    {
136
        return $this->clearing_bankaccount;
137
    }
138
139
    /**
140
     * @param string $clearing_bankaccountholder
141
     */
142
    public function setClearingBankaccountholder($clearing_bankaccountholder)
143
    {
144
        $this->clearing_bankaccountholder = $clearing_bankaccountholder;
145
    }
146
147
    /**
148
     * @return string
149
     */
150
    public function getClearingBankaccountholder()
151
    {
152
        return $this->clearing_bankaccountholder;
153
    }
154
155
    /**
156
     * @param string $clearing_bankbic
157
     */
158
    public function setClearingBankbic($clearing_bankbic)
159
    {
160
        $this->clearing_bankbic = $clearing_bankbic;
161
    }
162
163
    /**
164
     * @return string
165
     */
166
    public function getClearingBankbic()
167
    {
168
        return $this->clearing_bankbic;
169
    }
170
171
    /**
172
     * @param string $clearing_bankcity
173
     */
174
    public function setClearingBankcity($clearing_bankcity)
175
    {
176
        $this->clearing_bankcity = $clearing_bankcity;
177
    }
178
179
    /**
180
     * @return string
181
     */
182
    public function getClearingBankcity()
183
    {
184
        return $this->clearing_bankcity;
185
    }
186
187
    /**
188
     * @param string $clearing_bankcode
189
     */
190
    public function setClearingBankcode($clearing_bankcode)
191
    {
192
        $this->clearing_bankcode = $clearing_bankcode;
193
    }
194
195
    /**
196
     * @return string
197
     */
198
    public function getClearingBankcode()
199
    {
200
        return $this->clearing_bankcode;
201
    }
202
203
    /**
204
     * @param string $clearing_bankcountry
205
     */
206
    public function setClearingBankcountry($clearing_bankcountry)
207
    {
208
        $this->clearing_bankcountry = $clearing_bankcountry;
209
    }
210
211
    /**
212
     * @return string
213
     */
214
    public function getClearingBankcountry()
215
    {
216
        return $this->clearing_bankcountry;
217
    }
218
219
    /**
220
     * @param string $clearing_bankiban
221
     */
222
    public function setClearingBankiban($clearing_bankiban)
223
    {
224
        $this->clearing_bankiban = $clearing_bankiban;
225
    }
226
227
    /**
228
     * @return string
229
     */
230
    public function getClearingBankiban()
231
    {
232
        return $this->clearing_bankiban;
233
    }
234
235
    /**
236
     * @param string $clearing_bankname
237
     */
238
    public function setClearingBankname($clearing_bankname)
239
    {
240
        $this->clearing_bankname = $clearing_bankname;
241
    }
242
243
    /**
244
     * @return string
245
     */
246
    public function getClearingBankname()
247
    {
248
        return $this->clearing_bankname;
249
    }
250
251
    /**
252
     * @param string $protect_result_avs
253
     */
254
    public function setProtectResultAvs($protect_result_avs)
255
    {
256
        $this->protect_result_avs = $protect_result_avs;
257
    }
258
259
    /**
260
     * @return string
261
     */
262
    public function getProtectResultAvs()
263
    {
264
        return $this->protect_result_avs;
265
    }
266
267
    /**
268
     * @param int $txid
269
     */
270
    public function setTxid($txid)
271
    {
272
        $this->txid = $txid;
273
    }
274
275
    /**
276
     * @return int
277
     */
278
    public function getTxid()
279
    {
280
        return $this->txid;
281
    }
282
283
    /**
284
     * @param int $userid
285
     */
286
    public function setUserid($userid)
287
    {
288
        $this->userid = $userid;
289
    }
290
291
    /**
292
     * @return int
293
     */
294
    public function getUserid()
295
    {
296
        return $this->userid;
297
    }
298
299
    /**
300
     * @param string $mandateIdentification
301
     */
302
    public function setMandateIdentification($mandateIdentification)
303
    {
304
        $this->mandate_identification = $mandateIdentification;
305
    }
306
307
    /**
308
     * @return string
309
     */
310
    public function getMandateIdentification()
311
    {
312
        return $this->mandate_identification;
313
    }
314
    
315
    /**
316
     * @param string $sContentEncoding
317
     */
318
    public function setAddPaydataContentEncoding($sContentEncoding) 
319
    {
320
        $this->paydata_content_encoding = $sContentEncoding;
321
    }
322
323
    /**
324
     * @return string
325
     */
326
    public function getAddPaydataContentEncoding() 
327
    {
328
        return $this->paydata_content_encoding;
329
    }
330
    
331
    /**
332
     * @param string $sInstructionNotes
333
     */
334
    public function setAddPaydataInstructionNotes($sInstructionNotes) 
335
    {
336
        $this->paydata_instruction_notes = $sInstructionNotes;
337
    }
338
339
    /**
340
     * @return string
341
     */
342
    public function getAddPaydataInstructionNotes() 
343
    {
344
        return $this->paydata_instruction_notes;
345
    }
346
    
347
    /**
348
     * @param string $sContentFormat
349
     */
350
    public function setAddPaydataContentFormat($sContentFormat) 
351
    {
352
        $this->paydata_content_format = $sContentFormat;
353
    }
354
355
    /**
356
     * @return string
357
     */
358
    public function getAddPaydataContentFormat() 
359
    {
360
        return $this->paydata_content_format;
361
    }
362
    
363
    /**
364
     * @param string $clearing_instructionnote
365
     */
366
    public function setClearingInstructionnote($clearing_instructionnote)
367
    {
368
        $this->clearing_instructionnote = $clearing_instructionnote;
369
    }
370
    
371
    /**
372
     * @return string
373
     */
374
    public function getClearingInstructionnote()
375
    {
376
        return $this->clearing_instructionnote;
377
    }
378
    
379
    /**
380
     * @param string $clearing_reference
381
     */
382
    public function setClearingReference($clearing_reference)
383
    {
384
        $this->clearing_reference = $clearing_reference;
385
    }
386
    
387
    /**
388
     * @return string
389
     */
390
    public function getClearingReference()
391
    {
392
        return $this->clearing_reference;
393
    }
394
    
395
    /**
396
     * @param string $clearing_legalnote
397
     */
398
    public function setClearingLegalnote($clearing_legalnote)
399
    {
400
        $this->clearing_legalnote = $clearing_legalnote;
401
    }
402
    
403
    /**
404
     * @return string
405
     */
406
    public function getClearingLegalnote()
407
    {
408
        return $this->clearing_legalnote;
409
    }
410
    
411
    /**
412
     * @param string $clearing_duedate
413
     */
414
    public function setClearingDuedate($clearing_duedate)
415
    {
416
        $this->clearing_duedate = $clearing_duedate;
417
    }
418
    
419
    /**
420
     * @return string
421
     */
422
    public function getClearingDuedate()
423
    {
424
        return $this->clearing_duedate;
425
    }
426
    
427
    public function getAddPaydataClearingReference() 
428
    {
429
        return $this->paydata_clearing_reference;
430
    }
431
432
    public function setAddPaydataClearingReference($sClearingReference) 
433
    {
434
        $this->paydata_clearing_reference = $sClearingReference;
435
    }
436
437
}
438