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

GetCustomerProfileRequest::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 GetCustomerProfileRequest
7
 */
8
class GetCustomerProfileRequest extends ANetApiRequestType
9
{
10
11
    /**
12
     * @property string $customerProfileId
13
     */
14
    private $customerProfileId = null;
15
16
    /**
17
     * @property string $merchantCustomerId
18
     */
19
    private $merchantCustomerId = null;
20
21
    /**
22
     * @property string $email
23
     */
24
    private $email = null;
25
26
    /**
27
     * @property boolean $unmaskExpirationDate
28
     */
29
    private $unmaskExpirationDate = null;
30
31
    /**
32
     * @property boolean $includeIssuerInfo
33
     */
34
    private $includeIssuerInfo = null;
35
36
    /**
37
     * Gets as customerProfileId
38
     *
39
     * @return string
40
     */
41
    public function getCustomerProfileId()
42
    {
43
        return $this->customerProfileId;
44
    }
45
46
    /**
47
     * Sets a new customerProfileId
48
     *
49
     * @param string $customerProfileId
50
     * @return self
51
     */
52
    public function setCustomerProfileId($customerProfileId)
53
    {
54
        $this->customerProfileId = $customerProfileId;
55
        return $this;
56
    }
57
58
    /**
59
     * Gets as merchantCustomerId
60
     *
61
     * @return string
62
     */
63
    public function getMerchantCustomerId()
64
    {
65
        return $this->merchantCustomerId;
66
    }
67
68
    /**
69
     * Sets a new merchantCustomerId
70
     *
71
     * @param string $merchantCustomerId
72
     * @return self
73
     */
74
    public function setMerchantCustomerId($merchantCustomerId)
75
    {
76
        $this->merchantCustomerId = $merchantCustomerId;
77
        return $this;
78
    }
79
80
    /**
81
     * Gets as email
82
     *
83
     * @return string
84
     */
85
    public function getEmail()
86
    {
87
        return $this->email;
88
    }
89
90
    /**
91
     * Sets a new email
92
     *
93
     * @param string $email
94
     * @return self
95
     */
96
    public function setEmail($email)
97
    {
98
        $this->email = $email;
99
        return $this;
100
    }
101
102
    /**
103
     * Gets as unmaskExpirationDate
104
     *
105
     * @return boolean
106
     */
107
    public function getUnmaskExpirationDate()
108
    {
109
        return $this->unmaskExpirationDate;
110
    }
111
112
    /**
113
     * Sets a new unmaskExpirationDate
114
     *
115
     * @param boolean $unmaskExpirationDate
116
     * @return self
117
     */
118
    public function setUnmaskExpirationDate($unmaskExpirationDate)
119
    {
120
        $this->unmaskExpirationDate = $unmaskExpirationDate;
121
        return $this;
122
    }
123
124
    /**
125
     * Gets as includeIssuerInfo
126
     *
127
     * @return boolean
128
     */
129
    public function getIncludeIssuerInfo()
130
    {
131
        return $this->includeIssuerInfo;
132
    }
133
134
    /**
135
     * Sets a new includeIssuerInfo
136
     *
137
     * @param boolean $includeIssuerInfo
138
     * @return self
139
     */
140
    public function setIncludeIssuerInfo($includeIssuerInfo)
141
    {
142
        $this->includeIssuerInfo = $includeIssuerInfo;
143
        return $this;
144
    }
145
146
147
}
148
149