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 | * Gets as customerProfileId |
||
33 | * |
||
34 | * @return string |
||
35 | */ |
||
36 | public function getCustomerProfileId() |
||
40 | |||
41 | /** |
||
42 | * Sets a new customerProfileId |
||
43 | * |
||
44 | * @param string $customerProfileId |
||
45 | * @return self |
||
46 | */ |
||
47 | public function setCustomerProfileId($customerProfileId) |
||
52 | |||
53 | /** |
||
54 | * Gets as merchantCustomerId |
||
55 | * |
||
56 | * @return string |
||
57 | */ |
||
58 | public function getMerchantCustomerId() |
||
62 | |||
63 | /** |
||
64 | * Sets a new merchantCustomerId |
||
65 | * |
||
66 | * @param string $merchantCustomerId |
||
67 | * @return self |
||
68 | */ |
||
69 | public function setMerchantCustomerId($merchantCustomerId) |
||
74 | |||
75 | /** |
||
76 | * Gets as email |
||
77 | * |
||
78 | * @return string |
||
79 | */ |
||
80 | public function getEmail() |
||
84 | |||
85 | /** |
||
86 | * Sets a new email |
||
87 | * |
||
88 | * @param string $email |
||
89 | * @return self |
||
90 | */ |
||
91 | public function setEmail($email) |
||
96 | |||
97 | /** |
||
98 | * Gets as unmaskExpirationDate |
||
99 | * |
||
100 | * @return boolean |
||
101 | */ |
||
102 | public function getUnmaskExpirationDate() |
||
106 | |||
107 | /** |
||
108 | * Sets a new unmaskExpirationDate |
||
109 | * |
||
110 | * @param boolean $unmaskExpirationDate |
||
111 | * @return self |
||
112 | */ |
||
113 | public function setUnmaskExpirationDate($unmaskExpirationDate) |
||
118 | |||
119 | |||
120 | } |
||
121 | |||
122 |