1 | <?php |
||
7 | class PersonIdentification extends Identification |
||
8 | { |
||
9 | /** |
||
10 | * @var string|null |
||
11 | */ |
||
12 | private $driversLicenseNumber; |
||
13 | |||
14 | /** |
||
15 | * @var string|null |
||
16 | */ |
||
17 | private $customerNumber; |
||
18 | |||
19 | /** |
||
20 | * @var string|null |
||
21 | */ |
||
22 | private $socialSecurityNumber; |
||
23 | |||
24 | /** |
||
25 | * @var string|null |
||
26 | */ |
||
27 | private $alienRegistrationNumber; |
||
28 | |||
29 | /** |
||
30 | * @var string|null |
||
31 | */ |
||
32 | private $passportNumber; |
||
33 | |||
34 | /** |
||
35 | * @var string|null |
||
36 | */ |
||
37 | private $taxId; |
||
38 | |||
39 | /** |
||
40 | * @var string|null |
||
41 | */ |
||
42 | private $idCardNumber; |
||
43 | |||
44 | /** |
||
45 | * @var string|null |
||
46 | */ |
||
47 | private $employerId; |
||
48 | |||
49 | /** |
||
50 | * @var string|null |
||
51 | */ |
||
52 | private $issuer; |
||
53 | |||
54 | /** |
||
55 | * @var DateTimeImmutable|null |
||
56 | */ |
||
57 | private $birthDate; |
||
58 | |||
59 | /** |
||
60 | * @var string|null |
||
61 | */ |
||
62 | private $provinceOfBirth; |
||
63 | |||
64 | /** |
||
65 | * @var string|null |
||
66 | */ |
||
67 | private $cityOfBirth; |
||
68 | |||
69 | /** |
||
70 | * @var string|null |
||
71 | */ |
||
72 | private $countryOfBirth; |
||
73 | |||
74 | /** |
||
75 | * @var string|null |
||
76 | */ |
||
77 | private $otherIdentification; |
||
78 | |||
79 | /** |
||
80 | * @var string|null |
||
81 | */ |
||
82 | private $otherIdentificationType; |
||
83 | |||
84 | /** |
||
85 | * @var string|null |
||
86 | */ |
||
87 | private $otherIdentificationSchemeName; |
||
88 | |||
89 | /** |
||
90 | * @var string|null |
||
91 | */ |
||
92 | private $otherIdentificationIssuer; |
||
93 | |||
94 | /** |
||
95 | * @return string|null |
||
96 | */ |
||
97 | public function getDriversLicenseNumber() |
||
101 | |||
102 | /** |
||
103 | * @param string $driversLicenseNumber |
||
104 | */ |
||
105 | public function setDriversLicenseNumber($driversLicenseNumber) |
||
110 | |||
111 | /** |
||
112 | * @return string|null |
||
113 | */ |
||
114 | public function getCustomerNumber() |
||
118 | |||
119 | /** |
||
120 | * @param string $customerNumber |
||
121 | */ |
||
122 | public function setCustomerNumber($customerNumber) |
||
127 | |||
128 | /** |
||
129 | * @return string|null |
||
130 | */ |
||
131 | public function getSocialSecurityNumber() |
||
135 | |||
136 | /** |
||
137 | * @param string $socialSecurityNumber |
||
138 | */ |
||
139 | public function setSocialSecurityNumber($socialSecurityNumber) |
||
144 | |||
145 | /** |
||
146 | * @return string|null |
||
147 | */ |
||
148 | public function getAlienRegistrationNumber() |
||
152 | |||
153 | /** |
||
154 | * @param string $alienRegistrationNumber |
||
155 | */ |
||
156 | public function setAlienRegistrationNumber($alienRegistrationNumber) |
||
161 | |||
162 | /** |
||
163 | * @return string|null |
||
164 | */ |
||
165 | public function getPassportNumber() |
||
169 | |||
170 | /** |
||
171 | * @param string $passportNumber |
||
172 | */ |
||
173 | public function setPassportNumber($passportNumber) |
||
178 | |||
179 | /** |
||
180 | * @return string|null |
||
181 | */ |
||
182 | public function getTaxId() |
||
186 | |||
187 | /** |
||
188 | * @param string $taxId |
||
189 | */ |
||
190 | public function setTaxId($taxId) |
||
195 | |||
196 | /** |
||
197 | * @return string|null |
||
198 | */ |
||
199 | public function getIdCardNumber() |
||
203 | |||
204 | /** |
||
205 | * @param string $idCardNumber |
||
206 | */ |
||
207 | public function setIdCardNumber($idCardNumber) |
||
212 | |||
213 | /** |
||
214 | * @return string|null |
||
215 | */ |
||
216 | public function getEmployerId() |
||
220 | |||
221 | /** |
||
222 | * @param string $employerId |
||
223 | */ |
||
224 | public function setEmployerId($employerId) |
||
229 | |||
230 | /** |
||
231 | * @return string|null |
||
232 | */ |
||
233 | public function getIssuer() |
||
237 | |||
238 | /** |
||
239 | * @param string $issuer |
||
240 | */ |
||
241 | public function setIssuer($issuer) |
||
246 | |||
247 | /** |
||
248 | * @return DateTimeImmutable|null |
||
249 | */ |
||
250 | public function getBirthDate() |
||
254 | |||
255 | /** |
||
256 | * @param DateTimeImmutable $birthDate |
||
257 | */ |
||
258 | public function setBirthDate(DateTimeImmutable $birthDate) |
||
262 | |||
263 | /** |
||
264 | * @return string|null |
||
265 | */ |
||
266 | public function getProvinceOfBirth() |
||
270 | |||
271 | /** |
||
272 | * @param string $provinceOfBirth |
||
273 | */ |
||
274 | public function setProvinceOfBirth($provinceOfBirth) |
||
278 | |||
279 | /** |
||
280 | * @return string|null |
||
281 | */ |
||
282 | public function getCityOfBirth() |
||
286 | |||
287 | /** |
||
288 | * @param string $cityOfBirth |
||
289 | */ |
||
290 | public function setCityOfBirth($cityOfBirth) |
||
294 | |||
295 | /** |
||
296 | * @return string|null |
||
297 | */ |
||
298 | public function getCountryOfBirth() |
||
302 | |||
303 | /** |
||
304 | * @param string $countryOfBirth |
||
305 | */ |
||
306 | public function setCountryOfBirth($countryOfBirth) |
||
310 | |||
311 | /** |
||
312 | * @return string|null |
||
313 | */ |
||
314 | public function getOtherIdentification() |
||
318 | |||
319 | /** |
||
320 | * @param string $otherIdentification |
||
321 | */ |
||
322 | public function setOtherIdentification($otherIdentification) |
||
327 | |||
328 | /** |
||
329 | * @return string|null |
||
330 | */ |
||
331 | public function getOtherIdentificationType() |
||
335 | |||
336 | /** |
||
337 | * @param string $otherIdentificationType |
||
338 | */ |
||
339 | public function setOtherIdentificationType($otherIdentificationType) |
||
343 | |||
344 | /** |
||
345 | * @return string|null |
||
346 | */ |
||
347 | public function getOtherIdentificationSchemeName() |
||
351 | |||
352 | /** |
||
353 | * @param string $otherIdentificationSchemeName |
||
354 | */ |
||
355 | public function setOtherIdentificationSchemeName($otherIdentificationSchemeName) |
||
359 | |||
360 | /** |
||
361 | * @return string|null |
||
362 | */ |
||
363 | public function getOtherIdentificationIssuer() |
||
367 | |||
368 | /** |
||
369 | * @param string $otherIdentificationIssuer |
||
370 | */ |
||
371 | public function setOtherIdentificationIssuer($otherIdentificationIssuer) |
||
375 | } |
||
376 |