Completed
Push — master ( a6ebbf...2dbcd1 )
by
unknown
15s queued 12s
created

setInvoicing()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 4
c 0
b 0
f 0
rs 10
cc 1
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_Core to newer
12
 * versions in the future. If you wish to customize Payone_Core for your
13
 * needs please refer to http://www.payone.de for more information.
14
 *
15
 * @category        Payone
16
 * @package         Payone_Api
17
 * @subpackage      Request
18
 * @copyright       Copyright (c) 2019 <[email protected]> - www.fatchip.de
19
 * @author          FATCHIP GmbH <[email protected]>
20
 * @license         <http://www.gnu.org/licenses/> GNU General Public License (GPL 3)
21
 * @link            http://www.fatchip.de
22
 */
23
class Payone_Api_Request_PaydirektExpressSetCheckout
24
    extends Payone_Api_Request_Genericpayment
25
{
26
    /** @var Payone_Api_Request_Parameter_Invoicing_Transaction */
27
    protected $invoicing = null;
28
    /** @var string */
29
    protected $wallettype;
30
31
    /**
32
     * @param array $data
33
     */
34
    public function __construct(array $data = array())
35
    {
36
        parent::__construct($data);
37
    }
38
39
    /**
40
     * @param string $wallettype
41
     */
42
    public function setWallettype($wallettype)
43
    {
44
        $this->wallettype = $wallettype;
45
    }
46
47
    /**
48
     * @return string
49
     */
50
    public function getWallettype()
51
    {
52
        return $this->wallettype;
53
    }
54
55
    /**
56
     * @param Payone_Api_Request_Parameter_Invoicing_Transaction $invoicing
57
     */
58
    public function setInvoicing($invoicing)
59
    {
60
        $this->invoicing = $invoicing;
61
    }
62
63
    /**
64
     * @return Payone_Api_Request_Parameter_Invoicing_Transaction
65
     */
66
    public function getInvoicing()
67
    {
68
        return $this->invoicing;
69
    }
70
}
71