Complex classes like AttestationAssedic 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. You can also have a look at the cohesion graph to spot any un-connected, or weakly-connected components.
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 AttestationAssedic, and based on these observations, apply Extract Interface, too.
| 1 | <?php |
||
| 22 | class AttestationAssedic { |
||
| 23 | |||
| 24 | /** |
||
| 25 | * Adhesion aides. |
||
| 26 | * |
||
| 27 | * @var bool|null |
||
| 28 | */ |
||
| 29 | private $adhesionAides; |
||
| 30 | |||
| 31 | /** |
||
| 32 | * Adhesion revocable. |
||
| 33 | * |
||
| 34 | * @var bool|null |
||
| 35 | */ |
||
| 36 | private $adhesionRevocable; |
||
| 37 | |||
| 38 | /** |
||
| 39 | * Adresse1. |
||
| 40 | * |
||
| 41 | * @var string|null |
||
| 42 | */ |
||
| 43 | private $adresse1; |
||
| 44 | |||
| 45 | /** |
||
| 46 | * Adresse2. |
||
| 47 | * |
||
| 48 | * @var string|null |
||
| 49 | */ |
||
| 50 | private $adresse2; |
||
| 51 | |||
| 52 | /** |
||
| 53 | * Adresse3. |
||
| 54 | * |
||
| 55 | * @var string|null |
||
| 56 | */ |
||
| 57 | private $adresse3; |
||
| 58 | |||
| 59 | /** |
||
| 60 | * Alsace moselle. |
||
| 61 | * |
||
| 62 | * @var bool|null |
||
| 63 | */ |
||
| 64 | private $alsaceMoselle; |
||
| 65 | |||
| 66 | /** |
||
| 67 | * Auto assurance. |
||
| 68 | * |
||
| 69 | * @var bool|null |
||
| 70 | */ |
||
| 71 | private $autoAssurance; |
||
| 72 | |||
| 73 | /** |
||
| 74 | * Caisse indemcp. |
||
| 75 | * |
||
| 76 | * @var string|null |
||
| 77 | */ |
||
| 78 | private $caisseIndemcp; |
||
| 79 | |||
| 80 | /** |
||
| 81 | * Categ emploi autre. |
||
| 82 | * |
||
| 83 | * @var string|null |
||
| 84 | */ |
||
| 85 | private $categEmploiAutre; |
||
| 86 | |||
| 87 | /** |
||
| 88 | * Chomage total. |
||
| 89 | * |
||
| 90 | * @var bool|null |
||
| 91 | */ |
||
| 92 | private $chomageTotal; |
||
| 93 | |||
| 94 | /** |
||
| 95 | * Code ana. |
||
| 96 | * |
||
| 97 | * @var string|null |
||
| 98 | */ |
||
| 99 | private $codeAna; |
||
| 100 | |||
| 101 | /** |
||
| 102 | * Code etablissement. |
||
| 103 | * |
||
| 104 | * @var int|null |
||
| 105 | */ |
||
| 106 | private $codeEtablissement; |
||
| 107 | |||
| 108 | /** |
||
| 109 | * Code motif rupture. |
||
| 110 | * |
||
| 111 | * @var string|null |
||
| 112 | */ |
||
| 113 | private $codeMotifRupture; |
||
| 114 | |||
| 115 | /** |
||
| 116 | * Code naf2008. |
||
| 117 | * |
||
| 118 | * @var string|null |
||
| 119 | */ |
||
| 120 | private $codeNaf2008; |
||
| 121 | |||
| 122 | /** |
||
| 123 | * Code p. |
||
| 124 | * |
||
| 125 | * @var string|null |
||
| 126 | */ |
||
| 127 | private $codeP; |
||
| 128 | |||
| 129 | /** |
||
| 130 | * Code retraite agirc. |
||
| 131 | * |
||
| 132 | * @var string|null |
||
| 133 | */ |
||
| 134 | private $codeRetraiteAgirc; |
||
| 135 | |||
| 136 | /** |
||
| 137 | * Code retraite arrco. |
||
| 138 | * |
||
| 139 | * @var string|null |
||
| 140 | */ |
||
| 141 | private $codeRetraiteArrco; |
||
| 142 | |||
| 143 | /** |
||
| 144 | * Code retraite autre. |
||
| 145 | * |
||
| 146 | * @var string|null |
||
| 147 | */ |
||
| 148 | private $codeRetraiteAutre; |
||
| 149 | |||
| 150 | /** |
||
| 151 | * Contrat part autre. |
||
| 152 | * |
||
| 153 | * @var string|null |
||
| 154 | */ |
||
| 155 | private $contratPartAutre; |
||
| 156 | |||
| 157 | /** |
||
| 158 | * Contrat particulier. |
||
| 159 | * |
||
| 160 | * @var string|null |
||
| 161 | */ |
||
| 162 | private $contratParticulier; |
||
| 163 | |||
| 164 | /** |
||
| 165 | * Convention fne. |
||
| 166 | * |
||
| 167 | * @var bool|null |
||
| 168 | */ |
||
| 169 | private $conventionFne; |
||
| 170 | |||
| 171 | /** |
||
| 172 | * Date adhesion. |
||
| 173 | * |
||
| 174 | * @var DateTime|null |
||
| 175 | */ |
||
| 176 | private $dateAdhesion; |
||
| 177 | |||
| 178 | /** |
||
| 179 | * Date convention fne. |
||
| 180 | * |
||
| 181 | * @var DateTime|null |
||
| 182 | */ |
||
| 183 | private $dateConventionFne; |
||
| 184 | |||
| 185 | /** |
||
| 186 | * Date naiss. |
||
| 187 | * |
||
| 188 | * @var DateTime|null |
||
| 189 | */ |
||
| 190 | private $dateNaiss; |
||
| 191 | |||
| 192 | /** |
||
| 193 | * Date notification. |
||
| 194 | * |
||
| 195 | * @var DateTime|null |
||
| 196 | */ |
||
| 197 | private $dateNotification; |
||
| 198 | |||
| 199 | /** |
||
| 200 | * Date paie. |
||
| 201 | * |
||
| 202 | * @var DateTime|null |
||
| 203 | */ |
||
| 204 | private $datePaie; |
||
| 205 | |||
| 206 | /** |
||
| 207 | * Date paie2. |
||
| 208 | * |
||
| 209 | * @var DateTime|null |
||
| 210 | */ |
||
| 211 | private $datePaie2; |
||
| 212 | |||
| 213 | /** |
||
| 214 | * Date plan. |
||
| 215 | * |
||
| 216 | * @var DateTime|null |
||
| 217 | */ |
||
| 218 | private $datePlan; |
||
| 219 | |||
| 220 | /** |
||
| 221 | * Demande ddte deb. |
||
| 222 | * |
||
| 223 | * @var DateTime|null |
||
| 224 | */ |
||
| 225 | private $demandeDdteDeb; |
||
| 226 | |||
| 227 | /** |
||
| 228 | * Demande ddte fin. |
||
| 229 | * |
||
| 230 | * @var DateTime|null |
||
| 231 | */ |
||
| 232 | private $demandeDdteFin; |
||
| 233 | |||
| 234 | /** |
||
| 235 | * Demande ddte reprise. |
||
| 236 | * |
||
| 237 | * @var DateTime|null |
||
| 238 | */ |
||
| 239 | private $demandeDdteReprise; |
||
| 240 | |||
| 241 | /** |
||
| 242 | * Dept. |
||
| 243 | * |
||
| 244 | * @var string|null |
||
| 245 | */ |
||
| 246 | private $dept; |
||
| 247 | |||
| 248 | /** |
||
| 249 | * Dern jour trav. |
||
| 250 | * |
||
| 251 | * @var DateTime|null |
||
| 252 | */ |
||
| 253 | private $dernJourTrav; |
||
| 254 | |||
| 255 | /** |
||
| 256 | * Dern lieu travail. |
||
| 257 | * |
||
| 258 | * @var string|null |
||
| 259 | */ |
||
| 260 | private $dernLieuTravail; |
||
| 261 | |||
| 262 | /** |
||
| 263 | * Dernier emploi. |
||
| 264 | * |
||
| 265 | * @var string|null |
||
| 266 | */ |
||
| 267 | private $dernierEmploi; |
||
| 268 | |||
| 269 | /** |
||
| 270 | * Duree emploi1 deb. |
||
| 271 | * |
||
| 272 | * @var DateTime|null |
||
| 273 | */ |
||
| 274 | private $dureeEmploi1Deb; |
||
| 275 | |||
| 276 | /** |
||
| 277 | * Duree emploi1 fin. |
||
| 278 | * |
||
| 279 | * @var DateTime|null |
||
| 280 | */ |
||
| 281 | private $dureeEmploi1Fin; |
||
| 282 | |||
| 283 | /** |
||
| 284 | * Duree emploi2 deb. |
||
| 285 | * |
||
| 286 | * @var DateTime|null |
||
| 287 | */ |
||
| 288 | private $dureeEmploi2Deb; |
||
| 289 | |||
| 290 | /** |
||
| 291 | * Duree emploi2 fin. |
||
| 292 | * |
||
| 293 | * @var DateTime|null |
||
| 294 | */ |
||
| 295 | private $dureeEmploi2Fin; |
||
| 296 | |||
| 297 | /** |
||
| 298 | * Effectif. |
||
| 299 | * |
||
| 300 | * @var string|null |
||
| 301 | */ |
||
| 302 | private $effectif; |
||
| 303 | |||
| 304 | /** |
||
| 305 | * Effectif val. |
||
| 306 | * |
||
| 307 | * @var float|null |
||
| 308 | */ |
||
| 309 | private $effectifVal; |
||
| 310 | |||
| 311 | /** |
||
| 312 | * Emploi collectivite. |
||
| 313 | * |
||
| 314 | * @var string|null |
||
| 315 | */ |
||
| 316 | private $emploiCollectivite; |
||
| 317 | |||
| 318 | /** |
||
| 319 | * Etbl adresse1. |
||
| 320 | * |
||
| 321 | * @var string|null |
||
| 322 | */ |
||
| 323 | private $etblAdresse1; |
||
| 324 | |||
| 325 | /** |
||
| 326 | * Etbl adresse2. |
||
| 327 | * |
||
| 328 | * @var string|null |
||
| 329 | */ |
||
| 330 | private $etblAdresse2; |
||
| 331 | |||
| 332 | /** |
||
| 333 | * Etbl adresse3. |
||
| 334 | * |
||
| 335 | * @var string|null |
||
| 336 | */ |
||
| 337 | private $etblAdresse3; |
||
| 338 | |||
| 339 | /** |
||
| 340 | * Etbl raison sociale. |
||
| 341 | * |
||
| 342 | * @var string|null |
||
| 343 | */ |
||
| 344 | private $etblRaisonSociale; |
||
| 345 | |||
| 346 | /** |
||
| 347 | * Etbl tel. |
||
| 348 | * |
||
| 349 | * @var string|null |
||
| 350 | */ |
||
| 351 | private $etblTel; |
||
| 352 | |||
| 353 | /** |
||
| 354 | * Fngsa percevoir. |
||
| 355 | * |
||
| 356 | * @var bool|null |
||
| 357 | */ |
||
| 358 | private $fngsaPercevoir; |
||
| 359 | |||
| 360 | /** |
||
| 361 | * Fngsa percevoir creance. |
||
| 362 | * |
||
| 363 | * @var string|null |
||
| 364 | */ |
||
| 365 | private $fngsaPercevoirCreance; |
||
| 366 | |||
| 367 | /** |
||
| 368 | * Fngs non a percevoir motif. |
||
| 369 | * |
||
| 370 | * @var string|null |
||
| 371 | */ |
||
| 372 | private $fngsNonAPercevoirMotif; |
||
| 373 | |||
| 374 | /** |
||
| 375 | * Fngs non percue motif. |
||
| 376 | * |
||
| 377 | * @var string|null |
||
| 378 | */ |
||
| 379 | private $fngsNonPercueMotif; |
||
| 380 | |||
| 381 | /** |
||
| 382 | * Fngs percue. |
||
| 383 | * |
||
| 384 | * @var bool|null |
||
| 385 | */ |
||
| 386 | private $fngsPercue; |
||
| 387 | |||
| 388 | /** |
||
| 389 | * Fngs percue creance. |
||
| 390 | * |
||
| 391 | * @var string|null |
||
| 392 | */ |
||
| 393 | private $fngsPercueCreance; |
||
| 394 | |||
| 395 | /** |
||
| 396 | * Heures trav. |
||
| 397 | * |
||
| 398 | * @var float|null |
||
| 399 | */ |
||
| 400 | private $heuresTrav; |
||
| 401 | |||
| 402 | /** |
||
| 403 | * Heures trav2. |
||
| 404 | * |
||
| 405 | * @var float|null |
||
| 406 | */ |
||
| 407 | private $heuresTrav2; |
||
| 408 | |||
| 409 | /** |
||
| 410 | * Horaire annuel etbl. |
||
| 411 | * |
||
| 412 | * @var float|null |
||
| 413 | */ |
||
| 414 | private $horaireAnnuelEtbl; |
||
| 415 | |||
| 416 | /** |
||
| 417 | * Horaire annuel sal. |
||
| 418 | * |
||
| 419 | * @var float|null |
||
| 420 | */ |
||
| 421 | private $horaireAnnuelSal; |
||
| 422 | |||
| 423 | /** |
||
| 424 | * Horaire hebdo etbl. |
||
| 425 | * |
||
| 426 | * @var float|null |
||
| 427 | */ |
||
| 428 | private $horaireHebdoEtbl; |
||
| 429 | |||
| 430 | /** |
||
| 431 | * Horaire hebdo sal. |
||
| 432 | * |
||
| 433 | * @var float|null |
||
| 434 | */ |
||
| 435 | private $horaireHebdoSal; |
||
| 436 | |||
| 437 | /** |
||
| 438 | * Indemn autres. |
||
| 439 | * |
||
| 440 | * @var float|null |
||
| 441 | */ |
||
| 442 | private $indemnAutres; |
||
| 443 | |||
| 444 | /** |
||
| 445 | * Indemn clientele. |
||
| 446 | * |
||
| 447 | * @var float|null |
||
| 448 | */ |
||
| 449 | private $indemnClientele; |
||
| 450 | |||
| 451 | /** |
||
| 452 | * Indemn compens cp. |
||
| 453 | * |
||
| 454 | * @var float|null |
||
| 455 | */ |
||
| 456 | private $indemnCompensCp; |
||
| 457 | |||
| 458 | /** |
||
| 459 | * Indemn compens preavis. |
||
| 460 | * |
||
| 461 | * @var float|null |
||
| 462 | */ |
||
| 463 | private $indemnCompensPreavis; |
||
| 464 | |||
| 465 | /** |
||
| 466 | * Indemn depart retraite. |
||
| 467 | * |
||
| 468 | * @var float|null |
||
| 469 | */ |
||
| 470 | private $indemnDepartRetraite; |
||
| 471 | |||
| 472 | /** |
||
| 473 | * Indemn due sinistre. |
||
| 474 | * |
||
| 475 | * @var float|null |
||
| 476 | */ |
||
| 477 | private $indemnDueSinistre; |
||
| 478 | |||
| 479 | /** |
||
| 480 | * Indemn fin cdd. |
||
| 481 | * |
||
| 482 | * @var float|null |
||
| 483 | */ |
||
| 484 | private $indemnFinCdd; |
||
| 485 | |||
| 486 | /** |
||
| 487 | * Indemn fin cne. |
||
| 488 | * |
||
| 489 | * @var float|null |
||
| 490 | */ |
||
| 491 | private $indemnFinCne; |
||
| 492 | |||
| 493 | /** |
||
| 494 | * Indemn fin mission. |
||
| 495 | * |
||
| 496 | * @var float|null |
||
| 497 | */ |
||
| 498 | private $indemnFinMission; |
||
| 499 | |||
| 500 | /** |
||
| 501 | * Indemn journalistes. |
||
| 502 | * |
||
| 503 | * @var float|null |
||
| 504 | */ |
||
| 505 | private $indemnJournalistes; |
||
| 506 | |||
| 507 | /** |
||
| 508 | * Indemn licens. |
||
| 509 | * |
||
| 510 | * @var float|null |
||
| 511 | */ |
||
| 512 | private $indemnLicens; |
||
| 513 | |||
| 514 | /** |
||
| 515 | * Indemn navig. |
||
| 516 | * |
||
| 517 | * @var float|null |
||
| 518 | */ |
||
| 519 | private $indemnNavig; |
||
| 520 | |||
| 521 | /** |
||
| 522 | * Indemn rupt conv. |
||
| 523 | * |
||
| 524 | * @var float|null |
||
| 525 | */ |
||
| 526 | private $indemnRuptConv; |
||
| 527 | |||
| 528 | /** |
||
| 529 | * Indemn speci licens. |
||
| 530 | * |
||
| 531 | * @var float|null |
||
| 532 | */ |
||
| 533 | private $indemnSpeciLicens; |
||
| 534 | |||
| 535 | /** |
||
| 536 | * Indemn specif licens. |
||
| 537 | * |
||
| 538 | * @var float|null |
||
| 539 | */ |
||
| 540 | private $indemnSpecifLicens; |
||
| 541 | |||
| 542 | /** |
||
| 543 | * Indemn suppl licens. |
||
| 544 | * |
||
| 545 | * @var float|null |
||
| 546 | */ |
||
| 547 | private $indemnSupplLicens; |
||
| 548 | |||
| 549 | /** |
||
| 550 | * Indemn versee apprenti. |
||
| 551 | * |
||
| 552 | * @var float|null |
||
| 553 | */ |
||
| 554 | private $indemnVerseeApprenti; |
||
| 555 | |||
| 556 | /** |
||
| 557 | * Licencie55ans. |
||
| 558 | * |
||
| 559 | * @var bool|null |
||
| 560 | */ |
||
| 561 | private $licencie55ans; |
||
| 562 | |||
| 563 | /** |
||
| 564 | * Licencie plan social. |
||
| 565 | * |
||
| 566 | * @var bool|null |
||
| 567 | */ |
||
| 568 | private $licenciePlanSocial; |
||
| 569 | |||
| 570 | /** |
||
| 571 | * Lien document. |
||
| 572 | * |
||
| 573 | * @var string|null |
||
| 574 | */ |
||
| 575 | private $lienDocument; |
||
| 576 | |||
| 577 | /** |
||
| 578 | * Lien parente. |
||
| 579 | * |
||
| 580 | * @var string|null |
||
| 581 | */ |
||
| 582 | private $lienParente; |
||
| 583 | |||
| 584 | /** |
||
| 585 | * Motif difference. |
||
| 586 | * |
||
| 587 | * @var string|null |
||
| 588 | */ |
||
| 589 | private $motifDifference; |
||
| 590 | |||
| 591 | /** |
||
| 592 | * Motif non paie iccp. |
||
| 593 | * |
||
| 594 | * @var string|null |
||
| 595 | */ |
||
| 596 | private $motifNonPaieIccp; |
||
| 597 | |||
| 598 | /** |
||
| 599 | * Motif non paiement. |
||
| 600 | * |
||
| 601 | * @var string|null |
||
| 602 | */ |
||
| 603 | private $motifNonPaiement; |
||
| 604 | |||
| 605 | /** |
||
| 606 | * Motif rupture. |
||
| 607 | * |
||
| 608 | * @var string|null |
||
| 609 | */ |
||
| 610 | private $motifRupture; |
||
| 611 | |||
| 612 | /** |
||
| 613 | * Mt idemn conv col. |
||
| 614 | * |
||
| 615 | * @var float|null |
||
| 616 | */ |
||
| 617 | private $mtIdemnConvCol; |
||
| 618 | |||
| 619 | /** |
||
| 620 | * Mt idemn transac. |
||
| 621 | * |
||
| 622 | * @var float|null |
||
| 623 | */ |
||
| 624 | private $mtIdemnTransac; |
||
| 625 | |||
| 626 | /** |
||
| 627 | * Naf. |
||
| 628 | * |
||
| 629 | * @var string|null |
||
| 630 | */ |
||
| 631 | private $naf; |
||
| 632 | |||
| 633 | /** |
||
| 634 | * Nir. |
||
| 635 | * |
||
| 636 | * @var string|null |
||
| 637 | */ |
||
| 638 | private $nir; |
||
| 639 | |||
| 640 | /** |
||
| 641 | * Nature contrat. |
||
| 642 | * |
||
| 643 | * @var string|null |
||
| 644 | */ |
||
| 645 | private $natureContrat; |
||
| 646 | |||
| 647 | /** |
||
| 648 | * Nb jours ouvrables. |
||
| 649 | * |
||
| 650 | * @var float|null |
||
| 651 | */ |
||
| 652 | private $nbJoursOuvrables; |
||
| 653 | |||
| 654 | /** |
||
| 655 | * Niveau qualif. |
||
| 656 | * |
||
| 657 | * @var string|null |
||
| 658 | */ |
||
| 659 | private $niveauQualif; |
||
| 660 | |||
| 661 | /** |
||
| 662 | * Nom ass chom. |
||
| 663 | * |
||
| 664 | * @var string|null |
||
| 665 | */ |
||
| 666 | private $nomAssChom; |
||
| 667 | |||
| 668 | /** |
||
| 669 | * Nom employe. |
||
| 670 | * |
||
| 671 | * @var string|null |
||
| 672 | */ |
||
| 673 | private $nomEmploye; |
||
| 674 | |||
| 675 | /** |
||
| 676 | * Nom naissance. |
||
| 677 | * |
||
| 678 | * @var string|null |
||
| 679 | */ |
||
| 680 | private $nomNaissance; |
||
| 681 | |||
| 682 | /** |
||
| 683 | * Nom special secu. |
||
| 684 | * |
||
| 685 | * @var string|null |
||
| 686 | */ |
||
| 687 | private $nomSpecialSecu; |
||
| 688 | |||
| 689 | /** |
||
| 690 | * Nouvelle attest. |
||
| 691 | * |
||
| 692 | * @var bool|null |
||
| 693 | */ |
||
| 694 | private $nouvelleAttest; |
||
| 695 | |||
| 696 | /** |
||
| 697 | * Num ass chom. |
||
| 698 | * |
||
| 699 | * @var string|null |
||
| 700 | */ |
||
| 701 | private $numAssChom; |
||
| 702 | |||
| 703 | /** |
||
| 704 | * Num convention fne. |
||
| 705 | * |
||
| 706 | * @var string|null |
||
| 707 | */ |
||
| 708 | private $numConventionFne; |
||
| 709 | |||
| 710 | /** |
||
| 711 | * Num convention gestion. |
||
| 712 | * |
||
| 713 | * @var string|null |
||
| 714 | */ |
||
| 715 | private $numConventionGestion; |
||
| 716 | |||
| 717 | /** |
||
| 718 | * Num special secu. |
||
| 719 | * |
||
| 720 | * @var string|null |
||
| 721 | */ |
||
| 722 | private $numSpecialSecu; |
||
| 723 | |||
| 724 | /** |
||
| 725 | * Numero attestation. |
||
| 726 | * |
||
| 727 | * @var string|null |
||
| 728 | */ |
||
| 729 | private $numeroAttestation; |
||
| 730 | |||
| 731 | /** |
||
| 732 | * Numero employe. |
||
| 733 | * |
||
| 734 | * @var string|null |
||
| 735 | */ |
||
| 736 | private $numeroEmploye; |
||
| 737 | |||
| 738 | /** |
||
| 739 | * Organisme ass chom. |
||
| 740 | * |
||
| 741 | * @var string|null |
||
| 742 | */ |
||
| 743 | private $organismeAssChom; |
||
| 744 | |||
| 745 | /** |
||
| 746 | * Preavis effectue. |
||
| 747 | * |
||
| 748 | * @var bool|null |
||
| 749 | */ |
||
| 750 | private $preavisEffectue; |
||
| 751 | |||
| 752 | /** |
||
| 753 | * Preavis effectue deb. |
||
| 754 | * |
||
| 755 | * @var DateTime|null |
||
| 756 | */ |
||
| 757 | private $preavisEffectueDeb; |
||
| 758 | |||
| 759 | /** |
||
| 760 | * Preavis effectue fin. |
||
| 761 | * |
||
| 762 | * @var DateTime|null |
||
| 763 | */ |
||
| 764 | private $preavisEffectueFin; |
||
| 765 | |||
| 766 | /** |
||
| 767 | * Preavis effectue paye. |
||
| 768 | * |
||
| 769 | * @var bool|null |
||
| 770 | */ |
||
| 771 | private $preavisEffectuePaye; |
||
| 772 | |||
| 773 | /** |
||
| 774 | * Preavis non effectue. |
||
| 775 | * |
||
| 776 | * @var bool|null |
||
| 777 | */ |
||
| 778 | private $preavisNonEffectue; |
||
| 779 | |||
| 780 | /** |
||
| 781 | * Preavis non effectue deb. |
||
| 782 | * |
||
| 783 | * @var DateTime|null |
||
| 784 | */ |
||
| 785 | private $preavisNonEffectueDeb; |
||
| 786 | |||
| 787 | /** |
||
| 788 | * Preavis non effectue fin. |
||
| 789 | * |
||
| 790 | * @var DateTime|null |
||
| 791 | */ |
||
| 792 | private $preavisNonEffectueFin; |
||
| 793 | |||
| 794 | /** |
||
| 795 | * Preavis non effectue paye. |
||
| 796 | * |
||
| 797 | * @var bool|null |
||
| 798 | */ |
||
| 799 | private $preavisNonEffectuePaye; |
||
| 800 | |||
| 801 | /** |
||
| 802 | * Precompte stc. |
||
| 803 | * |
||
| 804 | * @var float|null |
||
| 805 | */ |
||
| 806 | private $precompteStc; |
||
| 807 | |||
| 808 | /** |
||
| 809 | * Prenom. |
||
| 810 | * |
||
| 811 | * @var string|null |
||
| 812 | */ |
||
| 813 | private $prenom; |
||
| 814 | |||
| 815 | /** |
||
| 816 | * Qualite emploi. |
||
| 817 | * |
||
| 818 | * @var string|null |
||
| 819 | */ |
||
| 820 | private $qualiteEmploi; |
||
| 821 | |||
| 822 | /** |
||
| 823 | * Reclassement. |
||
| 824 | * |
||
| 825 | * @var bool|null |
||
| 826 | */ |
||
| 827 | private $reclassement; |
||
| 828 | |||
| 829 | /** |
||
| 830 | * Refus salarie. |
||
| 831 | * |
||
| 832 | * @var bool|null |
||
| 833 | */ |
||
| 834 | private $refusSalarie; |
||
| 835 | |||
| 836 | /** |
||
| 837 | * Retraite agirc. |
||
| 838 | * |
||
| 839 | * @var string|null |
||
| 840 | */ |
||
| 841 | private $retraiteAgirc; |
||
| 842 | |||
| 843 | /** |
||
| 844 | * Retraite agirc compl. |
||
| 845 | * |
||
| 846 | * @var string|null |
||
| 847 | */ |
||
| 848 | private $retraiteAgircCompl; |
||
| 849 | |||
| 850 | /** |
||
| 851 | * Retraite arrco. |
||
| 852 | * |
||
| 853 | * @var string|null |
||
| 854 | */ |
||
| 855 | private $retraiteArrco; |
||
| 856 | |||
| 857 | /** |
||
| 858 | * Retraite arrco compl. |
||
| 859 | * |
||
| 860 | * @var string|null |
||
| 861 | */ |
||
| 862 | private $retraiteArrcoCompl; |
||
| 863 | |||
| 864 | /** |
||
| 865 | * Retraite autre. |
||
| 866 | * |
||
| 867 | * @var string|null |
||
| 868 | */ |
||
| 869 | private $retraiteAutre; |
||
| 870 | |||
| 871 | /** |
||
| 872 | * Retraite autre compl. |
||
| 873 | * |
||
| 874 | * @var string|null |
||
| 875 | */ |
||
| 876 | private $retraiteAutreCompl; |
||
| 877 | |||
| 878 | /** |
||
| 879 | * Siret. |
||
| 880 | * |
||
| 881 | * @var string|null |
||
| 882 | */ |
||
| 883 | private $siret; |
||
| 884 | |||
| 885 | /** |
||
| 886 | * Salaire brut. |
||
| 887 | * |
||
| 888 | * @var float|null |
||
| 889 | */ |
||
| 890 | private $salaireBrut; |
||
| 891 | |||
| 892 | /** |
||
| 893 | * Signature code qualite. |
||
| 894 | * |
||
| 895 | * @var string|null |
||
| 896 | */ |
||
| 897 | private $signatureCodeQualite; |
||
| 898 | |||
| 899 | /** |
||
| 900 | * Signature contact. |
||
| 901 | * |
||
| 902 | * @var string|null |
||
| 903 | */ |
||
| 904 | private $signatureContact; |
||
| 905 | |||
| 906 | /** |
||
| 907 | * Signature date. |
||
| 908 | * |
||
| 909 | * @var DateTime|null |
||
| 910 | */ |
||
| 911 | private $signatureDate; |
||
| 912 | |||
| 913 | /** |
||
| 914 | * Signature nom. |
||
| 915 | * |
||
| 916 | * @var string|null |
||
| 917 | */ |
||
| 918 | private $signatureNom; |
||
| 919 | |||
| 920 | /** |
||
| 921 | * Signature prenom. |
||
| 922 | * |
||
| 923 | * @var string|null |
||
| 924 | */ |
||
| 925 | private $signaturePrenom; |
||
| 926 | |||
| 927 | /** |
||
| 928 | * Signature qualite. |
||
| 929 | * |
||
| 930 | * @var string|null |
||
| 931 | */ |
||
| 932 | private $signatureQualite; |
||
| 933 | |||
| 934 | /** |
||
| 935 | * Signature tel. |
||
| 936 | * |
||
| 937 | * @var string|null |
||
| 938 | */ |
||
| 939 | private $signatureTel; |
||
| 940 | |||
| 941 | /** |
||
| 942 | * Signature ville. |
||
| 943 | * |
||
| 944 | * @var string|null |
||
| 945 | */ |
||
| 946 | private $signatureVille; |
||
| 947 | |||
| 948 | /** |
||
| 949 | * Solde tout compte. |
||
| 950 | * |
||
| 951 | * @var string|null |
||
| 952 | */ |
||
| 953 | private $soldeToutCompte; |
||
| 954 | |||
| 955 | /** |
||
| 956 | * Sommes periode deb. |
||
| 957 | * |
||
| 958 | * @var DateTime|null |
||
| 959 | */ |
||
| 960 | private $sommesPeriodeDeb; |
||
| 961 | |||
| 962 | /** |
||
| 963 | * Sommes periode deb2. |
||
| 964 | * |
||
| 965 | * @var DateTime|null |
||
| 966 | */ |
||
| 967 | private $sommesPeriodeDeb2; |
||
| 968 | |||
| 969 | /** |
||
| 970 | * Sommes periode fin. |
||
| 971 | * |
||
| 972 | * @var DateTime|null |
||
| 973 | */ |
||
| 974 | private $sommesPeriodeFin; |
||
| 975 | |||
| 976 | /** |
||
| 977 | * Sommes periode fin2. |
||
| 978 | * |
||
| 979 | * @var DateTime|null |
||
| 980 | */ |
||
| 981 | private $sommesPeriodeFin2; |
||
| 982 | |||
| 983 | /** |
||
| 984 | * Special secu. |
||
| 985 | * |
||
| 986 | * @var string|null |
||
| 987 | */ |
||
| 988 | private $specialSecu; |
||
| 989 | |||
| 990 | /** |
||
| 991 | * Statut. |
||
| 992 | * |
||
| 993 | * @var string|null |
||
| 994 | */ |
||
| 995 | private $statut; |
||
| 996 | |||
| 997 | /** |
||
| 998 | * Statut cadre. |
||
| 999 | * |
||
| 1000 | * @var bool|null |
||
| 1001 | */ |
||
| 1002 | private $statutCadre; |
||
| 1003 | |||
| 1004 | /** |
||
| 1005 | * Statut part autre. |
||
| 1006 | * |
||
| 1007 | * @var string|null |
||
| 1008 | */ |
||
| 1009 | private $statutPartAutre; |
||
| 1010 | |||
| 1011 | /** |
||
| 1012 | * Titre. |
||
| 1013 | * |
||
| 1014 | * @var string|null |
||
| 1015 | */ |
||
| 1016 | private $titre; |
||
| 1017 | |||
| 1018 | /** |
||
| 1019 | * Total sommes. |
||
| 1020 | * |
||
| 1021 | * @var float|null |
||
| 1022 | */ |
||
| 1023 | private $totalSommes; |
||
| 1024 | |||
| 1025 | /** |
||
| 1026 | * Transaction en cours. |
||
| 1027 | * |
||
| 1028 | * @var bool|null |
||
| 1029 | */ |
||
| 1030 | private $transactionEnCours; |
||
| 1031 | |||
| 1032 | /** |
||
| 1033 | * Type assedic. |
||
| 1034 | * |
||
| 1035 | * @var string|null |
||
| 1036 | */ |
||
| 1037 | private $typeAssedic; |
||
| 1038 | |||
| 1039 | /** |
||
| 1040 | * Type diff horaire. |
||
| 1041 | * |
||
| 1042 | * @var string|null |
||
| 1043 | */ |
||
| 1044 | private $typeDiffHoraire; |
||
| 1045 | |||
| 1046 | /** |
||
| 1047 | * Type societe. |
||
| 1048 | * |
||
| 1049 | * @var string|null |
||
| 1050 | */ |
||
| 1051 | private $typeSociete; |
||
| 1052 | |||
| 1053 | /** |
||
| 1054 | * Urssaf. |
||
| 1055 | * |
||
| 1056 | * @var string|null |
||
| 1057 | */ |
||
| 1058 | private $urssaf; |
||
| 1059 | |||
| 1060 | /** |
||
| 1061 | * Validite convention fne. |
||
| 1062 | * |
||
| 1063 | * @var DateTime|null |
||
| 1064 | */ |
||
| 1065 | private $validiteConventionFne; |
||
| 1066 | |||
| 1067 | |||
| 1068 | /** |
||
| 1069 | * Constructor. |
||
| 1070 | */ |
||
| 1071 | public function __construct() { |
||
| 1074 | |||
| 1075 | /** |
||
| 1076 | * Get the adhesion aides. |
||
| 1077 | * |
||
| 1078 | * @return bool|null Returns the adhesion aides. |
||
| 1079 | */ |
||
| 1080 | public function getAdhesionAides(): ?bool{ |
||
| 1083 | |||
| 1084 | /** |
||
| 1085 | * Get the adhesion revocable. |
||
| 1086 | * |
||
| 1087 | * @return bool|null Returns the adhesion revocable. |
||
| 1088 | */ |
||
| 1089 | public function getAdhesionRevocable(): ?bool{ |
||
| 1092 | |||
| 1093 | /** |
||
| 1094 | * Get the adresse1. |
||
| 1095 | * |
||
| 1096 | * @return string|null Returns the adresse1. |
||
| 1097 | */ |
||
| 1098 | public function getAdresse1(): ?string{ |
||
| 1101 | |||
| 1102 | /** |
||
| 1103 | * Get the adresse2. |
||
| 1104 | * |
||
| 1105 | * @return string|null Returns the adresse2. |
||
| 1106 | */ |
||
| 1107 | public function getAdresse2(): ?string{ |
||
| 1110 | |||
| 1111 | /** |
||
| 1112 | * Get the adresse3. |
||
| 1113 | * |
||
| 1114 | * @return string|null Returns the adresse3. |
||
| 1115 | */ |
||
| 1116 | public function getAdresse3(): ?string{ |
||
| 1119 | |||
| 1120 | /** |
||
| 1121 | * Get the alsace moselle. |
||
| 1122 | * |
||
| 1123 | * @return bool|null Returns the alsace moselle. |
||
| 1124 | */ |
||
| 1125 | public function getAlsaceMoselle(): ?bool{ |
||
| 1128 | |||
| 1129 | /** |
||
| 1130 | * Get the auto assurance. |
||
| 1131 | * |
||
| 1132 | * @return bool|null Returns the auto assurance. |
||
| 1133 | */ |
||
| 1134 | public function getAutoAssurance(): ?bool{ |
||
| 1137 | |||
| 1138 | /** |
||
| 1139 | * Get the caisse indemcp. |
||
| 1140 | * |
||
| 1141 | * @return string|null Returns the caisse indemcp. |
||
| 1142 | */ |
||
| 1143 | public function getCaisseIndemcp(): ?string{ |
||
| 1146 | |||
| 1147 | /** |
||
| 1148 | * Get the categ emploi autre. |
||
| 1149 | * |
||
| 1150 | * @return string|null Returns the categ emploi autre. |
||
| 1151 | */ |
||
| 1152 | public function getCategEmploiAutre(): ?string{ |
||
| 1155 | |||
| 1156 | /** |
||
| 1157 | * Get the chomage total. |
||
| 1158 | * |
||
| 1159 | * @return bool|null Returns the chomage total. |
||
| 1160 | */ |
||
| 1161 | public function getChomageTotal(): ?bool{ |
||
| 1164 | |||
| 1165 | /** |
||
| 1166 | * Get the code ana. |
||
| 1167 | * |
||
| 1168 | * @return string|null Returns the code ana. |
||
| 1169 | */ |
||
| 1170 | public function getCodeAna(): ?string{ |
||
| 1173 | |||
| 1174 | /** |
||
| 1175 | * Get the code etablissement. |
||
| 1176 | * |
||
| 1177 | * @return int|null Returns the code etablissement. |
||
| 1178 | */ |
||
| 1179 | public function getCodeEtablissement(): ?int{ |
||
| 1182 | |||
| 1183 | /** |
||
| 1184 | * Get the code motif rupture. |
||
| 1185 | * |
||
| 1186 | * @return string|null Returns the code motif rupture. |
||
| 1187 | */ |
||
| 1188 | public function getCodeMotifRupture(): ?string{ |
||
| 1191 | |||
| 1192 | /** |
||
| 1193 | * Get the code naf2008. |
||
| 1194 | * |
||
| 1195 | * @return string|null Returns the code naf2008. |
||
| 1196 | */ |
||
| 1197 | public function getCodeNaf2008(): ?string{ |
||
| 1200 | |||
| 1201 | /** |
||
| 1202 | * Get the code p. |
||
| 1203 | * |
||
| 1204 | * @return string|null Returns the code p. |
||
| 1205 | */ |
||
| 1206 | public function getCodeP(): ?string{ |
||
| 1209 | |||
| 1210 | /** |
||
| 1211 | * Get the code retraite agirc. |
||
| 1212 | * |
||
| 1213 | * @return string|null Returns the code retraite agirc. |
||
| 1214 | */ |
||
| 1215 | public function getCodeRetraiteAgirc(): ?string{ |
||
| 1218 | |||
| 1219 | /** |
||
| 1220 | * Get the code retraite arrco. |
||
| 1221 | * |
||
| 1222 | * @return string|null Returns the code retraite arrco. |
||
| 1223 | */ |
||
| 1224 | public function getCodeRetraiteArrco(): ?string{ |
||
| 1227 | |||
| 1228 | /** |
||
| 1229 | * Get the code retraite autre. |
||
| 1230 | * |
||
| 1231 | * @return string|null Returns the code retraite autre. |
||
| 1232 | */ |
||
| 1233 | public function getCodeRetraiteAutre(): ?string{ |
||
| 1236 | |||
| 1237 | /** |
||
| 1238 | * Get the contrat part autre. |
||
| 1239 | * |
||
| 1240 | * @return string|null Returns the contrat part autre. |
||
| 1241 | */ |
||
| 1242 | public function getContratPartAutre(): ?string{ |
||
| 1245 | |||
| 1246 | /** |
||
| 1247 | * Get the contrat particulier. |
||
| 1248 | * |
||
| 1249 | * @return string|null Returns the contrat particulier. |
||
| 1250 | */ |
||
| 1251 | public function getContratParticulier(): ?string{ |
||
| 1254 | |||
| 1255 | /** |
||
| 1256 | * Get the convention fne. |
||
| 1257 | * |
||
| 1258 | * @return bool|null Returns the convention fne. |
||
| 1259 | */ |
||
| 1260 | public function getConventionFne(): ?bool{ |
||
| 1263 | |||
| 1264 | /** |
||
| 1265 | * Get the date adhesion. |
||
| 1266 | * |
||
| 1267 | * @return DateTime|null Returns the date adhesion. |
||
| 1268 | */ |
||
| 1269 | public function getDateAdhesion(): ?DateTime{ |
||
| 1272 | |||
| 1273 | /** |
||
| 1274 | * Get the date convention fne. |
||
| 1275 | * |
||
| 1276 | * @return DateTime|null Returns the date convention fne. |
||
| 1277 | */ |
||
| 1278 | public function getDateConventionFne(): ?DateTime{ |
||
| 1281 | |||
| 1282 | /** |
||
| 1283 | * Get the date naiss. |
||
| 1284 | * |
||
| 1285 | * @return DateTime|null Returns the date naiss. |
||
| 1286 | */ |
||
| 1287 | public function getDateNaiss(): ?DateTime{ |
||
| 1290 | |||
| 1291 | /** |
||
| 1292 | * Get the date notification. |
||
| 1293 | * |
||
| 1294 | * @return DateTime|null Returns the date notification. |
||
| 1295 | */ |
||
| 1296 | public function getDateNotification(): ?DateTime{ |
||
| 1299 | |||
| 1300 | /** |
||
| 1301 | * Get the date paie. |
||
| 1302 | * |
||
| 1303 | * @return DateTime|null Returns the date paie. |
||
| 1304 | */ |
||
| 1305 | public function getDatePaie(): ?DateTime{ |
||
| 1308 | |||
| 1309 | /** |
||
| 1310 | * Get the date paie2. |
||
| 1311 | * |
||
| 1312 | * @return DateTime|null Returns the date paie2. |
||
| 1313 | */ |
||
| 1314 | public function getDatePaie2(): ?DateTime{ |
||
| 1317 | |||
| 1318 | /** |
||
| 1319 | * Get the date plan. |
||
| 1320 | * |
||
| 1321 | * @return DateTime|null Returns the date plan. |
||
| 1322 | */ |
||
| 1323 | public function getDatePlan(): ?DateTime{ |
||
| 1326 | |||
| 1327 | /** |
||
| 1328 | * Get the demande ddte deb. |
||
| 1329 | * |
||
| 1330 | * @return DateTime|null Returns the demande ddte deb. |
||
| 1331 | */ |
||
| 1332 | public function getDemandeDdteDeb(): ?DateTime{ |
||
| 1335 | |||
| 1336 | /** |
||
| 1337 | * Get the demande ddte fin. |
||
| 1338 | * |
||
| 1339 | * @return DateTime|null Returns the demande ddte fin. |
||
| 1340 | */ |
||
| 1341 | public function getDemandeDdteFin(): ?DateTime{ |
||
| 1344 | |||
| 1345 | /** |
||
| 1346 | * Get the demande ddte reprise. |
||
| 1347 | * |
||
| 1348 | * @return DateTime|null Returns the demande ddte reprise. |
||
| 1349 | */ |
||
| 1350 | public function getDemandeDdteReprise(): ?DateTime{ |
||
| 1353 | |||
| 1354 | /** |
||
| 1355 | * Get the dept. |
||
| 1356 | * |
||
| 1357 | * @return string|null Returns the dept. |
||
| 1358 | */ |
||
| 1359 | public function getDept(): ?string{ |
||
| 1362 | |||
| 1363 | /** |
||
| 1364 | * Get the dern jour trav. |
||
| 1365 | * |
||
| 1366 | * @return DateTime|null Returns the dern jour trav. |
||
| 1367 | */ |
||
| 1368 | public function getDernJourTrav(): ?DateTime{ |
||
| 1371 | |||
| 1372 | /** |
||
| 1373 | * Get the dern lieu travail. |
||
| 1374 | * |
||
| 1375 | * @return string|null Returns the dern lieu travail. |
||
| 1376 | */ |
||
| 1377 | public function getDernLieuTravail(): ?string{ |
||
| 1380 | |||
| 1381 | /** |
||
| 1382 | * Get the dernier emploi. |
||
| 1383 | * |
||
| 1384 | * @return string|null Returns the dernier emploi. |
||
| 1385 | */ |
||
| 1386 | public function getDernierEmploi(): ?string{ |
||
| 1389 | |||
| 1390 | /** |
||
| 1391 | * Get the duree emploi1 deb. |
||
| 1392 | * |
||
| 1393 | * @return DateTime|null Returns the duree emploi1 deb. |
||
| 1394 | */ |
||
| 1395 | public function getDureeEmploi1Deb(): ?DateTime{ |
||
| 1398 | |||
| 1399 | /** |
||
| 1400 | * Get the duree emploi1 fin. |
||
| 1401 | * |
||
| 1402 | * @return DateTime|null Returns the duree emploi1 fin. |
||
| 1403 | */ |
||
| 1404 | public function getDureeEmploi1Fin(): ?DateTime{ |
||
| 1407 | |||
| 1408 | /** |
||
| 1409 | * Get the duree emploi2 deb. |
||
| 1410 | * |
||
| 1411 | * @return DateTime|null Returns the duree emploi2 deb. |
||
| 1412 | */ |
||
| 1413 | public function getDureeEmploi2Deb(): ?DateTime{ |
||
| 1416 | |||
| 1417 | /** |
||
| 1418 | * Get the duree emploi2 fin. |
||
| 1419 | * |
||
| 1420 | * @return DateTime|null Returns the duree emploi2 fin. |
||
| 1421 | */ |
||
| 1422 | public function getDureeEmploi2Fin(): ?DateTime{ |
||
| 1425 | |||
| 1426 | /** |
||
| 1427 | * Get the effectif. |
||
| 1428 | * |
||
| 1429 | * @return string|null Returns the effectif. |
||
| 1430 | */ |
||
| 1431 | public function getEffectif(): ?string{ |
||
| 1434 | |||
| 1435 | /** |
||
| 1436 | * Get the effectif val. |
||
| 1437 | * |
||
| 1438 | * @return float|null Returns the effectif val. |
||
| 1439 | */ |
||
| 1440 | public function getEffectifVal(): ?float{ |
||
| 1443 | |||
| 1444 | /** |
||
| 1445 | * Get the emploi collectivite. |
||
| 1446 | * |
||
| 1447 | * @return string|null Returns the emploi collectivite. |
||
| 1448 | */ |
||
| 1449 | public function getEmploiCollectivite(): ?string{ |
||
| 1452 | |||
| 1453 | /** |
||
| 1454 | * Get the etbl adresse1. |
||
| 1455 | * |
||
| 1456 | * @return string|null Returns the etbl adresse1. |
||
| 1457 | */ |
||
| 1458 | public function getEtblAdresse1(): ?string{ |
||
| 1461 | |||
| 1462 | /** |
||
| 1463 | * Get the etbl adresse2. |
||
| 1464 | * |
||
| 1465 | * @return string|null Returns the etbl adresse2. |
||
| 1466 | */ |
||
| 1467 | public function getEtblAdresse2(): ?string{ |
||
| 1470 | |||
| 1471 | /** |
||
| 1472 | * Get the etbl adresse3. |
||
| 1473 | * |
||
| 1474 | * @return string|null Returns the etbl adresse3. |
||
| 1475 | */ |
||
| 1476 | public function getEtblAdresse3(): ?string{ |
||
| 1479 | |||
| 1480 | /** |
||
| 1481 | * Get the etbl raison sociale. |
||
| 1482 | * |
||
| 1483 | * @return string|null Returns the etbl raison sociale. |
||
| 1484 | */ |
||
| 1485 | public function getEtblRaisonSociale(): ?string{ |
||
| 1488 | |||
| 1489 | /** |
||
| 1490 | * Get the etbl tel. |
||
| 1491 | * |
||
| 1492 | * @return string|null Returns the etbl tel. |
||
| 1493 | */ |
||
| 1494 | public function getEtblTel(): ?string{ |
||
| 1497 | |||
| 1498 | /** |
||
| 1499 | * Get the fngsa percevoir. |
||
| 1500 | * |
||
| 1501 | * @return bool|null Returns the fngsa percevoir. |
||
| 1502 | */ |
||
| 1503 | public function getFngsaPercevoir(): ?bool{ |
||
| 1506 | |||
| 1507 | /** |
||
| 1508 | * Get the fngsa percevoir creance. |
||
| 1509 | * |
||
| 1510 | * @return string|null Returns the fngsa percevoir creance. |
||
| 1511 | */ |
||
| 1512 | public function getFngsaPercevoirCreance(): ?string{ |
||
| 1515 | |||
| 1516 | /** |
||
| 1517 | * Get the fngs non a percevoir motif. |
||
| 1518 | * |
||
| 1519 | * @return string|null Returns the fngs non a percevoir motif. |
||
| 1520 | */ |
||
| 1521 | public function getFngsNonAPercevoirMotif(): ?string{ |
||
| 1524 | |||
| 1525 | /** |
||
| 1526 | * Get the fngs non percue motif. |
||
| 1527 | * |
||
| 1528 | * @return string|null Returns the fngs non percue motif. |
||
| 1529 | */ |
||
| 1530 | public function getFngsNonPercueMotif(): ?string{ |
||
| 1533 | |||
| 1534 | /** |
||
| 1535 | * Get the fngs percue. |
||
| 1536 | * |
||
| 1537 | * @return bool|null Returns the fngs percue. |
||
| 1538 | */ |
||
| 1539 | public function getFngsPercue(): ?bool{ |
||
| 1542 | |||
| 1543 | /** |
||
| 1544 | * Get the fngs percue creance. |
||
| 1545 | * |
||
| 1546 | * @return string|null Returns the fngs percue creance. |
||
| 1547 | */ |
||
| 1548 | public function getFngsPercueCreance(): ?string{ |
||
| 1551 | |||
| 1552 | /** |
||
| 1553 | * Get the heures trav. |
||
| 1554 | * |
||
| 1555 | * @return float|null Returns the heures trav. |
||
| 1556 | */ |
||
| 1557 | public function getHeuresTrav(): ?float{ |
||
| 1560 | |||
| 1561 | /** |
||
| 1562 | * Get the heures trav2. |
||
| 1563 | * |
||
| 1564 | * @return float|null Returns the heures trav2. |
||
| 1565 | */ |
||
| 1566 | public function getHeuresTrav2(): ?float{ |
||
| 1569 | |||
| 1570 | /** |
||
| 1571 | * Get the horaire annuel etbl. |
||
| 1572 | * |
||
| 1573 | * @return float|null Returns the horaire annuel etbl. |
||
| 1574 | */ |
||
| 1575 | public function getHoraireAnnuelEtbl(): ?float{ |
||
| 1578 | |||
| 1579 | /** |
||
| 1580 | * Get the horaire annuel sal. |
||
| 1581 | * |
||
| 1582 | * @return float|null Returns the horaire annuel sal. |
||
| 1583 | */ |
||
| 1584 | public function getHoraireAnnuelSal(): ?float{ |
||
| 1587 | |||
| 1588 | /** |
||
| 1589 | * Get the horaire hebdo etbl. |
||
| 1590 | * |
||
| 1591 | * @return float|null Returns the horaire hebdo etbl. |
||
| 1592 | */ |
||
| 1593 | public function getHoraireHebdoEtbl(): ?float{ |
||
| 1596 | |||
| 1597 | /** |
||
| 1598 | * Get the horaire hebdo sal. |
||
| 1599 | * |
||
| 1600 | * @return float|null Returns the horaire hebdo sal. |
||
| 1601 | */ |
||
| 1602 | public function getHoraireHebdoSal(): ?float{ |
||
| 1605 | |||
| 1606 | /** |
||
| 1607 | * Get the indemn autres. |
||
| 1608 | * |
||
| 1609 | * @return float|null Returns the indemn autres. |
||
| 1610 | */ |
||
| 1611 | public function getIndemnAutres(): ?float{ |
||
| 1614 | |||
| 1615 | /** |
||
| 1616 | * Get the indemn clientele. |
||
| 1617 | * |
||
| 1618 | * @return float|null Returns the indemn clientele. |
||
| 1619 | */ |
||
| 1620 | public function getIndemnClientele(): ?float{ |
||
| 1623 | |||
| 1624 | /** |
||
| 1625 | * Get the indemn compens cp. |
||
| 1626 | * |
||
| 1627 | * @return float|null Returns the indemn compens cp. |
||
| 1628 | */ |
||
| 1629 | public function getIndemnCompensCp(): ?float{ |
||
| 1632 | |||
| 1633 | /** |
||
| 1634 | * Get the indemn compens preavis. |
||
| 1635 | * |
||
| 1636 | * @return float|null Returns the indemn compens preavis. |
||
| 1637 | */ |
||
| 1638 | public function getIndemnCompensPreavis(): ?float{ |
||
| 1641 | |||
| 1642 | /** |
||
| 1643 | * Get the indemn depart retraite. |
||
| 1644 | * |
||
| 1645 | * @return float|null Returns the indemn depart retraite. |
||
| 1646 | */ |
||
| 1647 | public function getIndemnDepartRetraite(): ?float{ |
||
| 1650 | |||
| 1651 | /** |
||
| 1652 | * Get the indemn due sinistre. |
||
| 1653 | * |
||
| 1654 | * @return float|null Returns the indemn due sinistre. |
||
| 1655 | */ |
||
| 1656 | public function getIndemnDueSinistre(): ?float{ |
||
| 1659 | |||
| 1660 | /** |
||
| 1661 | * Get the indemn fin cdd. |
||
| 1662 | * |
||
| 1663 | * @return float|null Returns the indemn fin cdd. |
||
| 1664 | */ |
||
| 1665 | public function getIndemnFinCdd(): ?float{ |
||
| 1668 | |||
| 1669 | /** |
||
| 1670 | * Get the indemn fin cne. |
||
| 1671 | * |
||
| 1672 | * @return float|null Returns the indemn fin cne. |
||
| 1673 | */ |
||
| 1674 | public function getIndemnFinCne(): ?float{ |
||
| 1677 | |||
| 1678 | /** |
||
| 1679 | * Get the indemn fin mission. |
||
| 1680 | * |
||
| 1681 | * @return float|null Returns the indemn fin mission. |
||
| 1682 | */ |
||
| 1683 | public function getIndemnFinMission(): ?float{ |
||
| 1686 | |||
| 1687 | /** |
||
| 1688 | * Get the indemn journalistes. |
||
| 1689 | * |
||
| 1690 | * @return float|null Returns the indemn journalistes. |
||
| 1691 | */ |
||
| 1692 | public function getIndemnJournalistes(): ?float{ |
||
| 1695 | |||
| 1696 | /** |
||
| 1697 | * Get the indemn licens. |
||
| 1698 | * |
||
| 1699 | * @return float|null Returns the indemn licens. |
||
| 1700 | */ |
||
| 1701 | public function getIndemnLicens(): ?float{ |
||
| 1704 | |||
| 1705 | /** |
||
| 1706 | * Get the indemn navig. |
||
| 1707 | * |
||
| 1708 | * @return float|null Returns the indemn navig. |
||
| 1709 | */ |
||
| 1710 | public function getIndemnNavig(): ?float{ |
||
| 1713 | |||
| 1714 | /** |
||
| 1715 | * Get the indemn rupt conv. |
||
| 1716 | * |
||
| 1717 | * @return float|null Returns the indemn rupt conv. |
||
| 1718 | */ |
||
| 1719 | public function getIndemnRuptConv(): ?float{ |
||
| 1722 | |||
| 1723 | /** |
||
| 1724 | * Get the indemn speci licens. |
||
| 1725 | * |
||
| 1726 | * @return float|null Returns the indemn speci licens. |
||
| 1727 | */ |
||
| 1728 | public function getIndemnSpeciLicens(): ?float{ |
||
| 1731 | |||
| 1732 | /** |
||
| 1733 | * Get the indemn specif licens. |
||
| 1734 | * |
||
| 1735 | * @return float|null Returns the indemn specif licens. |
||
| 1736 | */ |
||
| 1737 | public function getIndemnSpecifLicens(): ?float{ |
||
| 1740 | |||
| 1741 | /** |
||
| 1742 | * Get the indemn suppl licens. |
||
| 1743 | * |
||
| 1744 | * @return float|null Returns the indemn suppl licens. |
||
| 1745 | */ |
||
| 1746 | public function getIndemnSupplLicens(): ?float{ |
||
| 1749 | |||
| 1750 | /** |
||
| 1751 | * Get the indemn versee apprenti. |
||
| 1752 | * |
||
| 1753 | * @return float|null Returns the indemn versee apprenti. |
||
| 1754 | */ |
||
| 1755 | public function getIndemnVerseeApprenti(): ?float{ |
||
| 1758 | |||
| 1759 | /** |
||
| 1760 | * Get the licencie55ans. |
||
| 1761 | * |
||
| 1762 | * @return bool|null Returns the licencie55ans. |
||
| 1763 | */ |
||
| 1764 | public function getLicencie55ans(): ?bool{ |
||
| 1767 | |||
| 1768 | /** |
||
| 1769 | * Get the licencie plan social. |
||
| 1770 | * |
||
| 1771 | * @return bool|null Returns the licencie plan social. |
||
| 1772 | */ |
||
| 1773 | public function getLicenciePlanSocial(): ?bool{ |
||
| 1776 | |||
| 1777 | /** |
||
| 1778 | * Get the lien document. |
||
| 1779 | * |
||
| 1780 | * @return string|null Returns the lien document. |
||
| 1781 | */ |
||
| 1782 | public function getLienDocument(): ?string{ |
||
| 1785 | |||
| 1786 | /** |
||
| 1787 | * Get the lien parente. |
||
| 1788 | * |
||
| 1789 | * @return string|null Returns the lien parente. |
||
| 1790 | */ |
||
| 1791 | public function getLienParente(): ?string{ |
||
| 1794 | |||
| 1795 | /** |
||
| 1796 | * Get the motif difference. |
||
| 1797 | * |
||
| 1798 | * @return string|null Returns the motif difference. |
||
| 1799 | */ |
||
| 1800 | public function getMotifDifference(): ?string{ |
||
| 1803 | |||
| 1804 | /** |
||
| 1805 | * Get the motif non paie iccp. |
||
| 1806 | * |
||
| 1807 | * @return string|null Returns the motif non paie iccp. |
||
| 1808 | */ |
||
| 1809 | public function getMotifNonPaieIccp(): ?string{ |
||
| 1812 | |||
| 1813 | /** |
||
| 1814 | * Get the motif non paiement. |
||
| 1815 | * |
||
| 1816 | * @return string|null Returns the motif non paiement. |
||
| 1817 | */ |
||
| 1818 | public function getMotifNonPaiement(): ?string{ |
||
| 1821 | |||
| 1822 | /** |
||
| 1823 | * Get the motif rupture. |
||
| 1824 | * |
||
| 1825 | * @return string|null Returns the motif rupture. |
||
| 1826 | */ |
||
| 1827 | public function getMotifRupture(): ?string{ |
||
| 1830 | |||
| 1831 | /** |
||
| 1832 | * Get the mt idemn conv col. |
||
| 1833 | * |
||
| 1834 | * @return float|null Returns the mt idemn conv col. |
||
| 1835 | */ |
||
| 1836 | public function getMtIdemnConvCol(): ?float{ |
||
| 1839 | |||
| 1840 | /** |
||
| 1841 | * Get the mt idemn transac. |
||
| 1842 | * |
||
| 1843 | * @return float|null Returns the mt idemn transac. |
||
| 1844 | */ |
||
| 1845 | public function getMtIdemnTransac(): ?float{ |
||
| 1848 | |||
| 1849 | /** |
||
| 1850 | * Get the naf. |
||
| 1851 | * |
||
| 1852 | * @return string|null Returns the naf. |
||
| 1853 | */ |
||
| 1854 | public function getNaf(): ?string{ |
||
| 1857 | |||
| 1858 | /** |
||
| 1859 | * Get the nir. |
||
| 1860 | * |
||
| 1861 | * @return string|null Returns the nir. |
||
| 1862 | */ |
||
| 1863 | public function getNir(): ?string{ |
||
| 1866 | |||
| 1867 | /** |
||
| 1868 | * Get the nature contrat. |
||
| 1869 | * |
||
| 1870 | * @return string|null Returns the nature contrat. |
||
| 1871 | */ |
||
| 1872 | public function getNatureContrat(): ?string{ |
||
| 1875 | |||
| 1876 | /** |
||
| 1877 | * Get the nb jours ouvrables. |
||
| 1878 | * |
||
| 1879 | * @return float|null Returns the nb jours ouvrables. |
||
| 1880 | */ |
||
| 1881 | public function getNbJoursOuvrables(): ?float{ |
||
| 1884 | |||
| 1885 | /** |
||
| 1886 | * Get the niveau qualif. |
||
| 1887 | * |
||
| 1888 | * @return string|null Returns the niveau qualif. |
||
| 1889 | */ |
||
| 1890 | public function getNiveauQualif(): ?string{ |
||
| 1893 | |||
| 1894 | /** |
||
| 1895 | * Get the nom ass chom. |
||
| 1896 | * |
||
| 1897 | * @return string|null Returns the nom ass chom. |
||
| 1898 | */ |
||
| 1899 | public function getNomAssChom(): ?string{ |
||
| 1902 | |||
| 1903 | /** |
||
| 1904 | * Get the nom employe. |
||
| 1905 | * |
||
| 1906 | * @return string|null Returns the nom employe. |
||
| 1907 | */ |
||
| 1908 | public function getNomEmploye(): ?string{ |
||
| 1911 | |||
| 1912 | /** |
||
| 1913 | * Get the nom naissance. |
||
| 1914 | * |
||
| 1915 | * @return string|null Returns the nom naissance. |
||
| 1916 | */ |
||
| 1917 | public function getNomNaissance(): ?string{ |
||
| 1920 | |||
| 1921 | /** |
||
| 1922 | * Get the nom special secu. |
||
| 1923 | * |
||
| 1924 | * @return string|null Returns the nom special secu. |
||
| 1925 | */ |
||
| 1926 | public function getNomSpecialSecu(): ?string{ |
||
| 1929 | |||
| 1930 | /** |
||
| 1931 | * Get the nouvelle attest. |
||
| 1932 | * |
||
| 1933 | * @return bool|null Returns the nouvelle attest. |
||
| 1934 | */ |
||
| 1935 | public function getNouvelleAttest(): ?bool{ |
||
| 1938 | |||
| 1939 | /** |
||
| 1940 | * Get the num ass chom. |
||
| 1941 | * |
||
| 1942 | * @return string|null Returns the num ass chom. |
||
| 1943 | */ |
||
| 1944 | public function getNumAssChom(): ?string{ |
||
| 1947 | |||
| 1948 | /** |
||
| 1949 | * Get the num convention fne. |
||
| 1950 | * |
||
| 1951 | * @return string|null Returns the num convention fne. |
||
| 1952 | */ |
||
| 1953 | public function getNumConventionFne(): ?string{ |
||
| 1956 | |||
| 1957 | /** |
||
| 1958 | * Get the num convention gestion. |
||
| 1959 | * |
||
| 1960 | * @return string|null Returns the num convention gestion. |
||
| 1961 | */ |
||
| 1962 | public function getNumConventionGestion(): ?string{ |
||
| 1965 | |||
| 1966 | /** |
||
| 1967 | * Get the num special secu. |
||
| 1968 | * |
||
| 1969 | * @return string|null Returns the num special secu. |
||
| 1970 | */ |
||
| 1971 | public function getNumSpecialSecu(): ?string{ |
||
| 1974 | |||
| 1975 | /** |
||
| 1976 | * Get the numero attestation. |
||
| 1977 | * |
||
| 1978 | * @return string|null Returns the numero attestation. |
||
| 1979 | */ |
||
| 1980 | public function getNumeroAttestation(): ?string{ |
||
| 1983 | |||
| 1984 | /** |
||
| 1985 | * Get the numero employe. |
||
| 1986 | * |
||
| 1987 | * @return string|null Returns the numero employe. |
||
| 1988 | */ |
||
| 1989 | public function getNumeroEmploye(): ?string{ |
||
| 1992 | |||
| 1993 | /** |
||
| 1994 | * Get the organisme ass chom. |
||
| 1995 | * |
||
| 1996 | * @return string|null Returns the organisme ass chom. |
||
| 1997 | */ |
||
| 1998 | public function getOrganismeAssChom(): ?string{ |
||
| 2001 | |||
| 2002 | /** |
||
| 2003 | * Get the preavis effectue. |
||
| 2004 | * |
||
| 2005 | * @return bool|null Returns the preavis effectue. |
||
| 2006 | */ |
||
| 2007 | public function getPreavisEffectue(): ?bool{ |
||
| 2010 | |||
| 2011 | /** |
||
| 2012 | * Get the preavis effectue deb. |
||
| 2013 | * |
||
| 2014 | * @return DateTime|null Returns the preavis effectue deb. |
||
| 2015 | */ |
||
| 2016 | public function getPreavisEffectueDeb(): ?DateTime{ |
||
| 2019 | |||
| 2020 | /** |
||
| 2021 | * Get the preavis effectue fin. |
||
| 2022 | * |
||
| 2023 | * @return DateTime|null Returns the preavis effectue fin. |
||
| 2024 | */ |
||
| 2025 | public function getPreavisEffectueFin(): ?DateTime{ |
||
| 2028 | |||
| 2029 | /** |
||
| 2030 | * Get the preavis effectue paye. |
||
| 2031 | * |
||
| 2032 | * @return bool|null Returns the preavis effectue paye. |
||
| 2033 | */ |
||
| 2034 | public function getPreavisEffectuePaye(): ?bool{ |
||
| 2037 | |||
| 2038 | /** |
||
| 2039 | * Get the preavis non effectue. |
||
| 2040 | * |
||
| 2041 | * @return bool|null Returns the preavis non effectue. |
||
| 2042 | */ |
||
| 2043 | public function getPreavisNonEffectue(): ?bool{ |
||
| 2046 | |||
| 2047 | /** |
||
| 2048 | * Get the preavis non effectue deb. |
||
| 2049 | * |
||
| 2050 | * @return DateTime|null Returns the preavis non effectue deb. |
||
| 2051 | */ |
||
| 2052 | public function getPreavisNonEffectueDeb(): ?DateTime{ |
||
| 2055 | |||
| 2056 | /** |
||
| 2057 | * Get the preavis non effectue fin. |
||
| 2058 | * |
||
| 2059 | * @return DateTime|null Returns the preavis non effectue fin. |
||
| 2060 | */ |
||
| 2061 | public function getPreavisNonEffectueFin(): ?DateTime{ |
||
| 2064 | |||
| 2065 | /** |
||
| 2066 | * Get the preavis non effectue paye. |
||
| 2067 | * |
||
| 2068 | * @return bool|null Returns the preavis non effectue paye. |
||
| 2069 | */ |
||
| 2070 | public function getPreavisNonEffectuePaye(): ?bool{ |
||
| 2073 | |||
| 2074 | /** |
||
| 2075 | * Get the precompte stc. |
||
| 2076 | * |
||
| 2077 | * @return float|null Returns the precompte stc. |
||
| 2078 | */ |
||
| 2079 | public function getPrecompteStc(): ?float{ |
||
| 2082 | |||
| 2083 | /** |
||
| 2084 | * Get the prenom. |
||
| 2085 | * |
||
| 2086 | * @return string|null Returns the prenom. |
||
| 2087 | */ |
||
| 2088 | public function getPrenom(): ?string{ |
||
| 2091 | |||
| 2092 | /** |
||
| 2093 | * Get the qualite emploi. |
||
| 2094 | * |
||
| 2095 | * @return string|null Returns the qualite emploi. |
||
| 2096 | */ |
||
| 2097 | public function getQualiteEmploi(): ?string{ |
||
| 2100 | |||
| 2101 | /** |
||
| 2102 | * Get the reclassement. |
||
| 2103 | * |
||
| 2104 | * @return bool|null Returns the reclassement. |
||
| 2105 | */ |
||
| 2106 | public function getReclassement(): ?bool{ |
||
| 2109 | |||
| 2110 | /** |
||
| 2111 | * Get the refus salarie. |
||
| 2112 | * |
||
| 2113 | * @return bool|null Returns the refus salarie. |
||
| 2114 | */ |
||
| 2115 | public function getRefusSalarie(): ?bool{ |
||
| 2118 | |||
| 2119 | /** |
||
| 2120 | * Get the retraite agirc. |
||
| 2121 | * |
||
| 2122 | * @return string|null Returns the retraite agirc. |
||
| 2123 | */ |
||
| 2124 | public function getRetraiteAgirc(): ?string{ |
||
| 2127 | |||
| 2128 | /** |
||
| 2129 | * Get the retraite agirc compl. |
||
| 2130 | * |
||
| 2131 | * @return string|null Returns the retraite agirc compl. |
||
| 2132 | */ |
||
| 2133 | public function getRetraiteAgircCompl(): ?string{ |
||
| 2136 | |||
| 2137 | /** |
||
| 2138 | * Get the retraite arrco. |
||
| 2139 | * |
||
| 2140 | * @return string|null Returns the retraite arrco. |
||
| 2141 | */ |
||
| 2142 | public function getRetraiteArrco(): ?string{ |
||
| 2145 | |||
| 2146 | /** |
||
| 2147 | * Get the retraite arrco compl. |
||
| 2148 | * |
||
| 2149 | * @return string|null Returns the retraite arrco compl. |
||
| 2150 | */ |
||
| 2151 | public function getRetraiteArrcoCompl(): ?string{ |
||
| 2154 | |||
| 2155 | /** |
||
| 2156 | * Get the retraite autre. |
||
| 2157 | * |
||
| 2158 | * @return string|null Returns the retraite autre. |
||
| 2159 | */ |
||
| 2160 | public function getRetraiteAutre(): ?string{ |
||
| 2163 | |||
| 2164 | /** |
||
| 2165 | * Get the retraite autre compl. |
||
| 2166 | * |
||
| 2167 | * @return string|null Returns the retraite autre compl. |
||
| 2168 | */ |
||
| 2169 | public function getRetraiteAutreCompl(): ?string{ |
||
| 2172 | |||
| 2173 | /** |
||
| 2174 | * Get the siret. |
||
| 2175 | * |
||
| 2176 | * @return string|null Returns the siret. |
||
| 2177 | */ |
||
| 2178 | public function getSiret(): ?string{ |
||
| 2181 | |||
| 2182 | /** |
||
| 2183 | * Get the salaire brut. |
||
| 2184 | * |
||
| 2185 | * @return float|null Returns the salaire brut. |
||
| 2186 | */ |
||
| 2187 | public function getSalaireBrut(): ?float{ |
||
| 2190 | |||
| 2191 | /** |
||
| 2192 | * Get the signature code qualite. |
||
| 2193 | * |
||
| 2194 | * @return string|null Returns the signature code qualite. |
||
| 2195 | */ |
||
| 2196 | public function getSignatureCodeQualite(): ?string{ |
||
| 2199 | |||
| 2200 | /** |
||
| 2201 | * Get the signature contact. |
||
| 2202 | * |
||
| 2203 | * @return string|null Returns the signature contact. |
||
| 2204 | */ |
||
| 2205 | public function getSignatureContact(): ?string{ |
||
| 2208 | |||
| 2209 | /** |
||
| 2210 | * Get the signature date. |
||
| 2211 | * |
||
| 2212 | * @return DateTime|null Returns the signature date. |
||
| 2213 | */ |
||
| 2214 | public function getSignatureDate(): ?DateTime{ |
||
| 2217 | |||
| 2218 | /** |
||
| 2219 | * Get the signature nom. |
||
| 2220 | * |
||
| 2221 | * @return string|null Returns the signature nom. |
||
| 2222 | */ |
||
| 2223 | public function getSignatureNom(): ?string{ |
||
| 2226 | |||
| 2227 | /** |
||
| 2228 | * Get the signature prenom. |
||
| 2229 | * |
||
| 2230 | * @return string|null Returns the signature prenom. |
||
| 2231 | */ |
||
| 2232 | public function getSignaturePrenom(): ?string{ |
||
| 2235 | |||
| 2236 | /** |
||
| 2237 | * Get the signature qualite. |
||
| 2238 | * |
||
| 2239 | * @return string|null Returns the signature qualite. |
||
| 2240 | */ |
||
| 2241 | public function getSignatureQualite(): ?string{ |
||
| 2244 | |||
| 2245 | /** |
||
| 2246 | * Get the signature tel. |
||
| 2247 | * |
||
| 2248 | * @return string|null Returns the signature tel. |
||
| 2249 | */ |
||
| 2250 | public function getSignatureTel(): ?string{ |
||
| 2253 | |||
| 2254 | /** |
||
| 2255 | * Get the signature ville. |
||
| 2256 | * |
||
| 2257 | * @return string|null Returns the signature ville. |
||
| 2258 | */ |
||
| 2259 | public function getSignatureVille(): ?string{ |
||
| 2262 | |||
| 2263 | /** |
||
| 2264 | * Get the solde tout compte. |
||
| 2265 | * |
||
| 2266 | * @return string|null Returns the solde tout compte. |
||
| 2267 | */ |
||
| 2268 | public function getSoldeToutCompte(): ?string{ |
||
| 2271 | |||
| 2272 | /** |
||
| 2273 | * Get the sommes periode deb. |
||
| 2274 | * |
||
| 2275 | * @return DateTime|null Returns the sommes periode deb. |
||
| 2276 | */ |
||
| 2277 | public function getSommesPeriodeDeb(): ?DateTime{ |
||
| 2280 | |||
| 2281 | /** |
||
| 2282 | * Get the sommes periode deb2. |
||
| 2283 | * |
||
| 2284 | * @return DateTime|null Returns the sommes periode deb2. |
||
| 2285 | */ |
||
| 2286 | public function getSommesPeriodeDeb2(): ?DateTime{ |
||
| 2289 | |||
| 2290 | /** |
||
| 2291 | * Get the sommes periode fin. |
||
| 2292 | * |
||
| 2293 | * @return DateTime|null Returns the sommes periode fin. |
||
| 2294 | */ |
||
| 2295 | public function getSommesPeriodeFin(): ?DateTime{ |
||
| 2298 | |||
| 2299 | /** |
||
| 2300 | * Get the sommes periode fin2. |
||
| 2301 | * |
||
| 2302 | * @return DateTime|null Returns the sommes periode fin2. |
||
| 2303 | */ |
||
| 2304 | public function getSommesPeriodeFin2(): ?DateTime{ |
||
| 2307 | |||
| 2308 | /** |
||
| 2309 | * Get the special secu. |
||
| 2310 | * |
||
| 2311 | * @return string|null Returns the special secu. |
||
| 2312 | */ |
||
| 2313 | public function getSpecialSecu(): ?string{ |
||
| 2316 | |||
| 2317 | /** |
||
| 2318 | * Get the statut. |
||
| 2319 | * |
||
| 2320 | * @return string|null Returns the statut. |
||
| 2321 | */ |
||
| 2322 | public function getStatut(): ?string{ |
||
| 2325 | |||
| 2326 | /** |
||
| 2327 | * Get the statut cadre. |
||
| 2328 | * |
||
| 2329 | * @return bool|null Returns the statut cadre. |
||
| 2330 | */ |
||
| 2331 | public function getStatutCadre(): ?bool{ |
||
| 2334 | |||
| 2335 | /** |
||
| 2336 | * Get the statut part autre. |
||
| 2337 | * |
||
| 2338 | * @return string|null Returns the statut part autre. |
||
| 2339 | */ |
||
| 2340 | public function getStatutPartAutre(): ?string{ |
||
| 2343 | |||
| 2344 | /** |
||
| 2345 | * Get the titre. |
||
| 2346 | * |
||
| 2347 | * @return string|null Returns the titre. |
||
| 2348 | */ |
||
| 2349 | public function getTitre(): ?string{ |
||
| 2352 | |||
| 2353 | /** |
||
| 2354 | * Get the total sommes. |
||
| 2355 | * |
||
| 2356 | * @return float|null Returns the total sommes. |
||
| 2357 | */ |
||
| 2358 | public function getTotalSommes(): ?float{ |
||
| 2361 | |||
| 2362 | /** |
||
| 2363 | * Get the transaction en cours. |
||
| 2364 | * |
||
| 2365 | * @return bool|null Returns the transaction en cours. |
||
| 2366 | */ |
||
| 2367 | public function getTransactionEnCours(): ?bool{ |
||
| 2370 | |||
| 2371 | /** |
||
| 2372 | * Get the type assedic. |
||
| 2373 | * |
||
| 2374 | * @return string|null Returns the type assedic. |
||
| 2375 | */ |
||
| 2376 | public function getTypeAssedic(): ?string{ |
||
| 2379 | |||
| 2380 | /** |
||
| 2381 | * Get the type diff horaire. |
||
| 2382 | * |
||
| 2383 | * @return string|null Returns the type diff horaire. |
||
| 2384 | */ |
||
| 2385 | public function getTypeDiffHoraire(): ?string{ |
||
| 2388 | |||
| 2389 | /** |
||
| 2390 | * Get the type societe. |
||
| 2391 | * |
||
| 2392 | * @return string|null Returns the type societe. |
||
| 2393 | */ |
||
| 2394 | public function getTypeSociete(): ?string{ |
||
| 2397 | |||
| 2398 | /** |
||
| 2399 | * Get the urssaf. |
||
| 2400 | * |
||
| 2401 | * @return string|null Returns the urssaf. |
||
| 2402 | */ |
||
| 2403 | public function getUrssaf(): ?string{ |
||
| 2406 | |||
| 2407 | /** |
||
| 2408 | * Get the validite convention fne. |
||
| 2409 | * |
||
| 2410 | * @return DateTime|null Returns the validite convention fne. |
||
| 2411 | */ |
||
| 2412 | public function getValiditeConventionFne(): ?DateTime{ |
||
| 2415 | |||
| 2416 | /** |
||
| 2417 | * Set the adhesion aides. |
||
| 2418 | * |
||
| 2419 | * @param bool|null $adhesionAides The adhesion aides. |
||
| 2420 | * @return AttestationAssedic Returns this Attestation assedic. |
||
| 2421 | */ |
||
| 2422 | public function setAdhesionAides(?bool $adhesionAides): AttestationAssedic { |
||
| 2426 | |||
| 2427 | /** |
||
| 2428 | * Set the adhesion revocable. |
||
| 2429 | * |
||
| 2430 | * @param bool|null $adhesionRevocable The adhesion revocable. |
||
| 2431 | * @return AttestationAssedic Returns this Attestation assedic. |
||
| 2432 | */ |
||
| 2433 | public function setAdhesionRevocable(?bool $adhesionRevocable): AttestationAssedic { |
||
| 2437 | |||
| 2438 | /** |
||
| 2439 | * Set the adresse1. |
||
| 2440 | * |
||
| 2441 | * @param string|null $adresse1 The adresse1. |
||
| 2442 | * @return AttestationAssedic Returns this Attestation assedic. |
||
| 2443 | */ |
||
| 2444 | public function setAdresse1(?string $adresse1): AttestationAssedic { |
||
| 2448 | |||
| 2449 | /** |
||
| 2450 | * Set the adresse2. |
||
| 2451 | * |
||
| 2452 | * @param string|null $adresse2 The adresse2. |
||
| 2453 | * @return AttestationAssedic Returns this Attestation assedic. |
||
| 2454 | */ |
||
| 2455 | public function setAdresse2(?string $adresse2): AttestationAssedic { |
||
| 2459 | |||
| 2460 | /** |
||
| 2461 | * Set the adresse3. |
||
| 2462 | * |
||
| 2463 | * @param string|null $adresse3 The adresse3. |
||
| 2464 | * @return AttestationAssedic Returns this Attestation assedic. |
||
| 2465 | */ |
||
| 2466 | public function setAdresse3(?string $adresse3): AttestationAssedic { |
||
| 2470 | |||
| 2471 | /** |
||
| 2472 | * Set the alsace moselle. |
||
| 2473 | * |
||
| 2474 | * @param bool|null $alsaceMoselle The alsace moselle. |
||
| 2475 | * @return AttestationAssedic Returns this Attestation assedic. |
||
| 2476 | */ |
||
| 2477 | public function setAlsaceMoselle(?bool $alsaceMoselle): AttestationAssedic { |
||
| 2481 | |||
| 2482 | /** |
||
| 2483 | * Set the auto assurance. |
||
| 2484 | * |
||
| 2485 | * @param bool|null $autoAssurance The auto assurance. |
||
| 2486 | * @return AttestationAssedic Returns this Attestation assedic. |
||
| 2487 | */ |
||
| 2488 | public function setAutoAssurance(?bool $autoAssurance): AttestationAssedic { |
||
| 2492 | |||
| 2493 | /** |
||
| 2494 | * Set the caisse indemcp. |
||
| 2495 | * |
||
| 2496 | * @param string|null $caisseIndemcp The caisse indemcp. |
||
| 2497 | * @return AttestationAssedic Returns this Attestation assedic. |
||
| 2498 | */ |
||
| 2499 | public function setCaisseIndemcp(?string $caisseIndemcp): AttestationAssedic { |
||
| 2503 | |||
| 2504 | /** |
||
| 2505 | * Set the categ emploi autre. |
||
| 2506 | * |
||
| 2507 | * @param string|null $categEmploiAutre The categ emploi autre. |
||
| 2508 | * @return AttestationAssedic Returns this Attestation assedic. |
||
| 2509 | */ |
||
| 2510 | public function setCategEmploiAutre(?string $categEmploiAutre): AttestationAssedic { |
||
| 2514 | |||
| 2515 | /** |
||
| 2516 | * Set the chomage total. |
||
| 2517 | * |
||
| 2518 | * @param bool|null $chomageTotal The chomage total. |
||
| 2519 | * @return AttestationAssedic Returns this Attestation assedic. |
||
| 2520 | */ |
||
| 2521 | public function setChomageTotal(?bool $chomageTotal): AttestationAssedic { |
||
| 2525 | |||
| 2526 | /** |
||
| 2527 | * Set the code ana. |
||
| 2528 | * |
||
| 2529 | * @param string|null $codeAna The code ana. |
||
| 2530 | * @return AttestationAssedic Returns this Attestation assedic. |
||
| 2531 | */ |
||
| 2532 | public function setCodeAna(?string $codeAna): AttestationAssedic { |
||
| 2536 | |||
| 2537 | /** |
||
| 2538 | * Set the code etablissement. |
||
| 2539 | * |
||
| 2540 | * @param int|null $codeEtablissement The code etablissement. |
||
| 2541 | * @return AttestationAssedic Returns this Attestation assedic. |
||
| 2542 | */ |
||
| 2543 | public function setCodeEtablissement(?int $codeEtablissement): AttestationAssedic { |
||
| 2547 | |||
| 2548 | /** |
||
| 2549 | * Set the code motif rupture. |
||
| 2550 | * |
||
| 2551 | * @param string|null $codeMotifRupture The code motif rupture. |
||
| 2552 | * @return AttestationAssedic Returns this Attestation assedic. |
||
| 2553 | */ |
||
| 2554 | public function setCodeMotifRupture(?string $codeMotifRupture): AttestationAssedic { |
||
| 2558 | |||
| 2559 | /** |
||
| 2560 | * Set the code naf2008. |
||
| 2561 | * |
||
| 2562 | * @param string|null $codeNaf2008 The code naf2008. |
||
| 2563 | * @return AttestationAssedic Returns this Attestation assedic. |
||
| 2564 | */ |
||
| 2565 | public function setCodeNaf2008(?string $codeNaf2008): AttestationAssedic { |
||
| 2569 | |||
| 2570 | /** |
||
| 2571 | * Set the code p. |
||
| 2572 | * |
||
| 2573 | * @param string|null $codeP The code p. |
||
| 2574 | * @return AttestationAssedic Returns this Attestation assedic. |
||
| 2575 | */ |
||
| 2576 | public function setCodeP(?string $codeP): AttestationAssedic { |
||
| 2580 | |||
| 2581 | /** |
||
| 2582 | * Set the code retraite agirc. |
||
| 2583 | * |
||
| 2584 | * @param string|null $codeRetraiteAgirc The code retraite agirc. |
||
| 2585 | * @return AttestationAssedic Returns this Attestation assedic. |
||
| 2586 | */ |
||
| 2587 | public function setCodeRetraiteAgirc(?string $codeRetraiteAgirc): AttestationAssedic { |
||
| 2591 | |||
| 2592 | /** |
||
| 2593 | * Set the code retraite arrco. |
||
| 2594 | * |
||
| 2595 | * @param string|null $codeRetraiteArrco The code retraite arrco. |
||
| 2596 | * @return AttestationAssedic Returns this Attestation assedic. |
||
| 2597 | */ |
||
| 2598 | public function setCodeRetraiteArrco(?string $codeRetraiteArrco): AttestationAssedic { |
||
| 2602 | |||
| 2603 | /** |
||
| 2604 | * Set the code retraite autre. |
||
| 2605 | * |
||
| 2606 | * @param string|null $codeRetraiteAutre The code retraite autre. |
||
| 2607 | * @return AttestationAssedic Returns this Attestation assedic. |
||
| 2608 | */ |
||
| 2609 | public function setCodeRetraiteAutre(?string $codeRetraiteAutre): AttestationAssedic { |
||
| 2613 | |||
| 2614 | /** |
||
| 2615 | * Set the contrat part autre. |
||
| 2616 | * |
||
| 2617 | * @param string|null $contratPartAutre The contrat part autre. |
||
| 2618 | * @return AttestationAssedic Returns this Attestation assedic. |
||
| 2619 | */ |
||
| 2620 | public function setContratPartAutre(?string $contratPartAutre): AttestationAssedic { |
||
| 2624 | |||
| 2625 | /** |
||
| 2626 | * Set the contrat particulier. |
||
| 2627 | * |
||
| 2628 | * @param string|null $contratParticulier The contrat particulier. |
||
| 2629 | * @return AttestationAssedic Returns this Attestation assedic. |
||
| 2630 | */ |
||
| 2631 | public function setContratParticulier(?string $contratParticulier): AttestationAssedic { |
||
| 2635 | |||
| 2636 | /** |
||
| 2637 | * Set the convention fne. |
||
| 2638 | * |
||
| 2639 | * @param bool|null $conventionFne The convention fne. |
||
| 2640 | * @return AttestationAssedic Returns this Attestation assedic. |
||
| 2641 | */ |
||
| 2642 | public function setConventionFne(?bool $conventionFne): AttestationAssedic { |
||
| 2646 | |||
| 2647 | /** |
||
| 2648 | * Set the date adhesion. |
||
| 2649 | * |
||
| 2650 | * @param DateTime|null $dateAdhesion The date adhesion. |
||
| 2651 | * @return AttestationAssedic Returns this Attestation assedic. |
||
| 2652 | */ |
||
| 2653 | public function setDateAdhesion(?DateTime $dateAdhesion): AttestationAssedic { |
||
| 2657 | |||
| 2658 | /** |
||
| 2659 | * Set the date convention fne. |
||
| 2660 | * |
||
| 2661 | * @param DateTime|null $dateConventionFne The date convention fne. |
||
| 2662 | * @return AttestationAssedic Returns this Attestation assedic. |
||
| 2663 | */ |
||
| 2664 | public function setDateConventionFne(?DateTime $dateConventionFne): AttestationAssedic { |
||
| 2668 | |||
| 2669 | /** |
||
| 2670 | * Set the date naiss. |
||
| 2671 | * |
||
| 2672 | * @param DateTime|null $dateNaiss The date naiss. |
||
| 2673 | * @return AttestationAssedic Returns this Attestation assedic. |
||
| 2674 | */ |
||
| 2675 | public function setDateNaiss(?DateTime $dateNaiss): AttestationAssedic { |
||
| 2679 | |||
| 2680 | /** |
||
| 2681 | * Set the date notification. |
||
| 2682 | * |
||
| 2683 | * @param DateTime|null $dateNotification The date notification. |
||
| 2684 | * @return AttestationAssedic Returns this Attestation assedic. |
||
| 2685 | */ |
||
| 2686 | public function setDateNotification(?DateTime $dateNotification): AttestationAssedic { |
||
| 2690 | |||
| 2691 | /** |
||
| 2692 | * Set the date paie. |
||
| 2693 | * |
||
| 2694 | * @param DateTime|null $datePaie The date paie. |
||
| 2695 | * @return AttestationAssedic Returns this Attestation assedic. |
||
| 2696 | */ |
||
| 2697 | public function setDatePaie(?DateTime $datePaie): AttestationAssedic { |
||
| 2701 | |||
| 2702 | /** |
||
| 2703 | * Set the date paie2. |
||
| 2704 | * |
||
| 2705 | * @param DateTime|null $datePaie2 The date paie2. |
||
| 2706 | * @return AttestationAssedic Returns this Attestation assedic. |
||
| 2707 | */ |
||
| 2708 | public function setDatePaie2(?DateTime $datePaie2): AttestationAssedic { |
||
| 2712 | |||
| 2713 | /** |
||
| 2714 | * Set the date plan. |
||
| 2715 | * |
||
| 2716 | * @param DateTime|null $datePlan The date plan. |
||
| 2717 | * @return AttestationAssedic Returns this Attestation assedic. |
||
| 2718 | */ |
||
| 2719 | public function setDatePlan(?DateTime $datePlan): AttestationAssedic { |
||
| 2723 | |||
| 2724 | /** |
||
| 2725 | * Set the demande ddte deb. |
||
| 2726 | * |
||
| 2727 | * @param DateTime|null $demandeDdteDeb The demande ddte deb. |
||
| 2728 | * @return AttestationAssedic Returns this Attestation assedic. |
||
| 2729 | */ |
||
| 2730 | public function setDemandeDdteDeb(?DateTime $demandeDdteDeb): AttestationAssedic { |
||
| 2734 | |||
| 2735 | /** |
||
| 2736 | * Set the demande ddte fin. |
||
| 2737 | * |
||
| 2738 | * @param DateTime|null $demandeDdteFin The demande ddte fin. |
||
| 2739 | * @return AttestationAssedic Returns this Attestation assedic. |
||
| 2740 | */ |
||
| 2741 | public function setDemandeDdteFin(?DateTime $demandeDdteFin): AttestationAssedic { |
||
| 2745 | |||
| 2746 | /** |
||
| 2747 | * Set the demande ddte reprise. |
||
| 2748 | * |
||
| 2749 | * @param DateTime|null $demandeDdteReprise The demande ddte reprise. |
||
| 2750 | * @return AttestationAssedic Returns this Attestation assedic. |
||
| 2751 | */ |
||
| 2752 | public function setDemandeDdteReprise(?DateTime $demandeDdteReprise): AttestationAssedic { |
||
| 2756 | |||
| 2757 | /** |
||
| 2758 | * Set the dept. |
||
| 2759 | * |
||
| 2760 | * @param string|null $dept The dept. |
||
| 2761 | * @return AttestationAssedic Returns this Attestation assedic. |
||
| 2762 | */ |
||
| 2763 | public function setDept(?string $dept): AttestationAssedic { |
||
| 2767 | |||
| 2768 | /** |
||
| 2769 | * Set the dern jour trav. |
||
| 2770 | * |
||
| 2771 | * @param DateTime|null $dernJourTrav The dern jour trav. |
||
| 2772 | * @return AttestationAssedic Returns this Attestation assedic. |
||
| 2773 | */ |
||
| 2774 | public function setDernJourTrav(?DateTime $dernJourTrav): AttestationAssedic { |
||
| 2778 | |||
| 2779 | /** |
||
| 2780 | * Set the dern lieu travail. |
||
| 2781 | * |
||
| 2782 | * @param string|null $dernLieuTravail The dern lieu travail. |
||
| 2783 | * @return AttestationAssedic Returns this Attestation assedic. |
||
| 2784 | */ |
||
| 2785 | public function setDernLieuTravail(?string $dernLieuTravail): AttestationAssedic { |
||
| 2789 | |||
| 2790 | /** |
||
| 2791 | * Set the dernier emploi. |
||
| 2792 | * |
||
| 2793 | * @param string|null $dernierEmploi The dernier emploi. |
||
| 2794 | * @return AttestationAssedic Returns this Attestation assedic. |
||
| 2795 | */ |
||
| 2796 | public function setDernierEmploi(?string $dernierEmploi): AttestationAssedic { |
||
| 2800 | |||
| 2801 | /** |
||
| 2802 | * Set the duree emploi1 deb. |
||
| 2803 | * |
||
| 2804 | * @param DateTime|null $dureeEmploi1Deb The duree emploi1 deb. |
||
| 2805 | * @return AttestationAssedic Returns this Attestation assedic. |
||
| 2806 | */ |
||
| 2807 | public function setDureeEmploi1Deb(?DateTime $dureeEmploi1Deb): AttestationAssedic { |
||
| 2811 | |||
| 2812 | /** |
||
| 2813 | * Set the duree emploi1 fin. |
||
| 2814 | * |
||
| 2815 | * @param DateTime|null $dureeEmploi1Fin The duree emploi1 fin. |
||
| 2816 | * @return AttestationAssedic Returns this Attestation assedic. |
||
| 2817 | */ |
||
| 2818 | public function setDureeEmploi1Fin(?DateTime $dureeEmploi1Fin): AttestationAssedic { |
||
| 2822 | |||
| 2823 | /** |
||
| 2824 | * Set the duree emploi2 deb. |
||
| 2825 | * |
||
| 2826 | * @param DateTime|null $dureeEmploi2Deb The duree emploi2 deb. |
||
| 2827 | * @return AttestationAssedic Returns this Attestation assedic. |
||
| 2828 | */ |
||
| 2829 | public function setDureeEmploi2Deb(?DateTime $dureeEmploi2Deb): AttestationAssedic { |
||
| 2833 | |||
| 2834 | /** |
||
| 2835 | * Set the duree emploi2 fin. |
||
| 2836 | * |
||
| 2837 | * @param DateTime|null $dureeEmploi2Fin The duree emploi2 fin. |
||
| 2838 | * @return AttestationAssedic Returns this Attestation assedic. |
||
| 2839 | */ |
||
| 2840 | public function setDureeEmploi2Fin(?DateTime $dureeEmploi2Fin): AttestationAssedic { |
||
| 2844 | |||
| 2845 | /** |
||
| 2846 | * Set the effectif. |
||
| 2847 | * |
||
| 2848 | * @param string|null $effectif The effectif. |
||
| 2849 | * @return AttestationAssedic Returns this Attestation assedic. |
||
| 2850 | */ |
||
| 2851 | public function setEffectif(?string $effectif): AttestationAssedic { |
||
| 2855 | |||
| 2856 | /** |
||
| 2857 | * Set the effectif val. |
||
| 2858 | * |
||
| 2859 | * @param float|null $effectifVal The effectif val. |
||
| 2860 | * @return AttestationAssedic Returns this Attestation assedic. |
||
| 2861 | */ |
||
| 2862 | public function setEffectifVal(?float $effectifVal): AttestationAssedic { |
||
| 2866 | |||
| 2867 | /** |
||
| 2868 | * Set the emploi collectivite. |
||
| 2869 | * |
||
| 2870 | * @param string|null $emploiCollectivite The emploi collectivite. |
||
| 2871 | * @return AttestationAssedic Returns this Attestation assedic. |
||
| 2872 | */ |
||
| 2873 | public function setEmploiCollectivite(?string $emploiCollectivite): AttestationAssedic { |
||
| 2877 | |||
| 2878 | /** |
||
| 2879 | * Set the etbl adresse1. |
||
| 2880 | * |
||
| 2881 | * @param string|null $etblAdresse1 The etbl adresse1. |
||
| 2882 | * @return AttestationAssedic Returns this Attestation assedic. |
||
| 2883 | */ |
||
| 2884 | public function setEtblAdresse1(?string $etblAdresse1): AttestationAssedic { |
||
| 2888 | |||
| 2889 | /** |
||
| 2890 | * Set the etbl adresse2. |
||
| 2891 | * |
||
| 2892 | * @param string|null $etblAdresse2 The etbl adresse2. |
||
| 2893 | * @return AttestationAssedic Returns this Attestation assedic. |
||
| 2894 | */ |
||
| 2895 | public function setEtblAdresse2(?string $etblAdresse2): AttestationAssedic { |
||
| 2899 | |||
| 2900 | /** |
||
| 2901 | * Set the etbl adresse3. |
||
| 2902 | * |
||
| 2903 | * @param string|null $etblAdresse3 The etbl adresse3. |
||
| 2904 | * @return AttestationAssedic Returns this Attestation assedic. |
||
| 2905 | */ |
||
| 2906 | public function setEtblAdresse3(?string $etblAdresse3): AttestationAssedic { |
||
| 2910 | |||
| 2911 | /** |
||
| 2912 | * Set the etbl raison sociale. |
||
| 2913 | * |
||
| 2914 | * @param string|null $etblRaisonSociale The etbl raison sociale. |
||
| 2915 | * @return AttestationAssedic Returns this Attestation assedic. |
||
| 2916 | */ |
||
| 2917 | public function setEtblRaisonSociale(?string $etblRaisonSociale): AttestationAssedic { |
||
| 2921 | |||
| 2922 | /** |
||
| 2923 | * Set the etbl tel. |
||
| 2924 | * |
||
| 2925 | * @param string|null $etblTel The etbl tel. |
||
| 2926 | * @return AttestationAssedic Returns this Attestation assedic. |
||
| 2927 | */ |
||
| 2928 | public function setEtblTel(?string $etblTel): AttestationAssedic { |
||
| 2932 | |||
| 2933 | /** |
||
| 2934 | * Set the fngsa percevoir. |
||
| 2935 | * |
||
| 2936 | * @param bool|null $fngsaPercevoir The fngsa percevoir. |
||
| 2937 | * @return AttestationAssedic Returns this Attestation assedic. |
||
| 2938 | */ |
||
| 2939 | public function setFngsaPercevoir(?bool $fngsaPercevoir): AttestationAssedic { |
||
| 2943 | |||
| 2944 | /** |
||
| 2945 | * Set the fngsa percevoir creance. |
||
| 2946 | * |
||
| 2947 | * @param string|null $fngsaPercevoirCreance The fngsa percevoir creance. |
||
| 2948 | * @return AttestationAssedic Returns this Attestation assedic. |
||
| 2949 | */ |
||
| 2950 | public function setFngsaPercevoirCreance(?string $fngsaPercevoirCreance): AttestationAssedic { |
||
| 2954 | |||
| 2955 | /** |
||
| 2956 | * Set the fngs non a percevoir motif. |
||
| 2957 | * |
||
| 2958 | * @param string|null $fngsNonAPercevoirMotif The fngs non a percevoir motif. |
||
| 2959 | * @return AttestationAssedic Returns this Attestation assedic. |
||
| 2960 | */ |
||
| 2961 | public function setFngsNonAPercevoirMotif(?string $fngsNonAPercevoirMotif): AttestationAssedic { |
||
| 2965 | |||
| 2966 | /** |
||
| 2967 | * Set the fngs non percue motif. |
||
| 2968 | * |
||
| 2969 | * @param string|null $fngsNonPercueMotif The fngs non percue motif. |
||
| 2970 | * @return AttestationAssedic Returns this Attestation assedic. |
||
| 2971 | */ |
||
| 2972 | public function setFngsNonPercueMotif(?string $fngsNonPercueMotif): AttestationAssedic { |
||
| 2976 | |||
| 2977 | /** |
||
| 2978 | * Set the fngs percue. |
||
| 2979 | * |
||
| 2980 | * @param bool|null $fngsPercue The fngs percue. |
||
| 2981 | * @return AttestationAssedic Returns this Attestation assedic. |
||
| 2982 | */ |
||
| 2983 | public function setFngsPercue(?bool $fngsPercue): AttestationAssedic { |
||
| 2987 | |||
| 2988 | /** |
||
| 2989 | * Set the fngs percue creance. |
||
| 2990 | * |
||
| 2991 | * @param string|null $fngsPercueCreance The fngs percue creance. |
||
| 2992 | * @return AttestationAssedic Returns this Attestation assedic. |
||
| 2993 | */ |
||
| 2994 | public function setFngsPercueCreance(?string $fngsPercueCreance): AttestationAssedic { |
||
| 2998 | |||
| 2999 | /** |
||
| 3000 | * Set the heures trav. |
||
| 3001 | * |
||
| 3002 | * @param float|null $heuresTrav The heures trav. |
||
| 3003 | * @return AttestationAssedic Returns this Attestation assedic. |
||
| 3004 | */ |
||
| 3005 | public function setHeuresTrav(?float $heuresTrav): AttestationAssedic { |
||
| 3009 | |||
| 3010 | /** |
||
| 3011 | * Set the heures trav2. |
||
| 3012 | * |
||
| 3013 | * @param float|null $heuresTrav2 The heures trav2. |
||
| 3014 | * @return AttestationAssedic Returns this Attestation assedic. |
||
| 3015 | */ |
||
| 3016 | public function setHeuresTrav2(?float $heuresTrav2): AttestationAssedic { |
||
| 3020 | |||
| 3021 | /** |
||
| 3022 | * Set the horaire annuel etbl. |
||
| 3023 | * |
||
| 3024 | * @param float|null $horaireAnnuelEtbl The horaire annuel etbl. |
||
| 3025 | * @return AttestationAssedic Returns this Attestation assedic. |
||
| 3026 | */ |
||
| 3027 | public function setHoraireAnnuelEtbl(?float $horaireAnnuelEtbl): AttestationAssedic { |
||
| 3031 | |||
| 3032 | /** |
||
| 3033 | * Set the horaire annuel sal. |
||
| 3034 | * |
||
| 3035 | * @param float|null $horaireAnnuelSal The horaire annuel sal. |
||
| 3036 | * @return AttestationAssedic Returns this Attestation assedic. |
||
| 3037 | */ |
||
| 3038 | public function setHoraireAnnuelSal(?float $horaireAnnuelSal): AttestationAssedic { |
||
| 3042 | |||
| 3043 | /** |
||
| 3044 | * Set the horaire hebdo etbl. |
||
| 3045 | * |
||
| 3046 | * @param float|null $horaireHebdoEtbl The horaire hebdo etbl. |
||
| 3047 | * @return AttestationAssedic Returns this Attestation assedic. |
||
| 3048 | */ |
||
| 3049 | public function setHoraireHebdoEtbl(?float $horaireHebdoEtbl): AttestationAssedic { |
||
| 3053 | |||
| 3054 | /** |
||
| 3055 | * Set the horaire hebdo sal. |
||
| 3056 | * |
||
| 3057 | * @param float|null $horaireHebdoSal The horaire hebdo sal. |
||
| 3058 | * @return AttestationAssedic Returns this Attestation assedic. |
||
| 3059 | */ |
||
| 3060 | public function setHoraireHebdoSal(?float $horaireHebdoSal): AttestationAssedic { |
||
| 3064 | |||
| 3065 | /** |
||
| 3066 | * Set the indemn autres. |
||
| 3067 | * |
||
| 3068 | * @param float|null $indemnAutres The indemn autres. |
||
| 3069 | * @return AttestationAssedic Returns this Attestation assedic. |
||
| 3070 | */ |
||
| 3071 | public function setIndemnAutres(?float $indemnAutres): AttestationAssedic { |
||
| 3075 | |||
| 3076 | /** |
||
| 3077 | * Set the indemn clientele. |
||
| 3078 | * |
||
| 3079 | * @param float|null $indemnClientele The indemn clientele. |
||
| 3080 | * @return AttestationAssedic Returns this Attestation assedic. |
||
| 3081 | */ |
||
| 3082 | public function setIndemnClientele(?float $indemnClientele): AttestationAssedic { |
||
| 3086 | |||
| 3087 | /** |
||
| 3088 | * Set the indemn compens cp. |
||
| 3089 | * |
||
| 3090 | * @param float|null $indemnCompensCp The indemn compens cp. |
||
| 3091 | * @return AttestationAssedic Returns this Attestation assedic. |
||
| 3092 | */ |
||
| 3093 | public function setIndemnCompensCp(?float $indemnCompensCp): AttestationAssedic { |
||
| 3097 | |||
| 3098 | /** |
||
| 3099 | * Set the indemn compens preavis. |
||
| 3100 | * |
||
| 3101 | * @param float|null $indemnCompensPreavis The indemn compens preavis. |
||
| 3102 | * @return AttestationAssedic Returns this Attestation assedic. |
||
| 3103 | */ |
||
| 3104 | public function setIndemnCompensPreavis(?float $indemnCompensPreavis): AttestationAssedic { |
||
| 3108 | |||
| 3109 | /** |
||
| 3110 | * Set the indemn depart retraite. |
||
| 3111 | * |
||
| 3112 | * @param float|null $indemnDepartRetraite The indemn depart retraite. |
||
| 3113 | * @return AttestationAssedic Returns this Attestation assedic. |
||
| 3114 | */ |
||
| 3115 | public function setIndemnDepartRetraite(?float $indemnDepartRetraite): AttestationAssedic { |
||
| 3119 | |||
| 3120 | /** |
||
| 3121 | * Set the indemn due sinistre. |
||
| 3122 | * |
||
| 3123 | * @param float|null $indemnDueSinistre The indemn due sinistre. |
||
| 3124 | * @return AttestationAssedic Returns this Attestation assedic. |
||
| 3125 | */ |
||
| 3126 | public function setIndemnDueSinistre(?float $indemnDueSinistre): AttestationAssedic { |
||
| 3130 | |||
| 3131 | /** |
||
| 3132 | * Set the indemn fin cdd. |
||
| 3133 | * |
||
| 3134 | * @param float|null $indemnFinCdd The indemn fin cdd. |
||
| 3135 | * @return AttestationAssedic Returns this Attestation assedic. |
||
| 3136 | */ |
||
| 3137 | public function setIndemnFinCdd(?float $indemnFinCdd): AttestationAssedic { |
||
| 3141 | |||
| 3142 | /** |
||
| 3143 | * Set the indemn fin cne. |
||
| 3144 | * |
||
| 3145 | * @param float|null $indemnFinCne The indemn fin cne. |
||
| 3146 | * @return AttestationAssedic Returns this Attestation assedic. |
||
| 3147 | */ |
||
| 3148 | public function setIndemnFinCne(?float $indemnFinCne): AttestationAssedic { |
||
| 3152 | |||
| 3153 | /** |
||
| 3154 | * Set the indemn fin mission. |
||
| 3155 | * |
||
| 3156 | * @param float|null $indemnFinMission The indemn fin mission. |
||
| 3157 | * @return AttestationAssedic Returns this Attestation assedic. |
||
| 3158 | */ |
||
| 3159 | public function setIndemnFinMission(?float $indemnFinMission): AttestationAssedic { |
||
| 3163 | |||
| 3164 | /** |
||
| 3165 | * Set the indemn journalistes. |
||
| 3166 | * |
||
| 3167 | * @param float|null $indemnJournalistes The indemn journalistes. |
||
| 3168 | * @return AttestationAssedic Returns this Attestation assedic. |
||
| 3169 | */ |
||
| 3170 | public function setIndemnJournalistes(?float $indemnJournalistes): AttestationAssedic { |
||
| 3174 | |||
| 3175 | /** |
||
| 3176 | * Set the indemn licens. |
||
| 3177 | * |
||
| 3178 | * @param float|null $indemnLicens The indemn licens. |
||
| 3179 | * @return AttestationAssedic Returns this Attestation assedic. |
||
| 3180 | */ |
||
| 3181 | public function setIndemnLicens(?float $indemnLicens): AttestationAssedic { |
||
| 3185 | |||
| 3186 | /** |
||
| 3187 | * Set the indemn navig. |
||
| 3188 | * |
||
| 3189 | * @param float|null $indemnNavig The indemn navig. |
||
| 3190 | * @return AttestationAssedic Returns this Attestation assedic. |
||
| 3191 | */ |
||
| 3192 | public function setIndemnNavig(?float $indemnNavig): AttestationAssedic { |
||
| 3196 | |||
| 3197 | /** |
||
| 3198 | * Set the indemn rupt conv. |
||
| 3199 | * |
||
| 3200 | * @param float|null $indemnRuptConv The indemn rupt conv. |
||
| 3201 | * @return AttestationAssedic Returns this Attestation assedic. |
||
| 3202 | */ |
||
| 3203 | public function setIndemnRuptConv(?float $indemnRuptConv): AttestationAssedic { |
||
| 3207 | |||
| 3208 | /** |
||
| 3209 | * Set the indemn speci licens. |
||
| 3210 | * |
||
| 3211 | * @param float|null $indemnSpeciLicens The indemn speci licens. |
||
| 3212 | * @return AttestationAssedic Returns this Attestation assedic. |
||
| 3213 | */ |
||
| 3214 | public function setIndemnSpeciLicens(?float $indemnSpeciLicens): AttestationAssedic { |
||
| 3218 | |||
| 3219 | /** |
||
| 3220 | * Set the indemn specif licens. |
||
| 3221 | * |
||
| 3222 | * @param float|null $indemnSpecifLicens The indemn specif licens. |
||
| 3223 | * @return AttestationAssedic Returns this Attestation assedic. |
||
| 3224 | */ |
||
| 3225 | public function setIndemnSpecifLicens(?float $indemnSpecifLicens): AttestationAssedic { |
||
| 3229 | |||
| 3230 | /** |
||
| 3231 | * Set the indemn suppl licens. |
||
| 3232 | * |
||
| 3233 | * @param float|null $indemnSupplLicens The indemn suppl licens. |
||
| 3234 | * @return AttestationAssedic Returns this Attestation assedic. |
||
| 3235 | */ |
||
| 3236 | public function setIndemnSupplLicens(?float $indemnSupplLicens): AttestationAssedic { |
||
| 3240 | |||
| 3241 | /** |
||
| 3242 | * Set the indemn versee apprenti. |
||
| 3243 | * |
||
| 3244 | * @param float|null $indemnVerseeApprenti The indemn versee apprenti. |
||
| 3245 | * @return AttestationAssedic Returns this Attestation assedic. |
||
| 3246 | */ |
||
| 3247 | public function setIndemnVerseeApprenti(?float $indemnVerseeApprenti): AttestationAssedic { |
||
| 3251 | |||
| 3252 | /** |
||
| 3253 | * Set the licencie55ans. |
||
| 3254 | * |
||
| 3255 | * @param bool|null $licencie55ans The licencie55ans. |
||
| 3256 | * @return AttestationAssedic Returns this Attestation assedic. |
||
| 3257 | */ |
||
| 3258 | public function setLicencie55ans(?bool $licencie55ans): AttestationAssedic { |
||
| 3262 | |||
| 3263 | /** |
||
| 3264 | * Set the licencie plan social. |
||
| 3265 | * |
||
| 3266 | * @param bool|null $licenciePlanSocial The licencie plan social. |
||
| 3267 | * @return AttestationAssedic Returns this Attestation assedic. |
||
| 3268 | */ |
||
| 3269 | public function setLicenciePlanSocial(?bool $licenciePlanSocial): AttestationAssedic { |
||
| 3273 | |||
| 3274 | /** |
||
| 3275 | * Set the lien document. |
||
| 3276 | * |
||
| 3277 | * @param string|null $lienDocument The lien document. |
||
| 3278 | * @return AttestationAssedic Returns this Attestation assedic. |
||
| 3279 | */ |
||
| 3280 | public function setLienDocument(?string $lienDocument): AttestationAssedic { |
||
| 3284 | |||
| 3285 | /** |
||
| 3286 | * Set the lien parente. |
||
| 3287 | * |
||
| 3288 | * @param string|null $lienParente The lien parente. |
||
| 3289 | * @return AttestationAssedic Returns this Attestation assedic. |
||
| 3290 | */ |
||
| 3291 | public function setLienParente(?string $lienParente): AttestationAssedic { |
||
| 3295 | |||
| 3296 | /** |
||
| 3297 | * Set the motif difference. |
||
| 3298 | * |
||
| 3299 | * @param string|null $motifDifference The motif difference. |
||
| 3300 | * @return AttestationAssedic Returns this Attestation assedic. |
||
| 3301 | */ |
||
| 3302 | public function setMotifDifference(?string $motifDifference): AttestationAssedic { |
||
| 3306 | |||
| 3307 | /** |
||
| 3308 | * Set the motif non paie iccp. |
||
| 3309 | * |
||
| 3310 | * @param string|null $motifNonPaieIccp The motif non paie iccp. |
||
| 3311 | * @return AttestationAssedic Returns this Attestation assedic. |
||
| 3312 | */ |
||
| 3313 | public function setMotifNonPaieIccp(?string $motifNonPaieIccp): AttestationAssedic { |
||
| 3317 | |||
| 3318 | /** |
||
| 3319 | * Set the motif non paiement. |
||
| 3320 | * |
||
| 3321 | * @param string|null $motifNonPaiement The motif non paiement. |
||
| 3322 | * @return AttestationAssedic Returns this Attestation assedic. |
||
| 3323 | */ |
||
| 3324 | public function setMotifNonPaiement(?string $motifNonPaiement): AttestationAssedic { |
||
| 3328 | |||
| 3329 | /** |
||
| 3330 | * Set the motif rupture. |
||
| 3331 | * |
||
| 3332 | * @param string|null $motifRupture The motif rupture. |
||
| 3333 | * @return AttestationAssedic Returns this Attestation assedic. |
||
| 3334 | */ |
||
| 3335 | public function setMotifRupture(?string $motifRupture): AttestationAssedic { |
||
| 3339 | |||
| 3340 | /** |
||
| 3341 | * Set the mt idemn conv col. |
||
| 3342 | * |
||
| 3343 | * @param float|null $mtIdemnConvCol The mt idemn conv col. |
||
| 3344 | * @return AttestationAssedic Returns this Attestation assedic. |
||
| 3345 | */ |
||
| 3346 | public function setMtIdemnConvCol(?float $mtIdemnConvCol): AttestationAssedic { |
||
| 3350 | |||
| 3351 | /** |
||
| 3352 | * Set the mt idemn transac. |
||
| 3353 | * |
||
| 3354 | * @param float|null $mtIdemnTransac The mt idemn transac. |
||
| 3355 | * @return AttestationAssedic Returns this Attestation assedic. |
||
| 3356 | */ |
||
| 3357 | public function setMtIdemnTransac(?float $mtIdemnTransac): AttestationAssedic { |
||
| 3361 | |||
| 3362 | /** |
||
| 3363 | * Set the naf. |
||
| 3364 | * |
||
| 3365 | * @param string|null $naf The naf. |
||
| 3366 | * @return AttestationAssedic Returns this Attestation assedic. |
||
| 3367 | */ |
||
| 3368 | public function setNaf(?string $naf): AttestationAssedic { |
||
| 3372 | |||
| 3373 | /** |
||
| 3374 | * Set the nir. |
||
| 3375 | * |
||
| 3376 | * @param string|null $nir The nir. |
||
| 3377 | * @return AttestationAssedic Returns this Attestation assedic. |
||
| 3378 | */ |
||
| 3379 | public function setNir(?string $nir): AttestationAssedic { |
||
| 3383 | |||
| 3384 | /** |
||
| 3385 | * Set the nature contrat. |
||
| 3386 | * |
||
| 3387 | * @param string|null $natureContrat The nature contrat. |
||
| 3388 | * @return AttestationAssedic Returns this Attestation assedic. |
||
| 3389 | */ |
||
| 3390 | public function setNatureContrat(?string $natureContrat): AttestationAssedic { |
||
| 3394 | |||
| 3395 | /** |
||
| 3396 | * Set the nb jours ouvrables. |
||
| 3397 | * |
||
| 3398 | * @param float|null $nbJoursOuvrables The nb jours ouvrables. |
||
| 3399 | * @return AttestationAssedic Returns this Attestation assedic. |
||
| 3400 | */ |
||
| 3401 | public function setNbJoursOuvrables(?float $nbJoursOuvrables): AttestationAssedic { |
||
| 3405 | |||
| 3406 | /** |
||
| 3407 | * Set the niveau qualif. |
||
| 3408 | * |
||
| 3409 | * @param string|null $niveauQualif The niveau qualif. |
||
| 3410 | * @return AttestationAssedic Returns this Attestation assedic. |
||
| 3411 | */ |
||
| 3412 | public function setNiveauQualif(?string $niveauQualif): AttestationAssedic { |
||
| 3416 | |||
| 3417 | /** |
||
| 3418 | * Set the nom ass chom. |
||
| 3419 | * |
||
| 3420 | * @param string|null $nomAssChom The nom ass chom. |
||
| 3421 | * @return AttestationAssedic Returns this Attestation assedic. |
||
| 3422 | */ |
||
| 3423 | public function setNomAssChom(?string $nomAssChom): AttestationAssedic { |
||
| 3427 | |||
| 3428 | /** |
||
| 3429 | * Set the nom employe. |
||
| 3430 | * |
||
| 3431 | * @param string|null $nomEmploye The nom employe. |
||
| 3432 | * @return AttestationAssedic Returns this Attestation assedic. |
||
| 3433 | */ |
||
| 3434 | public function setNomEmploye(?string $nomEmploye): AttestationAssedic { |
||
| 3438 | |||
| 3439 | /** |
||
| 3440 | * Set the nom naissance. |
||
| 3441 | * |
||
| 3442 | * @param string|null $nomNaissance The nom naissance. |
||
| 3443 | * @return AttestationAssedic Returns this Attestation assedic. |
||
| 3444 | */ |
||
| 3445 | public function setNomNaissance(?string $nomNaissance): AttestationAssedic { |
||
| 3449 | |||
| 3450 | /** |
||
| 3451 | * Set the nom special secu. |
||
| 3452 | * |
||
| 3453 | * @param string|null $nomSpecialSecu The nom special secu. |
||
| 3454 | * @return AttestationAssedic Returns this Attestation assedic. |
||
| 3455 | */ |
||
| 3456 | public function setNomSpecialSecu(?string $nomSpecialSecu): AttestationAssedic { |
||
| 3460 | |||
| 3461 | /** |
||
| 3462 | * Set the nouvelle attest. |
||
| 3463 | * |
||
| 3464 | * @param bool|null $nouvelleAttest The nouvelle attest. |
||
| 3465 | * @return AttestationAssedic Returns this Attestation assedic. |
||
| 3466 | */ |
||
| 3467 | public function setNouvelleAttest(?bool $nouvelleAttest): AttestationAssedic { |
||
| 3471 | |||
| 3472 | /** |
||
| 3473 | * Set the num ass chom. |
||
| 3474 | * |
||
| 3475 | * @param string|null $numAssChom The num ass chom. |
||
| 3476 | * @return AttestationAssedic Returns this Attestation assedic. |
||
| 3477 | */ |
||
| 3478 | public function setNumAssChom(?string $numAssChom): AttestationAssedic { |
||
| 3482 | |||
| 3483 | /** |
||
| 3484 | * Set the num convention fne. |
||
| 3485 | * |
||
| 3486 | * @param string|null $numConventionFne The num convention fne. |
||
| 3487 | * @return AttestationAssedic Returns this Attestation assedic. |
||
| 3488 | */ |
||
| 3489 | public function setNumConventionFne(?string $numConventionFne): AttestationAssedic { |
||
| 3493 | |||
| 3494 | /** |
||
| 3495 | * Set the num convention gestion. |
||
| 3496 | * |
||
| 3497 | * @param string|null $numConventionGestion The num convention gestion. |
||
| 3498 | * @return AttestationAssedic Returns this Attestation assedic. |
||
| 3499 | */ |
||
| 3500 | public function setNumConventionGestion(?string $numConventionGestion): AttestationAssedic { |
||
| 3504 | |||
| 3505 | /** |
||
| 3506 | * Set the num special secu. |
||
| 3507 | * |
||
| 3508 | * @param string|null $numSpecialSecu The num special secu. |
||
| 3509 | * @return AttestationAssedic Returns this Attestation assedic. |
||
| 3510 | */ |
||
| 3511 | public function setNumSpecialSecu(?string $numSpecialSecu): AttestationAssedic { |
||
| 3515 | |||
| 3516 | /** |
||
| 3517 | * Set the numero attestation. |
||
| 3518 | * |
||
| 3519 | * @param string|null $numeroAttestation The numero attestation. |
||
| 3520 | * @return AttestationAssedic Returns this Attestation assedic. |
||
| 3521 | */ |
||
| 3522 | public function setNumeroAttestation(?string $numeroAttestation): AttestationAssedic { |
||
| 3526 | |||
| 3527 | /** |
||
| 3528 | * Set the numero employe. |
||
| 3529 | * |
||
| 3530 | * @param string|null $numeroEmploye The numero employe. |
||
| 3531 | * @return AttestationAssedic Returns this Attestation assedic. |
||
| 3532 | */ |
||
| 3533 | public function setNumeroEmploye(?string $numeroEmploye): AttestationAssedic { |
||
| 3537 | |||
| 3538 | /** |
||
| 3539 | * Set the organisme ass chom. |
||
| 3540 | * |
||
| 3541 | * @param string|null $organismeAssChom The organisme ass chom. |
||
| 3542 | * @return AttestationAssedic Returns this Attestation assedic. |
||
| 3543 | */ |
||
| 3544 | public function setOrganismeAssChom(?string $organismeAssChom): AttestationAssedic { |
||
| 3548 | |||
| 3549 | /** |
||
| 3550 | * Set the preavis effectue. |
||
| 3551 | * |
||
| 3552 | * @param bool|null $preavisEffectue The preavis effectue. |
||
| 3553 | * @return AttestationAssedic Returns this Attestation assedic. |
||
| 3554 | */ |
||
| 3555 | public function setPreavisEffectue(?bool $preavisEffectue): AttestationAssedic { |
||
| 3559 | |||
| 3560 | /** |
||
| 3561 | * Set the preavis effectue deb. |
||
| 3562 | * |
||
| 3563 | * @param DateTime|null $preavisEffectueDeb The preavis effectue deb. |
||
| 3564 | * @return AttestationAssedic Returns this Attestation assedic. |
||
| 3565 | */ |
||
| 3566 | public function setPreavisEffectueDeb(?DateTime $preavisEffectueDeb): AttestationAssedic { |
||
| 3570 | |||
| 3571 | /** |
||
| 3572 | * Set the preavis effectue fin. |
||
| 3573 | * |
||
| 3574 | * @param DateTime|null $preavisEffectueFin The preavis effectue fin. |
||
| 3575 | * @return AttestationAssedic Returns this Attestation assedic. |
||
| 3576 | */ |
||
| 3577 | public function setPreavisEffectueFin(?DateTime $preavisEffectueFin): AttestationAssedic { |
||
| 3581 | |||
| 3582 | /** |
||
| 3583 | * Set the preavis effectue paye. |
||
| 3584 | * |
||
| 3585 | * @param bool|null $preavisEffectuePaye The preavis effectue paye. |
||
| 3586 | * @return AttestationAssedic Returns this Attestation assedic. |
||
| 3587 | */ |
||
| 3588 | public function setPreavisEffectuePaye(?bool $preavisEffectuePaye): AttestationAssedic { |
||
| 3592 | |||
| 3593 | /** |
||
| 3594 | * Set the preavis non effectue. |
||
| 3595 | * |
||
| 3596 | * @param bool|null $preavisNonEffectue The preavis non effectue. |
||
| 3597 | * @return AttestationAssedic Returns this Attestation assedic. |
||
| 3598 | */ |
||
| 3599 | public function setPreavisNonEffectue(?bool $preavisNonEffectue): AttestationAssedic { |
||
| 3603 | |||
| 3604 | /** |
||
| 3605 | * Set the preavis non effectue deb. |
||
| 3606 | * |
||
| 3607 | * @param DateTime|null $preavisNonEffectueDeb The preavis non effectue deb. |
||
| 3608 | * @return AttestationAssedic Returns this Attestation assedic. |
||
| 3609 | */ |
||
| 3610 | public function setPreavisNonEffectueDeb(?DateTime $preavisNonEffectueDeb): AttestationAssedic { |
||
| 3614 | |||
| 3615 | /** |
||
| 3616 | * Set the preavis non effectue fin. |
||
| 3617 | * |
||
| 3618 | * @param DateTime|null $preavisNonEffectueFin The preavis non effectue fin. |
||
| 3619 | * @return AttestationAssedic Returns this Attestation assedic. |
||
| 3620 | */ |
||
| 3621 | public function setPreavisNonEffectueFin(?DateTime $preavisNonEffectueFin): AttestationAssedic { |
||
| 3625 | |||
| 3626 | /** |
||
| 3627 | * Set the preavis non effectue paye. |
||
| 3628 | * |
||
| 3629 | * @param bool|null $preavisNonEffectuePaye The preavis non effectue paye. |
||
| 3630 | * @return AttestationAssedic Returns this Attestation assedic. |
||
| 3631 | */ |
||
| 3632 | public function setPreavisNonEffectuePaye(?bool $preavisNonEffectuePaye): AttestationAssedic { |
||
| 3636 | |||
| 3637 | /** |
||
| 3638 | * Set the precompte stc. |
||
| 3639 | * |
||
| 3640 | * @param float|null $precompteStc The precompte stc. |
||
| 3641 | * @return AttestationAssedic Returns this Attestation assedic. |
||
| 3642 | */ |
||
| 3643 | public function setPrecompteStc(?float $precompteStc): AttestationAssedic { |
||
| 3647 | |||
| 3648 | /** |
||
| 3649 | * Set the prenom. |
||
| 3650 | * |
||
| 3651 | * @param string|null $prenom The prenom. |
||
| 3652 | * @return AttestationAssedic Returns this Attestation assedic. |
||
| 3653 | */ |
||
| 3654 | public function setPrenom(?string $prenom): AttestationAssedic { |
||
| 3658 | |||
| 3659 | /** |
||
| 3660 | * Set the qualite emploi. |
||
| 3661 | * |
||
| 3662 | * @param string|null $qualiteEmploi The qualite emploi. |
||
| 3663 | * @return AttestationAssedic Returns this Attestation assedic. |
||
| 3664 | */ |
||
| 3665 | public function setQualiteEmploi(?string $qualiteEmploi): AttestationAssedic { |
||
| 3669 | |||
| 3670 | /** |
||
| 3671 | * Set the reclassement. |
||
| 3672 | * |
||
| 3673 | * @param bool|null $reclassement The reclassement. |
||
| 3674 | * @return AttestationAssedic Returns this Attestation assedic. |
||
| 3675 | */ |
||
| 3676 | public function setReclassement(?bool $reclassement): AttestationAssedic { |
||
| 3680 | |||
| 3681 | /** |
||
| 3682 | * Set the refus salarie. |
||
| 3683 | * |
||
| 3684 | * @param bool|null $refusSalarie The refus salarie. |
||
| 3685 | * @return AttestationAssedic Returns this Attestation assedic. |
||
| 3686 | */ |
||
| 3687 | public function setRefusSalarie(?bool $refusSalarie): AttestationAssedic { |
||
| 3691 | |||
| 3692 | /** |
||
| 3693 | * Set the retraite agirc. |
||
| 3694 | * |
||
| 3695 | * @param string|null $retraiteAgirc The retraite agirc. |
||
| 3696 | * @return AttestationAssedic Returns this Attestation assedic. |
||
| 3697 | */ |
||
| 3698 | public function setRetraiteAgirc(?string $retraiteAgirc): AttestationAssedic { |
||
| 3702 | |||
| 3703 | /** |
||
| 3704 | * Set the retraite agirc compl. |
||
| 3705 | * |
||
| 3706 | * @param string|null $retraiteAgircCompl The retraite agirc compl. |
||
| 3707 | * @return AttestationAssedic Returns this Attestation assedic. |
||
| 3708 | */ |
||
| 3709 | public function setRetraiteAgircCompl(?string $retraiteAgircCompl): AttestationAssedic { |
||
| 3713 | |||
| 3714 | /** |
||
| 3715 | * Set the retraite arrco. |
||
| 3716 | * |
||
| 3717 | * @param string|null $retraiteArrco The retraite arrco. |
||
| 3718 | * @return AttestationAssedic Returns this Attestation assedic. |
||
| 3719 | */ |
||
| 3720 | public function setRetraiteArrco(?string $retraiteArrco): AttestationAssedic { |
||
| 3724 | |||
| 3725 | /** |
||
| 3726 | * Set the retraite arrco compl. |
||
| 3727 | * |
||
| 3728 | * @param string|null $retraiteArrcoCompl The retraite arrco compl. |
||
| 3729 | * @return AttestationAssedic Returns this Attestation assedic. |
||
| 3730 | */ |
||
| 3731 | public function setRetraiteArrcoCompl(?string $retraiteArrcoCompl): AttestationAssedic { |
||
| 3735 | |||
| 3736 | /** |
||
| 3737 | * Set the retraite autre. |
||
| 3738 | * |
||
| 3739 | * @param string|null $retraiteAutre The retraite autre. |
||
| 3740 | * @return AttestationAssedic Returns this Attestation assedic. |
||
| 3741 | */ |
||
| 3742 | public function setRetraiteAutre(?string $retraiteAutre): AttestationAssedic { |
||
| 3746 | |||
| 3747 | /** |
||
| 3748 | * Set the retraite autre compl. |
||
| 3749 | * |
||
| 3750 | * @param string|null $retraiteAutreCompl The retraite autre compl. |
||
| 3751 | * @return AttestationAssedic Returns this Attestation assedic. |
||
| 3752 | */ |
||
| 3753 | public function setRetraiteAutreCompl(?string $retraiteAutreCompl): AttestationAssedic { |
||
| 3757 | |||
| 3758 | /** |
||
| 3759 | * Set the siret. |
||
| 3760 | * |
||
| 3761 | * @param string|null $siret The siret. |
||
| 3762 | * @return AttestationAssedic Returns this Attestation assedic. |
||
| 3763 | */ |
||
| 3764 | public function setSiret(?string $siret): AttestationAssedic { |
||
| 3768 | |||
| 3769 | /** |
||
| 3770 | * Set the salaire brut. |
||
| 3771 | * |
||
| 3772 | * @param float|null $salaireBrut The salaire brut. |
||
| 3773 | * @return AttestationAssedic Returns this Attestation assedic. |
||
| 3774 | */ |
||
| 3775 | public function setSalaireBrut(?float $salaireBrut): AttestationAssedic { |
||
| 3779 | |||
| 3780 | /** |
||
| 3781 | * Set the signature code qualite. |
||
| 3782 | * |
||
| 3783 | * @param string|null $signatureCodeQualite The signature code qualite. |
||
| 3784 | * @return AttestationAssedic Returns this Attestation assedic. |
||
| 3785 | */ |
||
| 3786 | public function setSignatureCodeQualite(?string $signatureCodeQualite): AttestationAssedic { |
||
| 3790 | |||
| 3791 | /** |
||
| 3792 | * Set the signature contact. |
||
| 3793 | * |
||
| 3794 | * @param string|null $signatureContact The signature contact. |
||
| 3795 | * @return AttestationAssedic Returns this Attestation assedic. |
||
| 3796 | */ |
||
| 3797 | public function setSignatureContact(?string $signatureContact): AttestationAssedic { |
||
| 3801 | |||
| 3802 | /** |
||
| 3803 | * Set the signature date. |
||
| 3804 | * |
||
| 3805 | * @param DateTime|null $signatureDate The signature date. |
||
| 3806 | * @return AttestationAssedic Returns this Attestation assedic. |
||
| 3807 | */ |
||
| 3808 | public function setSignatureDate(?DateTime $signatureDate): AttestationAssedic { |
||
| 3812 | |||
| 3813 | /** |
||
| 3814 | * Set the signature nom. |
||
| 3815 | * |
||
| 3816 | * @param string|null $signatureNom The signature nom. |
||
| 3817 | * @return AttestationAssedic Returns this Attestation assedic. |
||
| 3818 | */ |
||
| 3819 | public function setSignatureNom(?string $signatureNom): AttestationAssedic { |
||
| 3823 | |||
| 3824 | /** |
||
| 3825 | * Set the signature prenom. |
||
| 3826 | * |
||
| 3827 | * @param string|null $signaturePrenom The signature prenom. |
||
| 3828 | * @return AttestationAssedic Returns this Attestation assedic. |
||
| 3829 | */ |
||
| 3830 | public function setSignaturePrenom(?string $signaturePrenom): AttestationAssedic { |
||
| 3834 | |||
| 3835 | /** |
||
| 3836 | * Set the signature qualite. |
||
| 3837 | * |
||
| 3838 | * @param string|null $signatureQualite The signature qualite. |
||
| 3839 | * @return AttestationAssedic Returns this Attestation assedic. |
||
| 3840 | */ |
||
| 3841 | public function setSignatureQualite(?string $signatureQualite): AttestationAssedic { |
||
| 3845 | |||
| 3846 | /** |
||
| 3847 | * Set the signature tel. |
||
| 3848 | * |
||
| 3849 | * @param string|null $signatureTel The signature tel. |
||
| 3850 | * @return AttestationAssedic Returns this Attestation assedic. |
||
| 3851 | */ |
||
| 3852 | public function setSignatureTel(?string $signatureTel): AttestationAssedic { |
||
| 3856 | |||
| 3857 | /** |
||
| 3858 | * Set the signature ville. |
||
| 3859 | * |
||
| 3860 | * @param string|null $signatureVille The signature ville. |
||
| 3861 | * @return AttestationAssedic Returns this Attestation assedic. |
||
| 3862 | */ |
||
| 3863 | public function setSignatureVille(?string $signatureVille): AttestationAssedic { |
||
| 3867 | |||
| 3868 | /** |
||
| 3869 | * Set the solde tout compte. |
||
| 3870 | * |
||
| 3871 | * @param string|null $soldeToutCompte The solde tout compte. |
||
| 3872 | * @return AttestationAssedic Returns this Attestation assedic. |
||
| 3873 | */ |
||
| 3874 | public function setSoldeToutCompte(?string $soldeToutCompte): AttestationAssedic { |
||
| 3878 | |||
| 3879 | /** |
||
| 3880 | * Set the sommes periode deb. |
||
| 3881 | * |
||
| 3882 | * @param DateTime|null $sommesPeriodeDeb The sommes periode deb. |
||
| 3883 | * @return AttestationAssedic Returns this Attestation assedic. |
||
| 3884 | */ |
||
| 3885 | public function setSommesPeriodeDeb(?DateTime $sommesPeriodeDeb): AttestationAssedic { |
||
| 3889 | |||
| 3890 | /** |
||
| 3891 | * Set the sommes periode deb2. |
||
| 3892 | * |
||
| 3893 | * @param DateTime|null $sommesPeriodeDeb2 The sommes periode deb2. |
||
| 3894 | * @return AttestationAssedic Returns this Attestation assedic. |
||
| 3895 | */ |
||
| 3896 | public function setSommesPeriodeDeb2(?DateTime $sommesPeriodeDeb2): AttestationAssedic { |
||
| 3900 | |||
| 3901 | /** |
||
| 3902 | * Set the sommes periode fin. |
||
| 3903 | * |
||
| 3904 | * @param DateTime|null $sommesPeriodeFin The sommes periode fin. |
||
| 3905 | * @return AttestationAssedic Returns this Attestation assedic. |
||
| 3906 | */ |
||
| 3907 | public function setSommesPeriodeFin(?DateTime $sommesPeriodeFin): AttestationAssedic { |
||
| 3911 | |||
| 3912 | /** |
||
| 3913 | * Set the sommes periode fin2. |
||
| 3914 | * |
||
| 3915 | * @param DateTime|null $sommesPeriodeFin2 The sommes periode fin2. |
||
| 3916 | * @return AttestationAssedic Returns this Attestation assedic. |
||
| 3917 | */ |
||
| 3918 | public function setSommesPeriodeFin2(?DateTime $sommesPeriodeFin2): AttestationAssedic { |
||
| 3922 | |||
| 3923 | /** |
||
| 3924 | * Set the special secu. |
||
| 3925 | * |
||
| 3926 | * @param string|null $specialSecu The special secu. |
||
| 3927 | * @return AttestationAssedic Returns this Attestation assedic. |
||
| 3928 | */ |
||
| 3929 | public function setSpecialSecu(?string $specialSecu): AttestationAssedic { |
||
| 3933 | |||
| 3934 | /** |
||
| 3935 | * Set the statut. |
||
| 3936 | * |
||
| 3937 | * @param string|null $statut The statut. |
||
| 3938 | * @return AttestationAssedic Returns this Attestation assedic. |
||
| 3939 | */ |
||
| 3940 | public function setStatut(?string $statut): AttestationAssedic { |
||
| 3944 | |||
| 3945 | /** |
||
| 3946 | * Set the statut cadre. |
||
| 3947 | * |
||
| 3948 | * @param bool|null $statutCadre The statut cadre. |
||
| 3949 | * @return AttestationAssedic Returns this Attestation assedic. |
||
| 3950 | */ |
||
| 3951 | public function setStatutCadre(?bool $statutCadre): AttestationAssedic { |
||
| 3955 | |||
| 3956 | /** |
||
| 3957 | * Set the statut part autre. |
||
| 3958 | * |
||
| 3959 | * @param string|null $statutPartAutre The statut part autre. |
||
| 3960 | * @return AttestationAssedic Returns this Attestation assedic. |
||
| 3961 | */ |
||
| 3962 | public function setStatutPartAutre(?string $statutPartAutre): AttestationAssedic { |
||
| 3966 | |||
| 3967 | /** |
||
| 3968 | * Set the titre. |
||
| 3969 | * |
||
| 3970 | * @param string|null $titre The titre. |
||
| 3971 | * @return AttestationAssedic Returns this Attestation assedic. |
||
| 3972 | */ |
||
| 3973 | public function setTitre(?string $titre): AttestationAssedic { |
||
| 3977 | |||
| 3978 | /** |
||
| 3979 | * Set the total sommes. |
||
| 3980 | * |
||
| 3981 | * @param float|null $totalSommes The total sommes. |
||
| 3982 | * @return AttestationAssedic Returns this Attestation assedic. |
||
| 3983 | */ |
||
| 3984 | public function setTotalSommes(?float $totalSommes): AttestationAssedic { |
||
| 3988 | |||
| 3989 | /** |
||
| 3990 | * Set the transaction en cours. |
||
| 3991 | * |
||
| 3992 | * @param bool|null $transactionEnCours The transaction en cours. |
||
| 3993 | * @return AttestationAssedic Returns this Attestation assedic. |
||
| 3994 | */ |
||
| 3995 | public function setTransactionEnCours(?bool $transactionEnCours): AttestationAssedic { |
||
| 3999 | |||
| 4000 | /** |
||
| 4001 | * Set the type assedic. |
||
| 4002 | * |
||
| 4003 | * @param string|null $typeAssedic The type assedic. |
||
| 4004 | * @return AttestationAssedic Returns this Attestation assedic. |
||
| 4005 | */ |
||
| 4006 | public function setTypeAssedic(?string $typeAssedic): AttestationAssedic { |
||
| 4010 | |||
| 4011 | /** |
||
| 4012 | * Set the type diff horaire. |
||
| 4013 | * |
||
| 4014 | * @param string|null $typeDiffHoraire The type diff horaire. |
||
| 4015 | * @return AttestationAssedic Returns this Attestation assedic. |
||
| 4016 | */ |
||
| 4017 | public function setTypeDiffHoraire(?string $typeDiffHoraire): AttestationAssedic { |
||
| 4021 | |||
| 4022 | /** |
||
| 4023 | * Set the type societe. |
||
| 4024 | * |
||
| 4025 | * @param string|null $typeSociete The type societe. |
||
| 4026 | * @return AttestationAssedic Returns this Attestation assedic. |
||
| 4027 | */ |
||
| 4028 | public function setTypeSociete(?string $typeSociete): AttestationAssedic { |
||
| 4032 | |||
| 4033 | /** |
||
| 4034 | * Set the urssaf. |
||
| 4035 | * |
||
| 4036 | * @param string|null $urssaf The urssaf. |
||
| 4037 | * @return AttestationAssedic Returns this Attestation assedic. |
||
| 4038 | */ |
||
| 4039 | public function setUrssaf(?string $urssaf): AttestationAssedic { |
||
| 4043 | |||
| 4044 | /** |
||
| 4045 | * Set the validite convention fne. |
||
| 4046 | * |
||
| 4047 | * @param DateTime|null $validiteConventionFne The validite convention fne. |
||
| 4048 | * @return AttestationAssedic Returns this Attestation assedic. |
||
| 4049 | */ |
||
| 4050 | public function setValiditeConventionFne(?DateTime $validiteConventionFne): AttestationAssedic { |
||
| 4054 | } |
||
| 4055 |