1 | <?php |
||
19 | class UserLegal extends UserBase |
||
20 | { |
||
21 | private $legalPersonType = MangoPayConstants::LEGAL_PERSON_TYPE_BUSINESS; |
||
22 | |||
23 | private $name; |
||
24 | |||
25 | private $headquartersAddress; |
||
26 | |||
27 | private $legalRepresentativeFirstName; |
||
28 | |||
29 | private $legalRepresentativeLastName; |
||
30 | |||
31 | private $legalRepresentativeAddress; |
||
32 | |||
33 | private $legalRepresentativeEmail; |
||
34 | |||
35 | private $legalRepresentativeBirthday; |
||
36 | |||
37 | private $legalRepresentativeNationality; |
||
38 | |||
39 | private $legalRepresentativeCountryOfResidence; |
||
40 | |||
41 | private $proofOfIdentity; |
||
42 | |||
43 | private $statute; |
||
44 | |||
45 | private $proofOfRegistration; |
||
46 | |||
47 | private $shareholderDeclaration; |
||
48 | |||
49 | public function __construct() |
||
53 | |||
54 | /** |
||
55 | * @return string |
||
56 | */ |
||
57 | public function getLegalPersonType(): string |
||
61 | |||
62 | /** |
||
63 | * @param string $legalPersonType |
||
64 | */ |
||
65 | public function setLegalPersonType(string $legalPersonType) |
||
69 | |||
70 | /** |
||
71 | * @return mixed |
||
72 | */ |
||
73 | public function getName() |
||
77 | |||
78 | /** |
||
79 | * @param mixed $name |
||
80 | */ |
||
81 | public function setName($name) |
||
85 | |||
86 | /** |
||
87 | * @return mixed |
||
88 | */ |
||
89 | public function getHeadquartersAddress() |
||
93 | |||
94 | /** |
||
95 | * @param mixed $headquartersAddress |
||
96 | */ |
||
97 | public function setHeadquartersAddress($headquartersAddress) |
||
101 | |||
102 | /** |
||
103 | * @return mixed |
||
104 | */ |
||
105 | public function getLegalRepresentativeFirstName() |
||
109 | |||
110 | /** |
||
111 | * @param mixed $legalRepresentativeFirstName |
||
112 | */ |
||
113 | public function setLegalRepresentativeFirstName($legalRepresentativeFirstName) |
||
117 | |||
118 | /** |
||
119 | * @return mixed |
||
120 | */ |
||
121 | public function getLegalRepresentativeLastName() |
||
125 | |||
126 | /** |
||
127 | * @param mixed $legalRepresentativeLastName |
||
128 | */ |
||
129 | public function setLegalRepresentativeLastName($legalRepresentativeLastName) |
||
133 | |||
134 | /** |
||
135 | * @return mixed |
||
136 | */ |
||
137 | public function getLegalRepresentativeAddress() |
||
141 | |||
142 | /** |
||
143 | * @param mixed $legalRepresentativeAddress |
||
144 | */ |
||
145 | public function setLegalRepresentativeAddress($legalRepresentativeAddress) |
||
149 | |||
150 | /** |
||
151 | * @return mixed |
||
152 | */ |
||
153 | public function getLegalRepresentativeEmail() |
||
157 | |||
158 | /** |
||
159 | * @param mixed $legalRepresentativeEmail |
||
160 | */ |
||
161 | public function setLegalRepresentativeEmail($legalRepresentativeEmail) |
||
165 | |||
166 | /** |
||
167 | * @return mixed |
||
168 | */ |
||
169 | public function getLegalRepresentativeBirthday() |
||
173 | |||
174 | /** |
||
175 | * @param mixed $legalRepresentativeBirthday |
||
176 | */ |
||
177 | public function setLegalRepresentativeBirthday($legalRepresentativeBirthday) |
||
181 | |||
182 | /** |
||
183 | * @return mixed |
||
184 | */ |
||
185 | public function getLegalRepresentativeNationality() |
||
189 | |||
190 | /** |
||
191 | * @param mixed $legalRepresentativeNationality |
||
192 | */ |
||
193 | public function setLegalRepresentativeNationality($legalRepresentativeNationality) |
||
197 | |||
198 | /** |
||
199 | * @return mixed |
||
200 | */ |
||
201 | public function getLegalRepresentativeCountryOfResidence() |
||
205 | |||
206 | /** |
||
207 | * @param mixed $legalRepresentativeCountryOfResidence |
||
208 | */ |
||
209 | public function setLegalRepresentativeCountryOfResidence($legalRepresentativeCountryOfResidence) |
||
213 | |||
214 | /** |
||
215 | * @return mixed |
||
216 | */ |
||
217 | public function getProofOfIdentity() |
||
221 | |||
222 | /** |
||
223 | * @param mixed $proofOfIdentity |
||
224 | */ |
||
225 | public function setProofOfIdentity($proofOfIdentity) |
||
229 | |||
230 | /** |
||
231 | * @return mixed |
||
232 | */ |
||
233 | public function getStatute() |
||
237 | |||
238 | /** |
||
239 | * @param mixed $statute |
||
240 | */ |
||
241 | public function setStatute($statute) |
||
245 | |||
246 | /** |
||
247 | * @return mixed |
||
248 | */ |
||
249 | public function getProofOfRegistration() |
||
253 | |||
254 | /** |
||
255 | * @param mixed $proofOfRegistration |
||
256 | */ |
||
257 | public function setProofOfRegistration($proofOfRegistration) |
||
261 | |||
262 | /** |
||
263 | * @return mixed |
||
264 | */ |
||
265 | public function getShareholderDeclaration() |
||
269 | |||
270 | /** |
||
271 | * @param mixed $shareholderDeclaration |
||
272 | */ |
||
273 | public function setShareholderDeclaration($shareholderDeclaration) |
||
277 | |||
278 | |||
279 | } |
||
280 |