1 | <?php |
||
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() |
||
45 | |||
46 | /** |
||
47 | * Sets a new customerProfileId |
||
48 | * |
||
49 | * @param string $customerProfileId |
||
50 | * @return self |
||
51 | */ |
||
52 | public function setCustomerProfileId($customerProfileId) |
||
57 | |||
58 | /** |
||
59 | * Gets as merchantCustomerId |
||
60 | * |
||
61 | * @return string |
||
62 | */ |
||
63 | public function getMerchantCustomerId() |
||
67 | |||
68 | /** |
||
69 | * Sets a new merchantCustomerId |
||
70 | * |
||
71 | * @param string $merchantCustomerId |
||
72 | * @return self |
||
73 | */ |
||
74 | public function setMerchantCustomerId($merchantCustomerId) |
||
79 | |||
80 | /** |
||
81 | * Gets as email |
||
82 | * |
||
83 | * @return string |
||
84 | */ |
||
85 | public function getEmail() |
||
89 | |||
90 | /** |
||
91 | * Sets a new email |
||
92 | * |
||
93 | * @param string $email |
||
94 | * @return self |
||
95 | */ |
||
96 | public function setEmail($email) |
||
101 | |||
102 | /** |
||
103 | * Gets as unmaskExpirationDate |
||
104 | * |
||
105 | * @return boolean |
||
106 | */ |
||
107 | public function getUnmaskExpirationDate() |
||
111 | |||
112 | /** |
||
113 | * Sets a new unmaskExpirationDate |
||
114 | * |
||
115 | * @param boolean $unmaskExpirationDate |
||
116 | * @return self |
||
117 | */ |
||
118 | public function setUnmaskExpirationDate($unmaskExpirationDate) |
||
123 | |||
124 | /** |
||
125 | * Gets as includeIssuerInfo |
||
126 | * |
||
127 | * @return boolean |
||
128 | */ |
||
129 | public function getIncludeIssuerInfo() |
||
133 | |||
134 | /** |
||
135 | * Sets a new includeIssuerInfo |
||
136 | * |
||
137 | * @param boolean $includeIssuerInfo |
||
138 | * @return self |
||
139 | */ |
||
140 | public function setIncludeIssuerInfo($includeIssuerInfo) |
||
145 | |||
146 | |||
147 | } |
||
148 | |||
149 |