Completed
Push — master ( 4851e9...211214 )
by
unknown
55:58 queued 26:00
created

getIncludeIssuerInfo()   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
0 ignored issues
show
Coding Style introduced by
File has mixed line endings; this may cause incorrect results
Loading history...
2
3
namespace net\authorize\api\contract\v1;
4
5
/**
6
 * Class representing GetCustomerPaymentProfileRequest
7
 */
8
class GetCustomerPaymentProfileRequest extends ANetApiRequestType
9
{
10
11
    /**
12
     * @property string $customerProfileId
13
     */
14
    private $customerProfileId = null;
15
16
    /**
17
     * @property string $customerPaymentProfileId
18
     */
19
    private $customerPaymentProfileId = null;
20
21
    /**
22
     * @property boolean $unmaskExpirationDate
23
     */
24
    private $unmaskExpirationDate = null;
25
26
    /**
27
     * @property boolean $includeIssuerInfo
28
     */
29
    private $includeIssuerInfo = null;
30
31
    /**
32
     * Gets as customerProfileId
33
     *
34
     * @return string
35
     */
36
    public function getCustomerProfileId()
37
    {
38
        return $this->customerProfileId;
39
    }
40
41
    /**
42
     * Sets a new customerProfileId
43
     *
44
     * @param string $customerProfileId
45
     * @return self
46
     */
47
    public function setCustomerProfileId($customerProfileId)
48
    {
49
        $this->customerProfileId = $customerProfileId;
50
        return $this;
51
    }
52
53
    /**
54
     * Gets as customerPaymentProfileId
55
     *
56
     * @return string
57
     */
58
    public function getCustomerPaymentProfileId()
59
    {
60
        return $this->customerPaymentProfileId;
61
    }
62
63
    /**
64
     * Sets a new customerPaymentProfileId
65
     *
66
     * @param string $customerPaymentProfileId
67
     * @return self
68
     */
69
    public function setCustomerPaymentProfileId($customerPaymentProfileId)
70
    {
71
        $this->customerPaymentProfileId = $customerPaymentProfileId;
72
        return $this;
73
    }
74
75
    /**
76
     * Gets as unmaskExpirationDate
77
     *
78
     * @return boolean
79
     */
80
    public function getUnmaskExpirationDate()
81
    {
82
        return $this->unmaskExpirationDate;
83
    }
84
85
    /**
86
     * Sets a new unmaskExpirationDate
87
     *
88
     * @param boolean $unmaskExpirationDate
89
     * @return self
90
     */
91
    public function setUnmaskExpirationDate($unmaskExpirationDate)
92
    {
93
        $this->unmaskExpirationDate = $unmaskExpirationDate;
94
        return $this;
95
    }
96
97
    /**
98
     * Gets as includeIssuerInfo
99
     *
100
     * @return boolean
101
     */
102
    public function getIncludeIssuerInfo()
103
    {
104
        return $this->includeIssuerInfo;
105
    }
106
107
    /**
108
     * Sets a new includeIssuerInfo
109
     *
110
     * @param boolean $includeIssuerInfo
111
     * @return self
112
     */
113
    public function setIncludeIssuerInfo($includeIssuerInfo)
114
    {
115
        $this->includeIssuerInfo = $includeIssuerInfo;
116
        return $this;
117
    }
118
119
120
}
121
122