Total Complexity | 553 |
Total Lines | 5572 |
Duplicated Lines | 0 % |
Changes | 0 |
Complex classes like CarOptions often do a lot of different things. To break such a class down, we need to identify a cohesive component within that class. A common approach to find such a component is to look for fields/methods that share the same prefixes, or suffixes.
Once you have determined the fields that belong together, you can apply the Extract Class refactoring. If the component makes sense as a sub-class, Extract Subclass is also a candidate, and is often faster.
While breaking up the class, it is a good idea to analyze how other classes use CarOptions, and based on these observations, apply Extract Interface, too.
1 | <?php |
||
12 | class CarOptions extends AbstractStructBase |
||
13 | { |
||
14 | /** |
||
15 | * The car_id |
||
16 | * @var string |
||
17 | */ |
||
18 | public $car_id; |
||
19 | /** |
||
20 | * The merk |
||
21 | * @var string |
||
22 | */ |
||
23 | public $merk; |
||
24 | /** |
||
25 | * The serie |
||
26 | * @var string |
||
27 | */ |
||
28 | public $serie; |
||
29 | /** |
||
30 | * The serie_jaar_van |
||
31 | * @var int |
||
32 | */ |
||
33 | public $serie_jaar_van; |
||
34 | /** |
||
35 | * The serie_jaar_tot |
||
36 | * @var int |
||
37 | */ |
||
38 | public $serie_jaar_tot; |
||
39 | /** |
||
40 | * The model |
||
41 | * @var string |
||
42 | */ |
||
43 | public $model; |
||
44 | /** |
||
45 | * The model_maand_van |
||
46 | * @var int |
||
47 | */ |
||
48 | public $model_maand_van; |
||
49 | /** |
||
50 | * The model_jaar_van |
||
51 | * @var int |
||
52 | */ |
||
53 | public $model_jaar_van; |
||
54 | /** |
||
55 | * The model_maand_tot |
||
56 | * @var int |
||
57 | */ |
||
58 | public $model_maand_tot; |
||
59 | /** |
||
60 | * The model_jaar_tot |
||
61 | * @var int |
||
62 | */ |
||
63 | public $model_jaar_tot; |
||
64 | /** |
||
65 | * The belasting_min |
||
66 | * @var string |
||
67 | */ |
||
68 | public $belasting_min; |
||
69 | /** |
||
70 | * The belasting_max |
||
71 | * @var string |
||
72 | */ |
||
73 | public $belasting_max; |
||
74 | /** |
||
75 | * The algemene_garantie |
||
76 | * @var string |
||
77 | */ |
||
78 | public $algemene_garantie; |
||
79 | /** |
||
80 | * The algemene_garantie_km |
||
81 | * @var string |
||
82 | */ |
||
83 | public $algemene_garantie_km; |
||
84 | /** |
||
85 | * The carrosserie_garantie |
||
86 | * @var string |
||
87 | */ |
||
88 | public $carrosserie_garantie; |
||
89 | /** |
||
90 | * The deuren |
||
91 | * @var string |
||
92 | */ |
||
93 | public $deuren; |
||
94 | /** |
||
95 | * The carrosserietype |
||
96 | * @var string |
||
97 | */ |
||
98 | public $carrosserietype; |
||
99 | /** |
||
100 | * The aantal_versnellingen |
||
101 | * @var string |
||
102 | */ |
||
103 | public $aantal_versnellingen; |
||
104 | /** |
||
105 | * The soort_schakeling |
||
106 | * @var string |
||
107 | */ |
||
108 | public $soort_schakeling; |
||
109 | /** |
||
110 | * The aandrijving |
||
111 | * @var string |
||
112 | */ |
||
113 | public $aandrijving; |
||
114 | /** |
||
115 | * The brandstoftype |
||
116 | * @var string |
||
117 | */ |
||
118 | public $brandstoftype; |
||
119 | /** |
||
120 | * The aantal_cilinders |
||
121 | * @var string |
||
122 | */ |
||
123 | public $aantal_cilinders; |
||
124 | /** |
||
125 | * The bouwwijze |
||
126 | * @var string |
||
127 | */ |
||
128 | public $bouwwijze; |
||
129 | /** |
||
130 | * The kleppen_per_cilinder |
||
131 | * @var string |
||
132 | */ |
||
133 | public $kleppen_per_cilinder; |
||
134 | /** |
||
135 | * The cilinderinhoud |
||
136 | * @var string |
||
137 | */ |
||
138 | public $cilinderinhoud; |
||
139 | /** |
||
140 | * The boring |
||
141 | * @var string |
||
142 | */ |
||
143 | public $boring; |
||
144 | /** |
||
145 | * The slag |
||
146 | * @var string |
||
147 | */ |
||
148 | public $slag; |
||
149 | /** |
||
150 | * The compressieverhouding |
||
151 | * @var string |
||
152 | */ |
||
153 | public $compressieverhouding; |
||
154 | /** |
||
155 | * The vermogen_kw |
||
156 | * @var string |
||
157 | */ |
||
158 | public $vermogen_kw; |
||
159 | /** |
||
160 | * The vermogen_pk |
||
161 | * @var string |
||
162 | */ |
||
163 | public $vermogen_pk; |
||
164 | /** |
||
165 | * The vermogen_tpm |
||
166 | * @var string |
||
167 | */ |
||
168 | public $vermogen_tpm; |
||
169 | /** |
||
170 | * The koppel |
||
171 | * @var string |
||
172 | */ |
||
173 | public $koppel; |
||
174 | /** |
||
175 | * The koppel_tpm |
||
176 | * @var string |
||
177 | */ |
||
178 | public $koppel_tpm; |
||
179 | /** |
||
180 | * The katalysator |
||
181 | * @var string |
||
182 | */ |
||
183 | public $katalysator; |
||
184 | /** |
||
185 | * The brandstofsysteem |
||
186 | * @var string |
||
187 | */ |
||
188 | public $brandstofsysteem; |
||
189 | /** |
||
190 | * The klepbediening |
||
191 | * @var string |
||
192 | */ |
||
193 | public $klepbediening; |
||
194 | /** |
||
195 | * The turbo |
||
196 | * @var string |
||
197 | */ |
||
198 | public $turbo; |
||
199 | /** |
||
200 | * The wielophanging_voor |
||
201 | * @var string |
||
202 | */ |
||
203 | public $wielophanging_voor; |
||
204 | /** |
||
205 | * The wielophanging_achter |
||
206 | * @var string |
||
207 | */ |
||
208 | public $wielophanging_achter; |
||
209 | /** |
||
210 | * The vering_voor |
||
211 | * @var string |
||
212 | */ |
||
213 | public $vering_voor; |
||
214 | /** |
||
215 | * The vering_achter |
||
216 | * @var string |
||
217 | */ |
||
218 | public $vering_achter; |
||
219 | /** |
||
220 | * The stabilisator_voor |
||
221 | * @var string |
||
222 | */ |
||
223 | public $stabilisator_voor; |
||
224 | /** |
||
225 | * The stabilisator_achter |
||
226 | * @var string |
||
227 | */ |
||
228 | public $stabilisator_achter; |
||
229 | /** |
||
230 | * The remmen_voor |
||
231 | * @var string |
||
232 | */ |
||
233 | public $remmen_voor; |
||
234 | /** |
||
235 | * The remmen_voor_mm |
||
236 | * @var string |
||
237 | */ |
||
238 | public $remmen_voor_mm; |
||
239 | /** |
||
240 | * The remmen_achter |
||
241 | * @var string |
||
242 | */ |
||
243 | public $remmen_achter; |
||
244 | /** |
||
245 | * The remmen_achter_mm |
||
246 | * @var string |
||
247 | */ |
||
248 | public $remmen_achter_mm; |
||
249 | /** |
||
250 | * The cw_waarde |
||
251 | * @var string |
||
252 | */ |
||
253 | public $cw_waarde; |
||
254 | /** |
||
255 | * The lengte |
||
256 | * @var string |
||
257 | */ |
||
258 | public $lengte; |
||
259 | /** |
||
260 | * The breedte |
||
261 | * @var string |
||
262 | */ |
||
263 | public $breedte; |
||
264 | /** |
||
265 | * The hoogte |
||
266 | * @var string |
||
267 | */ |
||
268 | public $hoogte; |
||
269 | /** |
||
270 | * The wielbasis |
||
271 | * @var string |
||
272 | */ |
||
273 | public $wielbasis; |
||
274 | /** |
||
275 | * The spoorbreedte_voor |
||
276 | * @var string |
||
277 | */ |
||
278 | public $spoorbreedte_voor; |
||
279 | /** |
||
280 | * The spoorbreedte_achter |
||
281 | * @var string |
||
282 | */ |
||
283 | public $spoorbreedte_achter; |
||
284 | /** |
||
285 | * The draaicirkel |
||
286 | * @var string |
||
287 | */ |
||
288 | public $draaicirkel; |
||
289 | /** |
||
290 | * The bandenmaat_voor |
||
291 | * @var string |
||
292 | */ |
||
293 | public $bandenmaat_voor; |
||
294 | /** |
||
295 | * The bandenmaat_achter |
||
296 | * @var string |
||
297 | */ |
||
298 | public $bandenmaat_achter; |
||
299 | /** |
||
300 | * The massa |
||
301 | * @var string |
||
302 | */ |
||
303 | public $massa; |
||
304 | /** |
||
305 | * The max_toelaatbare_massa |
||
306 | * @var string |
||
307 | */ |
||
308 | public $max_toelaatbare_massa; |
||
309 | /** |
||
310 | * The max_aanhanger_geremd |
||
311 | * @var string |
||
312 | */ |
||
313 | public $max_aanhanger_geremd; |
||
314 | /** |
||
315 | * The max_aanhanger_ongeremd |
||
316 | * @var string |
||
317 | */ |
||
318 | public $max_aanhanger_ongeremd; |
||
319 | /** |
||
320 | * The max_kogeldruk |
||
321 | * @var string |
||
322 | */ |
||
323 | public $max_kogeldruk; |
||
324 | /** |
||
325 | * The max_dakbelasting |
||
326 | * @var string |
||
327 | */ |
||
328 | public $max_dakbelasting; |
||
329 | /** |
||
330 | * The koffer_min |
||
331 | * @var string |
||
332 | */ |
||
333 | public $koffer_min; |
||
334 | /** |
||
335 | * The koffer_max |
||
336 | * @var string |
||
337 | */ |
||
338 | public $koffer_max; |
||
339 | /** |
||
340 | * The tankinhoud |
||
341 | * @var string |
||
342 | */ |
||
343 | public $tankinhoud; |
||
344 | /** |
||
345 | * The topsnelheid |
||
346 | * @var string |
||
347 | */ |
||
348 | public $topsnelheid; |
||
349 | /** |
||
350 | * The acceleratie |
||
351 | * @var string |
||
352 | */ |
||
353 | public $acceleratie; |
||
354 | /** |
||
355 | * The verbruik_binnen_bebouwde_kom |
||
356 | * @var string |
||
357 | */ |
||
358 | public $verbruik_binnen_bebouwde_kom; |
||
359 | /** |
||
360 | * The verbruik_buiten_bebouwde_kom |
||
361 | * @var string |
||
362 | */ |
||
363 | public $verbruik_buiten_bebouwde_kom; |
||
364 | /** |
||
365 | * The verbruik_gecombineerd |
||
366 | * @var string |
||
367 | */ |
||
368 | public $verbruik_gecombineerd; |
||
369 | /** |
||
370 | * The co2_uitstoot |
||
371 | * @var string |
||
372 | */ |
||
373 | public $co2_uitstoot; |
||
374 | /** |
||
375 | * The verbruik_gemiddeld |
||
376 | * @var string |
||
377 | */ |
||
378 | public $verbruik_gemiddeld; |
||
379 | /** |
||
380 | * The abs |
||
381 | * @var \Webservices\StructType\CarOption |
||
382 | */ |
||
383 | public $abs; |
||
384 | /** |
||
385 | * The remkrachtverdeling |
||
386 | * @var \Webservices\StructType\CarOption |
||
387 | */ |
||
388 | public $remkrachtverdeling; |
||
389 | /** |
||
390 | * The brakeassist |
||
391 | * @var \Webservices\StructType\CarOption |
||
392 | */ |
||
393 | public $brakeassist; |
||
394 | /** |
||
395 | * The tractiecontrole |
||
396 | * @var \Webservices\StructType\CarOption |
||
397 | */ |
||
398 | public $tractiecontrole; |
||
399 | /** |
||
400 | * The sperdifferentieel |
||
401 | * @var \Webservices\StructType\CarOption |
||
402 | */ |
||
403 | public $sperdifferentieel; |
||
404 | /** |
||
405 | * The stabiliteitsregeling |
||
406 | * @var \Webservices\StructType\CarOption |
||
407 | */ |
||
408 | public $stabiliteitsregeling; |
||
409 | /** |
||
410 | * The regelbare_schokdemping |
||
411 | * @var \Webservices\StructType\CarOption |
||
412 | */ |
||
413 | public $regelbare_schokdemping; |
||
414 | /** |
||
415 | * The niveauregeling |
||
416 | * @var \Webservices\StructType\CarOption |
||
417 | */ |
||
418 | public $niveauregeling; |
||
419 | /** |
||
420 | * The airbag_bestuurder |
||
421 | * @var \Webservices\StructType\CarOption |
||
422 | */ |
||
423 | public $airbag_bestuurder; |
||
424 | /** |
||
425 | * The airbag_passagier |
||
426 | * @var \Webservices\StructType\CarOption |
||
427 | */ |
||
428 | public $airbag_passagier; |
||
429 | /** |
||
430 | * The airbag_opzijvoor |
||
431 | * @var \Webservices\StructType\CarOption |
||
432 | */ |
||
433 | public $airbag_opzijvoor; |
||
434 | /** |
||
435 | * The airbag_opzijachter |
||
436 | * @var \Webservices\StructType\CarOption |
||
437 | */ |
||
438 | public $airbag_opzijachter; |
||
439 | /** |
||
440 | * The airbag_hoofdvoor |
||
441 | * @var \Webservices\StructType\CarOption |
||
442 | */ |
||
443 | public $airbag_hoofdvoor; |
||
444 | /** |
||
445 | * The airbag_hoofdachter |
||
446 | * @var \Webservices\StructType\CarOption |
||
447 | */ |
||
448 | public $airbag_hoofdachter; |
||
449 | /** |
||
450 | * The gordelspanners |
||
451 | * @var \Webservices\StructType\CarOption |
||
452 | */ |
||
453 | public $gordelspanners; |
||
454 | /** |
||
455 | * The verstelbare_gordelhoogte |
||
456 | * @var \Webservices\StructType\CarOption |
||
457 | */ |
||
458 | public $verstelbare_gordelhoogte; |
||
459 | /** |
||
460 | * The startonderbreker |
||
461 | * @var \Webservices\StructType\CarOption |
||
462 | */ |
||
463 | public $startonderbreker; |
||
464 | /** |
||
465 | * The inbraakalarm |
||
466 | * @var \Webservices\StructType\CarOption |
||
467 | */ |
||
468 | public $inbraakalarm; |
||
469 | /** |
||
470 | * The centrale_deurvergrendeling |
||
471 | * @var \Webservices\StructType\CarOption |
||
472 | */ |
||
473 | public $centrale_deurvergrendeling; |
||
474 | /** |
||
475 | * The afstandbediening_deurvergrendeling |
||
476 | * @var \Webservices\StructType\CarOption |
||
477 | */ |
||
478 | public $afstandbediening_deurvergrendeling; |
||
479 | /** |
||
480 | * The automatische_vergrendeling |
||
481 | * @var \Webservices\StructType\CarOption |
||
482 | */ |
||
483 | public $automatische_vergrendeling; |
||
484 | /** |
||
485 | * The keyless_entry |
||
486 | * @var \Webservices\StructType\CarOption |
||
487 | */ |
||
488 | public $keyless_entry; |
||
489 | /** |
||
490 | * The elektrische_ramen_voor |
||
491 | * @var \Webservices\StructType\CarOption |
||
492 | */ |
||
493 | public $elektrische_ramen_voor; |
||
494 | /** |
||
495 | * The elektrische_ramen_achter |
||
496 | * @var \Webservices\StructType\CarOption |
||
497 | */ |
||
498 | public $elektrische_ramen_achter; |
||
499 | /** |
||
500 | * The stuurbekrachtiging |
||
501 | * @var \Webservices\StructType\CarOption |
||
502 | */ |
||
503 | public $stuurbekrachtiging; |
||
504 | /** |
||
505 | * The stuurschakeling |
||
506 | * @var \Webservices\StructType\CarOption |
||
507 | */ |
||
508 | public $stuurschakeling; |
||
509 | /** |
||
510 | * The cruise_control |
||
511 | * @var \Webservices\StructType\CarOption |
||
512 | */ |
||
513 | public $cruise_control; |
||
514 | /** |
||
515 | * The radar_cruise_control |
||
516 | * @var \Webservices\StructType\CarOption |
||
517 | */ |
||
518 | public $radar_cruise_control; |
||
519 | /** |
||
520 | * The airconditioning |
||
521 | * @var \Webservices\StructType\CarOption |
||
522 | */ |
||
523 | public $airconditioning; |
||
524 | /** |
||
525 | * The klimaatregeling |
||
526 | * @var \Webservices\StructType\CarOption |
||
527 | */ |
||
528 | public $klimaatregeling; |
||
529 | /** |
||
530 | * The gescheiden_temperatuurregeling |
||
531 | * @var \Webservices\StructType\CarOption |
||
532 | */ |
||
533 | public $gescheiden_temperatuurregeling; |
||
534 | /** |
||
535 | * The pollenfilter |
||
536 | * @var \Webservices\StructType\CarOption |
||
537 | */ |
||
538 | public $pollenfilter; |
||
539 | /** |
||
540 | * The parkeersensor |
||
541 | * @var \Webservices\StructType\CarOption |
||
542 | */ |
||
543 | public $parkeersensor; |
||
544 | /** |
||
545 | * The hoofdsteunen_voor |
||
546 | * @var \Webservices\StructType\CarOption |
||
547 | */ |
||
548 | public $hoofdsteunen_voor; |
||
549 | /** |
||
550 | * The hoofdsteunen_achter |
||
551 | * @var \Webservices\StructType\CarOption |
||
552 | */ |
||
553 | public $hoofdsteunen_achter; |
||
554 | /** |
||
555 | * The verstelbare_hoofdsteunen_achter |
||
556 | * @var \Webservices\StructType\CarOption |
||
557 | */ |
||
558 | public $verstelbare_hoofdsteunen_achter; |
||
559 | /** |
||
560 | * The derde_hoofdsteun_achter |
||
561 | * @var \Webservices\StructType\CarOption |
||
562 | */ |
||
563 | public $derde_hoofdsteun_achter; |
||
564 | /** |
||
565 | * The derde_driepuntsgordel_achter |
||
566 | * @var \Webservices\StructType\CarOption |
||
567 | */ |
||
568 | public $derde_driepuntsgordel_achter; |
||
569 | /** |
||
570 | * The verstelbare_lendensteun_bestuurder |
||
571 | * @var \Webservices\StructType\CarOption |
||
572 | */ |
||
573 | public $verstelbare_lendensteun_bestuurder; |
||
574 | /** |
||
575 | * The verstelbare_lendensteun_passagier |
||
576 | * @var \Webservices\StructType\CarOption |
||
577 | */ |
||
578 | public $verstelbare_lendensteun_passagier; |
||
579 | /** |
||
580 | * The hoogteverstelling_bestuurder |
||
581 | * @var \Webservices\StructType\CarOption |
||
582 | */ |
||
583 | public $hoogteverstelling_bestuurder; |
||
584 | /** |
||
585 | * The hoogteverstelling_passagier |
||
586 | * @var \Webservices\StructType\CarOption |
||
587 | */ |
||
588 | public $hoogteverstelling_passagier; |
||
589 | /** |
||
590 | * The elektrische_stoelverstelling |
||
591 | * @var \Webservices\StructType\CarOption |
||
592 | */ |
||
593 | public $elektrische_stoelverstelling; |
||
594 | /** |
||
595 | * The geheugen_stoelverstelling |
||
596 | * @var \Webservices\StructType\CarOption |
||
597 | */ |
||
598 | public $geheugen_stoelverstelling; |
||
599 | /** |
||
600 | * The verwarmde_zitplaatsen_voor |
||
601 | * @var \Webservices\StructType\CarOption |
||
602 | */ |
||
603 | public $verwarmde_zitplaatsen_voor; |
||
604 | /** |
||
605 | * The verwarmde_zitplaatsen_achter |
||
606 | * @var \Webservices\StructType\CarOption |
||
607 | */ |
||
608 | public $verwarmde_zitplaatsen_achter; |
||
609 | /** |
||
610 | * The sportstoelen |
||
611 | * @var \Webservices\StructType\CarOption |
||
612 | */ |
||
613 | public $sportstoelen; |
||
614 | /** |
||
615 | * The bekledingstof_leer |
||
616 | * @var \Webservices\StructType\CarOption |
||
617 | */ |
||
618 | public $bekledingstof_leer; |
||
619 | /** |
||
620 | * The lerenbekleding |
||
621 | * @var \Webservices\StructType\CarOption |
||
622 | */ |
||
623 | public $lerenbekleding; |
||
624 | /** |
||
625 | * The hoogteverstelling_stuur |
||
626 | * @var \Webservices\StructType\CarOption |
||
627 | */ |
||
628 | public $hoogteverstelling_stuur; |
||
629 | /** |
||
630 | * The diepteverstelling_stuur |
||
631 | * @var \Webservices\StructType\CarOption |
||
632 | */ |
||
633 | public $diepteverstelling_stuur; |
||
634 | /** |
||
635 | * The elektrische_stuurverstelling |
||
636 | * @var \Webservices\StructType\CarOption |
||
637 | */ |
||
638 | public $elektrische_stuurverstelling; |
||
639 | /** |
||
640 | * The leer_bekleed_stuur |
||
641 | * @var \Webservices\StructType\CarOption |
||
642 | */ |
||
643 | public $leer_bekleed_stuur; |
||
644 | /** |
||
645 | * The middenarmsteun_voor |
||
646 | * @var \Webservices\StructType\CarOption |
||
647 | */ |
||
648 | public $middenarmsteun_voor; |
||
649 | /** |
||
650 | * The middenarmsteun_achter |
||
651 | * @var \Webservices\StructType\CarOption |
||
652 | */ |
||
653 | public $middenarmsteun_achter; |
||
654 | /** |
||
655 | * The neerklapbare_achterbank |
||
656 | * @var \Webservices\StructType\CarOption |
||
657 | */ |
||
658 | public $neerklapbare_achterbank; |
||
659 | /** |
||
660 | * The in_delen_neerklapbaar_achterbank |
||
661 | * @var \Webservices\StructType\CarOption |
||
662 | */ |
||
663 | public $in_delen_neerklapbaar_achterbank; |
||
664 | /** |
||
665 | * The opbergvak_linkerportier |
||
666 | * @var \Webservices\StructType\CarOption |
||
667 | */ |
||
668 | public $opbergvak_linkerportier; |
||
669 | /** |
||
670 | * The bekerhouder_voor |
||
671 | * @var \Webservices\StructType\CarOption |
||
672 | */ |
||
673 | public $bekerhouder_voor; |
||
674 | /** |
||
675 | * The bekerhouder_achter |
||
676 | * @var \Webservices\StructType\CarOption |
||
677 | */ |
||
678 | public $bekerhouder_achter; |
||
679 | /** |
||
680 | * The zonnescherm_achterruit |
||
681 | * @var \Webservices\StructType\CarOption |
||
682 | */ |
||
683 | public $zonnescherm_achterruit; |
||
684 | /** |
||
685 | * The dagteller |
||
686 | * @var \Webservices\StructType\CarOption |
||
687 | */ |
||
688 | public $dagteller; |
||
689 | /** |
||
690 | * The toerenteller |
||
691 | * @var \Webservices\StructType\CarOption |
||
692 | */ |
||
693 | public $toerenteller; |
||
694 | /** |
||
695 | * The temperatuurmeter |
||
696 | * @var \Webservices\StructType\CarOption |
||
697 | */ |
||
698 | public $temperatuurmeter; |
||
699 | /** |
||
700 | * The oliepeilmeter |
||
701 | * @var \Webservices\StructType\CarOption |
||
702 | */ |
||
703 | public $oliepeilmeter; |
||
704 | /** |
||
705 | * The oliedrukmeter |
||
706 | * @var \Webservices\StructType\CarOption |
||
707 | */ |
||
708 | public $oliedrukmeter; |
||
709 | /** |
||
710 | * The olietemperatuurmeter |
||
711 | * @var \Webservices\StructType\CarOption |
||
712 | */ |
||
713 | public $olietemperatuurmeter; |
||
714 | /** |
||
715 | * The voltmeter |
||
716 | * @var \Webservices\StructType\CarOption |
||
717 | */ |
||
718 | public $voltmeter; |
||
719 | /** |
||
720 | * The verbruiksmeter |
||
721 | * @var \Webservices\StructType\CarOption |
||
722 | */ |
||
723 | public $verbruiksmeter; |
||
724 | /** |
||
725 | * The turbodrukmeter |
||
726 | * @var \Webservices\StructType\CarOption |
||
727 | */ |
||
728 | public $turbodrukmeter; |
||
729 | /** |
||
730 | * The buitentemperatuurmeter |
||
731 | * @var \Webservices\StructType\CarOption |
||
732 | */ |
||
733 | public $buitentemperatuurmeter; |
||
734 | /** |
||
735 | * The klokje |
||
736 | * @var \Webservices\StructType\CarOption |
||
737 | */ |
||
738 | public $klokje; |
||
739 | /** |
||
740 | * The boardcomputer |
||
741 | * @var \Webservices\StructType\CarOption |
||
742 | */ |
||
743 | public $boardcomputer; |
||
744 | /** |
||
745 | * The luidsprekers |
||
746 | * @var \Webservices\StructType\CarOption |
||
747 | */ |
||
748 | public $luidsprekers; |
||
749 | /** |
||
750 | * The stereoinstallatie |
||
751 | * @var \Webservices\StructType\CarOption |
||
752 | */ |
||
753 | public $stereoinstallatie; |
||
754 | /** |
||
755 | * The cdspeler |
||
756 | * @var \Webservices\StructType\CarOption |
||
757 | */ |
||
758 | public $cdspeler; |
||
759 | /** |
||
760 | * The cdwisselaar |
||
761 | * @var \Webservices\StructType\CarOption |
||
762 | */ |
||
763 | public $cdwisselaar; |
||
764 | /** |
||
765 | * The audiostuurbediening |
||
766 | * @var \Webservices\StructType\CarOption |
||
767 | */ |
||
768 | public $audiostuurbediening; |
||
769 | /** |
||
770 | * The bandenspanningssensor |
||
771 | * @var \Webservices\StructType\CarOption |
||
772 | */ |
||
773 | public $bandenspanningssensor; |
||
774 | /** |
||
775 | * The navigatiesysteem |
||
776 | * @var \Webservices\StructType\CarOption |
||
777 | */ |
||
778 | public $navigatiesysteem; |
||
779 | /** |
||
780 | * The televisie |
||
781 | * @var \Webservices\StructType\CarOption |
||
782 | */ |
||
783 | public $televisie; |
||
784 | /** |
||
785 | * The telefoonvoorbereiding |
||
786 | * @var \Webservices\StructType\CarOption |
||
787 | */ |
||
788 | public $telefoonvoorbereiding; |
||
789 | /** |
||
790 | * The telefoon |
||
791 | * @var \Webservices\StructType\CarOption |
||
792 | */ |
||
793 | public $telefoon; |
||
794 | /** |
||
795 | * The intervalruitenwisser |
||
796 | * @var \Webservices\StructType\CarOption |
||
797 | */ |
||
798 | public $intervalruitenwisser; |
||
799 | /** |
||
800 | * The regelbare_interval |
||
801 | * @var \Webservices\StructType\CarOption |
||
802 | */ |
||
803 | public $regelbare_interval; |
||
804 | /** |
||
805 | * The regensensor |
||
806 | * @var \Webservices\StructType\CarOption |
||
807 | */ |
||
808 | public $regensensor; |
||
809 | /** |
||
810 | * The ruitenwisser_achter |
||
811 | * @var \Webservices\StructType\CarOption |
||
812 | */ |
||
813 | public $ruitenwisser_achter; |
||
814 | /** |
||
815 | * The achterruitverwarming |
||
816 | * @var \Webservices\StructType\CarOption |
||
817 | */ |
||
818 | public $achterruitverwarming; |
||
819 | /** |
||
820 | * The voorruitverwarming |
||
821 | * @var \Webservices\StructType\CarOption |
||
822 | */ |
||
823 | public $voorruitverwarming; |
||
824 | /** |
||
825 | * The verwarmde_ruitensproeiers |
||
826 | * @var \Webservices\StructType\CarOption |
||
827 | */ |
||
828 | public $verwarmde_ruitensproeiers; |
||
829 | /** |
||
830 | * The gelaagde_voorruit |
||
831 | * @var \Webservices\StructType\CarOption |
||
832 | */ |
||
833 | public $gelaagde_voorruit; |
||
834 | /** |
||
835 | * The getintglas |
||
836 | * @var \Webservices\StructType\CarOption |
||
837 | */ |
||
838 | public $getintglas; |
||
839 | /** |
||
840 | * The schuifdak |
||
841 | * @var \Webservices\StructType\CarOption |
||
842 | */ |
||
843 | public $schuifdak; |
||
844 | /** |
||
845 | * The elektrisch_schuifdak |
||
846 | * @var \Webservices\StructType\CarOption |
||
847 | */ |
||
848 | public $elektrisch_schuifdak; |
||
849 | /** |
||
850 | * The beschermstrips_opzij |
||
851 | * @var \Webservices\StructType\CarOption |
||
852 | */ |
||
853 | public $beschermstrips_opzij; |
||
854 | /** |
||
855 | * The bumpers_meegespoten |
||
856 | * @var \Webservices\StructType\CarOption |
||
857 | */ |
||
858 | public $bumpers_meegespoten; |
||
859 | /** |
||
860 | * The metallic_lak |
||
861 | * @var \Webservices\StructType\CarOption |
||
862 | */ |
||
863 | public $metallic_lak; |
||
864 | /** |
||
865 | * The lichtmetalen_velgen |
||
866 | * @var \Webservices\StructType\CarOption |
||
867 | */ |
||
868 | public $lichtmetalen_velgen; |
||
869 | /** |
||
870 | * The rechter_buitenspiegel |
||
871 | * @var \Webservices\StructType\CarOption |
||
872 | */ |
||
873 | public $rechter_buitenspiegel; |
||
874 | /** |
||
875 | * The binnenuit_verstelbare_buitenspiegel |
||
876 | * @var \Webservices\StructType\CarOption |
||
877 | */ |
||
878 | public $binnenuit_verstelbare_buitenspiegel; |
||
879 | /** |
||
880 | * The elektrische_spiegels |
||
881 | * @var \Webservices\StructType\CarOption |
||
882 | */ |
||
883 | public $elektrische_spiegels; |
||
884 | /** |
||
885 | * The verwarmde_spiegels |
||
886 | * @var \Webservices\StructType\CarOption |
||
887 | */ |
||
888 | public $verwarmde_spiegels; |
||
889 | /** |
||
890 | * The inklapbare_spiegels |
||
891 | * @var \Webservices\StructType\CarOption |
||
892 | */ |
||
893 | public $inklapbare_spiegels; |
||
894 | /** |
||
895 | * The meegespoten_spiegels |
||
896 | * @var \Webservices\StructType\CarOption |
||
897 | */ |
||
898 | public $meegespoten_spiegels; |
||
899 | /** |
||
900 | * The dodehoekspiegel_bestuurder |
||
901 | * @var \Webservices\StructType\CarOption |
||
902 | */ |
||
903 | public $dodehoekspiegel_bestuurder; |
||
904 | /** |
||
905 | * The dimmende_binnenspiegel |
||
906 | * @var \Webservices\StructType\CarOption |
||
907 | */ |
||
908 | public $dimmende_binnenspiegel; |
||
909 | /** |
||
910 | * The dimmende_buitenspiegel |
||
911 | * @var \Webservices\StructType\CarOption |
||
912 | */ |
||
913 | public $dimmende_buitenspiegel; |
||
914 | /** |
||
915 | * The dakrails |
||
916 | * @var \Webservices\StructType\CarOption |
||
917 | */ |
||
918 | public $dakrails; |
||
919 | /** |
||
920 | * The binnenuit_te_openen_tankklep |
||
921 | * @var \Webservices\StructType\CarOption |
||
922 | */ |
||
923 | public $binnenuit_te_openen_tankklep; |
||
924 | /** |
||
925 | * The binnenuit_te_openen_bagageklep |
||
926 | * @var \Webservices\StructType\CarOption |
||
927 | */ |
||
928 | public $binnenuit_te_openen_bagageklep; |
||
929 | /** |
||
930 | * The op_afstand_te_openen_bagageklep |
||
931 | * @var \Webservices\StructType\CarOption |
||
932 | */ |
||
933 | public $op_afstand_te_openen_bagageklep; |
||
934 | /** |
||
935 | * The halogeen_koplampen |
||
936 | * @var \Webservices\StructType\CarOption |
||
937 | */ |
||
938 | public $halogeen_koplampen; |
||
939 | /** |
||
940 | * The xenon_koplampen |
||
941 | * @var \Webservices\StructType\CarOption |
||
942 | */ |
||
943 | public $xenon_koplampen; |
||
944 | /** |
||
945 | * The verstelbare_koplampen |
||
946 | * @var \Webservices\StructType\CarOption |
||
947 | */ |
||
948 | public $verstelbare_koplampen; |
||
949 | /** |
||
950 | * The koplampsproeiers |
||
951 | * @var \Webservices\StructType\CarOption |
||
952 | */ |
||
953 | public $koplampsproeiers; |
||
954 | /** |
||
955 | * The automatisch_inschakelende_koplampen |
||
956 | * @var \Webservices\StructType\CarOption |
||
957 | */ |
||
958 | public $automatisch_inschakelende_koplampen; |
||
959 | /** |
||
960 | * The verstralers |
||
961 | * @var \Webservices\StructType\CarOption |
||
962 | */ |
||
963 | public $verstralers; |
||
964 | /** |
||
965 | * The mistlampen_voor |
||
966 | * @var \Webservices\StructType\CarOption |
||
967 | */ |
||
968 | public $mistlampen_voor; |
||
969 | /** |
||
970 | * The mistlampen_achter |
||
971 | * @var \Webservices\StructType\CarOption |
||
972 | */ |
||
973 | public $mistlampen_achter; |
||
974 | /** |
||
975 | * The zoemer_vergeten_verlichting |
||
976 | * @var \Webservices\StructType\CarOption |
||
977 | */ |
||
978 | public $zoemer_vergeten_verlichting; |
||
979 | /** |
||
980 | * The verlichte_bagageruimte |
||
981 | * @var \Webservices\StructType\CarOption |
||
982 | */ |
||
983 | public $verlichte_bagageruimte; |
||
984 | /** |
||
985 | * The verlichte_motorruimte |
||
986 | * @var \Webservices\StructType\CarOption |
||
987 | */ |
||
988 | public $verlichte_motorruimte; |
||
989 | /** |
||
990 | * The verlicht_dashboardkastje |
||
991 | * @var \Webservices\StructType\CarOption |
||
992 | */ |
||
993 | public $verlicht_dashboardkastje; |
||
994 | /** |
||
995 | * The regelbare_dashboardverlichting |
||
996 | * @var \Webservices\StructType\CarOption |
||
997 | */ |
||
998 | public $regelbare_dashboardverlichting; |
||
999 | /** |
||
1000 | * The leeslampje_voor |
||
1001 | * @var \Webservices\StructType\CarOption |
||
1002 | */ |
||
1003 | public $leeslampje_voor; |
||
1004 | /** |
||
1005 | * The leeslampje_achter |
||
1006 | * @var \Webservices\StructType\CarOption |
||
1007 | */ |
||
1008 | public $leeslampje_achter; |
||
1009 | /** |
||
1010 | * The verlichte_makeupspiegel |
||
1011 | * @var \Webservices\StructType\CarOption |
||
1012 | */ |
||
1013 | public $verlichte_makeupspiegel; |
||
1014 | /** |
||
1015 | * The vertraging_interieurverlichting |
||
1016 | * @var \Webservices\StructType\CarOption |
||
1017 | */ |
||
1018 | public $vertraging_interieurverlichting; |
||
1019 | /** |
||
1020 | * The portierverlichting |
||
1021 | * @var \Webservices\StructType\CarOption |
||
1022 | */ |
||
1023 | public $portierverlichting; |
||
1024 | /** |
||
1025 | * Constructor method for CarOptions |
||
1026 | * @uses CarOptions::setCar_id() |
||
1027 | * @uses CarOptions::setMerk() |
||
1028 | * @uses CarOptions::setSerie() |
||
1029 | * @uses CarOptions::setSerie_jaar_van() |
||
1030 | * @uses CarOptions::setSerie_jaar_tot() |
||
1031 | * @uses CarOptions::setModel() |
||
1032 | * @uses CarOptions::setModel_maand_van() |
||
1033 | * @uses CarOptions::setModel_jaar_van() |
||
1034 | * @uses CarOptions::setModel_maand_tot() |
||
1035 | * @uses CarOptions::setModel_jaar_tot() |
||
1036 | * @uses CarOptions::setBelasting_min() |
||
1037 | * @uses CarOptions::setBelasting_max() |
||
1038 | * @uses CarOptions::setAlgemene_garantie() |
||
1039 | * @uses CarOptions::setAlgemene_garantie_km() |
||
1040 | * @uses CarOptions::setCarrosserie_garantie() |
||
1041 | * @uses CarOptions::setDeuren() |
||
1042 | * @uses CarOptions::setCarrosserietype() |
||
1043 | * @uses CarOptions::setAantal_versnellingen() |
||
1044 | * @uses CarOptions::setSoort_schakeling() |
||
1045 | * @uses CarOptions::setAandrijving() |
||
1046 | * @uses CarOptions::setBrandstoftype() |
||
1047 | * @uses CarOptions::setAantal_cilinders() |
||
1048 | * @uses CarOptions::setBouwwijze() |
||
1049 | * @uses CarOptions::setKleppen_per_cilinder() |
||
1050 | * @uses CarOptions::setCilinderinhoud() |
||
1051 | * @uses CarOptions::setBoring() |
||
1052 | * @uses CarOptions::setSlag() |
||
1053 | * @uses CarOptions::setCompressieverhouding() |
||
1054 | * @uses CarOptions::setVermogen_kw() |
||
1055 | * @uses CarOptions::setVermogen_pk() |
||
1056 | * @uses CarOptions::setVermogen_tpm() |
||
1057 | * @uses CarOptions::setKoppel() |
||
1058 | * @uses CarOptions::setKoppel_tpm() |
||
1059 | * @uses CarOptions::setKatalysator() |
||
1060 | * @uses CarOptions::setBrandstofsysteem() |
||
1061 | * @uses CarOptions::setKlepbediening() |
||
1062 | * @uses CarOptions::setTurbo() |
||
1063 | * @uses CarOptions::setWielophanging_voor() |
||
1064 | * @uses CarOptions::setWielophanging_achter() |
||
1065 | * @uses CarOptions::setVering_voor() |
||
1066 | * @uses CarOptions::setVering_achter() |
||
1067 | * @uses CarOptions::setStabilisator_voor() |
||
1068 | * @uses CarOptions::setStabilisator_achter() |
||
1069 | * @uses CarOptions::setRemmen_voor() |
||
1070 | * @uses CarOptions::setRemmen_voor_mm() |
||
1071 | * @uses CarOptions::setRemmen_achter() |
||
1072 | * @uses CarOptions::setRemmen_achter_mm() |
||
1073 | * @uses CarOptions::setCw_waarde() |
||
1074 | * @uses CarOptions::setLengte() |
||
1075 | * @uses CarOptions::setBreedte() |
||
1076 | * @uses CarOptions::setHoogte() |
||
1077 | * @uses CarOptions::setWielbasis() |
||
1078 | * @uses CarOptions::setSpoorbreedte_voor() |
||
1079 | * @uses CarOptions::setSpoorbreedte_achter() |
||
1080 | * @uses CarOptions::setDraaicirkel() |
||
1081 | * @uses CarOptions::setBandenmaat_voor() |
||
1082 | * @uses CarOptions::setBandenmaat_achter() |
||
1083 | * @uses CarOptions::setMassa() |
||
1084 | * @uses CarOptions::setMax_toelaatbare_massa() |
||
1085 | * @uses CarOptions::setMax_aanhanger_geremd() |
||
1086 | * @uses CarOptions::setMax_aanhanger_ongeremd() |
||
1087 | * @uses CarOptions::setMax_kogeldruk() |
||
1088 | * @uses CarOptions::setMax_dakbelasting() |
||
1089 | * @uses CarOptions::setKoffer_min() |
||
1090 | * @uses CarOptions::setKoffer_max() |
||
1091 | * @uses CarOptions::setTankinhoud() |
||
1092 | * @uses CarOptions::setTopsnelheid() |
||
1093 | * @uses CarOptions::setAcceleratie() |
||
1094 | * @uses CarOptions::setVerbruik_binnen_bebouwde_kom() |
||
1095 | * @uses CarOptions::setVerbruik_buiten_bebouwde_kom() |
||
1096 | * @uses CarOptions::setVerbruik_gecombineerd() |
||
1097 | * @uses CarOptions::setCo2_uitstoot() |
||
1098 | * @uses CarOptions::setVerbruik_gemiddeld() |
||
1099 | * @uses CarOptions::setAbs() |
||
1100 | * @uses CarOptions::setRemkrachtverdeling() |
||
1101 | * @uses CarOptions::setBrakeassist() |
||
1102 | * @uses CarOptions::setTractiecontrole() |
||
1103 | * @uses CarOptions::setSperdifferentieel() |
||
1104 | * @uses CarOptions::setStabiliteitsregeling() |
||
1105 | * @uses CarOptions::setRegelbare_schokdemping() |
||
1106 | * @uses CarOptions::setNiveauregeling() |
||
1107 | * @uses CarOptions::setAirbag_bestuurder() |
||
1108 | * @uses CarOptions::setAirbag_passagier() |
||
1109 | * @uses CarOptions::setAirbag_opzijvoor() |
||
1110 | * @uses CarOptions::setAirbag_opzijachter() |
||
1111 | * @uses CarOptions::setAirbag_hoofdvoor() |
||
1112 | * @uses CarOptions::setAirbag_hoofdachter() |
||
1113 | * @uses CarOptions::setGordelspanners() |
||
1114 | * @uses CarOptions::setVerstelbare_gordelhoogte() |
||
1115 | * @uses CarOptions::setStartonderbreker() |
||
1116 | * @uses CarOptions::setInbraakalarm() |
||
1117 | * @uses CarOptions::setCentrale_deurvergrendeling() |
||
1118 | * @uses CarOptions::setAfstandbediening_deurvergrendeling() |
||
1119 | * @uses CarOptions::setAutomatische_vergrendeling() |
||
1120 | * @uses CarOptions::setKeyless_entry() |
||
1121 | * @uses CarOptions::setElektrische_ramen_voor() |
||
1122 | * @uses CarOptions::setElektrische_ramen_achter() |
||
1123 | * @uses CarOptions::setStuurbekrachtiging() |
||
1124 | * @uses CarOptions::setStuurschakeling() |
||
1125 | * @uses CarOptions::setCruise_control() |
||
1126 | * @uses CarOptions::setRadar_cruise_control() |
||
1127 | * @uses CarOptions::setAirconditioning() |
||
1128 | * @uses CarOptions::setKlimaatregeling() |
||
1129 | * @uses CarOptions::setGescheiden_temperatuurregeling() |
||
1130 | * @uses CarOptions::setPollenfilter() |
||
1131 | * @uses CarOptions::setParkeersensor() |
||
1132 | * @uses CarOptions::setHoofdsteunen_voor() |
||
1133 | * @uses CarOptions::setHoofdsteunen_achter() |
||
1134 | * @uses CarOptions::setVerstelbare_hoofdsteunen_achter() |
||
1135 | * @uses CarOptions::setDerde_hoofdsteun_achter() |
||
1136 | * @uses CarOptions::setDerde_driepuntsgordel_achter() |
||
1137 | * @uses CarOptions::setVerstelbare_lendensteun_bestuurder() |
||
1138 | * @uses CarOptions::setVerstelbare_lendensteun_passagier() |
||
1139 | * @uses CarOptions::setHoogteverstelling_bestuurder() |
||
1140 | * @uses CarOptions::setHoogteverstelling_passagier() |
||
1141 | * @uses CarOptions::setElektrische_stoelverstelling() |
||
1142 | * @uses CarOptions::setGeheugen_stoelverstelling() |
||
1143 | * @uses CarOptions::setVerwarmde_zitplaatsen_voor() |
||
1144 | * @uses CarOptions::setVerwarmde_zitplaatsen_achter() |
||
1145 | * @uses CarOptions::setSportstoelen() |
||
1146 | * @uses CarOptions::setBekledingstof_leer() |
||
1147 | * @uses CarOptions::setLerenbekleding() |
||
1148 | * @uses CarOptions::setHoogteverstelling_stuur() |
||
1149 | * @uses CarOptions::setDiepteverstelling_stuur() |
||
1150 | * @uses CarOptions::setElektrische_stuurverstelling() |
||
1151 | * @uses CarOptions::setLeer_bekleed_stuur() |
||
1152 | * @uses CarOptions::setMiddenarmsteun_voor() |
||
1153 | * @uses CarOptions::setMiddenarmsteun_achter() |
||
1154 | * @uses CarOptions::setNeerklapbare_achterbank() |
||
1155 | * @uses CarOptions::setIn_delen_neerklapbaar_achterbank() |
||
1156 | * @uses CarOptions::setOpbergvak_linkerportier() |
||
1157 | * @uses CarOptions::setBekerhouder_voor() |
||
1158 | * @uses CarOptions::setBekerhouder_achter() |
||
1159 | * @uses CarOptions::setZonnescherm_achterruit() |
||
1160 | * @uses CarOptions::setDagteller() |
||
1161 | * @uses CarOptions::setToerenteller() |
||
1162 | * @uses CarOptions::setTemperatuurmeter() |
||
1163 | * @uses CarOptions::setOliepeilmeter() |
||
1164 | * @uses CarOptions::setOliedrukmeter() |
||
1165 | * @uses CarOptions::setOlietemperatuurmeter() |
||
1166 | * @uses CarOptions::setVoltmeter() |
||
1167 | * @uses CarOptions::setVerbruiksmeter() |
||
1168 | * @uses CarOptions::setTurbodrukmeter() |
||
1169 | * @uses CarOptions::setBuitentemperatuurmeter() |
||
1170 | * @uses CarOptions::setKlokje() |
||
1171 | * @uses CarOptions::setBoardcomputer() |
||
1172 | * @uses CarOptions::setLuidsprekers() |
||
1173 | * @uses CarOptions::setStereoinstallatie() |
||
1174 | * @uses CarOptions::setCdspeler() |
||
1175 | * @uses CarOptions::setCdwisselaar() |
||
1176 | * @uses CarOptions::setAudiostuurbediening() |
||
1177 | * @uses CarOptions::setBandenspanningssensor() |
||
1178 | * @uses CarOptions::setNavigatiesysteem() |
||
1179 | * @uses CarOptions::setTelevisie() |
||
1180 | * @uses CarOptions::setTelefoonvoorbereiding() |
||
1181 | * @uses CarOptions::setTelefoon() |
||
1182 | * @uses CarOptions::setIntervalruitenwisser() |
||
1183 | * @uses CarOptions::setRegelbare_interval() |
||
1184 | * @uses CarOptions::setRegensensor() |
||
1185 | * @uses CarOptions::setRuitenwisser_achter() |
||
1186 | * @uses CarOptions::setAchterruitverwarming() |
||
1187 | * @uses CarOptions::setVoorruitverwarming() |
||
1188 | * @uses CarOptions::setVerwarmde_ruitensproeiers() |
||
1189 | * @uses CarOptions::setGelaagde_voorruit() |
||
1190 | * @uses CarOptions::setGetintglas() |
||
1191 | * @uses CarOptions::setSchuifdak() |
||
1192 | * @uses CarOptions::setElektrisch_schuifdak() |
||
1193 | * @uses CarOptions::setBeschermstrips_opzij() |
||
1194 | * @uses CarOptions::setBumpers_meegespoten() |
||
1195 | * @uses CarOptions::setMetallic_lak() |
||
1196 | * @uses CarOptions::setLichtmetalen_velgen() |
||
1197 | * @uses CarOptions::setRechter_buitenspiegel() |
||
1198 | * @uses CarOptions::setBinnenuit_verstelbare_buitenspiegel() |
||
1199 | * @uses CarOptions::setElektrische_spiegels() |
||
1200 | * @uses CarOptions::setVerwarmde_spiegels() |
||
1201 | * @uses CarOptions::setInklapbare_spiegels() |
||
1202 | * @uses CarOptions::setMeegespoten_spiegels() |
||
1203 | * @uses CarOptions::setDodehoekspiegel_bestuurder() |
||
1204 | * @uses CarOptions::setDimmende_binnenspiegel() |
||
1205 | * @uses CarOptions::setDimmende_buitenspiegel() |
||
1206 | * @uses CarOptions::setDakrails() |
||
1207 | * @uses CarOptions::setBinnenuit_te_openen_tankklep() |
||
1208 | * @uses CarOptions::setBinnenuit_te_openen_bagageklep() |
||
1209 | * @uses CarOptions::setOp_afstand_te_openen_bagageklep() |
||
1210 | * @uses CarOptions::setHalogeen_koplampen() |
||
1211 | * @uses CarOptions::setXenon_koplampen() |
||
1212 | * @uses CarOptions::setVerstelbare_koplampen() |
||
1213 | * @uses CarOptions::setKoplampsproeiers() |
||
1214 | * @uses CarOptions::setAutomatisch_inschakelende_koplampen() |
||
1215 | * @uses CarOptions::setVerstralers() |
||
1216 | * @uses CarOptions::setMistlampen_voor() |
||
1217 | * @uses CarOptions::setMistlampen_achter() |
||
1218 | * @uses CarOptions::setZoemer_vergeten_verlichting() |
||
1219 | * @uses CarOptions::setVerlichte_bagageruimte() |
||
1220 | * @uses CarOptions::setVerlichte_motorruimte() |
||
1221 | * @uses CarOptions::setVerlicht_dashboardkastje() |
||
1222 | * @uses CarOptions::setRegelbare_dashboardverlichting() |
||
1223 | * @uses CarOptions::setLeeslampje_voor() |
||
1224 | * @uses CarOptions::setLeeslampje_achter() |
||
1225 | * @uses CarOptions::setVerlichte_makeupspiegel() |
||
1226 | * @uses CarOptions::setVertraging_interieurverlichting() |
||
1227 | * @uses CarOptions::setPortierverlichting() |
||
1228 | * @param string $car_id |
||
1229 | * @param string $merk |
||
1230 | * @param string $serie |
||
1231 | * @param int $serie_jaar_van |
||
1232 | * @param int $serie_jaar_tot |
||
1233 | * @param string $model |
||
1234 | * @param int $model_maand_van |
||
1235 | * @param int $model_jaar_van |
||
1236 | * @param int $model_maand_tot |
||
1237 | * @param int $model_jaar_tot |
||
1238 | * @param string $belasting_min |
||
1239 | * @param string $belasting_max |
||
1240 | * @param string $algemene_garantie |
||
1241 | * @param string $algemene_garantie_km |
||
1242 | * @param string $carrosserie_garantie |
||
1243 | * @param string $deuren |
||
1244 | * @param string $carrosserietype |
||
1245 | * @param string $aantal_versnellingen |
||
1246 | * @param string $soort_schakeling |
||
1247 | * @param string $aandrijving |
||
1248 | * @param string $brandstoftype |
||
1249 | * @param string $aantal_cilinders |
||
1250 | * @param string $bouwwijze |
||
1251 | * @param string $kleppen_per_cilinder |
||
1252 | * @param string $cilinderinhoud |
||
1253 | * @param string $boring |
||
1254 | * @param string $slag |
||
1255 | * @param string $compressieverhouding |
||
1256 | * @param string $vermogen_kw |
||
1257 | * @param string $vermogen_pk |
||
1258 | * @param string $vermogen_tpm |
||
1259 | * @param string $koppel |
||
1260 | * @param string $koppel_tpm |
||
1261 | * @param string $katalysator |
||
1262 | * @param string $brandstofsysteem |
||
1263 | * @param string $klepbediening |
||
1264 | * @param string $turbo |
||
1265 | * @param string $wielophanging_voor |
||
1266 | * @param string $wielophanging_achter |
||
1267 | * @param string $vering_voor |
||
1268 | * @param string $vering_achter |
||
1269 | * @param string $stabilisator_voor |
||
1270 | * @param string $stabilisator_achter |
||
1271 | * @param string $remmen_voor |
||
1272 | * @param string $remmen_voor_mm |
||
1273 | * @param string $remmen_achter |
||
1274 | * @param string $remmen_achter_mm |
||
1275 | * @param string $cw_waarde |
||
1276 | * @param string $lengte |
||
1277 | * @param string $breedte |
||
1278 | * @param string $hoogte |
||
1279 | * @param string $wielbasis |
||
1280 | * @param string $spoorbreedte_voor |
||
1281 | * @param string $spoorbreedte_achter |
||
1282 | * @param string $draaicirkel |
||
1283 | * @param string $bandenmaat_voor |
||
1284 | * @param string $bandenmaat_achter |
||
1285 | * @param string $massa |
||
1286 | * @param string $max_toelaatbare_massa |
||
1287 | * @param string $max_aanhanger_geremd |
||
1288 | * @param string $max_aanhanger_ongeremd |
||
1289 | * @param string $max_kogeldruk |
||
1290 | * @param string $max_dakbelasting |
||
1291 | * @param string $koffer_min |
||
1292 | * @param string $koffer_max |
||
1293 | * @param string $tankinhoud |
||
1294 | * @param string $topsnelheid |
||
1295 | * @param string $acceleratie |
||
1296 | * @param string $verbruik_binnen_bebouwde_kom |
||
1297 | * @param string $verbruik_buiten_bebouwde_kom |
||
1298 | * @param string $verbruik_gecombineerd |
||
1299 | * @param string $co2_uitstoot |
||
1300 | * @param string $verbruik_gemiddeld |
||
1301 | * @param \Webservices\StructType\CarOption $abs |
||
1302 | * @param \Webservices\StructType\CarOption $remkrachtverdeling |
||
1303 | * @param \Webservices\StructType\CarOption $brakeassist |
||
1304 | * @param \Webservices\StructType\CarOption $tractiecontrole |
||
1305 | * @param \Webservices\StructType\CarOption $sperdifferentieel |
||
1306 | * @param \Webservices\StructType\CarOption $stabiliteitsregeling |
||
1307 | * @param \Webservices\StructType\CarOption $regelbare_schokdemping |
||
1308 | * @param \Webservices\StructType\CarOption $niveauregeling |
||
1309 | * @param \Webservices\StructType\CarOption $airbag_bestuurder |
||
1310 | * @param \Webservices\StructType\CarOption $airbag_passagier |
||
1311 | * @param \Webservices\StructType\CarOption $airbag_opzijvoor |
||
1312 | * @param \Webservices\StructType\CarOption $airbag_opzijachter |
||
1313 | * @param \Webservices\StructType\CarOption $airbag_hoofdvoor |
||
1314 | * @param \Webservices\StructType\CarOption $airbag_hoofdachter |
||
1315 | * @param \Webservices\StructType\CarOption $gordelspanners |
||
1316 | * @param \Webservices\StructType\CarOption $verstelbare_gordelhoogte |
||
1317 | * @param \Webservices\StructType\CarOption $startonderbreker |
||
1318 | * @param \Webservices\StructType\CarOption $inbraakalarm |
||
1319 | * @param \Webservices\StructType\CarOption $centrale_deurvergrendeling |
||
1320 | * @param \Webservices\StructType\CarOption $afstandbediening_deurvergrendeling |
||
1321 | * @param \Webservices\StructType\CarOption $automatische_vergrendeling |
||
1322 | * @param \Webservices\StructType\CarOption $keyless_entry |
||
1323 | * @param \Webservices\StructType\CarOption $elektrische_ramen_voor |
||
1324 | * @param \Webservices\StructType\CarOption $elektrische_ramen_achter |
||
1325 | * @param \Webservices\StructType\CarOption $stuurbekrachtiging |
||
1326 | * @param \Webservices\StructType\CarOption $stuurschakeling |
||
1327 | * @param \Webservices\StructType\CarOption $cruise_control |
||
1328 | * @param \Webservices\StructType\CarOption $radar_cruise_control |
||
1329 | * @param \Webservices\StructType\CarOption $airconditioning |
||
1330 | * @param \Webservices\StructType\CarOption $klimaatregeling |
||
1331 | * @param \Webservices\StructType\CarOption $gescheiden_temperatuurregeling |
||
1332 | * @param \Webservices\StructType\CarOption $pollenfilter |
||
1333 | * @param \Webservices\StructType\CarOption $parkeersensor |
||
1334 | * @param \Webservices\StructType\CarOption $hoofdsteunen_voor |
||
1335 | * @param \Webservices\StructType\CarOption $hoofdsteunen_achter |
||
1336 | * @param \Webservices\StructType\CarOption $verstelbare_hoofdsteunen_achter |
||
1337 | * @param \Webservices\StructType\CarOption $derde_hoofdsteun_achter |
||
1338 | * @param \Webservices\StructType\CarOption $derde_driepuntsgordel_achter |
||
1339 | * @param \Webservices\StructType\CarOption $verstelbare_lendensteun_bestuurder |
||
1340 | * @param \Webservices\StructType\CarOption $verstelbare_lendensteun_passagier |
||
1341 | * @param \Webservices\StructType\CarOption $hoogteverstelling_bestuurder |
||
1342 | * @param \Webservices\StructType\CarOption $hoogteverstelling_passagier |
||
1343 | * @param \Webservices\StructType\CarOption $elektrische_stoelverstelling |
||
1344 | * @param \Webservices\StructType\CarOption $geheugen_stoelverstelling |
||
1345 | * @param \Webservices\StructType\CarOption $verwarmde_zitplaatsen_voor |
||
1346 | * @param \Webservices\StructType\CarOption $verwarmde_zitplaatsen_achter |
||
1347 | * @param \Webservices\StructType\CarOption $sportstoelen |
||
1348 | * @param \Webservices\StructType\CarOption $bekledingstof_leer |
||
1349 | * @param \Webservices\StructType\CarOption $lerenbekleding |
||
1350 | * @param \Webservices\StructType\CarOption $hoogteverstelling_stuur |
||
1351 | * @param \Webservices\StructType\CarOption $diepteverstelling_stuur |
||
1352 | * @param \Webservices\StructType\CarOption $elektrische_stuurverstelling |
||
1353 | * @param \Webservices\StructType\CarOption $leer_bekleed_stuur |
||
1354 | * @param \Webservices\StructType\CarOption $middenarmsteun_voor |
||
1355 | * @param \Webservices\StructType\CarOption $middenarmsteun_achter |
||
1356 | * @param \Webservices\StructType\CarOption $neerklapbare_achterbank |
||
1357 | * @param \Webservices\StructType\CarOption $in_delen_neerklapbaar_achterbank |
||
1358 | * @param \Webservices\StructType\CarOption $opbergvak_linkerportier |
||
1359 | * @param \Webservices\StructType\CarOption $bekerhouder_voor |
||
1360 | * @param \Webservices\StructType\CarOption $bekerhouder_achter |
||
1361 | * @param \Webservices\StructType\CarOption $zonnescherm_achterruit |
||
1362 | * @param \Webservices\StructType\CarOption $dagteller |
||
1363 | * @param \Webservices\StructType\CarOption $toerenteller |
||
1364 | * @param \Webservices\StructType\CarOption $temperatuurmeter |
||
1365 | * @param \Webservices\StructType\CarOption $oliepeilmeter |
||
1366 | * @param \Webservices\StructType\CarOption $oliedrukmeter |
||
1367 | * @param \Webservices\StructType\CarOption $olietemperatuurmeter |
||
1368 | * @param \Webservices\StructType\CarOption $voltmeter |
||
1369 | * @param \Webservices\StructType\CarOption $verbruiksmeter |
||
1370 | * @param \Webservices\StructType\CarOption $turbodrukmeter |
||
1371 | * @param \Webservices\StructType\CarOption $buitentemperatuurmeter |
||
1372 | * @param \Webservices\StructType\CarOption $klokje |
||
1373 | * @param \Webservices\StructType\CarOption $boardcomputer |
||
1374 | * @param \Webservices\StructType\CarOption $luidsprekers |
||
1375 | * @param \Webservices\StructType\CarOption $stereoinstallatie |
||
1376 | * @param \Webservices\StructType\CarOption $cdspeler |
||
1377 | * @param \Webservices\StructType\CarOption $cdwisselaar |
||
1378 | * @param \Webservices\StructType\CarOption $audiostuurbediening |
||
1379 | * @param \Webservices\StructType\CarOption $bandenspanningssensor |
||
1380 | * @param \Webservices\StructType\CarOption $navigatiesysteem |
||
1381 | * @param \Webservices\StructType\CarOption $televisie |
||
1382 | * @param \Webservices\StructType\CarOption $telefoonvoorbereiding |
||
1383 | * @param \Webservices\StructType\CarOption $telefoon |
||
1384 | * @param \Webservices\StructType\CarOption $intervalruitenwisser |
||
1385 | * @param \Webservices\StructType\CarOption $regelbare_interval |
||
1386 | * @param \Webservices\StructType\CarOption $regensensor |
||
1387 | * @param \Webservices\StructType\CarOption $ruitenwisser_achter |
||
1388 | * @param \Webservices\StructType\CarOption $achterruitverwarming |
||
1389 | * @param \Webservices\StructType\CarOption $voorruitverwarming |
||
1390 | * @param \Webservices\StructType\CarOption $verwarmde_ruitensproeiers |
||
1391 | * @param \Webservices\StructType\CarOption $gelaagde_voorruit |
||
1392 | * @param \Webservices\StructType\CarOption $getintglas |
||
1393 | * @param \Webservices\StructType\CarOption $schuifdak |
||
1394 | * @param \Webservices\StructType\CarOption $elektrisch_schuifdak |
||
1395 | * @param \Webservices\StructType\CarOption $beschermstrips_opzij |
||
1396 | * @param \Webservices\StructType\CarOption $bumpers_meegespoten |
||
1397 | * @param \Webservices\StructType\CarOption $metallic_lak |
||
1398 | * @param \Webservices\StructType\CarOption $lichtmetalen_velgen |
||
1399 | * @param \Webservices\StructType\CarOption $rechter_buitenspiegel |
||
1400 | * @param \Webservices\StructType\CarOption $binnenuit_verstelbare_buitenspiegel |
||
1401 | * @param \Webservices\StructType\CarOption $elektrische_spiegels |
||
1402 | * @param \Webservices\StructType\CarOption $verwarmde_spiegels |
||
1403 | * @param \Webservices\StructType\CarOption $inklapbare_spiegels |
||
1404 | * @param \Webservices\StructType\CarOption $meegespoten_spiegels |
||
1405 | * @param \Webservices\StructType\CarOption $dodehoekspiegel_bestuurder |
||
1406 | * @param \Webservices\StructType\CarOption $dimmende_binnenspiegel |
||
1407 | * @param \Webservices\StructType\CarOption $dimmende_buitenspiegel |
||
1408 | * @param \Webservices\StructType\CarOption $dakrails |
||
1409 | * @param \Webservices\StructType\CarOption $binnenuit_te_openen_tankklep |
||
1410 | * @param \Webservices\StructType\CarOption $binnenuit_te_openen_bagageklep |
||
1411 | * @param \Webservices\StructType\CarOption $op_afstand_te_openen_bagageklep |
||
1412 | * @param \Webservices\StructType\CarOption $halogeen_koplampen |
||
1413 | * @param \Webservices\StructType\CarOption $xenon_koplampen |
||
1414 | * @param \Webservices\StructType\CarOption $verstelbare_koplampen |
||
1415 | * @param \Webservices\StructType\CarOption $koplampsproeiers |
||
1416 | * @param \Webservices\StructType\CarOption $automatisch_inschakelende_koplampen |
||
1417 | * @param \Webservices\StructType\CarOption $verstralers |
||
1418 | * @param \Webservices\StructType\CarOption $mistlampen_voor |
||
1419 | * @param \Webservices\StructType\CarOption $mistlampen_achter |
||
1420 | * @param \Webservices\StructType\CarOption $zoemer_vergeten_verlichting |
||
1421 | * @param \Webservices\StructType\CarOption $verlichte_bagageruimte |
||
1422 | * @param \Webservices\StructType\CarOption $verlichte_motorruimte |
||
1423 | * @param \Webservices\StructType\CarOption $verlicht_dashboardkastje |
||
1424 | * @param \Webservices\StructType\CarOption $regelbare_dashboardverlichting |
||
1425 | * @param \Webservices\StructType\CarOption $leeslampje_voor |
||
1426 | * @param \Webservices\StructType\CarOption $leeslampje_achter |
||
1427 | * @param \Webservices\StructType\CarOption $verlichte_makeupspiegel |
||
1428 | * @param \Webservices\StructType\CarOption $vertraging_interieurverlichting |
||
1429 | * @param \Webservices\StructType\CarOption $portierverlichting |
||
1430 | */ |
||
1431 | public function __construct($car_id = null, $merk = null, $serie = null, $serie_jaar_van = null, $serie_jaar_tot = null, $model = null, $model_maand_van = null, $model_jaar_van = null, $model_maand_tot = null, $model_jaar_tot = null, $belasting_min = null, $belasting_max = null, $algemene_garantie = null, $algemene_garantie_km = null, $carrosserie_garantie = null, $deuren = null, $carrosserietype = null, $aantal_versnellingen = null, $soort_schakeling = null, $aandrijving = null, $brandstoftype = null, $aantal_cilinders = null, $bouwwijze = null, $kleppen_per_cilinder = null, $cilinderinhoud = null, $boring = null, $slag = null, $compressieverhouding = null, $vermogen_kw = null, $vermogen_pk = null, $vermogen_tpm = null, $koppel = null, $koppel_tpm = null, $katalysator = null, $brandstofsysteem = null, $klepbediening = null, $turbo = null, $wielophanging_voor = null, $wielophanging_achter = null, $vering_voor = null, $vering_achter = null, $stabilisator_voor = null, $stabilisator_achter = null, $remmen_voor = null, $remmen_voor_mm = null, $remmen_achter = null, $remmen_achter_mm = null, $cw_waarde = null, $lengte = null, $breedte = null, $hoogte = null, $wielbasis = null, $spoorbreedte_voor = null, $spoorbreedte_achter = null, $draaicirkel = null, $bandenmaat_voor = null, $bandenmaat_achter = null, $massa = null, $max_toelaatbare_massa = null, $max_aanhanger_geremd = null, $max_aanhanger_ongeremd = null, $max_kogeldruk = null, $max_dakbelasting = null, $koffer_min = null, $koffer_max = null, $tankinhoud = null, $topsnelheid = null, $acceleratie = null, $verbruik_binnen_bebouwde_kom = null, $verbruik_buiten_bebouwde_kom = null, $verbruik_gecombineerd = null, $co2_uitstoot = null, $verbruik_gemiddeld = null, \Webservices\StructType\CarOption $abs = null, \Webservices\StructType\CarOption $remkrachtverdeling = null, \Webservices\StructType\CarOption $brakeassist = null, \Webservices\StructType\CarOption $tractiecontrole = null, \Webservices\StructType\CarOption $sperdifferentieel = null, \Webservices\StructType\CarOption $stabiliteitsregeling = null, \Webservices\StructType\CarOption $regelbare_schokdemping = null, \Webservices\StructType\CarOption $niveauregeling = null, \Webservices\StructType\CarOption $airbag_bestuurder = null, \Webservices\StructType\CarOption $airbag_passagier = null, \Webservices\StructType\CarOption $airbag_opzijvoor = null, \Webservices\StructType\CarOption $airbag_opzijachter = null, \Webservices\StructType\CarOption $airbag_hoofdvoor = null, \Webservices\StructType\CarOption $airbag_hoofdachter = null, \Webservices\StructType\CarOption $gordelspanners = null, \Webservices\StructType\CarOption $verstelbare_gordelhoogte = null, \Webservices\StructType\CarOption $startonderbreker = null, \Webservices\StructType\CarOption $inbraakalarm = null, \Webservices\StructType\CarOption $centrale_deurvergrendeling = null, \Webservices\StructType\CarOption $afstandbediening_deurvergrendeling = null, \Webservices\StructType\CarOption $automatische_vergrendeling = null, \Webservices\StructType\CarOption $keyless_entry = null, \Webservices\StructType\CarOption $elektrische_ramen_voor = null, \Webservices\StructType\CarOption $elektrische_ramen_achter = null, \Webservices\StructType\CarOption $stuurbekrachtiging = null, \Webservices\StructType\CarOption $stuurschakeling = null, \Webservices\StructType\CarOption $cruise_control = null, \Webservices\StructType\CarOption $radar_cruise_control = null, \Webservices\StructType\CarOption $airconditioning = null, \Webservices\StructType\CarOption $klimaatregeling = null, \Webservices\StructType\CarOption $gescheiden_temperatuurregeling = null, \Webservices\StructType\CarOption $pollenfilter = null, \Webservices\StructType\CarOption $parkeersensor = null, \Webservices\StructType\CarOption $hoofdsteunen_voor = null, \Webservices\StructType\CarOption $hoofdsteunen_achter = null, \Webservices\StructType\CarOption $verstelbare_hoofdsteunen_achter = null, \Webservices\StructType\CarOption $derde_hoofdsteun_achter = null, \Webservices\StructType\CarOption $derde_driepuntsgordel_achter = null, \Webservices\StructType\CarOption $verstelbare_lendensteun_bestuurder = null, \Webservices\StructType\CarOption $verstelbare_lendensteun_passagier = null, \Webservices\StructType\CarOption $hoogteverstelling_bestuurder = null, \Webservices\StructType\CarOption $hoogteverstelling_passagier = null, \Webservices\StructType\CarOption $elektrische_stoelverstelling = null, \Webservices\StructType\CarOption $geheugen_stoelverstelling = null, \Webservices\StructType\CarOption $verwarmde_zitplaatsen_voor = null, \Webservices\StructType\CarOption $verwarmde_zitplaatsen_achter = null, \Webservices\StructType\CarOption $sportstoelen = null, \Webservices\StructType\CarOption $bekledingstof_leer = null, \Webservices\StructType\CarOption $lerenbekleding = null, \Webservices\StructType\CarOption $hoogteverstelling_stuur = null, \Webservices\StructType\CarOption $diepteverstelling_stuur = null, \Webservices\StructType\CarOption $elektrische_stuurverstelling = null, \Webservices\StructType\CarOption $leer_bekleed_stuur = null, \Webservices\StructType\CarOption $middenarmsteun_voor = null, \Webservices\StructType\CarOption $middenarmsteun_achter = null, \Webservices\StructType\CarOption $neerklapbare_achterbank = null, \Webservices\StructType\CarOption $in_delen_neerklapbaar_achterbank = null, \Webservices\StructType\CarOption $opbergvak_linkerportier = null, \Webservices\StructType\CarOption $bekerhouder_voor = null, \Webservices\StructType\CarOption $bekerhouder_achter = null, \Webservices\StructType\CarOption $zonnescherm_achterruit = null, \Webservices\StructType\CarOption $dagteller = null, \Webservices\StructType\CarOption $toerenteller = null, \Webservices\StructType\CarOption $temperatuurmeter = null, \Webservices\StructType\CarOption $oliepeilmeter = null, \Webservices\StructType\CarOption $oliedrukmeter = null, \Webservices\StructType\CarOption $olietemperatuurmeter = null, \Webservices\StructType\CarOption $voltmeter = null, \Webservices\StructType\CarOption $verbruiksmeter = null, \Webservices\StructType\CarOption $turbodrukmeter = null, \Webservices\StructType\CarOption $buitentemperatuurmeter = null, \Webservices\StructType\CarOption $klokje = null, \Webservices\StructType\CarOption $boardcomputer = null, \Webservices\StructType\CarOption $luidsprekers = null, \Webservices\StructType\CarOption $stereoinstallatie = null, \Webservices\StructType\CarOption $cdspeler = null, \Webservices\StructType\CarOption $cdwisselaar = null, \Webservices\StructType\CarOption $audiostuurbediening = null, \Webservices\StructType\CarOption $bandenspanningssensor = null, \Webservices\StructType\CarOption $navigatiesysteem = null, \Webservices\StructType\CarOption $televisie = null, \Webservices\StructType\CarOption $telefoonvoorbereiding = null, \Webservices\StructType\CarOption $telefoon = null, \Webservices\StructType\CarOption $intervalruitenwisser = null, \Webservices\StructType\CarOption $regelbare_interval = null, \Webservices\StructType\CarOption $regensensor = null, \Webservices\StructType\CarOption $ruitenwisser_achter = null, \Webservices\StructType\CarOption $achterruitverwarming = null, \Webservices\StructType\CarOption $voorruitverwarming = null, \Webservices\StructType\CarOption $verwarmde_ruitensproeiers = null, \Webservices\StructType\CarOption $gelaagde_voorruit = null, \Webservices\StructType\CarOption $getintglas = null, \Webservices\StructType\CarOption $schuifdak = null, \Webservices\StructType\CarOption $elektrisch_schuifdak = null, \Webservices\StructType\CarOption $beschermstrips_opzij = null, \Webservices\StructType\CarOption $bumpers_meegespoten = null, \Webservices\StructType\CarOption $metallic_lak = null, \Webservices\StructType\CarOption $lichtmetalen_velgen = null, \Webservices\StructType\CarOption $rechter_buitenspiegel = null, \Webservices\StructType\CarOption $binnenuit_verstelbare_buitenspiegel = null, \Webservices\StructType\CarOption $elektrische_spiegels = null, \Webservices\StructType\CarOption $verwarmde_spiegels = null, \Webservices\StructType\CarOption $inklapbare_spiegels = null, \Webservices\StructType\CarOption $meegespoten_spiegels = null, \Webservices\StructType\CarOption $dodehoekspiegel_bestuurder = null, \Webservices\StructType\CarOption $dimmende_binnenspiegel = null, \Webservices\StructType\CarOption $dimmende_buitenspiegel = null, \Webservices\StructType\CarOption $dakrails = null, \Webservices\StructType\CarOption $binnenuit_te_openen_tankklep = null, \Webservices\StructType\CarOption $binnenuit_te_openen_bagageklep = null, \Webservices\StructType\CarOption $op_afstand_te_openen_bagageklep = null, \Webservices\StructType\CarOption $halogeen_koplampen = null, \Webservices\StructType\CarOption $xenon_koplampen = null, \Webservices\StructType\CarOption $verstelbare_koplampen = null, \Webservices\StructType\CarOption $koplampsproeiers = null, \Webservices\StructType\CarOption $automatisch_inschakelende_koplampen = null, \Webservices\StructType\CarOption $verstralers = null, \Webservices\StructType\CarOption $mistlampen_voor = null, \Webservices\StructType\CarOption $mistlampen_achter = null, \Webservices\StructType\CarOption $zoemer_vergeten_verlichting = null, \Webservices\StructType\CarOption $verlichte_bagageruimte = null, \Webservices\StructType\CarOption $verlichte_motorruimte = null, \Webservices\StructType\CarOption $verlicht_dashboardkastje = null, \Webservices\StructType\CarOption $regelbare_dashboardverlichting = null, \Webservices\StructType\CarOption $leeslampje_voor = null, \Webservices\StructType\CarOption $leeslampje_achter = null, \Webservices\StructType\CarOption $verlichte_makeupspiegel = null, \Webservices\StructType\CarOption $vertraging_interieurverlichting = null, \Webservices\StructType\CarOption $portierverlichting = null) |
||
1432 | { |
||
1433 | $this |
||
1434 | ->setCar_id($car_id) |
||
1435 | ->setMerk($merk) |
||
1436 | ->setSerie($serie) |
||
1437 | ->setSerie_jaar_van($serie_jaar_van) |
||
1438 | ->setSerie_jaar_tot($serie_jaar_tot) |
||
1439 | ->setModel($model) |
||
1440 | ->setModel_maand_van($model_maand_van) |
||
1441 | ->setModel_jaar_van($model_jaar_van) |
||
1442 | ->setModel_maand_tot($model_maand_tot) |
||
1443 | ->setModel_jaar_tot($model_jaar_tot) |
||
1444 | ->setBelasting_min($belasting_min) |
||
1445 | ->setBelasting_max($belasting_max) |
||
1446 | ->setAlgemene_garantie($algemene_garantie) |
||
1447 | ->setAlgemene_garantie_km($algemene_garantie_km) |
||
1448 | ->setCarrosserie_garantie($carrosserie_garantie) |
||
1449 | ->setDeuren($deuren) |
||
1450 | ->setCarrosserietype($carrosserietype) |
||
1451 | ->setAantal_versnellingen($aantal_versnellingen) |
||
1452 | ->setSoort_schakeling($soort_schakeling) |
||
1453 | ->setAandrijving($aandrijving) |
||
1454 | ->setBrandstoftype($brandstoftype) |
||
1455 | ->setAantal_cilinders($aantal_cilinders) |
||
1456 | ->setBouwwijze($bouwwijze) |
||
1457 | ->setKleppen_per_cilinder($kleppen_per_cilinder) |
||
1458 | ->setCilinderinhoud($cilinderinhoud) |
||
1459 | ->setBoring($boring) |
||
1460 | ->setSlag($slag) |
||
1461 | ->setCompressieverhouding($compressieverhouding) |
||
1462 | ->setVermogen_kw($vermogen_kw) |
||
1463 | ->setVermogen_pk($vermogen_pk) |
||
1464 | ->setVermogen_tpm($vermogen_tpm) |
||
1465 | ->setKoppel($koppel) |
||
1466 | ->setKoppel_tpm($koppel_tpm) |
||
1467 | ->setKatalysator($katalysator) |
||
1468 | ->setBrandstofsysteem($brandstofsysteem) |
||
1469 | ->setKlepbediening($klepbediening) |
||
1470 | ->setTurbo($turbo) |
||
1471 | ->setWielophanging_voor($wielophanging_voor) |
||
1472 | ->setWielophanging_achter($wielophanging_achter) |
||
1473 | ->setVering_voor($vering_voor) |
||
1474 | ->setVering_achter($vering_achter) |
||
1475 | ->setStabilisator_voor($stabilisator_voor) |
||
1476 | ->setStabilisator_achter($stabilisator_achter) |
||
1477 | ->setRemmen_voor($remmen_voor) |
||
1478 | ->setRemmen_voor_mm($remmen_voor_mm) |
||
1479 | ->setRemmen_achter($remmen_achter) |
||
1480 | ->setRemmen_achter_mm($remmen_achter_mm) |
||
1481 | ->setCw_waarde($cw_waarde) |
||
1482 | ->setLengte($lengte) |
||
1483 | ->setBreedte($breedte) |
||
1484 | ->setHoogte($hoogte) |
||
1485 | ->setWielbasis($wielbasis) |
||
1486 | ->setSpoorbreedte_voor($spoorbreedte_voor) |
||
1487 | ->setSpoorbreedte_achter($spoorbreedte_achter) |
||
1488 | ->setDraaicirkel($draaicirkel) |
||
1489 | ->setBandenmaat_voor($bandenmaat_voor) |
||
1490 | ->setBandenmaat_achter($bandenmaat_achter) |
||
1491 | ->setMassa($massa) |
||
1492 | ->setMax_toelaatbare_massa($max_toelaatbare_massa) |
||
1493 | ->setMax_aanhanger_geremd($max_aanhanger_geremd) |
||
1494 | ->setMax_aanhanger_ongeremd($max_aanhanger_ongeremd) |
||
1495 | ->setMax_kogeldruk($max_kogeldruk) |
||
1496 | ->setMax_dakbelasting($max_dakbelasting) |
||
1497 | ->setKoffer_min($koffer_min) |
||
1498 | ->setKoffer_max($koffer_max) |
||
1499 | ->setTankinhoud($tankinhoud) |
||
1500 | ->setTopsnelheid($topsnelheid) |
||
1501 | ->setAcceleratie($acceleratie) |
||
1502 | ->setVerbruik_binnen_bebouwde_kom($verbruik_binnen_bebouwde_kom) |
||
1503 | ->setVerbruik_buiten_bebouwde_kom($verbruik_buiten_bebouwde_kom) |
||
1504 | ->setVerbruik_gecombineerd($verbruik_gecombineerd) |
||
1505 | ->setCo2_uitstoot($co2_uitstoot) |
||
1506 | ->setVerbruik_gemiddeld($verbruik_gemiddeld) |
||
1507 | ->setAbs($abs) |
||
1508 | ->setRemkrachtverdeling($remkrachtverdeling) |
||
1509 | ->setBrakeassist($brakeassist) |
||
1510 | ->setTractiecontrole($tractiecontrole) |
||
1511 | ->setSperdifferentieel($sperdifferentieel) |
||
1512 | ->setStabiliteitsregeling($stabiliteitsregeling) |
||
1513 | ->setRegelbare_schokdemping($regelbare_schokdemping) |
||
1514 | ->setNiveauregeling($niveauregeling) |
||
1515 | ->setAirbag_bestuurder($airbag_bestuurder) |
||
1516 | ->setAirbag_passagier($airbag_passagier) |
||
1517 | ->setAirbag_opzijvoor($airbag_opzijvoor) |
||
1518 | ->setAirbag_opzijachter($airbag_opzijachter) |
||
1519 | ->setAirbag_hoofdvoor($airbag_hoofdvoor) |
||
1520 | ->setAirbag_hoofdachter($airbag_hoofdachter) |
||
1521 | ->setGordelspanners($gordelspanners) |
||
1522 | ->setVerstelbare_gordelhoogte($verstelbare_gordelhoogte) |
||
1523 | ->setStartonderbreker($startonderbreker) |
||
1524 | ->setInbraakalarm($inbraakalarm) |
||
1525 | ->setCentrale_deurvergrendeling($centrale_deurvergrendeling) |
||
1526 | ->setAfstandbediening_deurvergrendeling($afstandbediening_deurvergrendeling) |
||
1527 | ->setAutomatische_vergrendeling($automatische_vergrendeling) |
||
1528 | ->setKeyless_entry($keyless_entry) |
||
1529 | ->setElektrische_ramen_voor($elektrische_ramen_voor) |
||
1530 | ->setElektrische_ramen_achter($elektrische_ramen_achter) |
||
1531 | ->setStuurbekrachtiging($stuurbekrachtiging) |
||
1532 | ->setStuurschakeling($stuurschakeling) |
||
1533 | ->setCruise_control($cruise_control) |
||
1534 | ->setRadar_cruise_control($radar_cruise_control) |
||
1535 | ->setAirconditioning($airconditioning) |
||
1536 | ->setKlimaatregeling($klimaatregeling) |
||
1537 | ->setGescheiden_temperatuurregeling($gescheiden_temperatuurregeling) |
||
1538 | ->setPollenfilter($pollenfilter) |
||
1539 | ->setParkeersensor($parkeersensor) |
||
1540 | ->setHoofdsteunen_voor($hoofdsteunen_voor) |
||
1541 | ->setHoofdsteunen_achter($hoofdsteunen_achter) |
||
1542 | ->setVerstelbare_hoofdsteunen_achter($verstelbare_hoofdsteunen_achter) |
||
1543 | ->setDerde_hoofdsteun_achter($derde_hoofdsteun_achter) |
||
1544 | ->setDerde_driepuntsgordel_achter($derde_driepuntsgordel_achter) |
||
1545 | ->setVerstelbare_lendensteun_bestuurder($verstelbare_lendensteun_bestuurder) |
||
1546 | ->setVerstelbare_lendensteun_passagier($verstelbare_lendensteun_passagier) |
||
1547 | ->setHoogteverstelling_bestuurder($hoogteverstelling_bestuurder) |
||
1548 | ->setHoogteverstelling_passagier($hoogteverstelling_passagier) |
||
1549 | ->setElektrische_stoelverstelling($elektrische_stoelverstelling) |
||
1550 | ->setGeheugen_stoelverstelling($geheugen_stoelverstelling) |
||
1551 | ->setVerwarmde_zitplaatsen_voor($verwarmde_zitplaatsen_voor) |
||
1552 | ->setVerwarmde_zitplaatsen_achter($verwarmde_zitplaatsen_achter) |
||
1553 | ->setSportstoelen($sportstoelen) |
||
1554 | ->setBekledingstof_leer($bekledingstof_leer) |
||
1555 | ->setLerenbekleding($lerenbekleding) |
||
1556 | ->setHoogteverstelling_stuur($hoogteverstelling_stuur) |
||
1557 | ->setDiepteverstelling_stuur($diepteverstelling_stuur) |
||
1558 | ->setElektrische_stuurverstelling($elektrische_stuurverstelling) |
||
1559 | ->setLeer_bekleed_stuur($leer_bekleed_stuur) |
||
1560 | ->setMiddenarmsteun_voor($middenarmsteun_voor) |
||
1561 | ->setMiddenarmsteun_achter($middenarmsteun_achter) |
||
1562 | ->setNeerklapbare_achterbank($neerklapbare_achterbank) |
||
1563 | ->setIn_delen_neerklapbaar_achterbank($in_delen_neerklapbaar_achterbank) |
||
1564 | ->setOpbergvak_linkerportier($opbergvak_linkerportier) |
||
1565 | ->setBekerhouder_voor($bekerhouder_voor) |
||
1566 | ->setBekerhouder_achter($bekerhouder_achter) |
||
1567 | ->setZonnescherm_achterruit($zonnescherm_achterruit) |
||
1568 | ->setDagteller($dagteller) |
||
1569 | ->setToerenteller($toerenteller) |
||
1570 | ->setTemperatuurmeter($temperatuurmeter) |
||
1571 | ->setOliepeilmeter($oliepeilmeter) |
||
1572 | ->setOliedrukmeter($oliedrukmeter) |
||
1573 | ->setOlietemperatuurmeter($olietemperatuurmeter) |
||
1574 | ->setVoltmeter($voltmeter) |
||
1575 | ->setVerbruiksmeter($verbruiksmeter) |
||
1576 | ->setTurbodrukmeter($turbodrukmeter) |
||
1577 | ->setBuitentemperatuurmeter($buitentemperatuurmeter) |
||
1578 | ->setKlokje($klokje) |
||
1579 | ->setBoardcomputer($boardcomputer) |
||
1580 | ->setLuidsprekers($luidsprekers) |
||
1581 | ->setStereoinstallatie($stereoinstallatie) |
||
1582 | ->setCdspeler($cdspeler) |
||
1583 | ->setCdwisselaar($cdwisselaar) |
||
1584 | ->setAudiostuurbediening($audiostuurbediening) |
||
1585 | ->setBandenspanningssensor($bandenspanningssensor) |
||
1586 | ->setNavigatiesysteem($navigatiesysteem) |
||
1587 | ->setTelevisie($televisie) |
||
1588 | ->setTelefoonvoorbereiding($telefoonvoorbereiding) |
||
1589 | ->setTelefoon($telefoon) |
||
1590 | ->setIntervalruitenwisser($intervalruitenwisser) |
||
1591 | ->setRegelbare_interval($regelbare_interval) |
||
1592 | ->setRegensensor($regensensor) |
||
1593 | ->setRuitenwisser_achter($ruitenwisser_achter) |
||
1594 | ->setAchterruitverwarming($achterruitverwarming) |
||
1595 | ->setVoorruitverwarming($voorruitverwarming) |
||
1596 | ->setVerwarmde_ruitensproeiers($verwarmde_ruitensproeiers) |
||
1597 | ->setGelaagde_voorruit($gelaagde_voorruit) |
||
1598 | ->setGetintglas($getintglas) |
||
1599 | ->setSchuifdak($schuifdak) |
||
1600 | ->setElektrisch_schuifdak($elektrisch_schuifdak) |
||
1601 | ->setBeschermstrips_opzij($beschermstrips_opzij) |
||
1602 | ->setBumpers_meegespoten($bumpers_meegespoten) |
||
1603 | ->setMetallic_lak($metallic_lak) |
||
1604 | ->setLichtmetalen_velgen($lichtmetalen_velgen) |
||
1605 | ->setRechter_buitenspiegel($rechter_buitenspiegel) |
||
1606 | ->setBinnenuit_verstelbare_buitenspiegel($binnenuit_verstelbare_buitenspiegel) |
||
1607 | ->setElektrische_spiegels($elektrische_spiegels) |
||
1608 | ->setVerwarmde_spiegels($verwarmde_spiegels) |
||
1609 | ->setInklapbare_spiegels($inklapbare_spiegels) |
||
1610 | ->setMeegespoten_spiegels($meegespoten_spiegels) |
||
1611 | ->setDodehoekspiegel_bestuurder($dodehoekspiegel_bestuurder) |
||
1612 | ->setDimmende_binnenspiegel($dimmende_binnenspiegel) |
||
1613 | ->setDimmende_buitenspiegel($dimmende_buitenspiegel) |
||
1614 | ->setDakrails($dakrails) |
||
1615 | ->setBinnenuit_te_openen_tankklep($binnenuit_te_openen_tankklep) |
||
1616 | ->setBinnenuit_te_openen_bagageklep($binnenuit_te_openen_bagageklep) |
||
1617 | ->setOp_afstand_te_openen_bagageklep($op_afstand_te_openen_bagageklep) |
||
1618 | ->setHalogeen_koplampen($halogeen_koplampen) |
||
1619 | ->setXenon_koplampen($xenon_koplampen) |
||
1620 | ->setVerstelbare_koplampen($verstelbare_koplampen) |
||
1621 | ->setKoplampsproeiers($koplampsproeiers) |
||
1622 | ->setAutomatisch_inschakelende_koplampen($automatisch_inschakelende_koplampen) |
||
1623 | ->setVerstralers($verstralers) |
||
1624 | ->setMistlampen_voor($mistlampen_voor) |
||
1625 | ->setMistlampen_achter($mistlampen_achter) |
||
1626 | ->setZoemer_vergeten_verlichting($zoemer_vergeten_verlichting) |
||
1627 | ->setVerlichte_bagageruimte($verlichte_bagageruimte) |
||
1628 | ->setVerlichte_motorruimte($verlichte_motorruimte) |
||
1629 | ->setVerlicht_dashboardkastje($verlicht_dashboardkastje) |
||
1630 | ->setRegelbare_dashboardverlichting($regelbare_dashboardverlichting) |
||
1631 | ->setLeeslampje_voor($leeslampje_voor) |
||
1632 | ->setLeeslampje_achter($leeslampje_achter) |
||
1633 | ->setVerlichte_makeupspiegel($verlichte_makeupspiegel) |
||
1634 | ->setVertraging_interieurverlichting($vertraging_interieurverlichting) |
||
1635 | ->setPortierverlichting($portierverlichting); |
||
1636 | } |
||
1637 | /** |
||
1638 | * Get car_id value |
||
1639 | * @return string|null |
||
1640 | */ |
||
1641 | public function getCar_id() |
||
1642 | { |
||
1643 | return $this->car_id; |
||
1644 | } |
||
1645 | /** |
||
1646 | * Set car_id value |
||
1647 | * @param string $car_id |
||
1648 | * @return \Webservices\StructType\CarOptions |
||
1649 | */ |
||
1650 | public function setCar_id($car_id = null) |
||
1651 | { |
||
1652 | // validation for constraint: string |
||
1653 | if (!is_null($car_id) && !is_string($car_id)) { |
||
|
|||
1654 | throw new \InvalidArgumentException(sprintf('Invalid value, please provide a string, "%s" given', gettype($car_id)), __LINE__); |
||
1655 | } |
||
1656 | $this->car_id = $car_id; |
||
1657 | return $this; |
||
1658 | } |
||
1659 | /** |
||
1660 | * Get merk value |
||
1661 | * @return string|null |
||
1662 | */ |
||
1663 | public function getMerk() |
||
1664 | { |
||
1665 | return $this->merk; |
||
1666 | } |
||
1667 | /** |
||
1668 | * Set merk value |
||
1669 | * @param string $merk |
||
1670 | * @return \Webservices\StructType\CarOptions |
||
1671 | */ |
||
1672 | public function setMerk($merk = null) |
||
1673 | { |
||
1674 | // validation for constraint: string |
||
1675 | if (!is_null($merk) && !is_string($merk)) { |
||
1676 | throw new \InvalidArgumentException(sprintf('Invalid value, please provide a string, "%s" given', gettype($merk)), __LINE__); |
||
1677 | } |
||
1678 | $this->merk = $merk; |
||
1679 | return $this; |
||
1680 | } |
||
1681 | /** |
||
1682 | * Get serie value |
||
1683 | * @return string|null |
||
1684 | */ |
||
1685 | public function getSerie() |
||
1686 | { |
||
1687 | return $this->serie; |
||
1688 | } |
||
1689 | /** |
||
1690 | * Set serie value |
||
1691 | * @param string $serie |
||
1692 | * @return \Webservices\StructType\CarOptions |
||
1693 | */ |
||
1694 | public function setSerie($serie = null) |
||
1695 | { |
||
1696 | // validation for constraint: string |
||
1697 | if (!is_null($serie) && !is_string($serie)) { |
||
1698 | throw new \InvalidArgumentException(sprintf('Invalid value, please provide a string, "%s" given', gettype($serie)), __LINE__); |
||
1699 | } |
||
1700 | $this->serie = $serie; |
||
1701 | return $this; |
||
1702 | } |
||
1703 | /** |
||
1704 | * Get serie_jaar_van value |
||
1705 | * @return int|null |
||
1706 | */ |
||
1707 | public function getSerie_jaar_van() |
||
1708 | { |
||
1709 | return $this->serie_jaar_van; |
||
1710 | } |
||
1711 | /** |
||
1712 | * Set serie_jaar_van value |
||
1713 | * @param int $serie_jaar_van |
||
1714 | * @return \Webservices\StructType\CarOptions |
||
1715 | */ |
||
1716 | public function setSerie_jaar_van($serie_jaar_van = null) |
||
1717 | { |
||
1718 | // validation for constraint: int |
||
1719 | if (!is_null($serie_jaar_van) && !is_numeric($serie_jaar_van)) { |
||
1720 | throw new \InvalidArgumentException(sprintf('Invalid value, please provide a numeric value, "%s" given', gettype($serie_jaar_van)), __LINE__); |
||
1721 | } |
||
1722 | $this->serie_jaar_van = $serie_jaar_van; |
||
1723 | return $this; |
||
1724 | } |
||
1725 | /** |
||
1726 | * Get serie_jaar_tot value |
||
1727 | * @return int|null |
||
1728 | */ |
||
1729 | public function getSerie_jaar_tot() |
||
1730 | { |
||
1731 | return $this->serie_jaar_tot; |
||
1732 | } |
||
1733 | /** |
||
1734 | * Set serie_jaar_tot value |
||
1735 | * @param int $serie_jaar_tot |
||
1736 | * @return \Webservices\StructType\CarOptions |
||
1737 | */ |
||
1738 | public function setSerie_jaar_tot($serie_jaar_tot = null) |
||
1739 | { |
||
1740 | // validation for constraint: int |
||
1741 | if (!is_null($serie_jaar_tot) && !is_numeric($serie_jaar_tot)) { |
||
1742 | throw new \InvalidArgumentException(sprintf('Invalid value, please provide a numeric value, "%s" given', gettype($serie_jaar_tot)), __LINE__); |
||
1743 | } |
||
1744 | $this->serie_jaar_tot = $serie_jaar_tot; |
||
1745 | return $this; |
||
1746 | } |
||
1747 | /** |
||
1748 | * Get model value |
||
1749 | * @return string|null |
||
1750 | */ |
||
1751 | public function getModel() |
||
1752 | { |
||
1753 | return $this->model; |
||
1754 | } |
||
1755 | /** |
||
1756 | * Set model value |
||
1757 | * @param string $model |
||
1758 | * @return \Webservices\StructType\CarOptions |
||
1759 | */ |
||
1760 | public function setModel($model = null) |
||
1761 | { |
||
1762 | // validation for constraint: string |
||
1763 | if (!is_null($model) && !is_string($model)) { |
||
1764 | throw new \InvalidArgumentException(sprintf('Invalid value, please provide a string, "%s" given', gettype($model)), __LINE__); |
||
1765 | } |
||
1766 | $this->model = $model; |
||
1767 | return $this; |
||
1768 | } |
||
1769 | /** |
||
1770 | * Get model_maand_van value |
||
1771 | * @return int|null |
||
1772 | */ |
||
1773 | public function getModel_maand_van() |
||
1774 | { |
||
1775 | return $this->model_maand_van; |
||
1776 | } |
||
1777 | /** |
||
1778 | * Set model_maand_van value |
||
1779 | * @param int $model_maand_van |
||
1780 | * @return \Webservices\StructType\CarOptions |
||
1781 | */ |
||
1782 | public function setModel_maand_van($model_maand_van = null) |
||
1783 | { |
||
1784 | // validation for constraint: int |
||
1785 | if (!is_null($model_maand_van) && !is_numeric($model_maand_van)) { |
||
1786 | throw new \InvalidArgumentException(sprintf('Invalid value, please provide a numeric value, "%s" given', gettype($model_maand_van)), __LINE__); |
||
1787 | } |
||
1788 | $this->model_maand_van = $model_maand_van; |
||
1789 | return $this; |
||
1790 | } |
||
1791 | /** |
||
1792 | * Get model_jaar_van value |
||
1793 | * @return int|null |
||
1794 | */ |
||
1795 | public function getModel_jaar_van() |
||
1796 | { |
||
1797 | return $this->model_jaar_van; |
||
1798 | } |
||
1799 | /** |
||
1800 | * Set model_jaar_van value |
||
1801 | * @param int $model_jaar_van |
||
1802 | * @return \Webservices\StructType\CarOptions |
||
1803 | */ |
||
1804 | public function setModel_jaar_van($model_jaar_van = null) |
||
1805 | { |
||
1806 | // validation for constraint: int |
||
1807 | if (!is_null($model_jaar_van) && !is_numeric($model_jaar_van)) { |
||
1808 | throw new \InvalidArgumentException(sprintf('Invalid value, please provide a numeric value, "%s" given', gettype($model_jaar_van)), __LINE__); |
||
1809 | } |
||
1810 | $this->model_jaar_van = $model_jaar_van; |
||
1811 | return $this; |
||
1812 | } |
||
1813 | /** |
||
1814 | * Get model_maand_tot value |
||
1815 | * @return int|null |
||
1816 | */ |
||
1817 | public function getModel_maand_tot() |
||
1818 | { |
||
1819 | return $this->model_maand_tot; |
||
1820 | } |
||
1821 | /** |
||
1822 | * Set model_maand_tot value |
||
1823 | * @param int $model_maand_tot |
||
1824 | * @return \Webservices\StructType\CarOptions |
||
1825 | */ |
||
1826 | public function setModel_maand_tot($model_maand_tot = null) |
||
1827 | { |
||
1828 | // validation for constraint: int |
||
1829 | if (!is_null($model_maand_tot) && !is_numeric($model_maand_tot)) { |
||
1830 | throw new \InvalidArgumentException(sprintf('Invalid value, please provide a numeric value, "%s" given', gettype($model_maand_tot)), __LINE__); |
||
1831 | } |
||
1832 | $this->model_maand_tot = $model_maand_tot; |
||
1833 | return $this; |
||
1834 | } |
||
1835 | /** |
||
1836 | * Get model_jaar_tot value |
||
1837 | * @return int|null |
||
1838 | */ |
||
1839 | public function getModel_jaar_tot() |
||
1840 | { |
||
1841 | return $this->model_jaar_tot; |
||
1842 | } |
||
1843 | /** |
||
1844 | * Set model_jaar_tot value |
||
1845 | * @param int $model_jaar_tot |
||
1846 | * @return \Webservices\StructType\CarOptions |
||
1847 | */ |
||
1848 | public function setModel_jaar_tot($model_jaar_tot = null) |
||
1849 | { |
||
1850 | // validation for constraint: int |
||
1851 | if (!is_null($model_jaar_tot) && !is_numeric($model_jaar_tot)) { |
||
1852 | throw new \InvalidArgumentException(sprintf('Invalid value, please provide a numeric value, "%s" given', gettype($model_jaar_tot)), __LINE__); |
||
1853 | } |
||
1854 | $this->model_jaar_tot = $model_jaar_tot; |
||
1855 | return $this; |
||
1856 | } |
||
1857 | /** |
||
1858 | * Get belasting_min value |
||
1859 | * @return string|null |
||
1860 | */ |
||
1861 | public function getBelasting_min() |
||
1862 | { |
||
1863 | return $this->belasting_min; |
||
1864 | } |
||
1865 | /** |
||
1866 | * Set belasting_min value |
||
1867 | * @param string $belasting_min |
||
1868 | * @return \Webservices\StructType\CarOptions |
||
1869 | */ |
||
1870 | public function setBelasting_min($belasting_min = null) |
||
1871 | { |
||
1872 | // validation for constraint: string |
||
1873 | if (!is_null($belasting_min) && !is_string($belasting_min)) { |
||
1874 | throw new \InvalidArgumentException(sprintf('Invalid value, please provide a string, "%s" given', gettype($belasting_min)), __LINE__); |
||
1875 | } |
||
1876 | $this->belasting_min = $belasting_min; |
||
1877 | return $this; |
||
1878 | } |
||
1879 | /** |
||
1880 | * Get belasting_max value |
||
1881 | * @return string|null |
||
1882 | */ |
||
1883 | public function getBelasting_max() |
||
1884 | { |
||
1885 | return $this->belasting_max; |
||
1886 | } |
||
1887 | /** |
||
1888 | * Set belasting_max value |
||
1889 | * @param string $belasting_max |
||
1890 | * @return \Webservices\StructType\CarOptions |
||
1891 | */ |
||
1892 | public function setBelasting_max($belasting_max = null) |
||
1893 | { |
||
1894 | // validation for constraint: string |
||
1895 | if (!is_null($belasting_max) && !is_string($belasting_max)) { |
||
1896 | throw new \InvalidArgumentException(sprintf('Invalid value, please provide a string, "%s" given', gettype($belasting_max)), __LINE__); |
||
1897 | } |
||
1898 | $this->belasting_max = $belasting_max; |
||
1899 | return $this; |
||
1900 | } |
||
1901 | /** |
||
1902 | * Get algemene_garantie value |
||
1903 | * @return string|null |
||
1904 | */ |
||
1905 | public function getAlgemene_garantie() |
||
1906 | { |
||
1907 | return $this->algemene_garantie; |
||
1908 | } |
||
1909 | /** |
||
1910 | * Set algemene_garantie value |
||
1911 | * @param string $algemene_garantie |
||
1912 | * @return \Webservices\StructType\CarOptions |
||
1913 | */ |
||
1914 | public function setAlgemene_garantie($algemene_garantie = null) |
||
1915 | { |
||
1916 | // validation for constraint: string |
||
1917 | if (!is_null($algemene_garantie) && !is_string($algemene_garantie)) { |
||
1918 | throw new \InvalidArgumentException(sprintf('Invalid value, please provide a string, "%s" given', gettype($algemene_garantie)), __LINE__); |
||
1919 | } |
||
1920 | $this->algemene_garantie = $algemene_garantie; |
||
1921 | return $this; |
||
1922 | } |
||
1923 | /** |
||
1924 | * Get algemene_garantie_km value |
||
1925 | * @return string|null |
||
1926 | */ |
||
1927 | public function getAlgemene_garantie_km() |
||
1928 | { |
||
1929 | return $this->algemene_garantie_km; |
||
1930 | } |
||
1931 | /** |
||
1932 | * Set algemene_garantie_km value |
||
1933 | * @param string $algemene_garantie_km |
||
1934 | * @return \Webservices\StructType\CarOptions |
||
1935 | */ |
||
1936 | public function setAlgemene_garantie_km($algemene_garantie_km = null) |
||
1937 | { |
||
1938 | // validation for constraint: string |
||
1939 | if (!is_null($algemene_garantie_km) && !is_string($algemene_garantie_km)) { |
||
1940 | throw new \InvalidArgumentException(sprintf('Invalid value, please provide a string, "%s" given', gettype($algemene_garantie_km)), __LINE__); |
||
1941 | } |
||
1942 | $this->algemene_garantie_km = $algemene_garantie_km; |
||
1943 | return $this; |
||
1944 | } |
||
1945 | /** |
||
1946 | * Get carrosserie_garantie value |
||
1947 | * @return string|null |
||
1948 | */ |
||
1949 | public function getCarrosserie_garantie() |
||
1950 | { |
||
1951 | return $this->carrosserie_garantie; |
||
1952 | } |
||
1953 | /** |
||
1954 | * Set carrosserie_garantie value |
||
1955 | * @param string $carrosserie_garantie |
||
1956 | * @return \Webservices\StructType\CarOptions |
||
1957 | */ |
||
1958 | public function setCarrosserie_garantie($carrosserie_garantie = null) |
||
1959 | { |
||
1960 | // validation for constraint: string |
||
1961 | if (!is_null($carrosserie_garantie) && !is_string($carrosserie_garantie)) { |
||
1962 | throw new \InvalidArgumentException(sprintf('Invalid value, please provide a string, "%s" given', gettype($carrosserie_garantie)), __LINE__); |
||
1963 | } |
||
1964 | $this->carrosserie_garantie = $carrosserie_garantie; |
||
1965 | return $this; |
||
1966 | } |
||
1967 | /** |
||
1968 | * Get deuren value |
||
1969 | * @return string|null |
||
1970 | */ |
||
1971 | public function getDeuren() |
||
1972 | { |
||
1973 | return $this->deuren; |
||
1974 | } |
||
1975 | /** |
||
1976 | * Set deuren value |
||
1977 | * @param string $deuren |
||
1978 | * @return \Webservices\StructType\CarOptions |
||
1979 | */ |
||
1980 | public function setDeuren($deuren = null) |
||
1981 | { |
||
1982 | // validation for constraint: string |
||
1983 | if (!is_null($deuren) && !is_string($deuren)) { |
||
1984 | throw new \InvalidArgumentException(sprintf('Invalid value, please provide a string, "%s" given', gettype($deuren)), __LINE__); |
||
1985 | } |
||
1986 | $this->deuren = $deuren; |
||
1987 | return $this; |
||
1988 | } |
||
1989 | /** |
||
1990 | * Get carrosserietype value |
||
1991 | * @return string|null |
||
1992 | */ |
||
1993 | public function getCarrosserietype() |
||
1994 | { |
||
1995 | return $this->carrosserietype; |
||
1996 | } |
||
1997 | /** |
||
1998 | * Set carrosserietype value |
||
1999 | * @param string $carrosserietype |
||
2000 | * @return \Webservices\StructType\CarOptions |
||
2001 | */ |
||
2002 | public function setCarrosserietype($carrosserietype = null) |
||
2003 | { |
||
2004 | // validation for constraint: string |
||
2005 | if (!is_null($carrosserietype) && !is_string($carrosserietype)) { |
||
2006 | throw new \InvalidArgumentException(sprintf('Invalid value, please provide a string, "%s" given', gettype($carrosserietype)), __LINE__); |
||
2007 | } |
||
2008 | $this->carrosserietype = $carrosserietype; |
||
2009 | return $this; |
||
2010 | } |
||
2011 | /** |
||
2012 | * Get aantal_versnellingen value |
||
2013 | * @return string|null |
||
2014 | */ |
||
2015 | public function getAantal_versnellingen() |
||
2016 | { |
||
2017 | return $this->aantal_versnellingen; |
||
2018 | } |
||
2019 | /** |
||
2020 | * Set aantal_versnellingen value |
||
2021 | * @param string $aantal_versnellingen |
||
2022 | * @return \Webservices\StructType\CarOptions |
||
2023 | */ |
||
2024 | public function setAantal_versnellingen($aantal_versnellingen = null) |
||
2025 | { |
||
2026 | // validation for constraint: string |
||
2027 | if (!is_null($aantal_versnellingen) && !is_string($aantal_versnellingen)) { |
||
2028 | throw new \InvalidArgumentException(sprintf('Invalid value, please provide a string, "%s" given', gettype($aantal_versnellingen)), __LINE__); |
||
2029 | } |
||
2030 | $this->aantal_versnellingen = $aantal_versnellingen; |
||
2031 | return $this; |
||
2032 | } |
||
2033 | /** |
||
2034 | * Get soort_schakeling value |
||
2035 | * @return string|null |
||
2036 | */ |
||
2037 | public function getSoort_schakeling() |
||
2038 | { |
||
2039 | return $this->soort_schakeling; |
||
2040 | } |
||
2041 | /** |
||
2042 | * Set soort_schakeling value |
||
2043 | * @param string $soort_schakeling |
||
2044 | * @return \Webservices\StructType\CarOptions |
||
2045 | */ |
||
2046 | public function setSoort_schakeling($soort_schakeling = null) |
||
2047 | { |
||
2048 | // validation for constraint: string |
||
2049 | if (!is_null($soort_schakeling) && !is_string($soort_schakeling)) { |
||
2050 | throw new \InvalidArgumentException(sprintf('Invalid value, please provide a string, "%s" given', gettype($soort_schakeling)), __LINE__); |
||
2051 | } |
||
2052 | $this->soort_schakeling = $soort_schakeling; |
||
2053 | return $this; |
||
2054 | } |
||
2055 | /** |
||
2056 | * Get aandrijving value |
||
2057 | * @return string|null |
||
2058 | */ |
||
2059 | public function getAandrijving() |
||
2060 | { |
||
2061 | return $this->aandrijving; |
||
2062 | } |
||
2063 | /** |
||
2064 | * Set aandrijving value |
||
2065 | * @param string $aandrijving |
||
2066 | * @return \Webservices\StructType\CarOptions |
||
2067 | */ |
||
2068 | public function setAandrijving($aandrijving = null) |
||
2069 | { |
||
2070 | // validation for constraint: string |
||
2071 | if (!is_null($aandrijving) && !is_string($aandrijving)) { |
||
2072 | throw new \InvalidArgumentException(sprintf('Invalid value, please provide a string, "%s" given', gettype($aandrijving)), __LINE__); |
||
2073 | } |
||
2074 | $this->aandrijving = $aandrijving; |
||
2075 | return $this; |
||
2076 | } |
||
2077 | /** |
||
2078 | * Get brandstoftype value |
||
2079 | * @return string|null |
||
2080 | */ |
||
2081 | public function getBrandstoftype() |
||
2082 | { |
||
2083 | return $this->brandstoftype; |
||
2084 | } |
||
2085 | /** |
||
2086 | * Set brandstoftype value |
||
2087 | * @param string $brandstoftype |
||
2088 | * @return \Webservices\StructType\CarOptions |
||
2089 | */ |
||
2090 | public function setBrandstoftype($brandstoftype = null) |
||
2091 | { |
||
2092 | // validation for constraint: string |
||
2093 | if (!is_null($brandstoftype) && !is_string($brandstoftype)) { |
||
2094 | throw new \InvalidArgumentException(sprintf('Invalid value, please provide a string, "%s" given', gettype($brandstoftype)), __LINE__); |
||
2095 | } |
||
2096 | $this->brandstoftype = $brandstoftype; |
||
2097 | return $this; |
||
2098 | } |
||
2099 | /** |
||
2100 | * Get aantal_cilinders value |
||
2101 | * @return string|null |
||
2102 | */ |
||
2103 | public function getAantal_cilinders() |
||
2104 | { |
||
2105 | return $this->aantal_cilinders; |
||
2106 | } |
||
2107 | /** |
||
2108 | * Set aantal_cilinders value |
||
2109 | * @param string $aantal_cilinders |
||
2110 | * @return \Webservices\StructType\CarOptions |
||
2111 | */ |
||
2112 | public function setAantal_cilinders($aantal_cilinders = null) |
||
2113 | { |
||
2114 | // validation for constraint: string |
||
2115 | if (!is_null($aantal_cilinders) && !is_string($aantal_cilinders)) { |
||
2116 | throw new \InvalidArgumentException(sprintf('Invalid value, please provide a string, "%s" given', gettype($aantal_cilinders)), __LINE__); |
||
2117 | } |
||
2118 | $this->aantal_cilinders = $aantal_cilinders; |
||
2119 | return $this; |
||
2120 | } |
||
2121 | /** |
||
2122 | * Get bouwwijze value |
||
2123 | * @return string|null |
||
2124 | */ |
||
2125 | public function getBouwwijze() |
||
2126 | { |
||
2127 | return $this->bouwwijze; |
||
2128 | } |
||
2129 | /** |
||
2130 | * Set bouwwijze value |
||
2131 | * @param string $bouwwijze |
||
2132 | * @return \Webservices\StructType\CarOptions |
||
2133 | */ |
||
2134 | public function setBouwwijze($bouwwijze = null) |
||
2135 | { |
||
2136 | // validation for constraint: string |
||
2137 | if (!is_null($bouwwijze) && !is_string($bouwwijze)) { |
||
2138 | throw new \InvalidArgumentException(sprintf('Invalid value, please provide a string, "%s" given', gettype($bouwwijze)), __LINE__); |
||
2139 | } |
||
2140 | $this->bouwwijze = $bouwwijze; |
||
2141 | return $this; |
||
2142 | } |
||
2143 | /** |
||
2144 | * Get kleppen_per_cilinder value |
||
2145 | * @return string|null |
||
2146 | */ |
||
2147 | public function getKleppen_per_cilinder() |
||
2148 | { |
||
2149 | return $this->kleppen_per_cilinder; |
||
2150 | } |
||
2151 | /** |
||
2152 | * Set kleppen_per_cilinder value |
||
2153 | * @param string $kleppen_per_cilinder |
||
2154 | * @return \Webservices\StructType\CarOptions |
||
2155 | */ |
||
2156 | public function setKleppen_per_cilinder($kleppen_per_cilinder = null) |
||
2157 | { |
||
2158 | // validation for constraint: string |
||
2159 | if (!is_null($kleppen_per_cilinder) && !is_string($kleppen_per_cilinder)) { |
||
2160 | throw new \InvalidArgumentException(sprintf('Invalid value, please provide a string, "%s" given', gettype($kleppen_per_cilinder)), __LINE__); |
||
2161 | } |
||
2162 | $this->kleppen_per_cilinder = $kleppen_per_cilinder; |
||
2163 | return $this; |
||
2164 | } |
||
2165 | /** |
||
2166 | * Get cilinderinhoud value |
||
2167 | * @return string|null |
||
2168 | */ |
||
2169 | public function getCilinderinhoud() |
||
2170 | { |
||
2171 | return $this->cilinderinhoud; |
||
2172 | } |
||
2173 | /** |
||
2174 | * Set cilinderinhoud value |
||
2175 | * @param string $cilinderinhoud |
||
2176 | * @return \Webservices\StructType\CarOptions |
||
2177 | */ |
||
2178 | public function setCilinderinhoud($cilinderinhoud = null) |
||
2179 | { |
||
2180 | // validation for constraint: string |
||
2181 | if (!is_null($cilinderinhoud) && !is_string($cilinderinhoud)) { |
||
2182 | throw new \InvalidArgumentException(sprintf('Invalid value, please provide a string, "%s" given', gettype($cilinderinhoud)), __LINE__); |
||
2183 | } |
||
2184 | $this->cilinderinhoud = $cilinderinhoud; |
||
2185 | return $this; |
||
2186 | } |
||
2187 | /** |
||
2188 | * Get boring value |
||
2189 | * @return string|null |
||
2190 | */ |
||
2191 | public function getBoring() |
||
2192 | { |
||
2193 | return $this->boring; |
||
2194 | } |
||
2195 | /** |
||
2196 | * Set boring value |
||
2197 | * @param string $boring |
||
2198 | * @return \Webservices\StructType\CarOptions |
||
2199 | */ |
||
2200 | public function setBoring($boring = null) |
||
2201 | { |
||
2202 | // validation for constraint: string |
||
2203 | if (!is_null($boring) && !is_string($boring)) { |
||
2204 | throw new \InvalidArgumentException(sprintf('Invalid value, please provide a string, "%s" given', gettype($boring)), __LINE__); |
||
2205 | } |
||
2206 | $this->boring = $boring; |
||
2207 | return $this; |
||
2208 | } |
||
2209 | /** |
||
2210 | * Get slag value |
||
2211 | * @return string|null |
||
2212 | */ |
||
2213 | public function getSlag() |
||
2214 | { |
||
2215 | return $this->slag; |
||
2216 | } |
||
2217 | /** |
||
2218 | * Set slag value |
||
2219 | * @param string $slag |
||
2220 | * @return \Webservices\StructType\CarOptions |
||
2221 | */ |
||
2222 | public function setSlag($slag = null) |
||
2223 | { |
||
2224 | // validation for constraint: string |
||
2225 | if (!is_null($slag) && !is_string($slag)) { |
||
2226 | throw new \InvalidArgumentException(sprintf('Invalid value, please provide a string, "%s" given', gettype($slag)), __LINE__); |
||
2227 | } |
||
2228 | $this->slag = $slag; |
||
2229 | return $this; |
||
2230 | } |
||
2231 | /** |
||
2232 | * Get compressieverhouding value |
||
2233 | * @return string|null |
||
2234 | */ |
||
2235 | public function getCompressieverhouding() |
||
2236 | { |
||
2237 | return $this->compressieverhouding; |
||
2238 | } |
||
2239 | /** |
||
2240 | * Set compressieverhouding value |
||
2241 | * @param string $compressieverhouding |
||
2242 | * @return \Webservices\StructType\CarOptions |
||
2243 | */ |
||
2244 | public function setCompressieverhouding($compressieverhouding = null) |
||
2245 | { |
||
2246 | // validation for constraint: string |
||
2247 | if (!is_null($compressieverhouding) && !is_string($compressieverhouding)) { |
||
2248 | throw new \InvalidArgumentException(sprintf('Invalid value, please provide a string, "%s" given', gettype($compressieverhouding)), __LINE__); |
||
2249 | } |
||
2250 | $this->compressieverhouding = $compressieverhouding; |
||
2251 | return $this; |
||
2252 | } |
||
2253 | /** |
||
2254 | * Get vermogen_kw value |
||
2255 | * @return string|null |
||
2256 | */ |
||
2257 | public function getVermogen_kw() |
||
2258 | { |
||
2259 | return $this->vermogen_kw; |
||
2260 | } |
||
2261 | /** |
||
2262 | * Set vermogen_kw value |
||
2263 | * @param string $vermogen_kw |
||
2264 | * @return \Webservices\StructType\CarOptions |
||
2265 | */ |
||
2266 | public function setVermogen_kw($vermogen_kw = null) |
||
2267 | { |
||
2268 | // validation for constraint: string |
||
2269 | if (!is_null($vermogen_kw) && !is_string($vermogen_kw)) { |
||
2270 | throw new \InvalidArgumentException(sprintf('Invalid value, please provide a string, "%s" given', gettype($vermogen_kw)), __LINE__); |
||
2271 | } |
||
2272 | $this->vermogen_kw = $vermogen_kw; |
||
2273 | return $this; |
||
2274 | } |
||
2275 | /** |
||
2276 | * Get vermogen_pk value |
||
2277 | * @return string|null |
||
2278 | */ |
||
2279 | public function getVermogen_pk() |
||
2280 | { |
||
2281 | return $this->vermogen_pk; |
||
2282 | } |
||
2283 | /** |
||
2284 | * Set vermogen_pk value |
||
2285 | * @param string $vermogen_pk |
||
2286 | * @return \Webservices\StructType\CarOptions |
||
2287 | */ |
||
2288 | public function setVermogen_pk($vermogen_pk = null) |
||
2289 | { |
||
2290 | // validation for constraint: string |
||
2291 | if (!is_null($vermogen_pk) && !is_string($vermogen_pk)) { |
||
2292 | throw new \InvalidArgumentException(sprintf('Invalid value, please provide a string, "%s" given', gettype($vermogen_pk)), __LINE__); |
||
2293 | } |
||
2294 | $this->vermogen_pk = $vermogen_pk; |
||
2295 | return $this; |
||
2296 | } |
||
2297 | /** |
||
2298 | * Get vermogen_tpm value |
||
2299 | * @return string|null |
||
2300 | */ |
||
2301 | public function getVermogen_tpm() |
||
2302 | { |
||
2303 | return $this->vermogen_tpm; |
||
2304 | } |
||
2305 | /** |
||
2306 | * Set vermogen_tpm value |
||
2307 | * @param string $vermogen_tpm |
||
2308 | * @return \Webservices\StructType\CarOptions |
||
2309 | */ |
||
2310 | public function setVermogen_tpm($vermogen_tpm = null) |
||
2311 | { |
||
2312 | // validation for constraint: string |
||
2313 | if (!is_null($vermogen_tpm) && !is_string($vermogen_tpm)) { |
||
2314 | throw new \InvalidArgumentException(sprintf('Invalid value, please provide a string, "%s" given', gettype($vermogen_tpm)), __LINE__); |
||
2315 | } |
||
2316 | $this->vermogen_tpm = $vermogen_tpm; |
||
2317 | return $this; |
||
2318 | } |
||
2319 | /** |
||
2320 | * Get koppel value |
||
2321 | * @return string|null |
||
2322 | */ |
||
2323 | public function getKoppel() |
||
2324 | { |
||
2325 | return $this->koppel; |
||
2326 | } |
||
2327 | /** |
||
2328 | * Set koppel value |
||
2329 | * @param string $koppel |
||
2330 | * @return \Webservices\StructType\CarOptions |
||
2331 | */ |
||
2332 | public function setKoppel($koppel = null) |
||
2333 | { |
||
2334 | // validation for constraint: string |
||
2335 | if (!is_null($koppel) && !is_string($koppel)) { |
||
2336 | throw new \InvalidArgumentException(sprintf('Invalid value, please provide a string, "%s" given', gettype($koppel)), __LINE__); |
||
2337 | } |
||
2338 | $this->koppel = $koppel; |
||
2339 | return $this; |
||
2340 | } |
||
2341 | /** |
||
2342 | * Get koppel_tpm value |
||
2343 | * @return string|null |
||
2344 | */ |
||
2345 | public function getKoppel_tpm() |
||
2346 | { |
||
2347 | return $this->koppel_tpm; |
||
2348 | } |
||
2349 | /** |
||
2350 | * Set koppel_tpm value |
||
2351 | * @param string $koppel_tpm |
||
2352 | * @return \Webservices\StructType\CarOptions |
||
2353 | */ |
||
2354 | public function setKoppel_tpm($koppel_tpm = null) |
||
2355 | { |
||
2356 | // validation for constraint: string |
||
2357 | if (!is_null($koppel_tpm) && !is_string($koppel_tpm)) { |
||
2358 | throw new \InvalidArgumentException(sprintf('Invalid value, please provide a string, "%s" given', gettype($koppel_tpm)), __LINE__); |
||
2359 | } |
||
2360 | $this->koppel_tpm = $koppel_tpm; |
||
2361 | return $this; |
||
2362 | } |
||
2363 | /** |
||
2364 | * Get katalysator value |
||
2365 | * @return string|null |
||
2366 | */ |
||
2367 | public function getKatalysator() |
||
2368 | { |
||
2369 | return $this->katalysator; |
||
2370 | } |
||
2371 | /** |
||
2372 | * Set katalysator value |
||
2373 | * @param string $katalysator |
||
2374 | * @return \Webservices\StructType\CarOptions |
||
2375 | */ |
||
2376 | public function setKatalysator($katalysator = null) |
||
2377 | { |
||
2378 | // validation for constraint: string |
||
2379 | if (!is_null($katalysator) && !is_string($katalysator)) { |
||
2380 | throw new \InvalidArgumentException(sprintf('Invalid value, please provide a string, "%s" given', gettype($katalysator)), __LINE__); |
||
2381 | } |
||
2382 | $this->katalysator = $katalysator; |
||
2383 | return $this; |
||
2384 | } |
||
2385 | /** |
||
2386 | * Get brandstofsysteem value |
||
2387 | * @return string|null |
||
2388 | */ |
||
2389 | public function getBrandstofsysteem() |
||
2390 | { |
||
2391 | return $this->brandstofsysteem; |
||
2392 | } |
||
2393 | /** |
||
2394 | * Set brandstofsysteem value |
||
2395 | * @param string $brandstofsysteem |
||
2396 | * @return \Webservices\StructType\CarOptions |
||
2397 | */ |
||
2398 | public function setBrandstofsysteem($brandstofsysteem = null) |
||
2399 | { |
||
2400 | // validation for constraint: string |
||
2401 | if (!is_null($brandstofsysteem) && !is_string($brandstofsysteem)) { |
||
2402 | throw new \InvalidArgumentException(sprintf('Invalid value, please provide a string, "%s" given', gettype($brandstofsysteem)), __LINE__); |
||
2403 | } |
||
2404 | $this->brandstofsysteem = $brandstofsysteem; |
||
2405 | return $this; |
||
2406 | } |
||
2407 | /** |
||
2408 | * Get klepbediening value |
||
2409 | * @return string|null |
||
2410 | */ |
||
2411 | public function getKlepbediening() |
||
2412 | { |
||
2413 | return $this->klepbediening; |
||
2414 | } |
||
2415 | /** |
||
2416 | * Set klepbediening value |
||
2417 | * @param string $klepbediening |
||
2418 | * @return \Webservices\StructType\CarOptions |
||
2419 | */ |
||
2420 | public function setKlepbediening($klepbediening = null) |
||
2421 | { |
||
2422 | // validation for constraint: string |
||
2423 | if (!is_null($klepbediening) && !is_string($klepbediening)) { |
||
2424 | throw new \InvalidArgumentException(sprintf('Invalid value, please provide a string, "%s" given', gettype($klepbediening)), __LINE__); |
||
2425 | } |
||
2426 | $this->klepbediening = $klepbediening; |
||
2427 | return $this; |
||
2428 | } |
||
2429 | /** |
||
2430 | * Get turbo value |
||
2431 | * @return string|null |
||
2432 | */ |
||
2433 | public function getTurbo() |
||
2434 | { |
||
2435 | return $this->turbo; |
||
2436 | } |
||
2437 | /** |
||
2438 | * Set turbo value |
||
2439 | * @param string $turbo |
||
2440 | * @return \Webservices\StructType\CarOptions |
||
2441 | */ |
||
2442 | public function setTurbo($turbo = null) |
||
2443 | { |
||
2444 | // validation for constraint: string |
||
2445 | if (!is_null($turbo) && !is_string($turbo)) { |
||
2446 | throw new \InvalidArgumentException(sprintf('Invalid value, please provide a string, "%s" given', gettype($turbo)), __LINE__); |
||
2447 | } |
||
2448 | $this->turbo = $turbo; |
||
2449 | return $this; |
||
2450 | } |
||
2451 | /** |
||
2452 | * Get wielophanging_voor value |
||
2453 | * @return string|null |
||
2454 | */ |
||
2455 | public function getWielophanging_voor() |
||
2456 | { |
||
2457 | return $this->wielophanging_voor; |
||
2458 | } |
||
2459 | /** |
||
2460 | * Set wielophanging_voor value |
||
2461 | * @param string $wielophanging_voor |
||
2462 | * @return \Webservices\StructType\CarOptions |
||
2463 | */ |
||
2464 | public function setWielophanging_voor($wielophanging_voor = null) |
||
2465 | { |
||
2466 | // validation for constraint: string |
||
2467 | if (!is_null($wielophanging_voor) && !is_string($wielophanging_voor)) { |
||
2468 | throw new \InvalidArgumentException(sprintf('Invalid value, please provide a string, "%s" given', gettype($wielophanging_voor)), __LINE__); |
||
2469 | } |
||
2470 | $this->wielophanging_voor = $wielophanging_voor; |
||
2471 | return $this; |
||
2472 | } |
||
2473 | /** |
||
2474 | * Get wielophanging_achter value |
||
2475 | * @return string|null |
||
2476 | */ |
||
2477 | public function getWielophanging_achter() |
||
2478 | { |
||
2479 | return $this->wielophanging_achter; |
||
2480 | } |
||
2481 | /** |
||
2482 | * Set wielophanging_achter value |
||
2483 | * @param string $wielophanging_achter |
||
2484 | * @return \Webservices\StructType\CarOptions |
||
2485 | */ |
||
2486 | public function setWielophanging_achter($wielophanging_achter = null) |
||
2487 | { |
||
2488 | // validation for constraint: string |
||
2489 | if (!is_null($wielophanging_achter) && !is_string($wielophanging_achter)) { |
||
2490 | throw new \InvalidArgumentException(sprintf('Invalid value, please provide a string, "%s" given', gettype($wielophanging_achter)), __LINE__); |
||
2491 | } |
||
2492 | $this->wielophanging_achter = $wielophanging_achter; |
||
2493 | return $this; |
||
2494 | } |
||
2495 | /** |
||
2496 | * Get vering_voor value |
||
2497 | * @return string|null |
||
2498 | */ |
||
2499 | public function getVering_voor() |
||
2500 | { |
||
2501 | return $this->vering_voor; |
||
2502 | } |
||
2503 | /** |
||
2504 | * Set vering_voor value |
||
2505 | * @param string $vering_voor |
||
2506 | * @return \Webservices\StructType\CarOptions |
||
2507 | */ |
||
2508 | public function setVering_voor($vering_voor = null) |
||
2509 | { |
||
2510 | // validation for constraint: string |
||
2511 | if (!is_null($vering_voor) && !is_string($vering_voor)) { |
||
2512 | throw new \InvalidArgumentException(sprintf('Invalid value, please provide a string, "%s" given', gettype($vering_voor)), __LINE__); |
||
2513 | } |
||
2514 | $this->vering_voor = $vering_voor; |
||
2515 | return $this; |
||
2516 | } |
||
2517 | /** |
||
2518 | * Get vering_achter value |
||
2519 | * @return string|null |
||
2520 | */ |
||
2521 | public function getVering_achter() |
||
2522 | { |
||
2523 | return $this->vering_achter; |
||
2524 | } |
||
2525 | /** |
||
2526 | * Set vering_achter value |
||
2527 | * @param string $vering_achter |
||
2528 | * @return \Webservices\StructType\CarOptions |
||
2529 | */ |
||
2530 | public function setVering_achter($vering_achter = null) |
||
2531 | { |
||
2532 | // validation for constraint: string |
||
2533 | if (!is_null($vering_achter) && !is_string($vering_achter)) { |
||
2534 | throw new \InvalidArgumentException(sprintf('Invalid value, please provide a string, "%s" given', gettype($vering_achter)), __LINE__); |
||
2535 | } |
||
2536 | $this->vering_achter = $vering_achter; |
||
2537 | return $this; |
||
2538 | } |
||
2539 | /** |
||
2540 | * Get stabilisator_voor value |
||
2541 | * @return string|null |
||
2542 | */ |
||
2543 | public function getStabilisator_voor() |
||
2544 | { |
||
2545 | return $this->stabilisator_voor; |
||
2546 | } |
||
2547 | /** |
||
2548 | * Set stabilisator_voor value |
||
2549 | * @param string $stabilisator_voor |
||
2550 | * @return \Webservices\StructType\CarOptions |
||
2551 | */ |
||
2552 | public function setStabilisator_voor($stabilisator_voor = null) |
||
2553 | { |
||
2554 | // validation for constraint: string |
||
2555 | if (!is_null($stabilisator_voor) && !is_string($stabilisator_voor)) { |
||
2556 | throw new \InvalidArgumentException(sprintf('Invalid value, please provide a string, "%s" given', gettype($stabilisator_voor)), __LINE__); |
||
2557 | } |
||
2558 | $this->stabilisator_voor = $stabilisator_voor; |
||
2559 | return $this; |
||
2560 | } |
||
2561 | /** |
||
2562 | * Get stabilisator_achter value |
||
2563 | * @return string|null |
||
2564 | */ |
||
2565 | public function getStabilisator_achter() |
||
2566 | { |
||
2567 | return $this->stabilisator_achter; |
||
2568 | } |
||
2569 | /** |
||
2570 | * Set stabilisator_achter value |
||
2571 | * @param string $stabilisator_achter |
||
2572 | * @return \Webservices\StructType\CarOptions |
||
2573 | */ |
||
2574 | public function setStabilisator_achter($stabilisator_achter = null) |
||
2575 | { |
||
2576 | // validation for constraint: string |
||
2577 | if (!is_null($stabilisator_achter) && !is_string($stabilisator_achter)) { |
||
2578 | throw new \InvalidArgumentException(sprintf('Invalid value, please provide a string, "%s" given', gettype($stabilisator_achter)), __LINE__); |
||
2579 | } |
||
2580 | $this->stabilisator_achter = $stabilisator_achter; |
||
2581 | return $this; |
||
2582 | } |
||
2583 | /** |
||
2584 | * Get remmen_voor value |
||
2585 | * @return string|null |
||
2586 | */ |
||
2587 | public function getRemmen_voor() |
||
2588 | { |
||
2589 | return $this->remmen_voor; |
||
2590 | } |
||
2591 | /** |
||
2592 | * Set remmen_voor value |
||
2593 | * @param string $remmen_voor |
||
2594 | * @return \Webservices\StructType\CarOptions |
||
2595 | */ |
||
2596 | public function setRemmen_voor($remmen_voor = null) |
||
2597 | { |
||
2598 | // validation for constraint: string |
||
2599 | if (!is_null($remmen_voor) && !is_string($remmen_voor)) { |
||
2600 | throw new \InvalidArgumentException(sprintf('Invalid value, please provide a string, "%s" given', gettype($remmen_voor)), __LINE__); |
||
2601 | } |
||
2602 | $this->remmen_voor = $remmen_voor; |
||
2603 | return $this; |
||
2604 | } |
||
2605 | /** |
||
2606 | * Get remmen_voor_mm value |
||
2607 | * @return string|null |
||
2608 | */ |
||
2609 | public function getRemmen_voor_mm() |
||
2610 | { |
||
2611 | return $this->remmen_voor_mm; |
||
2612 | } |
||
2613 | /** |
||
2614 | * Set remmen_voor_mm value |
||
2615 | * @param string $remmen_voor_mm |
||
2616 | * @return \Webservices\StructType\CarOptions |
||
2617 | */ |
||
2618 | public function setRemmen_voor_mm($remmen_voor_mm = null) |
||
2619 | { |
||
2620 | // validation for constraint: string |
||
2621 | if (!is_null($remmen_voor_mm) && !is_string($remmen_voor_mm)) { |
||
2622 | throw new \InvalidArgumentException(sprintf('Invalid value, please provide a string, "%s" given', gettype($remmen_voor_mm)), __LINE__); |
||
2623 | } |
||
2624 | $this->remmen_voor_mm = $remmen_voor_mm; |
||
2625 | return $this; |
||
2626 | } |
||
2627 | /** |
||
2628 | * Get remmen_achter value |
||
2629 | * @return string|null |
||
2630 | */ |
||
2631 | public function getRemmen_achter() |
||
2632 | { |
||
2633 | return $this->remmen_achter; |
||
2634 | } |
||
2635 | /** |
||
2636 | * Set remmen_achter value |
||
2637 | * @param string $remmen_achter |
||
2638 | * @return \Webservices\StructType\CarOptions |
||
2639 | */ |
||
2640 | public function setRemmen_achter($remmen_achter = null) |
||
2641 | { |
||
2642 | // validation for constraint: string |
||
2643 | if (!is_null($remmen_achter) && !is_string($remmen_achter)) { |
||
2644 | throw new \InvalidArgumentException(sprintf('Invalid value, please provide a string, "%s" given', gettype($remmen_achter)), __LINE__); |
||
2645 | } |
||
2646 | $this->remmen_achter = $remmen_achter; |
||
2647 | return $this; |
||
2648 | } |
||
2649 | /** |
||
2650 | * Get remmen_achter_mm value |
||
2651 | * @return string|null |
||
2652 | */ |
||
2653 | public function getRemmen_achter_mm() |
||
2654 | { |
||
2655 | return $this->remmen_achter_mm; |
||
2656 | } |
||
2657 | /** |
||
2658 | * Set remmen_achter_mm value |
||
2659 | * @param string $remmen_achter_mm |
||
2660 | * @return \Webservices\StructType\CarOptions |
||
2661 | */ |
||
2662 | public function setRemmen_achter_mm($remmen_achter_mm = null) |
||
2663 | { |
||
2664 | // validation for constraint: string |
||
2665 | if (!is_null($remmen_achter_mm) && !is_string($remmen_achter_mm)) { |
||
2666 | throw new \InvalidArgumentException(sprintf('Invalid value, please provide a string, "%s" given', gettype($remmen_achter_mm)), __LINE__); |
||
2667 | } |
||
2668 | $this->remmen_achter_mm = $remmen_achter_mm; |
||
2669 | return $this; |
||
2670 | } |
||
2671 | /** |
||
2672 | * Get cw_waarde value |
||
2673 | * @return string|null |
||
2674 | */ |
||
2675 | public function getCw_waarde() |
||
2676 | { |
||
2677 | return $this->cw_waarde; |
||
2678 | } |
||
2679 | /** |
||
2680 | * Set cw_waarde value |
||
2681 | * @param string $cw_waarde |
||
2682 | * @return \Webservices\StructType\CarOptions |
||
2683 | */ |
||
2684 | public function setCw_waarde($cw_waarde = null) |
||
2685 | { |
||
2686 | // validation for constraint: string |
||
2687 | if (!is_null($cw_waarde) && !is_string($cw_waarde)) { |
||
2688 | throw new \InvalidArgumentException(sprintf('Invalid value, please provide a string, "%s" given', gettype($cw_waarde)), __LINE__); |
||
2689 | } |
||
2690 | $this->cw_waarde = $cw_waarde; |
||
2691 | return $this; |
||
2692 | } |
||
2693 | /** |
||
2694 | * Get lengte value |
||
2695 | * @return string|null |
||
2696 | */ |
||
2697 | public function getLengte() |
||
2698 | { |
||
2699 | return $this->lengte; |
||
2700 | } |
||
2701 | /** |
||
2702 | * Set lengte value |
||
2703 | * @param string $lengte |
||
2704 | * @return \Webservices\StructType\CarOptions |
||
2705 | */ |
||
2706 | public function setLengte($lengte = null) |
||
2707 | { |
||
2708 | // validation for constraint: string |
||
2709 | if (!is_null($lengte) && !is_string($lengte)) { |
||
2710 | throw new \InvalidArgumentException(sprintf('Invalid value, please provide a string, "%s" given', gettype($lengte)), __LINE__); |
||
2711 | } |
||
2712 | $this->lengte = $lengte; |
||
2713 | return $this; |
||
2714 | } |
||
2715 | /** |
||
2716 | * Get breedte value |
||
2717 | * @return string|null |
||
2718 | */ |
||
2719 | public function getBreedte() |
||
2720 | { |
||
2721 | return $this->breedte; |
||
2722 | } |
||
2723 | /** |
||
2724 | * Set breedte value |
||
2725 | * @param string $breedte |
||
2726 | * @return \Webservices\StructType\CarOptions |
||
2727 | */ |
||
2728 | public function setBreedte($breedte = null) |
||
2729 | { |
||
2730 | // validation for constraint: string |
||
2731 | if (!is_null($breedte) && !is_string($breedte)) { |
||
2732 | throw new \InvalidArgumentException(sprintf('Invalid value, please provide a string, "%s" given', gettype($breedte)), __LINE__); |
||
2733 | } |
||
2734 | $this->breedte = $breedte; |
||
2735 | return $this; |
||
2736 | } |
||
2737 | /** |
||
2738 | * Get hoogte value |
||
2739 | * @return string|null |
||
2740 | */ |
||
2741 | public function getHoogte() |
||
2742 | { |
||
2743 | return $this->hoogte; |
||
2744 | } |
||
2745 | /** |
||
2746 | * Set hoogte value |
||
2747 | * @param string $hoogte |
||
2748 | * @return \Webservices\StructType\CarOptions |
||
2749 | */ |
||
2750 | public function setHoogte($hoogte = null) |
||
2751 | { |
||
2752 | // validation for constraint: string |
||
2753 | if (!is_null($hoogte) && !is_string($hoogte)) { |
||
2754 | throw new \InvalidArgumentException(sprintf('Invalid value, please provide a string, "%s" given', gettype($hoogte)), __LINE__); |
||
2755 | } |
||
2756 | $this->hoogte = $hoogte; |
||
2757 | return $this; |
||
2758 | } |
||
2759 | /** |
||
2760 | * Get wielbasis value |
||
2761 | * @return string|null |
||
2762 | */ |
||
2763 | public function getWielbasis() |
||
2764 | { |
||
2765 | return $this->wielbasis; |
||
2766 | } |
||
2767 | /** |
||
2768 | * Set wielbasis value |
||
2769 | * @param string $wielbasis |
||
2770 | * @return \Webservices\StructType\CarOptions |
||
2771 | */ |
||
2772 | public function setWielbasis($wielbasis = null) |
||
2773 | { |
||
2774 | // validation for constraint: string |
||
2775 | if (!is_null($wielbasis) && !is_string($wielbasis)) { |
||
2776 | throw new \InvalidArgumentException(sprintf('Invalid value, please provide a string, "%s" given', gettype($wielbasis)), __LINE__); |
||
2777 | } |
||
2778 | $this->wielbasis = $wielbasis; |
||
2779 | return $this; |
||
2780 | } |
||
2781 | /** |
||
2782 | * Get spoorbreedte_voor value |
||
2783 | * @return string|null |
||
2784 | */ |
||
2785 | public function getSpoorbreedte_voor() |
||
2786 | { |
||
2787 | return $this->spoorbreedte_voor; |
||
2788 | } |
||
2789 | /** |
||
2790 | * Set spoorbreedte_voor value |
||
2791 | * @param string $spoorbreedte_voor |
||
2792 | * @return \Webservices\StructType\CarOptions |
||
2793 | */ |
||
2794 | public function setSpoorbreedte_voor($spoorbreedte_voor = null) |
||
2795 | { |
||
2796 | // validation for constraint: string |
||
2797 | if (!is_null($spoorbreedte_voor) && !is_string($spoorbreedte_voor)) { |
||
2798 | throw new \InvalidArgumentException(sprintf('Invalid value, please provide a string, "%s" given', gettype($spoorbreedte_voor)), __LINE__); |
||
2799 | } |
||
2800 | $this->spoorbreedte_voor = $spoorbreedte_voor; |
||
2801 | return $this; |
||
2802 | } |
||
2803 | /** |
||
2804 | * Get spoorbreedte_achter value |
||
2805 | * @return string|null |
||
2806 | */ |
||
2807 | public function getSpoorbreedte_achter() |
||
2808 | { |
||
2809 | return $this->spoorbreedte_achter; |
||
2810 | } |
||
2811 | /** |
||
2812 | * Set spoorbreedte_achter value |
||
2813 | * @param string $spoorbreedte_achter |
||
2814 | * @return \Webservices\StructType\CarOptions |
||
2815 | */ |
||
2816 | public function setSpoorbreedte_achter($spoorbreedte_achter = null) |
||
2817 | { |
||
2818 | // validation for constraint: string |
||
2819 | if (!is_null($spoorbreedte_achter) && !is_string($spoorbreedte_achter)) { |
||
2820 | throw new \InvalidArgumentException(sprintf('Invalid value, please provide a string, "%s" given', gettype($spoorbreedte_achter)), __LINE__); |
||
2821 | } |
||
2822 | $this->spoorbreedte_achter = $spoorbreedte_achter; |
||
2823 | return $this; |
||
2824 | } |
||
2825 | /** |
||
2826 | * Get draaicirkel value |
||
2827 | * @return string|null |
||
2828 | */ |
||
2829 | public function getDraaicirkel() |
||
2830 | { |
||
2831 | return $this->draaicirkel; |
||
2832 | } |
||
2833 | /** |
||
2834 | * Set draaicirkel value |
||
2835 | * @param string $draaicirkel |
||
2836 | * @return \Webservices\StructType\CarOptions |
||
2837 | */ |
||
2838 | public function setDraaicirkel($draaicirkel = null) |
||
2839 | { |
||
2840 | // validation for constraint: string |
||
2841 | if (!is_null($draaicirkel) && !is_string($draaicirkel)) { |
||
2842 | throw new \InvalidArgumentException(sprintf('Invalid value, please provide a string, "%s" given', gettype($draaicirkel)), __LINE__); |
||
2843 | } |
||
2844 | $this->draaicirkel = $draaicirkel; |
||
2845 | return $this; |
||
2846 | } |
||
2847 | /** |
||
2848 | * Get bandenmaat_voor value |
||
2849 | * @return string|null |
||
2850 | */ |
||
2851 | public function getBandenmaat_voor() |
||
2852 | { |
||
2853 | return $this->bandenmaat_voor; |
||
2854 | } |
||
2855 | /** |
||
2856 | * Set bandenmaat_voor value |
||
2857 | * @param string $bandenmaat_voor |
||
2858 | * @return \Webservices\StructType\CarOptions |
||
2859 | */ |
||
2860 | public function setBandenmaat_voor($bandenmaat_voor = null) |
||
2861 | { |
||
2862 | // validation for constraint: string |
||
2863 | if (!is_null($bandenmaat_voor) && !is_string($bandenmaat_voor)) { |
||
2864 | throw new \InvalidArgumentException(sprintf('Invalid value, please provide a string, "%s" given', gettype($bandenmaat_voor)), __LINE__); |
||
2865 | } |
||
2866 | $this->bandenmaat_voor = $bandenmaat_voor; |
||
2867 | return $this; |
||
2868 | } |
||
2869 | /** |
||
2870 | * Get bandenmaat_achter value |
||
2871 | * @return string|null |
||
2872 | */ |
||
2873 | public function getBandenmaat_achter() |
||
2874 | { |
||
2875 | return $this->bandenmaat_achter; |
||
2876 | } |
||
2877 | /** |
||
2878 | * Set bandenmaat_achter value |
||
2879 | * @param string $bandenmaat_achter |
||
2880 | * @return \Webservices\StructType\CarOptions |
||
2881 | */ |
||
2882 | public function setBandenmaat_achter($bandenmaat_achter = null) |
||
2883 | { |
||
2884 | // validation for constraint: string |
||
2885 | if (!is_null($bandenmaat_achter) && !is_string($bandenmaat_achter)) { |
||
2886 | throw new \InvalidArgumentException(sprintf('Invalid value, please provide a string, "%s" given', gettype($bandenmaat_achter)), __LINE__); |
||
2887 | } |
||
2888 | $this->bandenmaat_achter = $bandenmaat_achter; |
||
2889 | return $this; |
||
2890 | } |
||
2891 | /** |
||
2892 | * Get massa value |
||
2893 | * @return string|null |
||
2894 | */ |
||
2895 | public function getMassa() |
||
2896 | { |
||
2897 | return $this->massa; |
||
2898 | } |
||
2899 | /** |
||
2900 | * Set massa value |
||
2901 | * @param string $massa |
||
2902 | * @return \Webservices\StructType\CarOptions |
||
2903 | */ |
||
2904 | public function setMassa($massa = null) |
||
2905 | { |
||
2906 | // validation for constraint: string |
||
2907 | if (!is_null($massa) && !is_string($massa)) { |
||
2908 | throw new \InvalidArgumentException(sprintf('Invalid value, please provide a string, "%s" given', gettype($massa)), __LINE__); |
||
2909 | } |
||
2910 | $this->massa = $massa; |
||
2911 | return $this; |
||
2912 | } |
||
2913 | /** |
||
2914 | * Get max_toelaatbare_massa value |
||
2915 | * @return string|null |
||
2916 | */ |
||
2917 | public function getMax_toelaatbare_massa() |
||
2918 | { |
||
2919 | return $this->max_toelaatbare_massa; |
||
2920 | } |
||
2921 | /** |
||
2922 | * Set max_toelaatbare_massa value |
||
2923 | * @param string $max_toelaatbare_massa |
||
2924 | * @return \Webservices\StructType\CarOptions |
||
2925 | */ |
||
2926 | public function setMax_toelaatbare_massa($max_toelaatbare_massa = null) |
||
2927 | { |
||
2928 | // validation for constraint: string |
||
2929 | if (!is_null($max_toelaatbare_massa) && !is_string($max_toelaatbare_massa)) { |
||
2930 | throw new \InvalidArgumentException(sprintf('Invalid value, please provide a string, "%s" given', gettype($max_toelaatbare_massa)), __LINE__); |
||
2931 | } |
||
2932 | $this->max_toelaatbare_massa = $max_toelaatbare_massa; |
||
2933 | return $this; |
||
2934 | } |
||
2935 | /** |
||
2936 | * Get max_aanhanger_geremd value |
||
2937 | * @return string|null |
||
2938 | */ |
||
2939 | public function getMax_aanhanger_geremd() |
||
2940 | { |
||
2941 | return $this->max_aanhanger_geremd; |
||
2942 | } |
||
2943 | /** |
||
2944 | * Set max_aanhanger_geremd value |
||
2945 | * @param string $max_aanhanger_geremd |
||
2946 | * @return \Webservices\StructType\CarOptions |
||
2947 | */ |
||
2948 | public function setMax_aanhanger_geremd($max_aanhanger_geremd = null) |
||
2949 | { |
||
2950 | // validation for constraint: string |
||
2951 | if (!is_null($max_aanhanger_geremd) && !is_string($max_aanhanger_geremd)) { |
||
2952 | throw new \InvalidArgumentException(sprintf('Invalid value, please provide a string, "%s" given', gettype($max_aanhanger_geremd)), __LINE__); |
||
2953 | } |
||
2954 | $this->max_aanhanger_geremd = $max_aanhanger_geremd; |
||
2955 | return $this; |
||
2956 | } |
||
2957 | /** |
||
2958 | * Get max_aanhanger_ongeremd value |
||
2959 | * @return string|null |
||
2960 | */ |
||
2961 | public function getMax_aanhanger_ongeremd() |
||
2962 | { |
||
2963 | return $this->max_aanhanger_ongeremd; |
||
2964 | } |
||
2965 | /** |
||
2966 | * Set max_aanhanger_ongeremd value |
||
2967 | * @param string $max_aanhanger_ongeremd |
||
2968 | * @return \Webservices\StructType\CarOptions |
||
2969 | */ |
||
2970 | public function setMax_aanhanger_ongeremd($max_aanhanger_ongeremd = null) |
||
2971 | { |
||
2972 | // validation for constraint: string |
||
2973 | if (!is_null($max_aanhanger_ongeremd) && !is_string($max_aanhanger_ongeremd)) { |
||
2974 | throw new \InvalidArgumentException(sprintf('Invalid value, please provide a string, "%s" given', gettype($max_aanhanger_ongeremd)), __LINE__); |
||
2975 | } |
||
2976 | $this->max_aanhanger_ongeremd = $max_aanhanger_ongeremd; |
||
2977 | return $this; |
||
2978 | } |
||
2979 | /** |
||
2980 | * Get max_kogeldruk value |
||
2981 | * @return string|null |
||
2982 | */ |
||
2983 | public function getMax_kogeldruk() |
||
2984 | { |
||
2985 | return $this->max_kogeldruk; |
||
2986 | } |
||
2987 | /** |
||
2988 | * Set max_kogeldruk value |
||
2989 | * @param string $max_kogeldruk |
||
2990 | * @return \Webservices\StructType\CarOptions |
||
2991 | */ |
||
2992 | public function setMax_kogeldruk($max_kogeldruk = null) |
||
2993 | { |
||
2994 | // validation for constraint: string |
||
2995 | if (!is_null($max_kogeldruk) && !is_string($max_kogeldruk)) { |
||
2996 | throw new \InvalidArgumentException(sprintf('Invalid value, please provide a string, "%s" given', gettype($max_kogeldruk)), __LINE__); |
||
2997 | } |
||
2998 | $this->max_kogeldruk = $max_kogeldruk; |
||
2999 | return $this; |
||
3000 | } |
||
3001 | /** |
||
3002 | * Get max_dakbelasting value |
||
3003 | * @return string|null |
||
3004 | */ |
||
3005 | public function getMax_dakbelasting() |
||
3006 | { |
||
3007 | return $this->max_dakbelasting; |
||
3008 | } |
||
3009 | /** |
||
3010 | * Set max_dakbelasting value |
||
3011 | * @param string $max_dakbelasting |
||
3012 | * @return \Webservices\StructType\CarOptions |
||
3013 | */ |
||
3014 | public function setMax_dakbelasting($max_dakbelasting = null) |
||
3015 | { |
||
3016 | // validation for constraint: string |
||
3017 | if (!is_null($max_dakbelasting) && !is_string($max_dakbelasting)) { |
||
3018 | throw new \InvalidArgumentException(sprintf('Invalid value, please provide a string, "%s" given', gettype($max_dakbelasting)), __LINE__); |
||
3019 | } |
||
3020 | $this->max_dakbelasting = $max_dakbelasting; |
||
3021 | return $this; |
||
3022 | } |
||
3023 | /** |
||
3024 | * Get koffer_min value |
||
3025 | * @return string|null |
||
3026 | */ |
||
3027 | public function getKoffer_min() |
||
3028 | { |
||
3029 | return $this->koffer_min; |
||
3030 | } |
||
3031 | /** |
||
3032 | * Set koffer_min value |
||
3033 | * @param string $koffer_min |
||
3034 | * @return \Webservices\StructType\CarOptions |
||
3035 | */ |
||
3036 | public function setKoffer_min($koffer_min = null) |
||
3037 | { |
||
3038 | // validation for constraint: string |
||
3039 | if (!is_null($koffer_min) && !is_string($koffer_min)) { |
||
3040 | throw new \InvalidArgumentException(sprintf('Invalid value, please provide a string, "%s" given', gettype($koffer_min)), __LINE__); |
||
3041 | } |
||
3042 | $this->koffer_min = $koffer_min; |
||
3043 | return $this; |
||
3044 | } |
||
3045 | /** |
||
3046 | * Get koffer_max value |
||
3047 | * @return string|null |
||
3048 | */ |
||
3049 | public function getKoffer_max() |
||
3050 | { |
||
3051 | return $this->koffer_max; |
||
3052 | } |
||
3053 | /** |
||
3054 | * Set koffer_max value |
||
3055 | * @param string $koffer_max |
||
3056 | * @return \Webservices\StructType\CarOptions |
||
3057 | */ |
||
3058 | public function setKoffer_max($koffer_max = null) |
||
3059 | { |
||
3060 | // validation for constraint: string |
||
3061 | if (!is_null($koffer_max) && !is_string($koffer_max)) { |
||
3062 | throw new \InvalidArgumentException(sprintf('Invalid value, please provide a string, "%s" given', gettype($koffer_max)), __LINE__); |
||
3063 | } |
||
3064 | $this->koffer_max = $koffer_max; |
||
3065 | return $this; |
||
3066 | } |
||
3067 | /** |
||
3068 | * Get tankinhoud value |
||
3069 | * @return string|null |
||
3070 | */ |
||
3071 | public function getTankinhoud() |
||
3072 | { |
||
3073 | return $this->tankinhoud; |
||
3074 | } |
||
3075 | /** |
||
3076 | * Set tankinhoud value |
||
3077 | * @param string $tankinhoud |
||
3078 | * @return \Webservices\StructType\CarOptions |
||
3079 | */ |
||
3080 | public function setTankinhoud($tankinhoud = null) |
||
3081 | { |
||
3082 | // validation for constraint: string |
||
3083 | if (!is_null($tankinhoud) && !is_string($tankinhoud)) { |
||
3084 | throw new \InvalidArgumentException(sprintf('Invalid value, please provide a string, "%s" given', gettype($tankinhoud)), __LINE__); |
||
3085 | } |
||
3086 | $this->tankinhoud = $tankinhoud; |
||
3087 | return $this; |
||
3088 | } |
||
3089 | /** |
||
3090 | * Get topsnelheid value |
||
3091 | * @return string|null |
||
3092 | */ |
||
3093 | public function getTopsnelheid() |
||
3094 | { |
||
3095 | return $this->topsnelheid; |
||
3096 | } |
||
3097 | /** |
||
3098 | * Set topsnelheid value |
||
3099 | * @param string $topsnelheid |
||
3100 | * @return \Webservices\StructType\CarOptions |
||
3101 | */ |
||
3102 | public function setTopsnelheid($topsnelheid = null) |
||
3103 | { |
||
3104 | // validation for constraint: string |
||
3105 | if (!is_null($topsnelheid) && !is_string($topsnelheid)) { |
||
3106 | throw new \InvalidArgumentException(sprintf('Invalid value, please provide a string, "%s" given', gettype($topsnelheid)), __LINE__); |
||
3107 | } |
||
3108 | $this->topsnelheid = $topsnelheid; |
||
3109 | return $this; |
||
3110 | } |
||
3111 | /** |
||
3112 | * Get acceleratie value |
||
3113 | * @return string|null |
||
3114 | */ |
||
3115 | public function getAcceleratie() |
||
3116 | { |
||
3117 | return $this->acceleratie; |
||
3118 | } |
||
3119 | /** |
||
3120 | * Set acceleratie value |
||
3121 | * @param string $acceleratie |
||
3122 | * @return \Webservices\StructType\CarOptions |
||
3123 | */ |
||
3124 | public function setAcceleratie($acceleratie = null) |
||
3125 | { |
||
3126 | // validation for constraint: string |
||
3127 | if (!is_null($acceleratie) && !is_string($acceleratie)) { |
||
3128 | throw new \InvalidArgumentException(sprintf('Invalid value, please provide a string, "%s" given', gettype($acceleratie)), __LINE__); |
||
3129 | } |
||
3130 | $this->acceleratie = $acceleratie; |
||
3131 | return $this; |
||
3132 | } |
||
3133 | /** |
||
3134 | * Get verbruik_binnen_bebouwde_kom value |
||
3135 | * @return string|null |
||
3136 | */ |
||
3137 | public function getVerbruik_binnen_bebouwde_kom() |
||
3138 | { |
||
3139 | return $this->verbruik_binnen_bebouwde_kom; |
||
3140 | } |
||
3141 | /** |
||
3142 | * Set verbruik_binnen_bebouwde_kom value |
||
3143 | * @param string $verbruik_binnen_bebouwde_kom |
||
3144 | * @return \Webservices\StructType\CarOptions |
||
3145 | */ |
||
3146 | public function setVerbruik_binnen_bebouwde_kom($verbruik_binnen_bebouwde_kom = null) |
||
3147 | { |
||
3148 | // validation for constraint: string |
||
3149 | if (!is_null($verbruik_binnen_bebouwde_kom) && !is_string($verbruik_binnen_bebouwde_kom)) { |
||
3150 | throw new \InvalidArgumentException(sprintf('Invalid value, please provide a string, "%s" given', gettype($verbruik_binnen_bebouwde_kom)), __LINE__); |
||
3151 | } |
||
3152 | $this->verbruik_binnen_bebouwde_kom = $verbruik_binnen_bebouwde_kom; |
||
3153 | return $this; |
||
3154 | } |
||
3155 | /** |
||
3156 | * Get verbruik_buiten_bebouwde_kom value |
||
3157 | * @return string|null |
||
3158 | */ |
||
3159 | public function getVerbruik_buiten_bebouwde_kom() |
||
3160 | { |
||
3161 | return $this->verbruik_buiten_bebouwde_kom; |
||
3162 | } |
||
3163 | /** |
||
3164 | * Set verbruik_buiten_bebouwde_kom value |
||
3165 | * @param string $verbruik_buiten_bebouwde_kom |
||
3166 | * @return \Webservices\StructType\CarOptions |
||
3167 | */ |
||
3168 | public function setVerbruik_buiten_bebouwde_kom($verbruik_buiten_bebouwde_kom = null) |
||
3169 | { |
||
3170 | // validation for constraint: string |
||
3171 | if (!is_null($verbruik_buiten_bebouwde_kom) && !is_string($verbruik_buiten_bebouwde_kom)) { |
||
3172 | throw new \InvalidArgumentException(sprintf('Invalid value, please provide a string, "%s" given', gettype($verbruik_buiten_bebouwde_kom)), __LINE__); |
||
3173 | } |
||
3174 | $this->verbruik_buiten_bebouwde_kom = $verbruik_buiten_bebouwde_kom; |
||
3175 | return $this; |
||
3176 | } |
||
3177 | /** |
||
3178 | * Get verbruik_gecombineerd value |
||
3179 | * @return string|null |
||
3180 | */ |
||
3181 | public function getVerbruik_gecombineerd() |
||
3182 | { |
||
3183 | return $this->verbruik_gecombineerd; |
||
3184 | } |
||
3185 | /** |
||
3186 | * Set verbruik_gecombineerd value |
||
3187 | * @param string $verbruik_gecombineerd |
||
3188 | * @return \Webservices\StructType\CarOptions |
||
3189 | */ |
||
3190 | public function setVerbruik_gecombineerd($verbruik_gecombineerd = null) |
||
3191 | { |
||
3192 | // validation for constraint: string |
||
3193 | if (!is_null($verbruik_gecombineerd) && !is_string($verbruik_gecombineerd)) { |
||
3194 | throw new \InvalidArgumentException(sprintf('Invalid value, please provide a string, "%s" given', gettype($verbruik_gecombineerd)), __LINE__); |
||
3195 | } |
||
3196 | $this->verbruik_gecombineerd = $verbruik_gecombineerd; |
||
3197 | return $this; |
||
3198 | } |
||
3199 | /** |
||
3200 | * Get co2_uitstoot value |
||
3201 | * @return string|null |
||
3202 | */ |
||
3203 | public function getCo2_uitstoot() |
||
3204 | { |
||
3205 | return $this->co2_uitstoot; |
||
3206 | } |
||
3207 | /** |
||
3208 | * Set co2_uitstoot value |
||
3209 | * @param string $co2_uitstoot |
||
3210 | * @return \Webservices\StructType\CarOptions |
||
3211 | */ |
||
3212 | public function setCo2_uitstoot($co2_uitstoot = null) |
||
3213 | { |
||
3214 | // validation for constraint: string |
||
3215 | if (!is_null($co2_uitstoot) && !is_string($co2_uitstoot)) { |
||
3216 | throw new \InvalidArgumentException(sprintf('Invalid value, please provide a string, "%s" given', gettype($co2_uitstoot)), __LINE__); |
||
3217 | } |
||
3218 | $this->co2_uitstoot = $co2_uitstoot; |
||
3219 | return $this; |
||
3220 | } |
||
3221 | /** |
||
3222 | * Get verbruik_gemiddeld value |
||
3223 | * @return string|null |
||
3224 | */ |
||
3225 | public function getVerbruik_gemiddeld() |
||
3226 | { |
||
3227 | return $this->verbruik_gemiddeld; |
||
3228 | } |
||
3229 | /** |
||
3230 | * Set verbruik_gemiddeld value |
||
3231 | * @param string $verbruik_gemiddeld |
||
3232 | * @return \Webservices\StructType\CarOptions |
||
3233 | */ |
||
3234 | public function setVerbruik_gemiddeld($verbruik_gemiddeld = null) |
||
3235 | { |
||
3236 | // validation for constraint: string |
||
3237 | if (!is_null($verbruik_gemiddeld) && !is_string($verbruik_gemiddeld)) { |
||
3238 | throw new \InvalidArgumentException(sprintf('Invalid value, please provide a string, "%s" given', gettype($verbruik_gemiddeld)), __LINE__); |
||
3239 | } |
||
3240 | $this->verbruik_gemiddeld = $verbruik_gemiddeld; |
||
3241 | return $this; |
||
3242 | } |
||
3243 | /** |
||
3244 | * Get abs value |
||
3245 | * @return \Webservices\StructType\CarOption|null |
||
3246 | */ |
||
3247 | public function getAbs() |
||
3248 | { |
||
3249 | return $this->abs; |
||
3250 | } |
||
3251 | /** |
||
3252 | * Set abs value |
||
3253 | * @param \Webservices\StructType\CarOption $abs |
||
3254 | * @return \Webservices\StructType\CarOptions |
||
3255 | */ |
||
3256 | public function setAbs(\Webservices\StructType\CarOption $abs = null) |
||
3257 | { |
||
3258 | $this->abs = $abs; |
||
3259 | return $this; |
||
3260 | } |
||
3261 | /** |
||
3262 | * Get remkrachtverdeling value |
||
3263 | * @return \Webservices\StructType\CarOption|null |
||
3264 | */ |
||
3265 | public function getRemkrachtverdeling() |
||
3266 | { |
||
3267 | return $this->remkrachtverdeling; |
||
3268 | } |
||
3269 | /** |
||
3270 | * Set remkrachtverdeling value |
||
3271 | * @param \Webservices\StructType\CarOption $remkrachtverdeling |
||
3272 | * @return \Webservices\StructType\CarOptions |
||
3273 | */ |
||
3274 | public function setRemkrachtverdeling(\Webservices\StructType\CarOption $remkrachtverdeling = null) |
||
3275 | { |
||
3276 | $this->remkrachtverdeling = $remkrachtverdeling; |
||
3277 | return $this; |
||
3278 | } |
||
3279 | /** |
||
3280 | * Get brakeassist value |
||
3281 | * @return \Webservices\StructType\CarOption|null |
||
3282 | */ |
||
3283 | public function getBrakeassist() |
||
3284 | { |
||
3285 | return $this->brakeassist; |
||
3286 | } |
||
3287 | /** |
||
3288 | * Set brakeassist value |
||
3289 | * @param \Webservices\StructType\CarOption $brakeassist |
||
3290 | * @return \Webservices\StructType\CarOptions |
||
3291 | */ |
||
3292 | public function setBrakeassist(\Webservices\StructType\CarOption $brakeassist = null) |
||
3293 | { |
||
3294 | $this->brakeassist = $brakeassist; |
||
3295 | return $this; |
||
3296 | } |
||
3297 | /** |
||
3298 | * Get tractiecontrole value |
||
3299 | * @return \Webservices\StructType\CarOption|null |
||
3300 | */ |
||
3301 | public function getTractiecontrole() |
||
3302 | { |
||
3303 | return $this->tractiecontrole; |
||
3304 | } |
||
3305 | /** |
||
3306 | * Set tractiecontrole value |
||
3307 | * @param \Webservices\StructType\CarOption $tractiecontrole |
||
3308 | * @return \Webservices\StructType\CarOptions |
||
3309 | */ |
||
3310 | public function setTractiecontrole(\Webservices\StructType\CarOption $tractiecontrole = null) |
||
3311 | { |
||
3312 | $this->tractiecontrole = $tractiecontrole; |
||
3313 | return $this; |
||
3314 | } |
||
3315 | /** |
||
3316 | * Get sperdifferentieel value |
||
3317 | * @return \Webservices\StructType\CarOption|null |
||
3318 | */ |
||
3319 | public function getSperdifferentieel() |
||
3320 | { |
||
3321 | return $this->sperdifferentieel; |
||
3322 | } |
||
3323 | /** |
||
3324 | * Set sperdifferentieel value |
||
3325 | * @param \Webservices\StructType\CarOption $sperdifferentieel |
||
3326 | * @return \Webservices\StructType\CarOptions |
||
3327 | */ |
||
3328 | public function setSperdifferentieel(\Webservices\StructType\CarOption $sperdifferentieel = null) |
||
3329 | { |
||
3330 | $this->sperdifferentieel = $sperdifferentieel; |
||
3331 | return $this; |
||
3332 | } |
||
3333 | /** |
||
3334 | * Get stabiliteitsregeling value |
||
3335 | * @return \Webservices\StructType\CarOption|null |
||
3336 | */ |
||
3337 | public function getStabiliteitsregeling() |
||
3338 | { |
||
3339 | return $this->stabiliteitsregeling; |
||
3340 | } |
||
3341 | /** |
||
3342 | * Set stabiliteitsregeling value |
||
3343 | * @param \Webservices\StructType\CarOption $stabiliteitsregeling |
||
3344 | * @return \Webservices\StructType\CarOptions |
||
3345 | */ |
||
3346 | public function setStabiliteitsregeling(\Webservices\StructType\CarOption $stabiliteitsregeling = null) |
||
3347 | { |
||
3348 | $this->stabiliteitsregeling = $stabiliteitsregeling; |
||
3349 | return $this; |
||
3350 | } |
||
3351 | /** |
||
3352 | * Get regelbare_schokdemping value |
||
3353 | * @return \Webservices\StructType\CarOption|null |
||
3354 | */ |
||
3355 | public function getRegelbare_schokdemping() |
||
3356 | { |
||
3357 | return $this->regelbare_schokdemping; |
||
3358 | } |
||
3359 | /** |
||
3360 | * Set regelbare_schokdemping value |
||
3361 | * @param \Webservices\StructType\CarOption $regelbare_schokdemping |
||
3362 | * @return \Webservices\StructType\CarOptions |
||
3363 | */ |
||
3364 | public function setRegelbare_schokdemping(\Webservices\StructType\CarOption $regelbare_schokdemping = null) |
||
3365 | { |
||
3366 | $this->regelbare_schokdemping = $regelbare_schokdemping; |
||
3367 | return $this; |
||
3368 | } |
||
3369 | /** |
||
3370 | * Get niveauregeling value |
||
3371 | * @return \Webservices\StructType\CarOption|null |
||
3372 | */ |
||
3373 | public function getNiveauregeling() |
||
3376 | } |
||
3377 | /** |
||
3378 | * Set niveauregeling value |
||
3379 | * @param \Webservices\StructType\CarOption $niveauregeling |
||
3380 | * @return \Webservices\StructType\CarOptions |
||
3381 | */ |
||
3382 | public function setNiveauregeling(\Webservices\StructType\CarOption $niveauregeling = null) |
||
3383 | { |
||
3384 | $this->niveauregeling = $niveauregeling; |
||
3385 | return $this; |
||
3386 | } |
||
3387 | /** |
||
3388 | * Get airbag_bestuurder value |
||
3389 | * @return \Webservices\StructType\CarOption|null |
||
3390 | */ |
||
3391 | public function getAirbag_bestuurder() |
||
3392 | { |
||
3393 | return $this->airbag_bestuurder; |
||
3394 | } |
||
3395 | /** |
||
3396 | * Set airbag_bestuurder value |
||
3397 | * @param \Webservices\StructType\CarOption $airbag_bestuurder |
||
3398 | * @return \Webservices\StructType\CarOptions |
||
3399 | */ |
||
3400 | public function setAirbag_bestuurder(\Webservices\StructType\CarOption $airbag_bestuurder = null) |
||
3401 | { |
||
3402 | $this->airbag_bestuurder = $airbag_bestuurder; |
||
3403 | return $this; |
||
3404 | } |
||
3405 | /** |
||
3406 | * Get airbag_passagier value |
||
3407 | * @return \Webservices\StructType\CarOption|null |
||
3408 | */ |
||
3409 | public function getAirbag_passagier() |
||
3410 | { |
||
3411 | return $this->airbag_passagier; |
||
3412 | } |
||
3413 | /** |
||
3414 | * Set airbag_passagier value |
||
3415 | * @param \Webservices\StructType\CarOption $airbag_passagier |
||
3416 | * @return \Webservices\StructType\CarOptions |
||
3417 | */ |
||
3418 | public function setAirbag_passagier(\Webservices\StructType\CarOption $airbag_passagier = null) |
||
3419 | { |
||
3420 | $this->airbag_passagier = $airbag_passagier; |
||
3421 | return $this; |
||
3422 | } |
||
3423 | /** |
||
3424 | * Get airbag_opzijvoor value |
||
3425 | * @return \Webservices\StructType\CarOption|null |
||
3426 | */ |
||
3427 | public function getAirbag_opzijvoor() |
||
3428 | { |
||
3429 | return $this->airbag_opzijvoor; |
||
3430 | } |
||
3431 | /** |
||
3432 | * Set airbag_opzijvoor value |
||
3433 | * @param \Webservices\StructType\CarOption $airbag_opzijvoor |
||
3434 | * @return \Webservices\StructType\CarOptions |
||
3435 | */ |
||
3436 | public function setAirbag_opzijvoor(\Webservices\StructType\CarOption $airbag_opzijvoor = null) |
||
3437 | { |
||
3438 | $this->airbag_opzijvoor = $airbag_opzijvoor; |
||
3439 | return $this; |
||
3440 | } |
||
3441 | /** |
||
3442 | * Get airbag_opzijachter value |
||
3443 | * @return \Webservices\StructType\CarOption|null |
||
3444 | */ |
||
3445 | public function getAirbag_opzijachter() |
||
3446 | { |
||
3447 | return $this->airbag_opzijachter; |
||
3448 | } |
||
3449 | /** |
||
3450 | * Set airbag_opzijachter value |
||
3451 | * @param \Webservices\StructType\CarOption $airbag_opzijachter |
||
3452 | * @return \Webservices\StructType\CarOptions |
||
3453 | */ |
||
3454 | public function setAirbag_opzijachter(\Webservices\StructType\CarOption $airbag_opzijachter = null) |
||
3455 | { |
||
3456 | $this->airbag_opzijachter = $airbag_opzijachter; |
||
3457 | return $this; |
||
3458 | } |
||
3459 | /** |
||
3460 | * Get airbag_hoofdvoor value |
||
3461 | * @return \Webservices\StructType\CarOption|null |
||
3462 | */ |
||
3463 | public function getAirbag_hoofdvoor() |
||
3464 | { |
||
3465 | return $this->airbag_hoofdvoor; |
||
3466 | } |
||
3467 | /** |
||
3468 | * Set airbag_hoofdvoor value |
||
3469 | * @param \Webservices\StructType\CarOption $airbag_hoofdvoor |
||
3470 | * @return \Webservices\StructType\CarOptions |
||
3471 | */ |
||
3472 | public function setAirbag_hoofdvoor(\Webservices\StructType\CarOption $airbag_hoofdvoor = null) |
||
3473 | { |
||
3474 | $this->airbag_hoofdvoor = $airbag_hoofdvoor; |
||
3475 | return $this; |
||
3476 | } |
||
3477 | /** |
||
3478 | * Get airbag_hoofdachter value |
||
3479 | * @return \Webservices\StructType\CarOption|null |
||
3480 | */ |
||
3481 | public function getAirbag_hoofdachter() |
||
3482 | { |
||
3483 | return $this->airbag_hoofdachter; |
||
3484 | } |
||
3485 | /** |
||
3486 | * Set airbag_hoofdachter value |
||
3487 | * @param \Webservices\StructType\CarOption $airbag_hoofdachter |
||
3488 | * @return \Webservices\StructType\CarOptions |
||
3489 | */ |
||
3490 | public function setAirbag_hoofdachter(\Webservices\StructType\CarOption $airbag_hoofdachter = null) |
||
3491 | { |
||
3492 | $this->airbag_hoofdachter = $airbag_hoofdachter; |
||
3493 | return $this; |
||
3494 | } |
||
3495 | /** |
||
3496 | * Get gordelspanners value |
||
3497 | * @return \Webservices\StructType\CarOption|null |
||
3498 | */ |
||
3499 | public function getGordelspanners() |
||
3500 | { |
||
3501 | return $this->gordelspanners; |
||
3502 | } |
||
3503 | /** |
||
3504 | * Set gordelspanners value |
||
3505 | * @param \Webservices\StructType\CarOption $gordelspanners |
||
3506 | * @return \Webservices\StructType\CarOptions |
||
3507 | */ |
||
3508 | public function setGordelspanners(\Webservices\StructType\CarOption $gordelspanners = null) |
||
3509 | { |
||
3510 | $this->gordelspanners = $gordelspanners; |
||
3511 | return $this; |
||
3512 | } |
||
3513 | /** |
||
3514 | * Get verstelbare_gordelhoogte value |
||
3515 | * @return \Webservices\StructType\CarOption|null |
||
3516 | */ |
||
3517 | public function getVerstelbare_gordelhoogte() |
||
3518 | { |
||
3519 | return $this->verstelbare_gordelhoogte; |
||
3520 | } |
||
3521 | /** |
||
3522 | * Set verstelbare_gordelhoogte value |
||
3523 | * @param \Webservices\StructType\CarOption $verstelbare_gordelhoogte |
||
3524 | * @return \Webservices\StructType\CarOptions |
||
3525 | */ |
||
3526 | public function setVerstelbare_gordelhoogte(\Webservices\StructType\CarOption $verstelbare_gordelhoogte = null) |
||
3527 | { |
||
3528 | $this->verstelbare_gordelhoogte = $verstelbare_gordelhoogte; |
||
3529 | return $this; |
||
3530 | } |
||
3531 | /** |
||
3532 | * Get startonderbreker value |
||
3533 | * @return \Webservices\StructType\CarOption|null |
||
3534 | */ |
||
3535 | public function getStartonderbreker() |
||
3536 | { |
||
3537 | return $this->startonderbreker; |
||
3538 | } |
||
3539 | /** |
||
3540 | * Set startonderbreker value |
||
3541 | * @param \Webservices\StructType\CarOption $startonderbreker |
||
3542 | * @return \Webservices\StructType\CarOptions |
||
3543 | */ |
||
3544 | public function setStartonderbreker(\Webservices\StructType\CarOption $startonderbreker = null) |
||
3545 | { |
||
3546 | $this->startonderbreker = $startonderbreker; |
||
3547 | return $this; |
||
3548 | } |
||
3549 | /** |
||
3550 | * Get inbraakalarm value |
||
3551 | * @return \Webservices\StructType\CarOption|null |
||
3552 | */ |
||
3553 | public function getInbraakalarm() |
||
3554 | { |
||
3555 | return $this->inbraakalarm; |
||
3556 | } |
||
3557 | /** |
||
3558 | * Set inbraakalarm value |
||
3559 | * @param \Webservices\StructType\CarOption $inbraakalarm |
||
3560 | * @return \Webservices\StructType\CarOptions |
||
3561 | */ |
||
3562 | public function setInbraakalarm(\Webservices\StructType\CarOption $inbraakalarm = null) |
||
3563 | { |
||
3564 | $this->inbraakalarm = $inbraakalarm; |
||
3565 | return $this; |
||
3566 | } |
||
3567 | /** |
||
3568 | * Get centrale_deurvergrendeling value |
||
3569 | * @return \Webservices\StructType\CarOption|null |
||
3570 | */ |
||
3571 | public function getCentrale_deurvergrendeling() |
||
3572 | { |
||
3573 | return $this->centrale_deurvergrendeling; |
||
3574 | } |
||
3575 | /** |
||
3576 | * Set centrale_deurvergrendeling value |
||
3577 | * @param \Webservices\StructType\CarOption $centrale_deurvergrendeling |
||
3578 | * @return \Webservices\StructType\CarOptions |
||
3579 | */ |
||
3580 | public function setCentrale_deurvergrendeling(\Webservices\StructType\CarOption $centrale_deurvergrendeling = null) |
||
3581 | { |
||
3582 | $this->centrale_deurvergrendeling = $centrale_deurvergrendeling; |
||
3583 | return $this; |
||
3584 | } |
||
3585 | /** |
||
3586 | * Get afstandbediening_deurvergrendeling value |
||
3587 | * @return \Webservices\StructType\CarOption|null |
||
3588 | */ |
||
3589 | public function getAfstandbediening_deurvergrendeling() |
||
3590 | { |
||
3591 | return $this->afstandbediening_deurvergrendeling; |
||
3592 | } |
||
3593 | /** |
||
3594 | * Set afstandbediening_deurvergrendeling value |
||
3595 | * @param \Webservices\StructType\CarOption $afstandbediening_deurvergrendeling |
||
3596 | * @return \Webservices\StructType\CarOptions |
||
3597 | */ |
||
3598 | public function setAfstandbediening_deurvergrendeling(\Webservices\StructType\CarOption $afstandbediening_deurvergrendeling = null) |
||
3599 | { |
||
3600 | $this->afstandbediening_deurvergrendeling = $afstandbediening_deurvergrendeling; |
||
3601 | return $this; |
||
3602 | } |
||
3603 | /** |
||
3604 | * Get automatische_vergrendeling value |
||
3605 | * @return \Webservices\StructType\CarOption|null |
||
3606 | */ |
||
3607 | public function getAutomatische_vergrendeling() |
||
3608 | { |
||
3609 | return $this->automatische_vergrendeling; |
||
3610 | } |
||
3611 | /** |
||
3612 | * Set automatische_vergrendeling value |
||
3613 | * @param \Webservices\StructType\CarOption $automatische_vergrendeling |
||
3614 | * @return \Webservices\StructType\CarOptions |
||
3615 | */ |
||
3616 | public function setAutomatische_vergrendeling(\Webservices\StructType\CarOption $automatische_vergrendeling = null) |
||
3617 | { |
||
3618 | $this->automatische_vergrendeling = $automatische_vergrendeling; |
||
3619 | return $this; |
||
3620 | } |
||
3621 | /** |
||
3622 | * Get keyless_entry value |
||
3623 | * @return \Webservices\StructType\CarOption|null |
||
3624 | */ |
||
3625 | public function getKeyless_entry() |
||
3626 | { |
||
3627 | return $this->keyless_entry; |
||
3628 | } |
||
3629 | /** |
||
3630 | * Set keyless_entry value |
||
3631 | * @param \Webservices\StructType\CarOption $keyless_entry |
||
3632 | * @return \Webservices\StructType\CarOptions |
||
3633 | */ |
||
3634 | public function setKeyless_entry(\Webservices\StructType\CarOption $keyless_entry = null) |
||
3638 | } |
||
3639 | /** |
||
3640 | * Get elektrische_ramen_voor value |
||
3641 | * @return \Webservices\StructType\CarOption|null |
||
3642 | */ |
||
3643 | public function getElektrische_ramen_voor() |
||
3644 | { |
||
3645 | return $this->elektrische_ramen_voor; |
||
3646 | } |
||
3647 | /** |
||
3648 | * Set elektrische_ramen_voor value |
||
3649 | * @param \Webservices\StructType\CarOption $elektrische_ramen_voor |
||
3650 | * @return \Webservices\StructType\CarOptions |
||
3651 | */ |
||
3652 | public function setElektrische_ramen_voor(\Webservices\StructType\CarOption $elektrische_ramen_voor = null) |
||
3653 | { |
||
3654 | $this->elektrische_ramen_voor = $elektrische_ramen_voor; |
||
3655 | return $this; |
||
3656 | } |
||
3657 | /** |
||
3658 | * Get elektrische_ramen_achter value |
||
3659 | * @return \Webservices\StructType\CarOption|null |
||
3660 | */ |
||
3661 | public function getElektrische_ramen_achter() |
||
3662 | { |
||
3663 | return $this->elektrische_ramen_achter; |
||
3664 | } |
||
3665 | /** |
||
3666 | * Set elektrische_ramen_achter value |
||
3667 | * @param \Webservices\StructType\CarOption $elektrische_ramen_achter |
||
3668 | * @return \Webservices\StructType\CarOptions |
||
3669 | */ |
||
3670 | public function setElektrische_ramen_achter(\Webservices\StructType\CarOption $elektrische_ramen_achter = null) |
||
3671 | { |
||
3672 | $this->elektrische_ramen_achter = $elektrische_ramen_achter; |
||
3673 | return $this; |
||
3674 | } |
||
3675 | /** |
||
3676 | * Get stuurbekrachtiging value |
||
3677 | * @return \Webservices\StructType\CarOption|null |
||
3678 | */ |
||
3679 | public function getStuurbekrachtiging() |
||
3680 | { |
||
3681 | return $this->stuurbekrachtiging; |
||
3682 | } |
||
3683 | /** |
||
3684 | * Set stuurbekrachtiging value |
||
3685 | * @param \Webservices\StructType\CarOption $stuurbekrachtiging |
||
3686 | * @return \Webservices\StructType\CarOptions |
||
3687 | */ |
||
3688 | public function setStuurbekrachtiging(\Webservices\StructType\CarOption $stuurbekrachtiging = null) |
||
3689 | { |
||
3690 | $this->stuurbekrachtiging = $stuurbekrachtiging; |
||
3691 | return $this; |
||
3692 | } |
||
3693 | /** |
||
3694 | * Get stuurschakeling value |
||
3695 | * @return \Webservices\StructType\CarOption|null |
||
3696 | */ |
||
3697 | public function getStuurschakeling() |
||
3698 | { |
||
3699 | return $this->stuurschakeling; |
||
3700 | } |
||
3701 | /** |
||
3702 | * Set stuurschakeling value |
||
3703 | * @param \Webservices\StructType\CarOption $stuurschakeling |
||
3704 | * @return \Webservices\StructType\CarOptions |
||
3705 | */ |
||
3706 | public function setStuurschakeling(\Webservices\StructType\CarOption $stuurschakeling = null) |
||
3707 | { |
||
3708 | $this->stuurschakeling = $stuurschakeling; |
||
3709 | return $this; |
||
3710 | } |
||
3711 | /** |
||
3712 | * Get cruise_control value |
||
3713 | * @return \Webservices\StructType\CarOption|null |
||
3714 | */ |
||
3715 | public function getCruise_control() |
||
3716 | { |
||
3717 | return $this->cruise_control; |
||
3718 | } |
||
3719 | /** |
||
3720 | * Set cruise_control value |
||
3721 | * @param \Webservices\StructType\CarOption $cruise_control |
||
3722 | * @return \Webservices\StructType\CarOptions |
||
3723 | */ |
||
3724 | public function setCruise_control(\Webservices\StructType\CarOption $cruise_control = null) |
||
3725 | { |
||
3726 | $this->cruise_control = $cruise_control; |
||
3727 | return $this; |
||
3728 | } |
||
3729 | /** |
||
3730 | * Get radar_cruise_control value |
||
3731 | * @return \Webservices\StructType\CarOption|null |
||
3732 | */ |
||
3733 | public function getRadar_cruise_control() |
||
3734 | { |
||
3735 | return $this->radar_cruise_control; |
||
3736 | } |
||
3737 | /** |
||
3738 | * Set radar_cruise_control value |
||
3739 | * @param \Webservices\StructType\CarOption $radar_cruise_control |
||
3740 | * @return \Webservices\StructType\CarOptions |
||
3741 | */ |
||
3742 | public function setRadar_cruise_control(\Webservices\StructType\CarOption $radar_cruise_control = null) |
||
3743 | { |
||
3744 | $this->radar_cruise_control = $radar_cruise_control; |
||
3745 | return $this; |
||
3746 | } |
||
3747 | /** |
||
3748 | * Get airconditioning value |
||
3749 | * @return \Webservices\StructType\CarOption|null |
||
3750 | */ |
||
3751 | public function getAirconditioning() |
||
3752 | { |
||
3753 | return $this->airconditioning; |
||
3754 | } |
||
3755 | /** |
||
3756 | * Set airconditioning value |
||
3757 | * @param \Webservices\StructType\CarOption $airconditioning |
||
3758 | * @return \Webservices\StructType\CarOptions |
||
3759 | */ |
||
3760 | public function setAirconditioning(\Webservices\StructType\CarOption $airconditioning = null) |
||
3761 | { |
||
3762 | $this->airconditioning = $airconditioning; |
||
3763 | return $this; |
||
3764 | } |
||
3765 | /** |
||
3766 | * Get klimaatregeling value |
||
3767 | * @return \Webservices\StructType\CarOption|null |
||
3768 | */ |
||
3769 | public function getKlimaatregeling() |
||
3770 | { |
||
3771 | return $this->klimaatregeling; |
||
3772 | } |
||
3773 | /** |
||
3774 | * Set klimaatregeling value |
||
3775 | * @param \Webservices\StructType\CarOption $klimaatregeling |
||
3776 | * @return \Webservices\StructType\CarOptions |
||
3777 | */ |
||
3778 | public function setKlimaatregeling(\Webservices\StructType\CarOption $klimaatregeling = null) |
||
3779 | { |
||
3780 | $this->klimaatregeling = $klimaatregeling; |
||
3781 | return $this; |
||
3782 | } |
||
3783 | /** |
||
3784 | * Get gescheiden_temperatuurregeling value |
||
3785 | * @return \Webservices\StructType\CarOption|null |
||
3786 | */ |
||
3787 | public function getGescheiden_temperatuurregeling() |
||
3788 | { |
||
3789 | return $this->gescheiden_temperatuurregeling; |
||
3790 | } |
||
3791 | /** |
||
3792 | * Set gescheiden_temperatuurregeling value |
||
3793 | * @param \Webservices\StructType\CarOption $gescheiden_temperatuurregeling |
||
3794 | * @return \Webservices\StructType\CarOptions |
||
3795 | */ |
||
3796 | public function setGescheiden_temperatuurregeling(\Webservices\StructType\CarOption $gescheiden_temperatuurregeling = null) |
||
3797 | { |
||
3798 | $this->gescheiden_temperatuurregeling = $gescheiden_temperatuurregeling; |
||
3799 | return $this; |
||
3800 | } |
||
3801 | /** |
||
3802 | * Get pollenfilter value |
||
3803 | * @return \Webservices\StructType\CarOption|null |
||
3804 | */ |
||
3805 | public function getPollenfilter() |
||
3806 | { |
||
3807 | return $this->pollenfilter; |
||
3808 | } |
||
3809 | /** |
||
3810 | * Set pollenfilter value |
||
3811 | * @param \Webservices\StructType\CarOption $pollenfilter |
||
3812 | * @return \Webservices\StructType\CarOptions |
||
3813 | */ |
||
3814 | public function setPollenfilter(\Webservices\StructType\CarOption $pollenfilter = null) |
||
3815 | { |
||
3816 | $this->pollenfilter = $pollenfilter; |
||
3817 | return $this; |
||
3818 | } |
||
3819 | /** |
||
3820 | * Get parkeersensor value |
||
3821 | * @return \Webservices\StructType\CarOption|null |
||
3822 | */ |
||
3823 | public function getParkeersensor() |
||
3824 | { |
||
3825 | return $this->parkeersensor; |
||
3826 | } |
||
3827 | /** |
||
3828 | * Set parkeersensor value |
||
3829 | * @param \Webservices\StructType\CarOption $parkeersensor |
||
3830 | * @return \Webservices\StructType\CarOptions |
||
3831 | */ |
||
3832 | public function setParkeersensor(\Webservices\StructType\CarOption $parkeersensor = null) |
||
3833 | { |
||
3834 | $this->parkeersensor = $parkeersensor; |
||
3835 | return $this; |
||
3836 | } |
||
3837 | /** |
||
3838 | * Get hoofdsteunen_voor value |
||
3839 | * @return \Webservices\StructType\CarOption|null |
||
3840 | */ |
||
3841 | public function getHoofdsteunen_voor() |
||
3842 | { |
||
3843 | return $this->hoofdsteunen_voor; |
||
3844 | } |
||
3845 | /** |
||
3846 | * Set hoofdsteunen_voor value |
||
3847 | * @param \Webservices\StructType\CarOption $hoofdsteunen_voor |
||
3848 | * @return \Webservices\StructType\CarOptions |
||
3849 | */ |
||
3850 | public function setHoofdsteunen_voor(\Webservices\StructType\CarOption $hoofdsteunen_voor = null) |
||
3851 | { |
||
3852 | $this->hoofdsteunen_voor = $hoofdsteunen_voor; |
||
3853 | return $this; |
||
3854 | } |
||
3855 | /** |
||
3856 | * Get hoofdsteunen_achter value |
||
3857 | * @return \Webservices\StructType\CarOption|null |
||
3858 | */ |
||
3859 | public function getHoofdsteunen_achter() |
||
3860 | { |
||
3861 | return $this->hoofdsteunen_achter; |
||
3862 | } |
||
3863 | /** |
||
3864 | * Set hoofdsteunen_achter value |
||
3865 | * @param \Webservices\StructType\CarOption $hoofdsteunen_achter |
||
3866 | * @return \Webservices\StructType\CarOptions |
||
3867 | */ |
||
3868 | public function setHoofdsteunen_achter(\Webservices\StructType\CarOption $hoofdsteunen_achter = null) |
||
3869 | { |
||
3870 | $this->hoofdsteunen_achter = $hoofdsteunen_achter; |
||
3871 | return $this; |
||
3872 | } |
||
3873 | /** |
||
3874 | * Get verstelbare_hoofdsteunen_achter value |
||
3875 | * @return \Webservices\StructType\CarOption|null |
||
3876 | */ |
||
3877 | public function getVerstelbare_hoofdsteunen_achter() |
||
3878 | { |
||
3879 | return $this->verstelbare_hoofdsteunen_achter; |
||
3880 | } |
||
3881 | /** |
||
3882 | * Set verstelbare_hoofdsteunen_achter value |
||
3883 | * @param \Webservices\StructType\CarOption $verstelbare_hoofdsteunen_achter |
||
3884 | * @return \Webservices\StructType\CarOptions |
||
3885 | */ |
||
3886 | public function setVerstelbare_hoofdsteunen_achter(\Webservices\StructType\CarOption $verstelbare_hoofdsteunen_achter = null) |
||
3887 | { |
||
3888 | $this->verstelbare_hoofdsteunen_achter = $verstelbare_hoofdsteunen_achter; |
||
3889 | return $this; |
||
3890 | } |
||
3891 | /** |
||
3892 | * Get derde_hoofdsteun_achter value |
||
3893 | * @return \Webservices\StructType\CarOption|null |
||
3894 | */ |
||
3895 | public function getDerde_hoofdsteun_achter() |
||
3896 | { |
||
3897 | return $this->derde_hoofdsteun_achter; |
||
3898 | } |
||
3899 | /** |
||
3900 | * Set derde_hoofdsteun_achter value |
||
3901 | * @param \Webservices\StructType\CarOption $derde_hoofdsteun_achter |
||
3902 | * @return \Webservices\StructType\CarOptions |
||
3903 | */ |
||
3904 | public function setDerde_hoofdsteun_achter(\Webservices\StructType\CarOption $derde_hoofdsteun_achter = null) |
||
3905 | { |
||
3906 | $this->derde_hoofdsteun_achter = $derde_hoofdsteun_achter; |
||
3907 | return $this; |
||
3908 | } |
||
3909 | /** |
||
3910 | * Get derde_driepuntsgordel_achter value |
||
3911 | * @return \Webservices\StructType\CarOption|null |
||
3912 | */ |
||
3913 | public function getDerde_driepuntsgordel_achter() |
||
3914 | { |
||
3915 | return $this->derde_driepuntsgordel_achter; |
||
3916 | } |
||
3917 | /** |
||
3918 | * Set derde_driepuntsgordel_achter value |
||
3919 | * @param \Webservices\StructType\CarOption $derde_driepuntsgordel_achter |
||
3920 | * @return \Webservices\StructType\CarOptions |
||
3921 | */ |
||
3922 | public function setDerde_driepuntsgordel_achter(\Webservices\StructType\CarOption $derde_driepuntsgordel_achter = null) |
||
3923 | { |
||
3924 | $this->derde_driepuntsgordel_achter = $derde_driepuntsgordel_achter; |
||
3925 | return $this; |
||
3926 | } |
||
3927 | /** |
||
3928 | * Get verstelbare_lendensteun_bestuurder value |
||
3929 | * @return \Webservices\StructType\CarOption|null |
||
3930 | */ |
||
3931 | public function getVerstelbare_lendensteun_bestuurder() |
||
3932 | { |
||
3933 | return $this->verstelbare_lendensteun_bestuurder; |
||
3934 | } |
||
3935 | /** |
||
3936 | * Set verstelbare_lendensteun_bestuurder value |
||
3937 | * @param \Webservices\StructType\CarOption $verstelbare_lendensteun_bestuurder |
||
3938 | * @return \Webservices\StructType\CarOptions |
||
3939 | */ |
||
3940 | public function setVerstelbare_lendensteun_bestuurder(\Webservices\StructType\CarOption $verstelbare_lendensteun_bestuurder = null) |
||
3941 | { |
||
3942 | $this->verstelbare_lendensteun_bestuurder = $verstelbare_lendensteun_bestuurder; |
||
3943 | return $this; |
||
3944 | } |
||
3945 | /** |
||
3946 | * Get verstelbare_lendensteun_passagier value |
||
3947 | * @return \Webservices\StructType\CarOption|null |
||
3948 | */ |
||
3949 | public function getVerstelbare_lendensteun_passagier() |
||
3950 | { |
||
3951 | return $this->verstelbare_lendensteun_passagier; |
||
3952 | } |
||
3953 | /** |
||
3954 | * Set verstelbare_lendensteun_passagier value |
||
3955 | * @param \Webservices\StructType\CarOption $verstelbare_lendensteun_passagier |
||
3956 | * @return \Webservices\StructType\CarOptions |
||
3957 | */ |
||
3958 | public function setVerstelbare_lendensteun_passagier(\Webservices\StructType\CarOption $verstelbare_lendensteun_passagier = null) |
||
3959 | { |
||
3960 | $this->verstelbare_lendensteun_passagier = $verstelbare_lendensteun_passagier; |
||
3961 | return $this; |
||
3962 | } |
||
3963 | /** |
||
3964 | * Get hoogteverstelling_bestuurder value |
||
3965 | * @return \Webservices\StructType\CarOption|null |
||
3966 | */ |
||
3967 | public function getHoogteverstelling_bestuurder() |
||
3968 | { |
||
3969 | return $this->hoogteverstelling_bestuurder; |
||
3970 | } |
||
3971 | /** |
||
3972 | * Set hoogteverstelling_bestuurder value |
||
3973 | * @param \Webservices\StructType\CarOption $hoogteverstelling_bestuurder |
||
3974 | * @return \Webservices\StructType\CarOptions |
||
3975 | */ |
||
3976 | public function setHoogteverstelling_bestuurder(\Webservices\StructType\CarOption $hoogteverstelling_bestuurder = null) |
||
3977 | { |
||
3978 | $this->hoogteverstelling_bestuurder = $hoogteverstelling_bestuurder; |
||
3979 | return $this; |
||
3980 | } |
||
3981 | /** |
||
3982 | * Get hoogteverstelling_passagier value |
||
3983 | * @return \Webservices\StructType\CarOption|null |
||
3984 | */ |
||
3985 | public function getHoogteverstelling_passagier() |
||
3986 | { |
||
3987 | return $this->hoogteverstelling_passagier; |
||
3988 | } |
||
3989 | /** |
||
3990 | * Set hoogteverstelling_passagier value |
||
3991 | * @param \Webservices\StructType\CarOption $hoogteverstelling_passagier |
||
3992 | * @return \Webservices\StructType\CarOptions |
||
3993 | */ |
||
3994 | public function setHoogteverstelling_passagier(\Webservices\StructType\CarOption $hoogteverstelling_passagier = null) |
||
3995 | { |
||
3996 | $this->hoogteverstelling_passagier = $hoogteverstelling_passagier; |
||
3997 | return $this; |
||
3998 | } |
||
3999 | /** |
||
4000 | * Get elektrische_stoelverstelling value |
||
4001 | * @return \Webservices\StructType\CarOption|null |
||
4002 | */ |
||
4003 | public function getElektrische_stoelverstelling() |
||
4004 | { |
||
4005 | return $this->elektrische_stoelverstelling; |
||
4006 | } |
||
4007 | /** |
||
4008 | * Set elektrische_stoelverstelling value |
||
4009 | * @param \Webservices\StructType\CarOption $elektrische_stoelverstelling |
||
4010 | * @return \Webservices\StructType\CarOptions |
||
4011 | */ |
||
4012 | public function setElektrische_stoelverstelling(\Webservices\StructType\CarOption $elektrische_stoelverstelling = null) |
||
4013 | { |
||
4014 | $this->elektrische_stoelverstelling = $elektrische_stoelverstelling; |
||
4015 | return $this; |
||
4016 | } |
||
4017 | /** |
||
4018 | * Get geheugen_stoelverstelling value |
||
4019 | * @return \Webservices\StructType\CarOption|null |
||
4020 | */ |
||
4021 | public function getGeheugen_stoelverstelling() |
||
4022 | { |
||
4023 | return $this->geheugen_stoelverstelling; |
||
4024 | } |
||
4025 | /** |
||
4026 | * Set geheugen_stoelverstelling value |
||
4027 | * @param \Webservices\StructType\CarOption $geheugen_stoelverstelling |
||
4028 | * @return \Webservices\StructType\CarOptions |
||
4029 | */ |
||
4030 | public function setGeheugen_stoelverstelling(\Webservices\StructType\CarOption $geheugen_stoelverstelling = null) |
||
4031 | { |
||
4032 | $this->geheugen_stoelverstelling = $geheugen_stoelverstelling; |
||
4033 | return $this; |
||
4034 | } |
||
4035 | /** |
||
4036 | * Get verwarmde_zitplaatsen_voor value |
||
4037 | * @return \Webservices\StructType\CarOption|null |
||
4038 | */ |
||
4039 | public function getVerwarmde_zitplaatsen_voor() |
||
4040 | { |
||
4041 | return $this->verwarmde_zitplaatsen_voor; |
||
4042 | } |
||
4043 | /** |
||
4044 | * Set verwarmde_zitplaatsen_voor value |
||
4045 | * @param \Webservices\StructType\CarOption $verwarmde_zitplaatsen_voor |
||
4046 | * @return \Webservices\StructType\CarOptions |
||
4047 | */ |
||
4048 | public function setVerwarmde_zitplaatsen_voor(\Webservices\StructType\CarOption $verwarmde_zitplaatsen_voor = null) |
||
4049 | { |
||
4050 | $this->verwarmde_zitplaatsen_voor = $verwarmde_zitplaatsen_voor; |
||
4051 | return $this; |
||
4052 | } |
||
4053 | /** |
||
4054 | * Get verwarmde_zitplaatsen_achter value |
||
4055 | * @return \Webservices\StructType\CarOption|null |
||
4056 | */ |
||
4057 | public function getVerwarmde_zitplaatsen_achter() |
||
4058 | { |
||
4059 | return $this->verwarmde_zitplaatsen_achter; |
||
4060 | } |
||
4061 | /** |
||
4062 | * Set verwarmde_zitplaatsen_achter value |
||
4063 | * @param \Webservices\StructType\CarOption $verwarmde_zitplaatsen_achter |
||
4064 | * @return \Webservices\StructType\CarOptions |
||
4065 | */ |
||
4066 | public function setVerwarmde_zitplaatsen_achter(\Webservices\StructType\CarOption $verwarmde_zitplaatsen_achter = null) |
||
4067 | { |
||
4068 | $this->verwarmde_zitplaatsen_achter = $verwarmde_zitplaatsen_achter; |
||
4069 | return $this; |
||
4070 | } |
||
4071 | /** |
||
4072 | * Get sportstoelen value |
||
4073 | * @return \Webservices\StructType\CarOption|null |
||
4074 | */ |
||
4075 | public function getSportstoelen() |
||
4076 | { |
||
4077 | return $this->sportstoelen; |
||
4078 | } |
||
4079 | /** |
||
4080 | * Set sportstoelen value |
||
4081 | * @param \Webservices\StructType\CarOption $sportstoelen |
||
4082 | * @return \Webservices\StructType\CarOptions |
||
4083 | */ |
||
4084 | public function setSportstoelen(\Webservices\StructType\CarOption $sportstoelen = null) |
||
4085 | { |
||
4086 | $this->sportstoelen = $sportstoelen; |
||
4087 | return $this; |
||
4088 | } |
||
4089 | /** |
||
4090 | * Get bekledingstof_leer value |
||
4091 | * @return \Webservices\StructType\CarOption|null |
||
4092 | */ |
||
4093 | public function getBekledingstof_leer() |
||
4094 | { |
||
4095 | return $this->bekledingstof_leer; |
||
4096 | } |
||
4097 | /** |
||
4098 | * Set bekledingstof_leer value |
||
4099 | * @param \Webservices\StructType\CarOption $bekledingstof_leer |
||
4100 | * @return \Webservices\StructType\CarOptions |
||
4101 | */ |
||
4102 | public function setBekledingstof_leer(\Webservices\StructType\CarOption $bekledingstof_leer = null) |
||
4103 | { |
||
4104 | $this->bekledingstof_leer = $bekledingstof_leer; |
||
4105 | return $this; |
||
4106 | } |
||
4107 | /** |
||
4108 | * Get lerenbekleding value |
||
4109 | * @return \Webservices\StructType\CarOption|null |
||
4110 | */ |
||
4111 | public function getLerenbekleding() |
||
4112 | { |
||
4113 | return $this->lerenbekleding; |
||
4114 | } |
||
4115 | /** |
||
4116 | * Set lerenbekleding value |
||
4117 | * @param \Webservices\StructType\CarOption $lerenbekleding |
||
4118 | * @return \Webservices\StructType\CarOptions |
||
4119 | */ |
||
4120 | public function setLerenbekleding(\Webservices\StructType\CarOption $lerenbekleding = null) |
||
4121 | { |
||
4122 | $this->lerenbekleding = $lerenbekleding; |
||
4123 | return $this; |
||
4124 | } |
||
4125 | /** |
||
4126 | * Get hoogteverstelling_stuur value |
||
4127 | * @return \Webservices\StructType\CarOption|null |
||
4128 | */ |
||
4129 | public function getHoogteverstelling_stuur() |
||
4130 | { |
||
4131 | return $this->hoogteverstelling_stuur; |
||
4132 | } |
||
4133 | /** |
||
4134 | * Set hoogteverstelling_stuur value |
||
4135 | * @param \Webservices\StructType\CarOption $hoogteverstelling_stuur |
||
4136 | * @return \Webservices\StructType\CarOptions |
||
4137 | */ |
||
4138 | public function setHoogteverstelling_stuur(\Webservices\StructType\CarOption $hoogteverstelling_stuur = null) |
||
4139 | { |
||
4140 | $this->hoogteverstelling_stuur = $hoogteverstelling_stuur; |
||
4141 | return $this; |
||
4142 | } |
||
4143 | /** |
||
4144 | * Get diepteverstelling_stuur value |
||
4145 | * @return \Webservices\StructType\CarOption|null |
||
4146 | */ |
||
4147 | public function getDiepteverstelling_stuur() |
||
4148 | { |
||
4149 | return $this->diepteverstelling_stuur; |
||
4150 | } |
||
4151 | /** |
||
4152 | * Set diepteverstelling_stuur value |
||
4153 | * @param \Webservices\StructType\CarOption $diepteverstelling_stuur |
||
4154 | * @return \Webservices\StructType\CarOptions |
||
4155 | */ |
||
4156 | public function setDiepteverstelling_stuur(\Webservices\StructType\CarOption $diepteverstelling_stuur = null) |
||
4157 | { |
||
4158 | $this->diepteverstelling_stuur = $diepteverstelling_stuur; |
||
4159 | return $this; |
||
4160 | } |
||
4161 | /** |
||
4162 | * Get elektrische_stuurverstelling value |
||
4163 | * @return \Webservices\StructType\CarOption|null |
||
4164 | */ |
||
4165 | public function getElektrische_stuurverstelling() |
||
4166 | { |
||
4167 | return $this->elektrische_stuurverstelling; |
||
4168 | } |
||
4169 | /** |
||
4170 | * Set elektrische_stuurverstelling value |
||
4171 | * @param \Webservices\StructType\CarOption $elektrische_stuurverstelling |
||
4172 | * @return \Webservices\StructType\CarOptions |
||
4173 | */ |
||
4174 | public function setElektrische_stuurverstelling(\Webservices\StructType\CarOption $elektrische_stuurverstelling = null) |
||
4175 | { |
||
4176 | $this->elektrische_stuurverstelling = $elektrische_stuurverstelling; |
||
4177 | return $this; |
||
4178 | } |
||
4179 | /** |
||
4180 | * Get leer_bekleed_stuur value |
||
4181 | * @return \Webservices\StructType\CarOption|null |
||
4182 | */ |
||
4183 | public function getLeer_bekleed_stuur() |
||
4184 | { |
||
4185 | return $this->leer_bekleed_stuur; |
||
4186 | } |
||
4187 | /** |
||
4188 | * Set leer_bekleed_stuur value |
||
4189 | * @param \Webservices\StructType\CarOption $leer_bekleed_stuur |
||
4190 | * @return \Webservices\StructType\CarOptions |
||
4191 | */ |
||
4192 | public function setLeer_bekleed_stuur(\Webservices\StructType\CarOption $leer_bekleed_stuur = null) |
||
4193 | { |
||
4194 | $this->leer_bekleed_stuur = $leer_bekleed_stuur; |
||
4195 | return $this; |
||
4196 | } |
||
4197 | /** |
||
4198 | * Get middenarmsteun_voor value |
||
4199 | * @return \Webservices\StructType\CarOption|null |
||
4200 | */ |
||
4201 | public function getMiddenarmsteun_voor() |
||
4202 | { |
||
4203 | return $this->middenarmsteun_voor; |
||
4204 | } |
||
4205 | /** |
||
4206 | * Set middenarmsteun_voor value |
||
4207 | * @param \Webservices\StructType\CarOption $middenarmsteun_voor |
||
4208 | * @return \Webservices\StructType\CarOptions |
||
4209 | */ |
||
4210 | public function setMiddenarmsteun_voor(\Webservices\StructType\CarOption $middenarmsteun_voor = null) |
||
4211 | { |
||
4212 | $this->middenarmsteun_voor = $middenarmsteun_voor; |
||
4213 | return $this; |
||
4214 | } |
||
4215 | /** |
||
4216 | * Get middenarmsteun_achter value |
||
4217 | * @return \Webservices\StructType\CarOption|null |
||
4218 | */ |
||
4219 | public function getMiddenarmsteun_achter() |
||
4220 | { |
||
4221 | return $this->middenarmsteun_achter; |
||
4222 | } |
||
4223 | /** |
||
4224 | * Set middenarmsteun_achter value |
||
4225 | * @param \Webservices\StructType\CarOption $middenarmsteun_achter |
||
4226 | * @return \Webservices\StructType\CarOptions |
||
4227 | */ |
||
4228 | public function setMiddenarmsteun_achter(\Webservices\StructType\CarOption $middenarmsteun_achter = null) |
||
4229 | { |
||
4230 | $this->middenarmsteun_achter = $middenarmsteun_achter; |
||
4231 | return $this; |
||
4232 | } |
||
4233 | /** |
||
4234 | * Get neerklapbare_achterbank value |
||
4235 | * @return \Webservices\StructType\CarOption|null |
||
4236 | */ |
||
4237 | public function getNeerklapbare_achterbank() |
||
4238 | { |
||
4239 | return $this->neerklapbare_achterbank; |
||
4240 | } |
||
4241 | /** |
||
4242 | * Set neerklapbare_achterbank value |
||
4243 | * @param \Webservices\StructType\CarOption $neerklapbare_achterbank |
||
4244 | * @return \Webservices\StructType\CarOptions |
||
4245 | */ |
||
4246 | public function setNeerklapbare_achterbank(\Webservices\StructType\CarOption $neerklapbare_achterbank = null) |
||
4247 | { |
||
4248 | $this->neerklapbare_achterbank = $neerklapbare_achterbank; |
||
4249 | return $this; |
||
4250 | } |
||
4251 | /** |
||
4252 | * Get in_delen_neerklapbaar_achterbank value |
||
4253 | * @return \Webservices\StructType\CarOption|null |
||
4254 | */ |
||
4255 | public function getIn_delen_neerklapbaar_achterbank() |
||
4256 | { |
||
4257 | return $this->in_delen_neerklapbaar_achterbank; |
||
4258 | } |
||
4259 | /** |
||
4260 | * Set in_delen_neerklapbaar_achterbank value |
||
4261 | * @param \Webservices\StructType\CarOption $in_delen_neerklapbaar_achterbank |
||
4262 | * @return \Webservices\StructType\CarOptions |
||
4263 | */ |
||
4264 | public function setIn_delen_neerklapbaar_achterbank(\Webservices\StructType\CarOption $in_delen_neerklapbaar_achterbank = null) |
||
4265 | { |
||
4266 | $this->in_delen_neerklapbaar_achterbank = $in_delen_neerklapbaar_achterbank; |
||
4267 | return $this; |
||
4268 | } |
||
4269 | /** |
||
4270 | * Get opbergvak_linkerportier value |
||
4271 | * @return \Webservices\StructType\CarOption|null |
||
4272 | */ |
||
4273 | public function getOpbergvak_linkerportier() |
||
4274 | { |
||
4275 | return $this->opbergvak_linkerportier; |
||
4276 | } |
||
4277 | /** |
||
4278 | * Set opbergvak_linkerportier value |
||
4279 | * @param \Webservices\StructType\CarOption $opbergvak_linkerportier |
||
4280 | * @return \Webservices\StructType\CarOptions |
||
4281 | */ |
||
4282 | public function setOpbergvak_linkerportier(\Webservices\StructType\CarOption $opbergvak_linkerportier = null) |
||
4283 | { |
||
4284 | $this->opbergvak_linkerportier = $opbergvak_linkerportier; |
||
4285 | return $this; |
||
4286 | } |
||
4287 | /** |
||
4288 | * Get bekerhouder_voor value |
||
4289 | * @return \Webservices\StructType\CarOption|null |
||
4290 | */ |
||
4291 | public function getBekerhouder_voor() |
||
4292 | { |
||
4293 | return $this->bekerhouder_voor; |
||
4294 | } |
||
4295 | /** |
||
4296 | * Set bekerhouder_voor value |
||
4297 | * @param \Webservices\StructType\CarOption $bekerhouder_voor |
||
4298 | * @return \Webservices\StructType\CarOptions |
||
4299 | */ |
||
4300 | public function setBekerhouder_voor(\Webservices\StructType\CarOption $bekerhouder_voor = null) |
||
4301 | { |
||
4302 | $this->bekerhouder_voor = $bekerhouder_voor; |
||
4303 | return $this; |
||
4304 | } |
||
4305 | /** |
||
4306 | * Get bekerhouder_achter value |
||
4307 | * @return \Webservices\StructType\CarOption|null |
||
4308 | */ |
||
4309 | public function getBekerhouder_achter() |
||
4310 | { |
||
4311 | return $this->bekerhouder_achter; |
||
4312 | } |
||
4313 | /** |
||
4314 | * Set bekerhouder_achter value |
||
4315 | * @param \Webservices\StructType\CarOption $bekerhouder_achter |
||
4316 | * @return \Webservices\StructType\CarOptions |
||
4317 | */ |
||
4318 | public function setBekerhouder_achter(\Webservices\StructType\CarOption $bekerhouder_achter = null) |
||
4319 | { |
||
4320 | $this->bekerhouder_achter = $bekerhouder_achter; |
||
4321 | return $this; |
||
4322 | } |
||
4323 | /** |
||
4324 | * Get zonnescherm_achterruit value |
||
4325 | * @return \Webservices\StructType\CarOption|null |
||
4326 | */ |
||
4327 | public function getZonnescherm_achterruit() |
||
4328 | { |
||
4329 | return $this->zonnescherm_achterruit; |
||
4330 | } |
||
4331 | /** |
||
4332 | * Set zonnescherm_achterruit value |
||
4333 | * @param \Webservices\StructType\CarOption $zonnescherm_achterruit |
||
4334 | * @return \Webservices\StructType\CarOptions |
||
4335 | */ |
||
4336 | public function setZonnescherm_achterruit(\Webservices\StructType\CarOption $zonnescherm_achterruit = null) |
||
4337 | { |
||
4338 | $this->zonnescherm_achterruit = $zonnescherm_achterruit; |
||
4339 | return $this; |
||
4340 | } |
||
4341 | /** |
||
4342 | * Get dagteller value |
||
4343 | * @return \Webservices\StructType\CarOption|null |
||
4344 | */ |
||
4345 | public function getDagteller() |
||
4346 | { |
||
4347 | return $this->dagteller; |
||
4348 | } |
||
4349 | /** |
||
4350 | * Set dagteller value |
||
4351 | * @param \Webservices\StructType\CarOption $dagteller |
||
4352 | * @return \Webservices\StructType\CarOptions |
||
4353 | */ |
||
4354 | public function setDagteller(\Webservices\StructType\CarOption $dagteller = null) |
||
4355 | { |
||
4356 | $this->dagteller = $dagteller; |
||
4357 | return $this; |
||
4358 | } |
||
4359 | /** |
||
4360 | * Get toerenteller value |
||
4361 | * @return \Webservices\StructType\CarOption|null |
||
4362 | */ |
||
4363 | public function getToerenteller() |
||
4364 | { |
||
4365 | return $this->toerenteller; |
||
4366 | } |
||
4367 | /** |
||
4368 | * Set toerenteller value |
||
4369 | * @param \Webservices\StructType\CarOption $toerenteller |
||
4370 | * @return \Webservices\StructType\CarOptions |
||
4371 | */ |
||
4372 | public function setToerenteller(\Webservices\StructType\CarOption $toerenteller = null) |
||
4373 | { |
||
4374 | $this->toerenteller = $toerenteller; |
||
4375 | return $this; |
||
4376 | } |
||
4377 | /** |
||
4378 | * Get temperatuurmeter value |
||
4379 | * @return \Webservices\StructType\CarOption|null |
||
4380 | */ |
||
4381 | public function getTemperatuurmeter() |
||
4382 | { |
||
4383 | return $this->temperatuurmeter; |
||
4384 | } |
||
4385 | /** |
||
4386 | * Set temperatuurmeter value |
||
4387 | * @param \Webservices\StructType\CarOption $temperatuurmeter |
||
4388 | * @return \Webservices\StructType\CarOptions |
||
4389 | */ |
||
4390 | public function setTemperatuurmeter(\Webservices\StructType\CarOption $temperatuurmeter = null) |
||
4391 | { |
||
4392 | $this->temperatuurmeter = $temperatuurmeter; |
||
4393 | return $this; |
||
4394 | } |
||
4395 | /** |
||
4396 | * Get oliepeilmeter value |
||
4397 | * @return \Webservices\StructType\CarOption|null |
||
4398 | */ |
||
4399 | public function getOliepeilmeter() |
||
4400 | { |
||
4401 | return $this->oliepeilmeter; |
||
4402 | } |
||
4403 | /** |
||
4404 | * Set oliepeilmeter value |
||
4405 | * @param \Webservices\StructType\CarOption $oliepeilmeter |
||
4406 | * @return \Webservices\StructType\CarOptions |
||
4407 | */ |
||
4408 | public function setOliepeilmeter(\Webservices\StructType\CarOption $oliepeilmeter = null) |
||
4409 | { |
||
4410 | $this->oliepeilmeter = $oliepeilmeter; |
||
4411 | return $this; |
||
4412 | } |
||
4413 | /** |
||
4414 | * Get oliedrukmeter value |
||
4415 | * @return \Webservices\StructType\CarOption|null |
||
4416 | */ |
||
4417 | public function getOliedrukmeter() |
||
4418 | { |
||
4419 | return $this->oliedrukmeter; |
||
4420 | } |
||
4421 | /** |
||
4422 | * Set oliedrukmeter value |
||
4423 | * @param \Webservices\StructType\CarOption $oliedrukmeter |
||
4424 | * @return \Webservices\StructType\CarOptions |
||
4425 | */ |
||
4426 | public function setOliedrukmeter(\Webservices\StructType\CarOption $oliedrukmeter = null) |
||
4427 | { |
||
4428 | $this->oliedrukmeter = $oliedrukmeter; |
||
4429 | return $this; |
||
4430 | } |
||
4431 | /** |
||
4432 | * Get olietemperatuurmeter value |
||
4433 | * @return \Webservices\StructType\CarOption|null |
||
4434 | */ |
||
4435 | public function getOlietemperatuurmeter() |
||
4436 | { |
||
4437 | return $this->olietemperatuurmeter; |
||
4438 | } |
||
4439 | /** |
||
4440 | * Set olietemperatuurmeter value |
||
4441 | * @param \Webservices\StructType\CarOption $olietemperatuurmeter |
||
4442 | * @return \Webservices\StructType\CarOptions |
||
4443 | */ |
||
4444 | public function setOlietemperatuurmeter(\Webservices\StructType\CarOption $olietemperatuurmeter = null) |
||
4445 | { |
||
4446 | $this->olietemperatuurmeter = $olietemperatuurmeter; |
||
4447 | return $this; |
||
4448 | } |
||
4449 | /** |
||
4450 | * Get voltmeter value |
||
4451 | * @return \Webservices\StructType\CarOption|null |
||
4452 | */ |
||
4453 | public function getVoltmeter() |
||
4454 | { |
||
4455 | return $this->voltmeter; |
||
4456 | } |
||
4457 | /** |
||
4458 | * Set voltmeter value |
||
4459 | * @param \Webservices\StructType\CarOption $voltmeter |
||
4460 | * @return \Webservices\StructType\CarOptions |
||
4461 | */ |
||
4462 | public function setVoltmeter(\Webservices\StructType\CarOption $voltmeter = null) |
||
4463 | { |
||
4464 | $this->voltmeter = $voltmeter; |
||
4465 | return $this; |
||
4466 | } |
||
4467 | /** |
||
4468 | * Get verbruiksmeter value |
||
4469 | * @return \Webservices\StructType\CarOption|null |
||
4470 | */ |
||
4471 | public function getVerbruiksmeter() |
||
4472 | { |
||
4473 | return $this->verbruiksmeter; |
||
4474 | } |
||
4475 | /** |
||
4476 | * Set verbruiksmeter value |
||
4477 | * @param \Webservices\StructType\CarOption $verbruiksmeter |
||
4478 | * @return \Webservices\StructType\CarOptions |
||
4479 | */ |
||
4480 | public function setVerbruiksmeter(\Webservices\StructType\CarOption $verbruiksmeter = null) |
||
4481 | { |
||
4482 | $this->verbruiksmeter = $verbruiksmeter; |
||
4483 | return $this; |
||
4484 | } |
||
4485 | /** |
||
4486 | * Get turbodrukmeter value |
||
4487 | * @return \Webservices\StructType\CarOption|null |
||
4488 | */ |
||
4489 | public function getTurbodrukmeter() |
||
4490 | { |
||
4491 | return $this->turbodrukmeter; |
||
4492 | } |
||
4493 | /** |
||
4494 | * Set turbodrukmeter value |
||
4495 | * @param \Webservices\StructType\CarOption $turbodrukmeter |
||
4496 | * @return \Webservices\StructType\CarOptions |
||
4497 | */ |
||
4498 | public function setTurbodrukmeter(\Webservices\StructType\CarOption $turbodrukmeter = null) |
||
4499 | { |
||
4500 | $this->turbodrukmeter = $turbodrukmeter; |
||
4501 | return $this; |
||
4502 | } |
||
4503 | /** |
||
4504 | * Get buitentemperatuurmeter value |
||
4505 | * @return \Webservices\StructType\CarOption|null |
||
4506 | */ |
||
4507 | public function getBuitentemperatuurmeter() |
||
4508 | { |
||
4509 | return $this->buitentemperatuurmeter; |
||
4510 | } |
||
4511 | /** |
||
4512 | * Set buitentemperatuurmeter value |
||
4513 | * @param \Webservices\StructType\CarOption $buitentemperatuurmeter |
||
4514 | * @return \Webservices\StructType\CarOptions |
||
4515 | */ |
||
4516 | public function setBuitentemperatuurmeter(\Webservices\StructType\CarOption $buitentemperatuurmeter = null) |
||
4517 | { |
||
4518 | $this->buitentemperatuurmeter = $buitentemperatuurmeter; |
||
4519 | return $this; |
||
4520 | } |
||
4521 | /** |
||
4522 | * Get klokje value |
||
4523 | * @return \Webservices\StructType\CarOption|null |
||
4524 | */ |
||
4525 | public function getKlokje() |
||
4526 | { |
||
4527 | return $this->klokje; |
||
4528 | } |
||
4529 | /** |
||
4530 | * Set klokje value |
||
4531 | * @param \Webservices\StructType\CarOption $klokje |
||
4532 | * @return \Webservices\StructType\CarOptions |
||
4533 | */ |
||
4534 | public function setKlokje(\Webservices\StructType\CarOption $klokje = null) |
||
4535 | { |
||
4536 | $this->klokje = $klokje; |
||
4537 | return $this; |
||
4538 | } |
||
4539 | /** |
||
4540 | * Get boardcomputer value |
||
4541 | * @return \Webservices\StructType\CarOption|null |
||
4542 | */ |
||
4543 | public function getBoardcomputer() |
||
4544 | { |
||
4545 | return $this->boardcomputer; |
||
4546 | } |
||
4547 | /** |
||
4548 | * Set boardcomputer value |
||
4549 | * @param \Webservices\StructType\CarOption $boardcomputer |
||
4550 | * @return \Webservices\StructType\CarOptions |
||
4551 | */ |
||
4552 | public function setBoardcomputer(\Webservices\StructType\CarOption $boardcomputer = null) |
||
4553 | { |
||
4554 | $this->boardcomputer = $boardcomputer; |
||
4555 | return $this; |
||
4556 | } |
||
4557 | /** |
||
4558 | * Get luidsprekers value |
||
4559 | * @return \Webservices\StructType\CarOption|null |
||
4560 | */ |
||
4561 | public function getLuidsprekers() |
||
4562 | { |
||
4563 | return $this->luidsprekers; |
||
4564 | } |
||
4565 | /** |
||
4566 | * Set luidsprekers value |
||
4567 | * @param \Webservices\StructType\CarOption $luidsprekers |
||
4568 | * @return \Webservices\StructType\CarOptions |
||
4569 | */ |
||
4570 | public function setLuidsprekers(\Webservices\StructType\CarOption $luidsprekers = null) |
||
4571 | { |
||
4572 | $this->luidsprekers = $luidsprekers; |
||
4573 | return $this; |
||
4574 | } |
||
4575 | /** |
||
4576 | * Get stereoinstallatie value |
||
4577 | * @return \Webservices\StructType\CarOption|null |
||
4578 | */ |
||
4579 | public function getStereoinstallatie() |
||
4580 | { |
||
4581 | return $this->stereoinstallatie; |
||
4582 | } |
||
4583 | /** |
||
4584 | * Set stereoinstallatie value |
||
4585 | * @param \Webservices\StructType\CarOption $stereoinstallatie |
||
4586 | * @return \Webservices\StructType\CarOptions |
||
4587 | */ |
||
4588 | public function setStereoinstallatie(\Webservices\StructType\CarOption $stereoinstallatie = null) |
||
4589 | { |
||
4590 | $this->stereoinstallatie = $stereoinstallatie; |
||
4591 | return $this; |
||
4592 | } |
||
4593 | /** |
||
4594 | * Get cdspeler value |
||
4595 | * @return \Webservices\StructType\CarOption|null |
||
4596 | */ |
||
4597 | public function getCdspeler() |
||
4598 | { |
||
4599 | return $this->cdspeler; |
||
4600 | } |
||
4601 | /** |
||
4602 | * Set cdspeler value |
||
4603 | * @param \Webservices\StructType\CarOption $cdspeler |
||
4604 | * @return \Webservices\StructType\CarOptions |
||
4605 | */ |
||
4606 | public function setCdspeler(\Webservices\StructType\CarOption $cdspeler = null) |
||
4607 | { |
||
4608 | $this->cdspeler = $cdspeler; |
||
4609 | return $this; |
||
4610 | } |
||
4611 | /** |
||
4612 | * Get cdwisselaar value |
||
4613 | * @return \Webservices\StructType\CarOption|null |
||
4614 | */ |
||
4615 | public function getCdwisselaar() |
||
4616 | { |
||
4617 | return $this->cdwisselaar; |
||
4618 | } |
||
4619 | /** |
||
4620 | * Set cdwisselaar value |
||
4621 | * @param \Webservices\StructType\CarOption $cdwisselaar |
||
4622 | * @return \Webservices\StructType\CarOptions |
||
4623 | */ |
||
4624 | public function setCdwisselaar(\Webservices\StructType\CarOption $cdwisselaar = null) |
||
4625 | { |
||
4626 | $this->cdwisselaar = $cdwisselaar; |
||
4627 | return $this; |
||
4628 | } |
||
4629 | /** |
||
4630 | * Get audiostuurbediening value |
||
4631 | * @return \Webservices\StructType\CarOption|null |
||
4632 | */ |
||
4633 | public function getAudiostuurbediening() |
||
4634 | { |
||
4635 | return $this->audiostuurbediening; |
||
4636 | } |
||
4637 | /** |
||
4638 | * Set audiostuurbediening value |
||
4639 | * @param \Webservices\StructType\CarOption $audiostuurbediening |
||
4640 | * @return \Webservices\StructType\CarOptions |
||
4641 | */ |
||
4642 | public function setAudiostuurbediening(\Webservices\StructType\CarOption $audiostuurbediening = null) |
||
4643 | { |
||
4644 | $this->audiostuurbediening = $audiostuurbediening; |
||
4645 | return $this; |
||
4646 | } |
||
4647 | /** |
||
4648 | * Get bandenspanningssensor value |
||
4649 | * @return \Webservices\StructType\CarOption|null |
||
4650 | */ |
||
4651 | public function getBandenspanningssensor() |
||
4652 | { |
||
4653 | return $this->bandenspanningssensor; |
||
4654 | } |
||
4655 | /** |
||
4656 | * Set bandenspanningssensor value |
||
4657 | * @param \Webservices\StructType\CarOption $bandenspanningssensor |
||
4658 | * @return \Webservices\StructType\CarOptions |
||
4659 | */ |
||
4660 | public function setBandenspanningssensor(\Webservices\StructType\CarOption $bandenspanningssensor = null) |
||
4661 | { |
||
4662 | $this->bandenspanningssensor = $bandenspanningssensor; |
||
4663 | return $this; |
||
4664 | } |
||
4665 | /** |
||
4666 | * Get navigatiesysteem value |
||
4667 | * @return \Webservices\StructType\CarOption|null |
||
4668 | */ |
||
4669 | public function getNavigatiesysteem() |
||
4670 | { |
||
4671 | return $this->navigatiesysteem; |
||
4672 | } |
||
4673 | /** |
||
4674 | * Set navigatiesysteem value |
||
4675 | * @param \Webservices\StructType\CarOption $navigatiesysteem |
||
4676 | * @return \Webservices\StructType\CarOptions |
||
4677 | */ |
||
4678 | public function setNavigatiesysteem(\Webservices\StructType\CarOption $navigatiesysteem = null) |
||
4679 | { |
||
4680 | $this->navigatiesysteem = $navigatiesysteem; |
||
4681 | return $this; |
||
4682 | } |
||
4683 | /** |
||
4684 | * Get televisie value |
||
4685 | * @return \Webservices\StructType\CarOption|null |
||
4686 | */ |
||
4687 | public function getTelevisie() |
||
4688 | { |
||
4689 | return $this->televisie; |
||
4690 | } |
||
4691 | /** |
||
4692 | * Set televisie value |
||
4693 | * @param \Webservices\StructType\CarOption $televisie |
||
4694 | * @return \Webservices\StructType\CarOptions |
||
4695 | */ |
||
4696 | public function setTelevisie(\Webservices\StructType\CarOption $televisie = null) |
||
4697 | { |
||
4698 | $this->televisie = $televisie; |
||
4699 | return $this; |
||
4700 | } |
||
4701 | /** |
||
4702 | * Get telefoonvoorbereiding value |
||
4703 | * @return \Webservices\StructType\CarOption|null |
||
4704 | */ |
||
4705 | public function getTelefoonvoorbereiding() |
||
4706 | { |
||
4707 | return $this->telefoonvoorbereiding; |
||
4708 | } |
||
4709 | /** |
||
4710 | * Set telefoonvoorbereiding value |
||
4711 | * @param \Webservices\StructType\CarOption $telefoonvoorbereiding |
||
4712 | * @return \Webservices\StructType\CarOptions |
||
4713 | */ |
||
4714 | public function setTelefoonvoorbereiding(\Webservices\StructType\CarOption $telefoonvoorbereiding = null) |
||
4715 | { |
||
4716 | $this->telefoonvoorbereiding = $telefoonvoorbereiding; |
||
4717 | return $this; |
||
4718 | } |
||
4719 | /** |
||
4720 | * Get telefoon value |
||
4721 | * @return \Webservices\StructType\CarOption|null |
||
4722 | */ |
||
4723 | public function getTelefoon() |
||
4724 | { |
||
4725 | return $this->telefoon; |
||
4726 | } |
||
4727 | /** |
||
4728 | * Set telefoon value |
||
4729 | * @param \Webservices\StructType\CarOption $telefoon |
||
4730 | * @return \Webservices\StructType\CarOptions |
||
4731 | */ |
||
4732 | public function setTelefoon(\Webservices\StructType\CarOption $telefoon = null) |
||
4733 | { |
||
4734 | $this->telefoon = $telefoon; |
||
4735 | return $this; |
||
4736 | } |
||
4737 | /** |
||
4738 | * Get intervalruitenwisser value |
||
4739 | * @return \Webservices\StructType\CarOption|null |
||
4740 | */ |
||
4741 | public function getIntervalruitenwisser() |
||
4742 | { |
||
4743 | return $this->intervalruitenwisser; |
||
4744 | } |
||
4745 | /** |
||
4746 | * Set intervalruitenwisser value |
||
4747 | * @param \Webservices\StructType\CarOption $intervalruitenwisser |
||
4748 | * @return \Webservices\StructType\CarOptions |
||
4749 | */ |
||
4750 | public function setIntervalruitenwisser(\Webservices\StructType\CarOption $intervalruitenwisser = null) |
||
4751 | { |
||
4752 | $this->intervalruitenwisser = $intervalruitenwisser; |
||
4753 | return $this; |
||
4754 | } |
||
4755 | /** |
||
4756 | * Get regelbare_interval value |
||
4757 | * @return \Webservices\StructType\CarOption|null |
||
4758 | */ |
||
4759 | public function getRegelbare_interval() |
||
4760 | { |
||
4761 | return $this->regelbare_interval; |
||
4762 | } |
||
4763 | /** |
||
4764 | * Set regelbare_interval value |
||
4765 | * @param \Webservices\StructType\CarOption $regelbare_interval |
||
4766 | * @return \Webservices\StructType\CarOptions |
||
4767 | */ |
||
4768 | public function setRegelbare_interval(\Webservices\StructType\CarOption $regelbare_interval = null) |
||
4769 | { |
||
4770 | $this->regelbare_interval = $regelbare_interval; |
||
4771 | return $this; |
||
4772 | } |
||
4773 | /** |
||
4774 | * Get regensensor value |
||
4775 | * @return \Webservices\StructType\CarOption|null |
||
4776 | */ |
||
4777 | public function getRegensensor() |
||
4778 | { |
||
4779 | return $this->regensensor; |
||
4780 | } |
||
4781 | /** |
||
4782 | * Set regensensor value |
||
4783 | * @param \Webservices\StructType\CarOption $regensensor |
||
4784 | * @return \Webservices\StructType\CarOptions |
||
4785 | */ |
||
4786 | public function setRegensensor(\Webservices\StructType\CarOption $regensensor = null) |
||
4787 | { |
||
4788 | $this->regensensor = $regensensor; |
||
4789 | return $this; |
||
4790 | } |
||
4791 | /** |
||
4792 | * Get ruitenwisser_achter value |
||
4793 | * @return \Webservices\StructType\CarOption|null |
||
4794 | */ |
||
4795 | public function getRuitenwisser_achter() |
||
4796 | { |
||
4797 | return $this->ruitenwisser_achter; |
||
4798 | } |
||
4799 | /** |
||
4800 | * Set ruitenwisser_achter value |
||
4801 | * @param \Webservices\StructType\CarOption $ruitenwisser_achter |
||
4802 | * @return \Webservices\StructType\CarOptions |
||
4803 | */ |
||
4804 | public function setRuitenwisser_achter(\Webservices\StructType\CarOption $ruitenwisser_achter = null) |
||
4805 | { |
||
4806 | $this->ruitenwisser_achter = $ruitenwisser_achter; |
||
4807 | return $this; |
||
4808 | } |
||
4809 | /** |
||
4810 | * Get achterruitverwarming value |
||
4811 | * @return \Webservices\StructType\CarOption|null |
||
4812 | */ |
||
4813 | public function getAchterruitverwarming() |
||
4814 | { |
||
4815 | return $this->achterruitverwarming; |
||
4816 | } |
||
4817 | /** |
||
4818 | * Set achterruitverwarming value |
||
4819 | * @param \Webservices\StructType\CarOption $achterruitverwarming |
||
4820 | * @return \Webservices\StructType\CarOptions |
||
4821 | */ |
||
4822 | public function setAchterruitverwarming(\Webservices\StructType\CarOption $achterruitverwarming = null) |
||
4823 | { |
||
4824 | $this->achterruitverwarming = $achterruitverwarming; |
||
4825 | return $this; |
||
4826 | } |
||
4827 | /** |
||
4828 | * Get voorruitverwarming value |
||
4829 | * @return \Webservices\StructType\CarOption|null |
||
4830 | */ |
||
4831 | public function getVoorruitverwarming() |
||
4832 | { |
||
4833 | return $this->voorruitverwarming; |
||
4834 | } |
||
4835 | /** |
||
4836 | * Set voorruitverwarming value |
||
4837 | * @param \Webservices\StructType\CarOption $voorruitverwarming |
||
4838 | * @return \Webservices\StructType\CarOptions |
||
4839 | */ |
||
4840 | public function setVoorruitverwarming(\Webservices\StructType\CarOption $voorruitverwarming = null) |
||
4841 | { |
||
4842 | $this->voorruitverwarming = $voorruitverwarming; |
||
4843 | return $this; |
||
4844 | } |
||
4845 | /** |
||
4846 | * Get verwarmde_ruitensproeiers value |
||
4847 | * @return \Webservices\StructType\CarOption|null |
||
4848 | */ |
||
4849 | public function getVerwarmde_ruitensproeiers() |
||
4850 | { |
||
4851 | return $this->verwarmde_ruitensproeiers; |
||
4852 | } |
||
4853 | /** |
||
4854 | * Set verwarmde_ruitensproeiers value |
||
4855 | * @param \Webservices\StructType\CarOption $verwarmde_ruitensproeiers |
||
4856 | * @return \Webservices\StructType\CarOptions |
||
4857 | */ |
||
4858 | public function setVerwarmde_ruitensproeiers(\Webservices\StructType\CarOption $verwarmde_ruitensproeiers = null) |
||
4862 | } |
||
4863 | /** |
||
4864 | * Get gelaagde_voorruit value |
||
4865 | * @return \Webservices\StructType\CarOption|null |
||
4866 | */ |
||
4867 | public function getGelaagde_voorruit() |
||
4868 | { |
||
4869 | return $this->gelaagde_voorruit; |
||
4870 | } |
||
4871 | /** |
||
4872 | * Set gelaagde_voorruit value |
||
4873 | * @param \Webservices\StructType\CarOption $gelaagde_voorruit |
||
4874 | * @return \Webservices\StructType\CarOptions |
||
4875 | */ |
||
4876 | public function setGelaagde_voorruit(\Webservices\StructType\CarOption $gelaagde_voorruit = null) |
||
4877 | { |
||
4878 | $this->gelaagde_voorruit = $gelaagde_voorruit; |
||
4879 | return $this; |
||
4880 | } |
||
4881 | /** |
||
4882 | * Get getintglas value |
||
4883 | * @return \Webservices\StructType\CarOption|null |
||
4884 | */ |
||
4885 | public function getGetintglas() |
||
4886 | { |
||
4887 | return $this->getintglas; |
||
4888 | } |
||
4889 | /** |
||
4890 | * Set getintglas value |
||
4891 | * @param \Webservices\StructType\CarOption $getintglas |
||
4892 | * @return \Webservices\StructType\CarOptions |
||
4893 | */ |
||
4894 | public function setGetintglas(\Webservices\StructType\CarOption $getintglas = null) |
||
4895 | { |
||
4896 | $this->getintglas = $getintglas; |
||
4897 | return $this; |
||
4898 | } |
||
4899 | /** |
||
4900 | * Get schuifdak value |
||
4901 | * @return \Webservices\StructType\CarOption|null |
||
4902 | */ |
||
4903 | public function getSchuifdak() |
||
4904 | { |
||
4905 | return $this->schuifdak; |
||
4906 | } |
||
4907 | /** |
||
4908 | * Set schuifdak value |
||
4909 | * @param \Webservices\StructType\CarOption $schuifdak |
||
4910 | * @return \Webservices\StructType\CarOptions |
||
4911 | */ |
||
4912 | public function setSchuifdak(\Webservices\StructType\CarOption $schuifdak = null) |
||
4913 | { |
||
4914 | $this->schuifdak = $schuifdak; |
||
4915 | return $this; |
||
4916 | } |
||
4917 | /** |
||
4918 | * Get elektrisch_schuifdak value |
||
4919 | * @return \Webservices\StructType\CarOption|null |
||
4920 | */ |
||
4921 | public function getElektrisch_schuifdak() |
||
4922 | { |
||
4923 | return $this->elektrisch_schuifdak; |
||
4924 | } |
||
4925 | /** |
||
4926 | * Set elektrisch_schuifdak value |
||
4927 | * @param \Webservices\StructType\CarOption $elektrisch_schuifdak |
||
4928 | * @return \Webservices\StructType\CarOptions |
||
4929 | */ |
||
4930 | public function setElektrisch_schuifdak(\Webservices\StructType\CarOption $elektrisch_schuifdak = null) |
||
4931 | { |
||
4932 | $this->elektrisch_schuifdak = $elektrisch_schuifdak; |
||
4933 | return $this; |
||
4934 | } |
||
4935 | /** |
||
4936 | * Get beschermstrips_opzij value |
||
4937 | * @return \Webservices\StructType\CarOption|null |
||
4938 | */ |
||
4939 | public function getBeschermstrips_opzij() |
||
4940 | { |
||
4941 | return $this->beschermstrips_opzij; |
||
4942 | } |
||
4943 | /** |
||
4944 | * Set beschermstrips_opzij value |
||
4945 | * @param \Webservices\StructType\CarOption $beschermstrips_opzij |
||
4946 | * @return \Webservices\StructType\CarOptions |
||
4947 | */ |
||
4948 | public function setBeschermstrips_opzij(\Webservices\StructType\CarOption $beschermstrips_opzij = null) |
||
4949 | { |
||
4950 | $this->beschermstrips_opzij = $beschermstrips_opzij; |
||
4951 | return $this; |
||
4952 | } |
||
4953 | /** |
||
4954 | * Get bumpers_meegespoten value |
||
4955 | * @return \Webservices\StructType\CarOption|null |
||
4956 | */ |
||
4957 | public function getBumpers_meegespoten() |
||
4958 | { |
||
4959 | return $this->bumpers_meegespoten; |
||
4960 | } |
||
4961 | /** |
||
4962 | * Set bumpers_meegespoten value |
||
4963 | * @param \Webservices\StructType\CarOption $bumpers_meegespoten |
||
4964 | * @return \Webservices\StructType\CarOptions |
||
4965 | */ |
||
4966 | public function setBumpers_meegespoten(\Webservices\StructType\CarOption $bumpers_meegespoten = null) |
||
4967 | { |
||
4968 | $this->bumpers_meegespoten = $bumpers_meegespoten; |
||
4969 | return $this; |
||
4970 | } |
||
4971 | /** |
||
4972 | * Get metallic_lak value |
||
4973 | * @return \Webservices\StructType\CarOption|null |
||
4974 | */ |
||
4975 | public function getMetallic_lak() |
||
4976 | { |
||
4977 | return $this->metallic_lak; |
||
4978 | } |
||
4979 | /** |
||
4980 | * Set metallic_lak value |
||
4981 | * @param \Webservices\StructType\CarOption $metallic_lak |
||
4982 | * @return \Webservices\StructType\CarOptions |
||
4983 | */ |
||
4984 | public function setMetallic_lak(\Webservices\StructType\CarOption $metallic_lak = null) |
||
4985 | { |
||
4986 | $this->metallic_lak = $metallic_lak; |
||
4987 | return $this; |
||
4988 | } |
||
4989 | /** |
||
4990 | * Get lichtmetalen_velgen value |
||
4991 | * @return \Webservices\StructType\CarOption|null |
||
4992 | */ |
||
4993 | public function getLichtmetalen_velgen() |
||
4994 | { |
||
4995 | return $this->lichtmetalen_velgen; |
||
4996 | } |
||
4997 | /** |
||
4998 | * Set lichtmetalen_velgen value |
||
4999 | * @param \Webservices\StructType\CarOption $lichtmetalen_velgen |
||
5000 | * @return \Webservices\StructType\CarOptions |
||
5001 | */ |
||
5002 | public function setLichtmetalen_velgen(\Webservices\StructType\CarOption $lichtmetalen_velgen = null) |
||
5003 | { |
||
5004 | $this->lichtmetalen_velgen = $lichtmetalen_velgen; |
||
5005 | return $this; |
||
5006 | } |
||
5007 | /** |
||
5008 | * Get rechter_buitenspiegel value |
||
5009 | * @return \Webservices\StructType\CarOption|null |
||
5010 | */ |
||
5011 | public function getRechter_buitenspiegel() |
||
5012 | { |
||
5013 | return $this->rechter_buitenspiegel; |
||
5014 | } |
||
5015 | /** |
||
5016 | * Set rechter_buitenspiegel value |
||
5017 | * @param \Webservices\StructType\CarOption $rechter_buitenspiegel |
||
5018 | * @return \Webservices\StructType\CarOptions |
||
5019 | */ |
||
5020 | public function setRechter_buitenspiegel(\Webservices\StructType\CarOption $rechter_buitenspiegel = null) |
||
5021 | { |
||
5022 | $this->rechter_buitenspiegel = $rechter_buitenspiegel; |
||
5023 | return $this; |
||
5024 | } |
||
5025 | /** |
||
5026 | * Get binnenuit_verstelbare_buitenspiegel value |
||
5027 | * @return \Webservices\StructType\CarOption|null |
||
5028 | */ |
||
5029 | public function getBinnenuit_verstelbare_buitenspiegel() |
||
5030 | { |
||
5031 | return $this->binnenuit_verstelbare_buitenspiegel; |
||
5032 | } |
||
5033 | /** |
||
5034 | * Set binnenuit_verstelbare_buitenspiegel value |
||
5035 | * @param \Webservices\StructType\CarOption $binnenuit_verstelbare_buitenspiegel |
||
5036 | * @return \Webservices\StructType\CarOptions |
||
5037 | */ |
||
5038 | public function setBinnenuit_verstelbare_buitenspiegel(\Webservices\StructType\CarOption $binnenuit_verstelbare_buitenspiegel = null) |
||
5039 | { |
||
5040 | $this->binnenuit_verstelbare_buitenspiegel = $binnenuit_verstelbare_buitenspiegel; |
||
5041 | return $this; |
||
5042 | } |
||
5043 | /** |
||
5044 | * Get elektrische_spiegels value |
||
5045 | * @return \Webservices\StructType\CarOption|null |
||
5046 | */ |
||
5047 | public function getElektrische_spiegels() |
||
5048 | { |
||
5049 | return $this->elektrische_spiegels; |
||
5050 | } |
||
5051 | /** |
||
5052 | * Set elektrische_spiegels value |
||
5053 | * @param \Webservices\StructType\CarOption $elektrische_spiegels |
||
5054 | * @return \Webservices\StructType\CarOptions |
||
5055 | */ |
||
5056 | public function setElektrische_spiegels(\Webservices\StructType\CarOption $elektrische_spiegels = null) |
||
5057 | { |
||
5058 | $this->elektrische_spiegels = $elektrische_spiegels; |
||
5059 | return $this; |
||
5060 | } |
||
5061 | /** |
||
5062 | * Get verwarmde_spiegels value |
||
5063 | * @return \Webservices\StructType\CarOption|null |
||
5064 | */ |
||
5065 | public function getVerwarmde_spiegels() |
||
5068 | } |
||
5069 | /** |
||
5070 | * Set verwarmde_spiegels value |
||
5071 | * @param \Webservices\StructType\CarOption $verwarmde_spiegels |
||
5072 | * @return \Webservices\StructType\CarOptions |
||
5073 | */ |
||
5074 | public function setVerwarmde_spiegels(\Webservices\StructType\CarOption $verwarmde_spiegels = null) |
||
5075 | { |
||
5076 | $this->verwarmde_spiegels = $verwarmde_spiegels; |
||
5077 | return $this; |
||
5078 | } |
||
5079 | /** |
||
5080 | * Get inklapbare_spiegels value |
||
5081 | * @return \Webservices\StructType\CarOption|null |
||
5082 | */ |
||
5083 | public function getInklapbare_spiegels() |
||
5084 | { |
||
5085 | return $this->inklapbare_spiegels; |
||
5086 | } |
||
5087 | /** |
||
5088 | * Set inklapbare_spiegels value |
||
5089 | * @param \Webservices\StructType\CarOption $inklapbare_spiegels |
||
5090 | * @return \Webservices\StructType\CarOptions |
||
5091 | */ |
||
5092 | public function setInklapbare_spiegels(\Webservices\StructType\CarOption $inklapbare_spiegels = null) |
||
5093 | { |
||
5094 | $this->inklapbare_spiegels = $inklapbare_spiegels; |
||
5095 | return $this; |
||
5096 | } |
||
5097 | /** |
||
5098 | * Get meegespoten_spiegels value |
||
5099 | * @return \Webservices\StructType\CarOption|null |
||
5100 | */ |
||
5101 | public function getMeegespoten_spiegels() |
||
5102 | { |
||
5103 | return $this->meegespoten_spiegels; |
||
5104 | } |
||
5105 | /** |
||
5106 | * Set meegespoten_spiegels value |
||
5107 | * @param \Webservices\StructType\CarOption $meegespoten_spiegels |
||
5108 | * @return \Webservices\StructType\CarOptions |
||
5109 | */ |
||
5110 | public function setMeegespoten_spiegels(\Webservices\StructType\CarOption $meegespoten_spiegels = null) |
||
5111 | { |
||
5112 | $this->meegespoten_spiegels = $meegespoten_spiegels; |
||
5113 | return $this; |
||
5114 | } |
||
5115 | /** |
||
5116 | * Get dodehoekspiegel_bestuurder value |
||
5117 | * @return \Webservices\StructType\CarOption|null |
||
5118 | */ |
||
5119 | public function getDodehoekspiegel_bestuurder() |
||
5120 | { |
||
5121 | return $this->dodehoekspiegel_bestuurder; |
||
5122 | } |
||
5123 | /** |
||
5124 | * Set dodehoekspiegel_bestuurder value |
||
5125 | * @param \Webservices\StructType\CarOption $dodehoekspiegel_bestuurder |
||
5126 | * @return \Webservices\StructType\CarOptions |
||
5127 | */ |
||
5128 | public function setDodehoekspiegel_bestuurder(\Webservices\StructType\CarOption $dodehoekspiegel_bestuurder = null) |
||
5129 | { |
||
5130 | $this->dodehoekspiegel_bestuurder = $dodehoekspiegel_bestuurder; |
||
5131 | return $this; |
||
5132 | } |
||
5133 | /** |
||
5134 | * Get dimmende_binnenspiegel value |
||
5135 | * @return \Webservices\StructType\CarOption|null |
||
5136 | */ |
||
5137 | public function getDimmende_binnenspiegel() |
||
5138 | { |
||
5139 | return $this->dimmende_binnenspiegel; |
||
5140 | } |
||
5141 | /** |
||
5142 | * Set dimmende_binnenspiegel value |
||
5143 | * @param \Webservices\StructType\CarOption $dimmende_binnenspiegel |
||
5144 | * @return \Webservices\StructType\CarOptions |
||
5145 | */ |
||
5146 | public function setDimmende_binnenspiegel(\Webservices\StructType\CarOption $dimmende_binnenspiegel = null) |
||
5147 | { |
||
5148 | $this->dimmende_binnenspiegel = $dimmende_binnenspiegel; |
||
5149 | return $this; |
||
5150 | } |
||
5151 | /** |
||
5152 | * Get dimmende_buitenspiegel value |
||
5153 | * @return \Webservices\StructType\CarOption|null |
||
5154 | */ |
||
5155 | public function getDimmende_buitenspiegel() |
||
5156 | { |
||
5157 | return $this->dimmende_buitenspiegel; |
||
5158 | } |
||
5159 | /** |
||
5160 | * Set dimmende_buitenspiegel value |
||
5161 | * @param \Webservices\StructType\CarOption $dimmende_buitenspiegel |
||
5162 | * @return \Webservices\StructType\CarOptions |
||
5163 | */ |
||
5164 | public function setDimmende_buitenspiegel(\Webservices\StructType\CarOption $dimmende_buitenspiegel = null) |
||
5165 | { |
||
5166 | $this->dimmende_buitenspiegel = $dimmende_buitenspiegel; |
||
5167 | return $this; |
||
5168 | } |
||
5169 | /** |
||
5170 | * Get dakrails value |
||
5171 | * @return \Webservices\StructType\CarOption|null |
||
5172 | */ |
||
5173 | public function getDakrails() |
||
5174 | { |
||
5175 | return $this->dakrails; |
||
5176 | } |
||
5177 | /** |
||
5178 | * Set dakrails value |
||
5179 | * @param \Webservices\StructType\CarOption $dakrails |
||
5180 | * @return \Webservices\StructType\CarOptions |
||
5181 | */ |
||
5182 | public function setDakrails(\Webservices\StructType\CarOption $dakrails = null) |
||
5183 | { |
||
5184 | $this->dakrails = $dakrails; |
||
5185 | return $this; |
||
5186 | } |
||
5187 | /** |
||
5188 | * Get binnenuit_te_openen_tankklep value |
||
5189 | * @return \Webservices\StructType\CarOption|null |
||
5190 | */ |
||
5191 | public function getBinnenuit_te_openen_tankklep() |
||
5192 | { |
||
5193 | return $this->binnenuit_te_openen_tankklep; |
||
5194 | } |
||
5195 | /** |
||
5196 | * Set binnenuit_te_openen_tankklep value |
||
5197 | * @param \Webservices\StructType\CarOption $binnenuit_te_openen_tankklep |
||
5198 | * @return \Webservices\StructType\CarOptions |
||
5199 | */ |
||
5200 | public function setBinnenuit_te_openen_tankklep(\Webservices\StructType\CarOption $binnenuit_te_openen_tankklep = null) |
||
5201 | { |
||
5202 | $this->binnenuit_te_openen_tankklep = $binnenuit_te_openen_tankklep; |
||
5203 | return $this; |
||
5204 | } |
||
5205 | /** |
||
5206 | * Get binnenuit_te_openen_bagageklep value |
||
5207 | * @return \Webservices\StructType\CarOption|null |
||
5208 | */ |
||
5209 | public function getBinnenuit_te_openen_bagageklep() |
||
5210 | { |
||
5211 | return $this->binnenuit_te_openen_bagageklep; |
||
5212 | } |
||
5213 | /** |
||
5214 | * Set binnenuit_te_openen_bagageklep value |
||
5215 | * @param \Webservices\StructType\CarOption $binnenuit_te_openen_bagageklep |
||
5216 | * @return \Webservices\StructType\CarOptions |
||
5217 | */ |
||
5218 | public function setBinnenuit_te_openen_bagageklep(\Webservices\StructType\CarOption $binnenuit_te_openen_bagageklep = null) |
||
5219 | { |
||
5220 | $this->binnenuit_te_openen_bagageklep = $binnenuit_te_openen_bagageklep; |
||
5221 | return $this; |
||
5222 | } |
||
5223 | /** |
||
5224 | * Get op_afstand_te_openen_bagageklep value |
||
5225 | * @return \Webservices\StructType\CarOption|null |
||
5226 | */ |
||
5227 | public function getOp_afstand_te_openen_bagageklep() |
||
5228 | { |
||
5229 | return $this->op_afstand_te_openen_bagageklep; |
||
5230 | } |
||
5231 | /** |
||
5232 | * Set op_afstand_te_openen_bagageklep value |
||
5233 | * @param \Webservices\StructType\CarOption $op_afstand_te_openen_bagageklep |
||
5234 | * @return \Webservices\StructType\CarOptions |
||
5235 | */ |
||
5236 | public function setOp_afstand_te_openen_bagageklep(\Webservices\StructType\CarOption $op_afstand_te_openen_bagageklep = null) |
||
5237 | { |
||
5238 | $this->op_afstand_te_openen_bagageklep = $op_afstand_te_openen_bagageklep; |
||
5239 | return $this; |
||
5240 | } |
||
5241 | /** |
||
5242 | * Get halogeen_koplampen value |
||
5243 | * @return \Webservices\StructType\CarOption|null |
||
5244 | */ |
||
5245 | public function getHalogeen_koplampen() |
||
5246 | { |
||
5247 | return $this->halogeen_koplampen; |
||
5248 | } |
||
5249 | /** |
||
5250 | * Set halogeen_koplampen value |
||
5251 | * @param \Webservices\StructType\CarOption $halogeen_koplampen |
||
5252 | * @return \Webservices\StructType\CarOptions |
||
5253 | */ |
||
5254 | public function setHalogeen_koplampen(\Webservices\StructType\CarOption $halogeen_koplampen = null) |
||
5255 | { |
||
5256 | $this->halogeen_koplampen = $halogeen_koplampen; |
||
5257 | return $this; |
||
5258 | } |
||
5259 | /** |
||
5260 | * Get xenon_koplampen value |
||
5261 | * @return \Webservices\StructType\CarOption|null |
||
5262 | */ |
||
5263 | public function getXenon_koplampen() |
||
5264 | { |
||
5265 | return $this->xenon_koplampen; |
||
5266 | } |
||
5267 | /** |
||
5268 | * Set xenon_koplampen value |
||
5269 | * @param \Webservices\StructType\CarOption $xenon_koplampen |
||
5270 | * @return \Webservices\StructType\CarOptions |
||
5271 | */ |
||
5272 | public function setXenon_koplampen(\Webservices\StructType\CarOption $xenon_koplampen = null) |
||
5273 | { |
||
5274 | $this->xenon_koplampen = $xenon_koplampen; |
||
5275 | return $this; |
||
5276 | } |
||
5277 | /** |
||
5278 | * Get verstelbare_koplampen value |
||
5279 | * @return \Webservices\StructType\CarOption|null |
||
5280 | */ |
||
5281 | public function getVerstelbare_koplampen() |
||
5282 | { |
||
5283 | return $this->verstelbare_koplampen; |
||
5284 | } |
||
5285 | /** |
||
5286 | * Set verstelbare_koplampen value |
||
5287 | * @param \Webservices\StructType\CarOption $verstelbare_koplampen |
||
5288 | * @return \Webservices\StructType\CarOptions |
||
5289 | */ |
||
5290 | public function setVerstelbare_koplampen(\Webservices\StructType\CarOption $verstelbare_koplampen = null) |
||
5291 | { |
||
5292 | $this->verstelbare_koplampen = $verstelbare_koplampen; |
||
5293 | return $this; |
||
5294 | } |
||
5295 | /** |
||
5296 | * Get koplampsproeiers value |
||
5297 | * @return \Webservices\StructType\CarOption|null |
||
5298 | */ |
||
5299 | public function getKoplampsproeiers() |
||
5300 | { |
||
5301 | return $this->koplampsproeiers; |
||
5302 | } |
||
5303 | /** |
||
5304 | * Set koplampsproeiers value |
||
5305 | * @param \Webservices\StructType\CarOption $koplampsproeiers |
||
5306 | * @return \Webservices\StructType\CarOptions |
||
5307 | */ |
||
5308 | public function setKoplampsproeiers(\Webservices\StructType\CarOption $koplampsproeiers = null) |
||
5309 | { |
||
5310 | $this->koplampsproeiers = $koplampsproeiers; |
||
5311 | return $this; |
||
5312 | } |
||
5313 | /** |
||
5314 | * Get automatisch_inschakelende_koplampen value |
||
5315 | * @return \Webservices\StructType\CarOption|null |
||
5316 | */ |
||
5317 | public function getAutomatisch_inschakelende_koplampen() |
||
5318 | { |
||
5319 | return $this->automatisch_inschakelende_koplampen; |
||
5320 | } |
||
5321 | /** |
||
5322 | * Set automatisch_inschakelende_koplampen value |
||
5323 | * @param \Webservices\StructType\CarOption $automatisch_inschakelende_koplampen |
||
5324 | * @return \Webservices\StructType\CarOptions |
||
5325 | */ |
||
5326 | public function setAutomatisch_inschakelende_koplampen(\Webservices\StructType\CarOption $automatisch_inschakelende_koplampen = null) |
||
5327 | { |
||
5328 | $this->automatisch_inschakelende_koplampen = $automatisch_inschakelende_koplampen; |
||
5329 | return $this; |
||
5330 | } |
||
5331 | /** |
||
5332 | * Get verstralers value |
||
5333 | * @return \Webservices\StructType\CarOption|null |
||
5334 | */ |
||
5335 | public function getVerstralers() |
||
5336 | { |
||
5337 | return $this->verstralers; |
||
5338 | } |
||
5339 | /** |
||
5340 | * Set verstralers value |
||
5341 | * @param \Webservices\StructType\CarOption $verstralers |
||
5342 | * @return \Webservices\StructType\CarOptions |
||
5343 | */ |
||
5344 | public function setVerstralers(\Webservices\StructType\CarOption $verstralers = null) |
||
5345 | { |
||
5346 | $this->verstralers = $verstralers; |
||
5347 | return $this; |
||
5348 | } |
||
5349 | /** |
||
5350 | * Get mistlampen_voor value |
||
5351 | * @return \Webservices\StructType\CarOption|null |
||
5352 | */ |
||
5353 | public function getMistlampen_voor() |
||
5354 | { |
||
5355 | return $this->mistlampen_voor; |
||
5356 | } |
||
5357 | /** |
||
5358 | * Set mistlampen_voor value |
||
5359 | * @param \Webservices\StructType\CarOption $mistlampen_voor |
||
5360 | * @return \Webservices\StructType\CarOptions |
||
5361 | */ |
||
5362 | public function setMistlampen_voor(\Webservices\StructType\CarOption $mistlampen_voor = null) |
||
5363 | { |
||
5364 | $this->mistlampen_voor = $mistlampen_voor; |
||
5365 | return $this; |
||
5366 | } |
||
5367 | /** |
||
5368 | * Get mistlampen_achter value |
||
5369 | * @return \Webservices\StructType\CarOption|null |
||
5370 | */ |
||
5371 | public function getMistlampen_achter() |
||
5372 | { |
||
5373 | return $this->mistlampen_achter; |
||
5374 | } |
||
5375 | /** |
||
5376 | * Set mistlampen_achter value |
||
5377 | * @param \Webservices\StructType\CarOption $mistlampen_achter |
||
5378 | * @return \Webservices\StructType\CarOptions |
||
5379 | */ |
||
5380 | public function setMistlampen_achter(\Webservices\StructType\CarOption $mistlampen_achter = null) |
||
5381 | { |
||
5382 | $this->mistlampen_achter = $mistlampen_achter; |
||
5383 | return $this; |
||
5384 | } |
||
5385 | /** |
||
5386 | * Get zoemer_vergeten_verlichting value |
||
5387 | * @return \Webservices\StructType\CarOption|null |
||
5388 | */ |
||
5389 | public function getZoemer_vergeten_verlichting() |
||
5390 | { |
||
5391 | return $this->zoemer_vergeten_verlichting; |
||
5392 | } |
||
5393 | /** |
||
5394 | * Set zoemer_vergeten_verlichting value |
||
5395 | * @param \Webservices\StructType\CarOption $zoemer_vergeten_verlichting |
||
5396 | * @return \Webservices\StructType\CarOptions |
||
5397 | */ |
||
5398 | public function setZoemer_vergeten_verlichting(\Webservices\StructType\CarOption $zoemer_vergeten_verlichting = null) |
||
5399 | { |
||
5400 | $this->zoemer_vergeten_verlichting = $zoemer_vergeten_verlichting; |
||
5401 | return $this; |
||
5402 | } |
||
5403 | /** |
||
5404 | * Get verlichte_bagageruimte value |
||
5405 | * @return \Webservices\StructType\CarOption|null |
||
5406 | */ |
||
5407 | public function getVerlichte_bagageruimte() |
||
5410 | } |
||
5411 | /** |
||
5412 | * Set verlichte_bagageruimte value |
||
5413 | * @param \Webservices\StructType\CarOption $verlichte_bagageruimte |
||
5414 | * @return \Webservices\StructType\CarOptions |
||
5415 | */ |
||
5416 | public function setVerlichte_bagageruimte(\Webservices\StructType\CarOption $verlichte_bagageruimte = null) |
||
5417 | { |
||
5418 | $this->verlichte_bagageruimte = $verlichte_bagageruimte; |
||
5419 | return $this; |
||
5420 | } |
||
5421 | /** |
||
5422 | * Get verlichte_motorruimte value |
||
5423 | * @return \Webservices\StructType\CarOption|null |
||
5424 | */ |
||
5425 | public function getVerlichte_motorruimte() |
||
5426 | { |
||
5427 | return $this->verlichte_motorruimte; |
||
5428 | } |
||
5429 | /** |
||
5430 | * Set verlichte_motorruimte value |
||
5431 | * @param \Webservices\StructType\CarOption $verlichte_motorruimte |
||
5432 | * @return \Webservices\StructType\CarOptions |
||
5433 | */ |
||
5434 | public function setVerlichte_motorruimte(\Webservices\StructType\CarOption $verlichte_motorruimte = null) |
||
5435 | { |
||
5436 | $this->verlichte_motorruimte = $verlichte_motorruimte; |
||
5437 | return $this; |
||
5438 | } |
||
5439 | /** |
||
5440 | * Get verlicht_dashboardkastje value |
||
5441 | * @return \Webservices\StructType\CarOption|null |
||
5442 | */ |
||
5443 | public function getVerlicht_dashboardkastje() |
||
5444 | { |
||
5445 | return $this->verlicht_dashboardkastje; |
||
5446 | } |
||
5447 | /** |
||
5448 | * Set verlicht_dashboardkastje value |
||
5449 | * @param \Webservices\StructType\CarOption $verlicht_dashboardkastje |
||
5450 | * @return \Webservices\StructType\CarOptions |
||
5451 | */ |
||
5452 | public function setVerlicht_dashboardkastje(\Webservices\StructType\CarOption $verlicht_dashboardkastje = null) |
||
5453 | { |
||
5454 | $this->verlicht_dashboardkastje = $verlicht_dashboardkastje; |
||
5455 | return $this; |
||
5456 | } |
||
5457 | /** |
||
5458 | * Get regelbare_dashboardverlichting value |
||
5459 | * @return \Webservices\StructType\CarOption|null |
||
5460 | */ |
||
5461 | public function getRegelbare_dashboardverlichting() |
||
5462 | { |
||
5463 | return $this->regelbare_dashboardverlichting; |
||
5464 | } |
||
5465 | /** |
||
5466 | * Set regelbare_dashboardverlichting value |
||
5467 | * @param \Webservices\StructType\CarOption $regelbare_dashboardverlichting |
||
5468 | * @return \Webservices\StructType\CarOptions |
||
5469 | */ |
||
5470 | public function setRegelbare_dashboardverlichting(\Webservices\StructType\CarOption $regelbare_dashboardverlichting = null) |
||
5471 | { |
||
5472 | $this->regelbare_dashboardverlichting = $regelbare_dashboardverlichting; |
||
5473 | return $this; |
||
5474 | } |
||
5475 | /** |
||
5476 | * Get leeslampje_voor value |
||
5477 | * @return \Webservices\StructType\CarOption|null |
||
5478 | */ |
||
5479 | public function getLeeslampje_voor() |
||
5480 | { |
||
5481 | return $this->leeslampje_voor; |
||
5482 | } |
||
5483 | /** |
||
5484 | * Set leeslampje_voor value |
||
5485 | * @param \Webservices\StructType\CarOption $leeslampje_voor |
||
5486 | * @return \Webservices\StructType\CarOptions |
||
5487 | */ |
||
5488 | public function setLeeslampje_voor(\Webservices\StructType\CarOption $leeslampje_voor = null) |
||
5489 | { |
||
5490 | $this->leeslampje_voor = $leeslampje_voor; |
||
5491 | return $this; |
||
5492 | } |
||
5493 | /** |
||
5494 | * Get leeslampje_achter value |
||
5495 | * @return \Webservices\StructType\CarOption|null |
||
5496 | */ |
||
5497 | public function getLeeslampje_achter() |
||
5498 | { |
||
5499 | return $this->leeslampje_achter; |
||
5500 | } |
||
5501 | /** |
||
5502 | * Set leeslampje_achter value |
||
5503 | * @param \Webservices\StructType\CarOption $leeslampje_achter |
||
5504 | * @return \Webservices\StructType\CarOptions |
||
5505 | */ |
||
5506 | public function setLeeslampje_achter(\Webservices\StructType\CarOption $leeslampje_achter = null) |
||
5507 | { |
||
5508 | $this->leeslampje_achter = $leeslampje_achter; |
||
5509 | return $this; |
||
5510 | } |
||
5511 | /** |
||
5512 | * Get verlichte_makeupspiegel value |
||
5513 | * @return \Webservices\StructType\CarOption|null |
||
5514 | */ |
||
5515 | public function getVerlichte_makeupspiegel() |
||
5516 | { |
||
5517 | return $this->verlichte_makeupspiegel; |
||
5518 | } |
||
5519 | /** |
||
5520 | * Set verlichte_makeupspiegel value |
||
5521 | * @param \Webservices\StructType\CarOption $verlichte_makeupspiegel |
||
5522 | * @return \Webservices\StructType\CarOptions |
||
5523 | */ |
||
5524 | public function setVerlichte_makeupspiegel(\Webservices\StructType\CarOption $verlichte_makeupspiegel = null) |
||
5525 | { |
||
5526 | $this->verlichte_makeupspiegel = $verlichte_makeupspiegel; |
||
5527 | return $this; |
||
5528 | } |
||
5529 | /** |
||
5530 | * Get vertraging_interieurverlichting value |
||
5531 | * @return \Webservices\StructType\CarOption|null |
||
5532 | */ |
||
5533 | public function getVertraging_interieurverlichting() |
||
5534 | { |
||
5535 | return $this->vertraging_interieurverlichting; |
||
5536 | } |
||
5537 | /** |
||
5538 | * Set vertraging_interieurverlichting value |
||
5539 | * @param \Webservices\StructType\CarOption $vertraging_interieurverlichting |
||
5540 | * @return \Webservices\StructType\CarOptions |
||
5541 | */ |
||
5542 | public function setVertraging_interieurverlichting(\Webservices\StructType\CarOption $vertraging_interieurverlichting = null) |
||
5543 | { |
||
5544 | $this->vertraging_interieurverlichting = $vertraging_interieurverlichting; |
||
5545 | return $this; |
||
5546 | } |
||
5547 | /** |
||
5548 | * Get portierverlichting value |
||
5549 | * @return \Webservices\StructType\CarOption|null |
||
5550 | */ |
||
5551 | public function getPortierverlichting() |
||
5552 | { |
||
5553 | return $this->portierverlichting; |
||
5554 | } |
||
5555 | /** |
||
5556 | * Set portierverlichting value |
||
5557 | * @param \Webservices\StructType\CarOption $portierverlichting |
||
5558 | * @return \Webservices\StructType\CarOptions |
||
5559 | */ |
||
5560 | public function setPortierverlichting(\Webservices\StructType\CarOption $portierverlichting = null) |
||
5561 | { |
||
5562 | $this->portierverlichting = $portierverlichting; |
||
5563 | return $this; |
||
5564 | } |
||
5565 | /** |
||
5566 | * Method called when an object has been exported with var_export() functions |
||
5567 | * It allows to return an object instantiated with the values |
||
5568 | * @see AbstractStructBase::__set_state() |
||
5569 | * @uses AbstractStructBase::__set_state() |
||
5570 | * @param array $array the exported values |
||
5571 | * @return \Webservices\StructType\CarOptions |
||
5572 | */ |
||
5573 | public static function __set_state(array $array) |
||
5576 | } |
||
5577 | /** |
||
5578 | * Method returning the class name |
||
5579 | * @return string __CLASS__ |
||
5580 | */ |
||
5581 | public function __toString() |
||
5582 | { |
||
5583 | return __CLASS__; |
||
5584 | } |
||
5585 | } |
||
5586 |