getTruncatedcardpan()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
eloc 1
c 1
b 0
f 0
nc 1
nop 0
dl 0
loc 3
rs 10
1
<?php
2
3
/**
4
 * MIT License
5
 * Use of this software requires acceptance of the Evaluation License Agreement. See LICENSE file.
6
 */
7
8
namespace SprykerEco\Zed\Payone\Business\Api\Response\Container;
9
10
class CreditCardCheckResponseContainer extends AbstractResponseContainer
11
{
12
    /**
13
     * @var string
14
     */
15
    protected $pseudocardpan;
16
17
    /**
18
     * @var string
19
     */
20
    protected $truncatedcardpan;
21
22
    /**
23
     * @param string $truncatedcardpan
24
     *
25
     * @return void
26
     */
27
    public function setTruncatedcardpan($truncatedcardpan)
28
    {
29
        $this->truncatedcardpan = $truncatedcardpan;
30
    }
31
32
    /**
33
     * @return string
34
     */
35
    public function getTruncatedcardpan()
36
    {
37
        return $this->truncatedcardpan;
38
    }
39
40
    /**
41
     * @param string $pseudocardpan
42
     *
43
     * @return void
44
     */
45
    public function setPseudocardpan($pseudocardpan)
46
    {
47
        $this->pseudocardpan = $pseudocardpan;
48
    }
49
50
    /**
51
     * @return string
52
     */
53
    public function getPseudocardpan()
54
    {
55
        return $this->pseudocardpan;
56
    }
57
}
58