Completed
Push — master ( 411f8a...256948 )
by Florian
03:34
created

getAddPaydataReservationTxid()   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
 *
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
0 ignored issues
show
Coding Style Compatibility introduced by
PSR1 recommends that each class must be in a namespace of at least one level to avoid collisions.

You can fix this by adding a namespace to your class:

namespace YourVendor;

class YourClass { }

When choosing a vendor namespace, try to pick something that is not too generic to avoid conflicts with other libraries.

Loading history...
34
    extends Payone_Api_Response_Abstract
0 ignored issues
show
Coding Style introduced by
The extends keyword must be on the same line as the class name
Loading history...
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
     * @var string
82
     */
83
    protected $mandate_identification = NULL;
84
    /**
85
     * @var string
86
     */
87
    protected $paydata_content_encoding = NULL;
88
    /**
89
     * @var string
90
     */
91
    protected $paydata_instruction_notes = NULL;
92
    /**
93
     * @var string
94
     */
95
    protected $paydata_content_format = NULL;
96
    /**
97
     * @var string
98
     */
99
    protected $clearing_instructionnote = NULL;
100
    /**
101
     * @var string
102
     */
103
    protected $clearing_reference = NULL;
104
    /**
105
     * @var string
106
     */
107
    protected $clearing_legalnote = NULL;
108
    /**
109
     * @var string
110
     */
111
    protected $clearing_duedate = NULL;
112
    /**
113
     * @var string
114
     */
115
    protected $paydata_clearing_reference = NULL;
116
    /**
117
     * @var string
118
     */
119
    protected $paydata_workorderid = NULL;
120
    /**
121
     * @var string
122
     */
123
    protected $paydata_reservation_txid = NULL;
124
125
    /**
126
     * @param string $clearing_bankaccount
127
     */
128
    public function setClearingBankaccount($clearing_bankaccount)
129
    {
130
        $this->clearing_bankaccount = $clearing_bankaccount;
131
    }
132
133
    /**
134
     * @return string
135
     */
136
    public function getClearingBankaccount()
137
    {
138
        return $this->clearing_bankaccount;
139
    }
140
141
    /**
142
     * @param string $clearing_bankaccountholder
143
     */
144
    public function setClearingBankaccountholder($clearing_bankaccountholder)
145
    {
146
        $this->clearing_bankaccountholder = $clearing_bankaccountholder;
147
    }
148
149
    /**
150
     * @return string
151
     */
152
    public function getClearingBankaccountholder()
153
    {
154
        return $this->clearing_bankaccountholder;
155
    }
156
157
    /**
158
     * @param string $clearing_bankbic
159
     */
160
    public function setClearingBankbic($clearing_bankbic)
161
    {
162
        $this->clearing_bankbic = $clearing_bankbic;
163
    }
164
165
    /**
166
     * @return string
167
     */
168
    public function getClearingBankbic()
169
    {
170
        return $this->clearing_bankbic;
171
    }
172
173
    /**
174
     * @param string $clearing_bankcity
175
     */
176
    public function setClearingBankcity($clearing_bankcity)
177
    {
178
        $this->clearing_bankcity = $clearing_bankcity;
179
    }
180
181
    /**
182
     * @return string
183
     */
184
    public function getClearingBankcity()
185
    {
186
        return $this->clearing_bankcity;
187
    }
188
189
    /**
190
     * @param string $clearing_bankcode
191
     */
192
    public function setClearingBankcode($clearing_bankcode)
193
    {
194
        $this->clearing_bankcode = $clearing_bankcode;
195
    }
196
197
    /**
198
     * @return string
199
     */
200
    public function getClearingBankcode()
201
    {
202
        return $this->clearing_bankcode;
203
    }
204
205
    /**
206
     * @param string $clearing_bankcountry
207
     */
208
    public function setClearingBankcountry($clearing_bankcountry)
209
    {
210
        $this->clearing_bankcountry = $clearing_bankcountry;
211
    }
212
213
    /**
214
     * @return string
215
     */
216
    public function getClearingBankcountry()
217
    {
218
        return $this->clearing_bankcountry;
219
    }
220
221
    /**
222
     * @param string $clearing_bankiban
223
     */
224
    public function setClearingBankiban($clearing_bankiban)
225
    {
226
        $this->clearing_bankiban = $clearing_bankiban;
227
    }
228
229
    /**
230
     * @return string
231
     */
232
    public function getClearingBankiban()
233
    {
234
        return $this->clearing_bankiban;
235
    }
236
237
    /**
238
     * @param string $clearing_bankname
239
     */
240
    public function setClearingBankname($clearing_bankname)
241
    {
242
        $this->clearing_bankname = $clearing_bankname;
243
    }
244
245
    /**
246
     * @return string
247
     */
248
    public function getClearingBankname()
249
    {
250
        return $this->clearing_bankname;
251
    }
252
253
    /**
254
     * @param string $protect_result_avs
255
     */
256
    public function setProtectResultAvs($protect_result_avs)
257
    {
258
        $this->protect_result_avs = $protect_result_avs;
259
    }
260
261
    /**
262
     * @return string
263
     */
264
    public function getProtectResultAvs()
265
    {
266
        return $this->protect_result_avs;
267
    }
268
269
    /**
270
     * @param int $txid
271
     */
272
    public function setTxid($txid)
273
    {
274
        $this->txid = $txid;
275
    }
276
277
    /**
278
     * @return int
279
     */
280
    public function getTxid()
281
    {
282
        return $this->txid;
283
    }
284
285
    /**
286
     * @param int $userid
287
     */
288
    public function setUserid($userid)
289
    {
290
        $this->userid = $userid;
291
    }
292
293
    /**
294
     * @return int
295
     */
296
    public function getUserid()
297
    {
298
        return $this->userid;
299
    }
300
301
    /**
302
     * @param string $mandateIdentification
303
     */
304
    public function setMandateIdentification($mandateIdentification)
305
    {
306
        $this->mandate_identification = $mandateIdentification;
307
    }
308
309
    /**
310
     * @return string
311
     */
312
    public function getMandateIdentification()
313
    {
314
        return $this->mandate_identification;
315
    }
316
    
317
    /**
318
     * @param string $sContentEncoding
319
     */
320
    public function setAddPaydataContentEncoding($sContentEncoding) 
321
    {
322
        $this->paydata_content_encoding = $sContentEncoding;
323
    }
324
325
    /**
326
     * @return string
327
     */
328
    public function getAddPaydataContentEncoding() 
329
    {
330
        return $this->paydata_content_encoding;
331
    }
332
    
333
    /**
334
     * @param string $sInstructionNotes
335
     */
336
    public function setAddPaydataInstructionNotes($sInstructionNotes) 
337
    {
338
        $this->paydata_instruction_notes = $sInstructionNotes;
339
    }
340
341
    /**
342
     * @return string
343
     */
344
    public function getAddPaydataInstructionNotes() 
345
    {
346
        return $this->paydata_instruction_notes;
347
    }
348
    
349
    /**
350
     * @param string $sContentFormat
351
     */
352
    public function setAddPaydataContentFormat($sContentFormat) 
353
    {
354
        $this->paydata_content_format = $sContentFormat;
355
    }
356
357
    /**
358
     * @return string
359
     */
360
    public function getAddPaydataContentFormat() 
361
    {
362
        return $this->paydata_content_format;
363
    }
364
    
365
    /**
366
     * @param string $clearing_instructionnote
367
     */
368
    public function setClearingInstructionnote($clearing_instructionnote)
369
    {
370
        $this->clearing_instructionnote = $clearing_instructionnote;
371
    }
372
    
373
    /**
374
     * @return string
375
     */
376
    public function getClearingInstructionnote()
377
    {
378
        return $this->clearing_instructionnote;
379
    }
380
    
381
    /**
382
     * @param string $clearing_reference
383
     */
384
    public function setClearingReference($clearing_reference)
385
    {
386
        $this->clearing_reference = $clearing_reference;
387
    }
388
    
389
    /**
390
     * @return string
391
     */
392
    public function getClearingReference()
393
    {
394
        return $this->clearing_reference;
395
    }
396
    
397
    /**
398
     * @param string $clearing_legalnote
399
     */
400
    public function setClearingLegalnote($clearing_legalnote)
401
    {
402
        $this->clearing_legalnote = $clearing_legalnote;
403
    }
404
    
405
    /**
406
     * @return string
407
     */
408
    public function getClearingLegalnote()
409
    {
410
        return $this->clearing_legalnote;
411
    }
412
    
413
    /**
414
     * @param string $clearing_duedate
415
     */
416
    public function setClearingDuedate($clearing_duedate)
417
    {
418
        $this->clearing_duedate = $clearing_duedate;
419
    }
420
    
421
    /**
422
     * @return string
423
     */
424
    public function getClearingDuedate()
425
    {
426
        return $this->clearing_duedate;
427
    }
428
429
    /**
430
     * @return string
431
     */
432
    public function getAddPaydataClearingReference()
433
    {
434
        return $this->paydata_clearing_reference;
435
    }
436
437
    /**
438
     * @param $sClearingReference
439
     */
440
    public function setAddPaydataClearingReference($sClearingReference)
441
    {
442
        $this->paydata_clearing_reference = $sClearingReference;
443
    }
444
445
    /**
446
     * @return string
447
     */
448
    public function getAddPaydataWorkorderid()
449
    {
450
        return $this->paydata_workorderid;
451
    }
452
453
    /**
454
     * @param string $paydata_workorderid
455
     */
456
    public function setAddPaydataWorkorderid($paydata_workorderid)
457
    {
458
        $this->paydata_workorderid = $paydata_workorderid;
459
    }
460
461
    /**
462
     * @return string
463
     */
464
    public function getAddPaydataReservationTxid()
465
    {
466
        return $this->paydata_reservation_txid;
467
    }
468
469
    /**
470
     * @param string $paydata_reservation_txid
471
     */
472
    public function setAddPaydataReservationTxid($paydata_reservation_txid)
473
    {
474
        $this->paydata_reservation_txid = $paydata_reservation_txid;
475
    }
476
477
}
478