<?php
// src/Entity/Ba.php
namespace App\Entity;
use Doctrine\DBAL\Types\Types;
use Doctrine\ORM\Mapping as ORM;
use Symfony\Component\Validator\Constraints as Assert;
use Symfony\Bridge\Doctrine\Validator\Constraints\UniqueEntity;
use Symfony\Component\Security\Core\User\UserInterface;
use Doctrine\Common\Collections\ArrayCollection;
use Doctrine\Common\Collections\Collection;
/**
* @ORM\Entity()
* @ORM\Table(name="69pixl_ba")
*/
class Ba
{
/**
* @ORM\Id
* @ORM\Column(type="integer")
* @ORM\GeneratedValue(strategy="AUTO")
*/
private $id;
public function getId(): ?int
{
return $this->id;
}
/**
* @ORM\Column(type="string", length=100, nullable=true)
*/
private $numeroAdherent;
/**
* @ORM\Column(type="string", length=50, nullable=true)
*/
private $codeConseiller;
/**
* @ORM\Column(type="boolean", nullable=true)
*/
private $venteADistance;
/**
* @ORM\Column(type="string", length=100, nullable=true)
*/
private $nomConseiller;
/**
* @ORM\Column(type="string", length=30, nullable=true)
*/
private $telConseiller;
/**
* @ORM\Column(type="string", length=100, nullable=true)
*/
private $adherentDistributeur;
/**
* @ORM\Column(type="string", length=20, nullable=true)
*/
private $numeroSiren;
/**
* @ORM\Column(type="string", length=10, nullable=true)
*/
private $sex;
/**
* @ORM\Column(type="string", length=100, nullable=true)
*/
private $nom;
/**
* @ORM\Column(type="string", length=100, nullable=true)
*/
private $prenom;
/**
* @ORM\Column(type="string", length=100, nullable=true)
*/
private $residence;
/**
* @ORM\Column(type="string", length=150, nullable=true)
*/
private $numeroDeVoie;
/**
* @ORM\Column(type="string", length=100, nullable=true)
*/
private $lieuDit;
/**
* @ORM\Column(type="string", length=150, nullable=true)
*/
private $address;
/**
* @ORM\Column(type="string", length=100, nullable=true)
*/
private $codePostal;
/**
* @ORM\Column(type="string", length=100, nullable=true)
*/
private $ville;
/**
* @ORM\Column(type="string", length=100, nullable=true)
*/
private $pays;
/**
* @ORM\Column(type="string", length=30, nullable=true)
*/
private $typeDePieceIdentite;
/**
* @ORM\Column(type="boolean", nullable=true)
*/
private $residenceFrance;
/**
* @ORM\Column(type="string", length=150, nullable=true)
*/
private $fiscaleAddress;
/**
* @ORM\Column(type="string", length=100, nullable=true)
*/
private $fiscaleCodePostal;
/**
* @ORM\Column(type="string", length=50, nullable=true)
*/
private $fiscaleVille;
/**
* @ORM\Column(type="string", length=50, nullable=true)
*/
private $fiscalePays;
/**
* @ORM\Column(type="boolean", nullable=true)
*/
private $adressePostaleDifferente;
/**
* @ORM\Column(type="boolean", nullable=true)
*/
private $greenCard;
/**
* @ORM\Column(type="boolean", nullable=true)
*/
private $residentFiscalPaysAutreFranceEtatUnis;
/**
* @ORM\Column(type="string", length=100, nullable=true)
*/
private $residenceIdentificationFiscalPays;
/**
* @ORM\Column(type="string", length=50, nullable=true)
*/
private $situationFamilliale;
/**
* @ORM\Column(type="string", length=100, nullable=true)
*/
private $profession;
/**
* @ORM\Column(type="integer", nullable=true)
*/
private $professionCspCategory;
/**
* @ORM\Column(type="integer", nullable=true)
*/
private $professionCspSousCategory;
/**
* @ORM\Column(type="string", length=30, nullable=true)
*/
private $numeroSS;
/**
* @ORM\Column(type="string", length=10, nullable=true)
*/
private $cleNumeroSS;
/**
* @ORM\Column(type="string", length=100, nullable=true)
*/
private $nomJeuneFille;
/**
* @ORM\Column(type="datetime", nullable=true)
*/
private $dateDeNaissance;
/**
* @ORM\Column(type="string", length=200, nullable=true)
*/
private $lieuDeNaissance;
/**
* @ORM\Column(type="string", length=100, nullable=true)
*/
private $lieuVilleDeNaissance;
/**
* @ORM\Column(type="string", length=100, nullable=true)
*/
private $lieuCodePostalDeNaissance;
/**
* @ORM\Column(type="string", length=100, nullable=true)
*/
private $lieuPaysDeNaissance;
/**
* @ORM\Column(type="string", length=30, nullable=true)
*/
private $telFixPrefix;
/**
* @ORM\Column(type="string", length=30, nullable=true)
*/
private $telFix;
/**
* @ORM\Column(type="string", length=10, nullable=true)
*/
private $telPhonePrefix;
/**
* @ORM\Column(type="string", length=30, nullable=true)
*/
private $telPhone;
/**
* @ORM\Column(type="string", length=50, nullable=true)
*/
private $email;
/**
* @ORM\Column(type="string", length=50, nullable=true)
*/
private $nationalite;
/**
* @ORM\Column(type="boolean", nullable=true)
*/
private $possedeNationaliteSeconde;
/**
* @ORM\Column(type="string", length=100, nullable=true)
*/
private $nationaliteSeconde;
/**
* @ORM\Column(type="boolean", nullable=true)
*/
private $acceptRecevoirDocumentGarantieEmail;
/**
* @ORM\Column(type="boolean", nullable=true)
*/
private $acceptPropositionCommercialEmail;
/**
* @ORM\Column(type="boolean", nullable=true)
*/
private $acceptPropositionCommercialTelephone;
/**
* @ORM\Column(type="boolean", nullable=true)
*/
private $beneficiezProtectionJuridique;
/**
* @ORM\Column(type="string", length=50, nullable=true)
*/
private $protectionJuridique;
/**
* @ORM\Column(type="string", length=50, nullable=true)
*/
private $protectionJuridiqueOther;
/**
* @ORM\Column(type="string", length=50, nullable=true)
*/
private $protectionJuridiqueMineur;
/**
* @ORM\Column(type="datetime", nullable=true)
*/
private $dateEffetAdhesion;
/**
* @ORM\Column(type="datetime", nullable=true)
*/
private $dateDeLiquidation;
/**
* @ORM\Column(type="integer", nullable=true)
*/
private $ageAdhesion;
/**
* @ORM\Column(type="float", nullable=true)
*/
private $majorationRente;
/**
* @ORM\Column(type="float", nullable=true)
*/
private $versementInitial;
/**
* @ORM\Column(type="boolean", nullable=true)
*/
private $versementInitialDeduit;
/**
* @ORM\Column(type="string", length=50, nullable=true)
*/
private $moyenDeVersement;
/**
* @ORM\Column(type="boolean", nullable=true)
*/
private $versementProgramme;
/**
* @ORM\Column(type="boolean", nullable=true)
*/
private $versementProgrammeDeduit;
/**
* @ORM\Column(type="float", nullable=true)
*/
private $montantVersementPeriodique;
/**
* @ORM\Column(type="string", length=50, nullable=true)
*/
private $moyenDeVersementProgramme;
/**
* @ORM\Column(type="datetime", nullable=true)
*/
private $dateACompterDu;
/**
* @ORM\Column(type="string", length=30, nullable=true)
*/
private $periodicite;
/**
* @ORM\Column(type="string", length=30, nullable=true)
*/
private $versementProgrammePeriodiciteJourDuMois;
/**
* @ORM\Column(type="string", length=30, nullable=true)
*/
private $indexationAnnuelle;
/**
* @ORM\Column(type="string", length=100, nullable=true)
*/
private $optionCapital;
/**
* @ORM\Column(type="string", length=100, nullable=true)
*/
private $titulaireTitre;
/**
* @ORM\Column(type="array", nullable=true)
*/
private $titulaireDe;
/**
* @ORM\Column(type="string", length=30, nullable=true)
*/
private $numeroCarteCombattant;
/**
* @ORM\Column(type="datetime", nullable=true)
*/
private $dateCarteCombattant;
/**
* @ORM\Column(type="datetime", nullable=true)
*/
private $dateReconnaisanceNation;
/**
* @ORM\Column(type="datetime", nullable=true)
*/
private $dateTranscriptionMention;
/**
* @ORM\Column(type="array", nullable=true)
*/
private $conflitConcerne;
/**
* @ORM\Column(type="text", nullable=true)
*/
private $conflitOpexDescription;
/**
* @ORM\Column(type="boolean", nullable=true)
*/
private $repLegal1Use;
/**
* @ORM\Column(type="string", length=100, nullable=true)
*/
private $repLegal1Sex;
/**
* @ORM\Column(type="string", length=30, nullable=true)
*/
private $repLegal1NumeroSS;
/**
* @ORM\Column(type="string", length=10, nullable=true)
*/
private $repLegal1CleNumeroSS;
/**
* @ORM\Column(type="string", length=100, nullable=true)
*/
private $repLegal1Nom;
/**
* @ORM\Column(type="string", length=100, nullable=true)
*/
private $repLegal1Prenoms;
/**
* @ORM\Column(type="datetime", nullable=true)
*/
private $repLegal1DateDeNaissance;
/**
* @ORM\Column(type="string", length=200, nullable=true)
*/
private $repLegal1LieuDeNaissance;
/**
* @ORM\Column(type="string", length=100, nullable=true)
*/
private $repLegal1Nationalite;
/**
* @ORM\Column(type="boolean", nullable=true)
*/
private $repLegal1ResidanceFiscalFrance;
/**
* @ORM\Column(type="string", length=100, nullable=true)
*/
private $repLegal1FiscalAdresse;
/**
* @ORM\Column(type="string", length=100, nullable=true)
*/
private $repLegal1FiscalCodePostal;
/**
* @ORM\Column(type="string", length=100, nullable=true)
*/
private $repLegal1FiscalVille;
/**
* @ORM\Column(type="string", length=100, nullable=true)
*/
private $repLegal1FiscalPays;
/**
* @ORM\Column(type="string", length=100, nullable=true)
*/
private $repLegal1PostaleAdresse;
/**
* @ORM\Column(type="string", length=100, nullable=true)
*/
private $repLegal1PostaleCodePostal;
/**
* @ORM\Column(type="string", length=100, nullable=true)
*/
private $repLegal1PostaleVille;
/**
* @ORM\Column(type="string", length=100, nullable=true)
*/
private $repLegal1PostalePays;
/**
* @ORM\Column(type="string", length=100, nullable=true)
*/
private $repLegal1TelephonePortablePrefix;
/**
* @ORM\Column(type="string", length=100, nullable=true)
*/
private $repLegal1TelephonePortable;
/**
* @ORM\Column(type="string", length=100, nullable=true)
*/
private $repLegal1TelephonePrefix;
/**
* @ORM\Column(type="string", length=100, nullable=true)
*/
private $repLegal1Telephone;
/**
* @ORM\Column(type="string", length=100, nullable=true)
*/
private $repLegal1Email;
/**
* @ORM\Column(type="string", length=100, nullable=true)
*/
private $repLegal1SituationFamiliale;
/**
* @ORM\Column(type="integer", nullable=true)
*/
private $repLegal1NombreEnfant;
/**
* @ORM\Column(type="integer", nullable=true)
*/
private $repLegal1NombreEnfantCharge;
/**
* @ORM\Column(type="string", length=100, nullable=true)
*/
private $repLegal1QualiteDe;
/**
* @ORM\Column(type="boolean", nullable=true)
*/
private $repLegal1PolitiquementExpose;
/**
* @ORM\Column(type="string", length=100, nullable=true)
*/
private $repLegal1PersonnePolitiquementExposeeType;
/**
* @ORM\Column(type="string", length=100, nullable=true)
*/
private $repLegal1PersonnePolitiquementExposeeMaFonction;
/**
* @ORM\Column(type="string", length=100, nullable=true)
*/
private $repLegal1PersonnePolitiquementExposeeEntourageFonction;
/**
* @ORM\Column(type="string", length=100, nullable=true)
*/
private $repLegal1PersonnePolitiquementExposeeEntourageLien;
/**
* @ORM\Column(type="boolean", nullable=true)
*/
private $repLegal1GreenCard;
/**
* @ORM\Column(type="boolean", nullable=true)
*/
private $repLegal1ResidanceFiscalAutrePaysFranceEtatUnis;
/**
* @ORM\Column(type="string", length=100, nullable=true)
*/
private $repLegal1ResidenceIdentificationFiscalPays;
/**
* @ORM\Column(type="boolean", nullable=true)
*/
private $repLegal1AcceptRecevoirDocumentGarantieEmail;
/**
* @ORM\Column(type="boolean", nullable=true)
*/
private $repLegal1AcceptPropositionCommercialEmail;
/**
* @ORM\Column(type="boolean", nullable=true)
*/
private $repLegal1AcceptPropositionCommercialTelephone;
/**
* @ORM\Column(type="boolean", nullable=true)
*/
private $repLegal2Use;
/**
* @ORM\Column(type="string", length=100, nullable=true)
*/
private $repLegal2Sex;
/**
* @ORM\Column(type="string", length=30, nullable=true)
*/
private $repLegal2NumeroSS;
/**
* @ORM\Column(type="string", length=10, nullable=true)
*/
private $repLegal2CleNumeroSS;
/**
* @ORM\Column(type="string", length=100, nullable=true)
*/
private $repLegal2Nom;
/**
* @ORM\Column(type="string", length=100, nullable=true)
*/
private $repLegal2Prenoms;
/**
* @ORM\Column(type="datetime", nullable=true)
*/
private $repLegal2DateDeNaissance;
/**
* @ORM\Column(type="string", length=200, nullable=true)
*/
private $repLegal2LieuDeNaissance;
/**
* @ORM\Column(type="string", length=100, nullable=true)
*/
private $repLegal2Nationalite;
/**
* @ORM\Column(type="boolean", nullable=true)
*/
private $repLegal2ResidanceFiscalFrance;
/**
* @ORM\Column(type="string", length=100, nullable=true)
*/
private $repLegal2FiscalAdresse;
/**
* @ORM\Column(type="string", length=100, nullable=true)
*/
private $repLegal2FiscalCodePostal;
/**
* @ORM\Column(type="string", length=100, nullable=true)
*/
private $repLegal2FiscalVille;
/**
* @ORM\Column(type="string", length=100, nullable=true)
*/
private $repLegal2FiscalPays;
/**
* @ORM\Column(type="string", length=100, nullable=true)
*/
private $repLegal2PostaleAdresse;
/**
* @ORM\Column(type="string", length=100, nullable=true)
*/
private $repLegal2PostaleCodePostal;
/**
* @ORM\Column(type="string", length=100, nullable=true)
*/
private $repLegal2PostaleVille;
/**
* @ORM\Column(type="string", length=100, nullable=true)
*/
private $repLegal2PostalePays;
/**
* @ORM\Column(type="string", length=100, nullable=true)
*/
private $repLegal2TelephonePortablePrefix;
/**
* @ORM\Column(type="string", length=100, nullable=true)
*/
private $repLegal2TelephonePortable;
/**
* @ORM\Column(type="string", length=100, nullable=true)
*/
private $repLegal2TelephonePrefix;
/**
* @ORM\Column(type="string", length=100, nullable=true)
*/
private $repLegal2Telephone;
/**
* @ORM\Column(type="string", length=100, nullable=true)
*/
private $repLegal2Email;
/**
* @ORM\Column(type="string", length=100, nullable=true)
*/
private $repLegal2SituationFamiliale;
/**
* @ORM\Column(type="integer", nullable=true)
*/
private $repLegal2NombreEnfant;
/**
* @ORM\Column(type="integer", nullable=true)
*/
private $repLegal2NombreEnfantCharge;
/**
* @ORM\Column(type="string", length=100, nullable=true)
*/
private $repLegal2QualiteDe;
/**
* @ORM\Column(type="boolean", nullable=true)
*/
private $repLegal2PolitiquementExpose;
/**
* @ORM\Column(type="string", length=100, nullable=true)
*/
private $repLegal2PersonnePolitiquementExposeeType;
/**
* @ORM\Column(type="string", length=100, nullable=true)
*/
private $repLegal2PersonnePolitiquementExposeeMaFonction;
/**
* @ORM\Column(type="string", length=100, nullable=true)
*/
private $repLegal2PersonnePolitiquementExposeeEntourageFonction;
/**
* @ORM\Column(type="string", length=100, nullable=true)
*/
private $repLegal2PersonnePolitiquementExposeeEntourageLien;
/**
* @ORM\Column(type="boolean", nullable=true)
*/
private $repLegal2GreenCard;
/**
* @ORM\Column(type="boolean", nullable=true)
*/
private $repLegal2ResidanceFiscalAutrePaysFranceEtatUnis;
/**
* @ORM\Column(type="string", length=100, nullable=true)
*/
private $repLegal2ResidenceIdentificationFiscalPays;
/**
* @ORM\Column(type="boolean", nullable=true)
*/
private $repLegal2AcceptRecevoirDocumentGarantieEmail;
/**
* @ORM\Column(type="boolean", nullable=true)
*/
private $repLegal2AcceptPropositionCommercialEmail;
/**
* @ORM\Column(type="boolean", nullable=true)
*/
private $repLegal2AcceptPropositionCommercialTelephone;
/**
* @ORM\Column(type="array", nullable=true)
*/
private $jaiDemandeAttributionDe;
/**
* @ORM\Column(type="boolean", nullable=true)
*/
private $engageFournirCopieTitreAttribue;
/**
* @ORM\Column(type="datetime", nullable=true)
*/
private $page2FaisLe;
/**
* @ORM\Column(type="string", length=100, nullable=true)
*/
private $jattesteTitulaireGarantieRetraite;
/**
* @ORM\Column(type="boolean", nullable=true)
*/
private $objectifPrincipalConstitutionRetraite;
/**
* @ORM\Column(type="boolean", nullable=true)
*/
private $fondContratEpargne;
/**
* @ORM\Column(type="datetime", nullable=true)
*/
private $fondContratEpargneDate;
/**
* @ORM\Column(type="string", length=30, nullable=true)
*/
private $fondContratEpargneNumber;
/**
* @ORM\Column(type="text", nullable=true)
*/
private $fondContratEpargneDescription;
/**
* @ORM\Column(type="boolean", nullable=true)
*/
private $fondContratPartSociete;
/**
* @ORM\Column(type="datetime", nullable=true)
*/
private $fondContratPartSocieteDate;
/**
* @ORM\Column(type="string", length=30, nullable=true)
*/
private $fondContratPartSocieteNumber;
/**
* @ORM\Column(type="text", nullable=true)
*/
private $fondContratPartSocieteDescription;
/**
* @ORM\Column(type="boolean", nullable=true)
*/
private $fondContratHeritage;
/**
* @ORM\Column(type="datetime", nullable=true)
*/
private $fondContratHeritageDate;
/**
* @ORM\Column(type="string", length=30, nullable=true)
*/
private $fondContratHeritageNumber;
/**
* @ORM\Column(type="text", nullable=true)
*/
private $fondContratHeritageDescription;
/**
* @ORM\Column(type="boolean", nullable=true)
*/
private $fondContratImmobilier;
/**
* @ORM\Column(type="datetime", nullable=true)
*/
private $fondContratImmobilierDate;
/**
* @ORM\Column(type="string", length=30, nullable=true)
*/
private $fondContratImmobilierNumber;
/**
* @ORM\Column(type="text", nullable=true)
*/
private $fondContratImmobilierDescription;
/**
* @ORM\Column(type="boolean", nullable=true)
*/
private $fondContratRevenuPro;
/**
* @ORM\Column(type="datetime", nullable=true)
*/
private $fondContratRevenuProDate;
/**
* @ORM\Column(type="string", length=30, nullable=true)
*/
private $fondContratRevenuProNumber;
/**
* @ORM\Column(type="text", nullable=true)
*/
private $fondContratRevenuProDescription;
/**
* @ORM\Column(type="boolean", nullable=true)
*/
private $fondContratAutre;
/**
* @ORM\Column(type="datetime", nullable=true)
*/
private $fondContratAutreDate;
/**
* @ORM\Column(type="string", length=30, nullable=true)
*/
private $fondContratAutreNumber;
/**
* @ORM\Column(type="text", nullable=true)
*/
private $fondContratAutreDescription;
/**
* @ORM\Column(type="boolean", nullable=true)
*/
private $typeBeneficiaires;
/**
* @ORM\Column(type="string", length=100, nullable=true)
*/
private $typeBeneficiairesBychoices;
/**
* @ORM\Column(type="boolean", nullable=true)
*/
private $typeBeneficiairesClauseNotariee;
/**
* @ORM\Column(type="string", length=100, nullable=true)
*/
private $typeBeneficiairesClauseNotarieeName;
/**
* @ORM\Column(type="text", nullable=true)
*/
private $typeBeneficiairesClauseNotarieeCoordonnees;
/**
* @ORM\Column(type="boolean", nullable=true)
*/
private $reconnaisEtreInforme;
/**
* @ORM\Column(type="boolean", nullable=true)
*/
private $connaissanceDesStatuts;
/**
* @ORM\Column(type="boolean", nullable=true)
*/
private $reconnaisRenoncer30Jours;
/**
* @ORM\Column(type="boolean", nullable=true)
*/
private $reconnaisAvoirPrisConnaissance;
/**
* @ORM\Column(type="boolean", nullable=true)
*/
private $prendsActeEvolutionPerso;
/**
* @ORM\Column(type="boolean", nullable=true)
*/
private $jeDemandeAdhesionProduit;
/**
* @ORM\Column(type="boolean", nullable=true)
*/
private $jeMengageFournirMerCopieTitreAttribue;
/**
* @ORM\Column(type="boolean", nullable=true)
*/
private $mineurDonDeSommes;
/**
* @ORM\Column(type="boolean", nullable=true)
*/
private $protectionJuridiquePatrimoinePersonneRepresente;
/**
* @ORM\Column(type="boolean", nullable=true)
*/
private $protectionJuridiquePatrimoineRepresentantLegal;
/**
* @ORM\Column(type="datetime", nullable=true)
*/
private $dateSigne;
/**
* @ORM\Column(type="string", length=100, nullable=true)
*/
private $lieuSigne;
/**
* @ORM\Column(type="text", nullable=true)
*/
private $idYouSign;
/* SEPA */
/**
* @ORM\Column(type="string", length=50, nullable=true)
*/
private $sepaStatus;
/**
* @ORM\Column(type="string", length=100, nullable=true)
*/
private $sepaPrenom;
/**
* @ORM\Column(type="string", length=100, nullable=true)
*/
private $sepaNom;
/**
* @ORM\Column(type="text", nullable=true)
*/
private $sepaAdresse;
/**
* @ORM\Column(type="text", nullable=true)
*/
private $sepaCodePostal;
/**
* @ORM\Column(type="text", nullable=true)
*/
private $sepaVille;
/**
* @ORM\Column(type="text", nullable=true)
*/
private $sepaPays;
/**
* @ORM\Column(type="string", length=100, nullable=true)
*/
private $sepaCodeIban;
/**
* @ORM\Column(type="string", length=100, nullable=true)
*/
private $sepaCodeBic;
/**
* @ORM\Column(type="string", length=100, nullable=true)
*/
private $sepaOriginVersmement;
/**
* @ORM\Column(type="datetime", nullable=true)
*/
private $sepaDateSigne;
/**
* @ORM\Column(type="string", length=150, nullable=true)
*/
private $sepaLieuSigne;
/**
* @ORM\Column(type="string", length=30, nullable=true)
*/
private $status;
/**
* @ORM\Column(type="text", nullable=true)
*/
private $urlPdf;
/**
* @ORM\Column(type="text", nullable=true)
*/
private $urlPdfSign;
/**
* @ORM\Column(type="text", nullable=true)
*/
private $sepaUrlPdf;
/**
* @ORM\Column(type="text", nullable=true)
*/
private $sepaUrlPdfSign;
/**
* @ORM\Column(type="text", nullable=true)
*/
private $sepaIdYouSign;
/**
* @var membership[]
* @ORM\OneToOne(targetEntity="App\Entity\Membership", mappedBy="ba")
*/
protected $membership;
/**
* @var OtherContracts[]
* @ORM\OneToMany(targetEntity="App\Entity\OtherContract", mappedBy="ba", cascade={"persist"})
*/
protected $otherContracts;
/**
* @var beneficiaires[]
* @ORM\OneToMany(targetEntity="App\Entity\Beneficiaire", mappedBy="ba", cascade={"persist"})
*/
protected $beneficiaires;
public function __construct()
{
$this->otherContracts = new ArrayCollection();
$this->beneficiaires = new ArrayCollection();
}
public function getMembership(): ?Membership
{
return $this->membership;
}
public function setMembership(?Membership $membership): self
{
$this->membership = $membership;
// set (or unset) the owning side of the relation if necessary
$newUser = null === $membership ? null : $this;
if ($membership->getUser() !== $newUser) {
$membership->setUser($newUser);
}
return $this;
}
public function getNumeroAdherent(): ?string
{
return $this->numeroAdherent;
}
public function setNumeroAdherent(?string $numeroAdherent): self
{
$this->numeroAdherent = $numeroAdherent;
return $this;
}
public function getCodeConseiller(): ?string
{
return $this->codeConseiller;
}
public function setCodeConseiller(?string $codeConseiller): self
{
$this->codeConseiller = $codeConseiller;
return $this;
}
public function getVenteADistance(): ?bool
{
return $this->venteADistance;
}
public function setVenteADistance(?bool $venteADistance): self
{
$this->venteADistance = $venteADistance;
return $this;
}
public function getNomConseiller(): ?string
{
return $this->nomConseiller;
}
public function setNomConseiller(?string $nomConseiller): self
{
$this->nomConseiller = $nomConseiller;
return $this;
}
public function getTelConseiller(): ?string
{
return $this->telConseiller;
}
public function setTelConseiller(?string $telConseiller): self
{
$this->telConseiller = $telConseiller;
return $this;
}
public function getAdherentDistributeur(): ?string
{
return $this->adherentDistributeur;
}
public function setAdherentDistributeur(?string $adherentDistributeur): self
{
$this->adherentDistributeur = $adherentDistributeur;
return $this;
}
public function getNumeroSiren(): ?string
{
return $this->numeroSiren;
}
public function setNumeroSiren(?string $numeroSiren): self
{
$this->numeroSiren = $numeroSiren;
return $this;
}
public function getSex(): ?string
{
return $this->sex;
}
public function setSex(?string $sex): self
{
$this->sex = $sex;
return $this;
}
public function getNom(): ?string
{
return $this->nom;
}
public function setNom(?string $nom): self
{
$this->nom = $nom;
return $this;
}
public function getPrenom(): ?string
{
return $this->prenom;
}
public function setPrenom(?string $prenom): self
{
$this->prenom = $prenom;
return $this;
}
public function getResidence(): ?string
{
return $this->residence;
}
public function setResidence(?string $residence): self
{
$this->residence = $residence;
return $this;
}
public function getNumeroDeVoie(): ?string
{
return $this->numeroDeVoie;
}
public function setNumeroDeVoie(?string $numeroDeVoie): self
{
$this->numeroDeVoie = $numeroDeVoie;
return $this;
}
public function getLieuDit(): ?string
{
return $this->lieuDit;
}
public function setLieuDit(?string $lieuDit): self
{
$this->lieuDit = $lieuDit;
return $this;
}
public function getCodePostal(): ?string
{
return $this->codePostal;
}
public function setCodePostal(?string $codePostal): self
{
$this->codePostal = $codePostal;
return $this;
}
public function getVille(): ?string
{
return $this->ville;
}
public function setVille(?string $ville): self
{
$this->ville = $ville;
return $this;
}
public function getPays(): ?string
{
return $this->pays;
}
public function setPays(?string $pays): self
{
$this->pays = $pays;
return $this;
}
public function getTypeDePieceIdentite(): ?string
{
return $this->typeDePieceIdentite;
}
public function setTypeDePieceIdentite(?string $typeDePieceIdentite): self
{
$this->typeDePieceIdentite = $typeDePieceIdentite;
return $this;
}
public function getNumeroSS(): ?string
{
return $this->numeroSS;
}
public function setNumeroSS(?string $numeroSS): self
{
$this->numeroSS = $numeroSS;
return $this;
}
public function getCleNumeroSS(): ?string
{
return $this->cleNumeroSS;
}
public function setCleNumeroSS(?string $cleNumeroSS): self
{
$this->cleNumeroSS = $cleNumeroSS;
return $this;
}
public function getNomJeuneFille(): ?string
{
return $this->nomJeuneFille;
}
public function setNomJeuneFille(?string $nomJeuneFille): self
{
$this->nomJeuneFille = $nomJeuneFille;
return $this;
}
public function getDateDeNaissance()
{
return $this->dateDeNaissance;
}
public function setDateDeNaissance( $dateDeNaissance)
{
$this->dateDeNaissance = $dateDeNaissance;
return $this;
}
public function getLieuDeNaissance(): ?string
{
return $this->lieuDeNaissance;
}
public function setLieuDeNaissance(?string $lieuDeNaissance): self
{
$this->lieuDeNaissance = $lieuDeNaissance;
return $this;
}
public function getTelFixPrefix(): ?string
{
return $this->telFixPrefix;
}
public function setTelFixPrefix(?string $telFixPrefix): self
{
$this->telFixPrefix = $telFixPrefix;
return $this;
}
public function getTelFix(): ?string
{
return $this->telFix;
}
public function setTelFix(?string $telFix): self
{
$this->telFix = $telFix;
return $this;
}
public function getTelPhonePrefix(): ?string
{
return $this->telPhonePrefix;
}
public function setTelPhonePrefix(?string $telPhonePrefix): self
{
$this->telPhonePrefix = $telPhonePrefix;
return $this;
}
public function getTelPhone(): ?string
{
return $this->telPhone;
}
public function setTelPhone(?string $telPhone): self
{
$this->telPhone = $telPhone;
return $this;
}
public function getEmail(): ?string
{
return $this->email;
}
public function setEmail(?string $email): self
{
$this->email = $email;
return $this;
}
public function getNationalite(): ?string
{
return $this->nationalite;
}
public function setNationalite(?string $nationalite): self
{
$this->nationalite = $nationalite;
return $this;
}
public function getDateEffetAdhesion()
{
return $this->dateEffetAdhesion;
}
public function setDateEffetAdhesion($dateEffetAdhesion)
{
$this->dateEffetAdhesion = $dateEffetAdhesion;
return $this;
}
public function getAgeAdhesion(): ?int
{
return $this->ageAdhesion;
}
public function setAgeAdhesion(?int $ageAdhesion): self
{
$this->ageAdhesion = $ageAdhesion;
return $this;
}
public function getMajorationRente(): ?float
{
return $this->majorationRente;
}
public function setMajorationRente(?float $majorationRente): self
{
$this->majorationRente = $majorationRente;
return $this;
}
public function getVersementInitial(): ?float
{
return $this->versementInitial;
}
public function setVersementInitial(?float $versementInitial): self
{
$this->versementInitial = $versementInitial;
return $this;
}
public function getMoyenDeVersement(): ?string
{
return $this->moyenDeVersement;
}
public function setMoyenDeVersement(?string $moyenDeVersement): self
{
$this->moyenDeVersement = $moyenDeVersement;
return $this;
}
public function getVersementProgramme(): ?bool
{
return $this->versementProgramme;
}
public function setVersementProgramme(?bool $versementProgramme): self
{
$this->versementProgramme = $versementProgramme;
return $this;
}
public function getDateACompterDu()
{
return $this->dateACompterDu;
}
public function setDateACompterDu($dateACompterDu)
{
$this->dateACompterDu = $dateACompterDu;
return $this;
}
public function getPeriodicite(): ?string
{
return $this->periodicite;
}
public function setPeriodicite(?string $periodicite): self
{
$this->periodicite = $periodicite;
return $this;
}
public function getIndexationAnnuelle(): ?string
{
return $this->indexationAnnuelle;
}
public function setIndexationAnnuelle(?string $indexationAnnuelle): self
{
$this->indexationAnnuelle = $indexationAnnuelle;
return $this;
}
public function getOptionCapital(): ?string
{
return $this->optionCapital;
}
public function setOptionCapital(?string $optionCapital): self
{
$this->optionCapital = $optionCapital;
return $this;
}
public function getDateCarteCombattant()
{
return $this->dateCarteCombattant;
}
public function setDateCarteCombattant($dateCarteCombattant)
{
$this->dateCarteCombattant = $dateCarteCombattant;
return $this;
}
public function getDateReconnaisanceNation()
{
return $this->dateReconnaisanceNation;
}
public function setDateReconnaisanceNation($dateReconnaisanceNation)
{
$this->dateReconnaisanceNation = $dateReconnaisanceNation;
return $this;
}
public function getDateTranscriptionMention()
{
return $this->dateTranscriptionMention;
}
public function setDateTranscriptionMention($dateTranscriptionMention)
{
$this->dateTranscriptionMention = $dateTranscriptionMention;
return $this;
}
public function getPage2FaisLe()
{
return $this->page2FaisLe;
}
public function setPage2FaisLe($page2FaisLe)
{
$this->page2FaisLe = $page2FaisLe;
return $this;
}
public function getJattesteTitulaireGarantieRetraite(): ?string
{
return $this->jattesteTitulaireGarantieRetraite;
}
public function setJattesteTitulaireGarantieRetraite(?string $jattesteTitulaireGarantieRetraite): self
{
$this->jattesteTitulaireGarantieRetraite = $jattesteTitulaireGarantieRetraite;
return $this;
}
public function getTypeBeneficiaires(): ?bool
{
return $this->typeBeneficiaires;
}
public function setTypeBeneficiaires(?bool $typeBeneficiaires): self
{
$this->typeBeneficiaires = $typeBeneficiaires;
return $this;
}
public function getConnaissanceDesStatuts(): ?bool
{
return $this->connaissanceDesStatuts;
}
public function setConnaissanceDesStatuts(?bool $connaissanceDesStatuts): self
{
$this->connaissanceDesStatuts = $connaissanceDesStatuts;
return $this;
}
public function getDateSigne()
{
return $this->dateSigne;
}
public function setDateSigne($dateSigne)
{
$this->dateSigne = $dateSigne;
return $this;
}
public function getLieuSigne(): ?string
{
return $this->lieuSigne;
}
public function setLieuSigne(?string $lieuSigne): self
{
$this->lieuSigne = $lieuSigne;
return $this;
}
public function getSepaPrenom(): ?string
{
return $this->sepaPrenom;
}
public function setSepaPrenom(?string $sepaPrenom): self
{
$this->sepaPrenom = $sepaPrenom;
return $this;
}
public function getSepaNom(): ?string
{
return $this->sepaNom;
}
public function setSepaNom(?string $sepaNom): self
{
$this->sepaNom = $sepaNom;
return $this;
}
public function getSepaAdresse(): ?string
{
return $this->sepaAdresse;
}
public function setSepaAdresse(?string $sepaAdresse): self
{
$this->sepaAdresse = $sepaAdresse;
return $this;
}
public function getSepaCodeIban(): ?string
{
return $this->sepaCodeIban;
}
public function setSepaCodeIban(?string $sepaCodeIban): self
{
$this->sepaCodeIban = $sepaCodeIban;
return $this;
}
public function getSepaCodeBic(): ?string
{
return $this->sepaCodeBic;
}
public function setSepaCodeBic(?string $sepaCodeBic): self
{
$this->sepaCodeBic = $sepaCodeBic;
return $this;
}
public function getSepaDateSigne()
{
return $this->sepaDateSigne;
}
public function setSepaDateSigne($sepaDateSigne)
{
$this->sepaDateSigne = $sepaDateSigne;
return $this;
}
public function getSepaLieuSigne(): ?string
{
return $this->sepaLieuSigne;
}
public function setSepaLieuSigne(?string $sepaLieuSigne): self
{
$this->sepaLieuSigne = $sepaLieuSigne;
return $this;
}
/**
* @return Collection|OtherContract[]
*/
public function getOtherContracts(): Collection
{
return $this->otherContracts;
}
public function addOtherContract(OtherContract $otherContract): self
{
if (!$this->otherContracts->contains($otherContract)) {
$this->otherContracts[] = $otherContract;
$otherContract->setBa($this);
}
return $this;
}
public function removeOtherContract(OtherContract $otherContract): self
{
if ($this->otherContracts->contains($otherContract)) {
$this->otherContracts->removeElement($otherContract);
// set the owning side to null (unless already changed)
if ($otherContract->getBa() === $this) {
$otherContract->setBa(null);
}
}
return $this;
}
/**
* @return Collection|Beneficiaire[]
*/
public function getBeneficiaires(): Collection
{
return $this->beneficiaires;
}
public function addBeneficiaire(Beneficiaire $beneficiaire): self
{
if (!$this->beneficiaires->contains($beneficiaire)) {
$this->beneficiaires[] = $beneficiaire;
$beneficiaire->setBa($this);
}
return $this;
}
public function removeBeneficiaire(Beneficiaire $beneficiaire): self
{
if ($this->beneficiaires->contains($beneficiaire)) {
$this->beneficiaires->removeElement($beneficiaire);
// set the owning side to null (unless already changed)
if ($beneficiaire->getBa() === $this) {
$beneficiaire->setBa(null);
}
}
return $this;
}
public function getProfession(): ?string
{
return $this->profession;
}
public function setProfession(?string $profession): self
{
$this->profession = $profession;
return $this;
}
public function getDateDeLiquidation()
{
return $this->dateDeLiquidation;
}
public function setDateDeLiquidation($dateDeLiquidation)
{
$this->dateDeLiquidation = $dateDeLiquidation;
return $this;
}
public function getMontantVersementPeriodique(): ?float
{
return $this->montantVersementPeriodique;
}
public function setMontantVersementPeriodique(?float $montantVersementPeriodique): self
{
$this->montantVersementPeriodique = $montantVersementPeriodique;
return $this;
}
public function getConflitOpexDescription(): ?string
{
return $this->conflitOpexDescription;
}
public function setConflitOpexDescription(?string $conflitOpexDescription): self
{
$this->conflitOpexDescription = $conflitOpexDescription;
return $this;
}
public function getStatus(): ?string
{
return $this->status;
}
public function setStatus(?string $status): self
{
$this->status = $status;
return $this;
}
public function getSepaCodePostal(): ?string
{
return $this->sepaCodePostal;
}
public function setSepaCodePostal(?string $sepaCodePostal): self
{
$this->sepaCodePostal = $sepaCodePostal;
return $this;
}
public function getSepaVille(): ?string
{
return $this->sepaVille;
}
public function setSepaVille(?string $sepaVille): self
{
$this->sepaVille = $sepaVille;
return $this;
}
public function getSepaPays(): ?string
{
return $this->sepaPays;
}
public function setSepaPays(?string $sepaPays): self
{
$this->sepaPays = $sepaPays;
return $this;
}
public function getSepaStatus(): ?string
{
return $this->sepaStatus;
}
public function setSepaStatus(?string $sepaStatus): self
{
$this->sepaStatus = $sepaStatus;
return $this;
}
public function getUrlPdf(): ?string
{
return $this->urlPdf;
}
public function setUrlPdf(?string $urlPdf): self
{
$this->urlPdf = $urlPdf;
return $this;
}
public function getSepaUrlPdf(): ?string
{
return $this->sepaUrlPdf;
}
public function setSepaUrlPdf(?string $sepaUrlPdf): self
{
$this->sepaUrlPdf = $sepaUrlPdf;
return $this;
}
public function getIdYouSign(): ?string
{
return $this->idYouSign;
}
public function setIdYouSign(?string $idYouSign): self
{
$this->idYouSign = $idYouSign;
return $this;
}
public function getSepaIdYouSign(): ?string
{
return $this->sepaIdYouSign;
}
public function setSepaIdYouSign(?string $sepaIdYouSign): self
{
$this->sepaIdYouSign = $sepaIdYouSign;
return $this;
}
public function getUrlPdfSign(): ?string
{
return $this->urlPdfSign;
}
public function setUrlPdfSign(?string $urlPdfSign): self
{
$this->urlPdfSign = $urlPdfSign;
return $this;
}
public function getSepaUrlPdfSign(): ?string
{
return $this->sepaUrlPdfSign;
}
public function setSepaUrlPdfSign(?string $sepaUrlPdfSign): self
{
$this->sepaUrlPdfSign = $sepaUrlPdfSign;
return $this;
}
public function getTitulaireDe(): ?array
{
return $this->titulaireDe;
}
public function setTitulaireDe(?array $titulaireDe): self
{
$this->titulaireDe = $titulaireDe;
return $this;
}
public function getJaiDemandeAttributionDe(): ?array
{
return $this->jaiDemandeAttributionDe;
}
public function setJaiDemandeAttributionDe(?array $jaiDemandeAttributionDe): self
{
$this->jaiDemandeAttributionDe = $jaiDemandeAttributionDe;
return $this;
}
public function getConflitConcerne(): ?array
{
return $this->conflitConcerne;
}
public function setConflitConcerne(?array $conflitConcerne): self
{
$this->conflitConcerne = $conflitConcerne;
return $this;
}
public function isVenteADistance(): ?bool
{
return $this->venteADistance;
}
public function isVersementProgramme(): ?bool
{
return $this->versementProgramme;
}
public function isFondContratEpargne(): ?bool
{
return $this->fondContratEpargne;
}
public function setFondContratEpargne(?bool $fondContratEpargne): self
{
$this->fondContratEpargne = $fondContratEpargne;
return $this;
}
public function getFondContratEpargneDate()
{
return $this->fondContratEpargneDate;
}
public function setFondContratEpargneDate($fondContratEpargneDate): self
{
$this->fondContratEpargneDate = $fondContratEpargneDate;
return $this;
}
public function getFondContratEpargneNumber(): ?string
{
return $this->fondContratEpargneNumber;
}
public function setFondContratEpargneNumber(?string $fondContratEpargneNumber): self
{
$this->fondContratEpargneNumber = $fondContratEpargneNumber;
return $this;
}
public function getFondContratEpargneDescription(): ?string
{
return $this->fondContratEpargneDescription;
}
public function setFondContratEpargneDescription(?string $fondContratEpargneDescription): self
{
$this->fondContratEpargneDescription = $fondContratEpargneDescription;
return $this;
}
public function isFondContratPartSociete(): ?bool
{
return $this->fondContratPartSociete;
}
public function setFondContratPartSociete(?bool $fondContratPartSociete): self
{
$this->fondContratPartSociete = $fondContratPartSociete;
return $this;
}
public function getFondContratPartSocieteDate()
{
return $this->fondContratPartSocieteDate;
}
public function setFondContratPartSocieteDate($fondContratPartSocieteDate): self
{
$this->fondContratPartSocieteDate = $fondContratPartSocieteDate;
return $this;
}
public function getFondContratPartSocieteNumber(): ?string
{
return $this->fondContratPartSocieteNumber;
}
public function setFondContratPartSocieteNumber(?string $fondContratPartSocieteNumber): self
{
$this->fondContratPartSocieteNumber = $fondContratPartSocieteNumber;
return $this;
}
public function getFondContratPartSocieteDescription(): ?string
{
return $this->fondContratPartSocieteDescription;
}
public function setFondContratPartSocieteDescription(?string $fondContratPartSocieteDescription): self
{
$this->fondContratPartSocieteDescription = $fondContratPartSocieteDescription;
return $this;
}
public function isFondContratHeritage(): ?bool
{
return $this->fondContratHeritage;
}
public function setFondContratHeritage(?bool $fondContratHeritage): self
{
$this->fondContratHeritage = $fondContratHeritage;
return $this;
}
public function getFondContratHeritageDate()
{
return $this->fondContratHeritageDate;
}
public function setFondContratHeritageDate($fondContratHeritageDate): self
{
$this->fondContratHeritageDate = $fondContratHeritageDate;
return $this;
}
public function getFondContratHeritageNumber(): ?string
{
return $this->fondContratHeritageNumber;
}
public function setFondContratHeritageNumber(?string $fondContratHeritageNumber): self
{
$this->fondContratHeritageNumber = $fondContratHeritageNumber;
return $this;
}
public function getFondContratHeritageDescription(): ?string
{
return $this->fondContratHeritageDescription;
}
public function setFondContratHeritageDescription(?string $fondContratHeritageDescription): self
{
$this->fondContratHeritageDescription = $fondContratHeritageDescription;
return $this;
}
public function isFondContratImmobilier(): ?bool
{
return $this->fondContratImmobilier;
}
public function setFondContratImmobilier(?bool $fondContratImmobilier): self
{
$this->fondContratImmobilier = $fondContratImmobilier;
return $this;
}
public function getFondContratImmobilierDate()
{
return $this->fondContratImmobilierDate;
}
public function setFondContratImmobilierDate($fondContratImmobilierDate): self
{
$this->fondContratImmobilierDate = $fondContratImmobilierDate;
return $this;
}
public function getFondContratImmobilierNumber(): ?string
{
return $this->fondContratImmobilierNumber;
}
public function setFondContratImmobilierNumber(?string $fondContratImmobilierNumber): self
{
$this->fondContratImmobilierNumber = $fondContratImmobilierNumber;
return $this;
}
public function getFondContratImmobilierDescription(): ?string
{
return $this->fondContratImmobilierDescription;
}
public function setFondContratImmobilierDescription(?string $fondContratImmobilierDescription): self
{
$this->fondContratImmobilierDescription = $fondContratImmobilierDescription;
return $this;
}
public function isFondContratRevenuPro(): ?bool
{
return $this->fondContratRevenuPro;
}
public function setFondContratRevenuPro(?bool $fondContratRevenuPro): self
{
$this->fondContratRevenuPro = $fondContratRevenuPro;
return $this;
}
public function getFondContratRevenuProDate()
{
return $this->fondContratRevenuProDate;
}
public function setFondContratRevenuProDate($fondContratRevenuProDate): self
{
$this->fondContratRevenuProDate = $fondContratRevenuProDate;
return $this;
}
public function getFondContratRevenuProNumber(): ?string
{
return $this->fondContratRevenuProNumber;
}
public function setFondContratRevenuProNumber(?string $fondContratRevenuProNumber): self
{
$this->fondContratRevenuProNumber = $fondContratRevenuProNumber;
return $this;
}
public function getFondContratRevenuProDescription(): ?string
{
return $this->fondContratRevenuProDescription;
}
public function setFondContratRevenuProDescription(?string $fondContratRevenuProDescription): self
{
$this->fondContratRevenuProDescription = $fondContratRevenuProDescription;
return $this;
}
public function isFondContratAutre(): ?bool
{
return $this->fondContratAutre;
}
public function setFondContratAutre(?bool $fondContratAutre): self
{
$this->fondContratAutre = $fondContratAutre;
return $this;
}
public function getFondContratAutreDate()
{
return $this->fondContratAutreDate;
}
public function setFondContratAutreDate($fondContratAutreDate): self
{
$this->fondContratAutreDate = $fondContratAutreDate;
return $this;
}
public function getFondContratAutreNumber(): ?string
{
return $this->fondContratAutreNumber;
}
public function setFondContratAutreNumber(?string $fondContratAutreNumber): self
{
$this->fondContratAutreNumber = $fondContratAutreNumber;
return $this;
}
public function getFondContratAutreDescription(): ?string
{
return $this->fondContratAutreDescription;
}
public function setFondContratAutreDescription(?string $fondContratAutreDescription): self
{
$this->fondContratAutreDescription = $fondContratAutreDescription;
return $this;
}
public function isTypeBeneficiaires(): ?bool
{
return $this->typeBeneficiaires;
}
public function isConnaissanceDesStatuts(): ?bool
{
return $this->connaissanceDesStatuts;
}
public function isResidenceFrance(): ?bool
{
return $this->residenceFrance;
}
public function setResidenceFrance(?bool $residenceFrance): self
{
$this->residenceFrance = $residenceFrance;
return $this;
}
public function getFiscaleAddress(): ?string
{
return $this->fiscaleAddress;
}
public function setFiscaleAddress(?string $fiscaleAddress): self
{
$this->fiscaleAddress = $fiscaleAddress;
return $this;
}
public function getFiscaleCodePostal(): ?string
{
return $this->fiscaleCodePostal;
}
public function setFiscaleCodePostal(?string $fiscaleCodePostal): self
{
$this->fiscaleCodePostal = $fiscaleCodePostal;
return $this;
}
public function getFiscaleVille(): ?string
{
return $this->fiscaleVille;
}
public function setFiscaleVille(?string $fiscaleVille): self
{
$this->fiscaleVille = $fiscaleVille;
return $this;
}
public function getSituationFamilliale(): ?string
{
return $this->situationFamilliale;
}
public function setSituationFamilliale(?string $situationFamilliale): self
{
$this->situationFamilliale = $situationFamilliale;
return $this;
}
public function isVersementInitialDeduit(): ?bool
{
return $this->versementInitialDeduit;
}
public function setVersementInitialDeduit(?bool $versementInitialDeduit): self
{
$this->versementInitialDeduit = $versementInitialDeduit;
return $this;
}
public function isVersementProgrammeDeduit(): ?bool
{
return $this->versementProgrammeDeduit;
}
public function setVersementProgrammeDeduit(?bool $versementProgrammeDeduit): self
{
$this->versementProgrammeDeduit = $versementProgrammeDeduit;
return $this;
}
public function isGreenCard(): ?bool
{
return $this->greenCard;
}
public function setGreenCard(?bool $greenCard): self
{
$this->greenCard = $greenCard;
return $this;
}
public function isReconnaisEtreInforme(): ?bool
{
return $this->reconnaisEtreInforme;
}
public function setReconnaisEtreInforme(?bool $reconnaisEtreInforme): self
{
$this->reconnaisEtreInforme = $reconnaisEtreInforme;
return $this;
}
public function isReconnaisAvoirPrisConnaissance(): ?bool
{
return $this->reconnaisAvoirPrisConnaissance;
}
public function setReconnaisAvoirPrisConnaissance(?bool $reconnaisAvoirPrisConnaissance): self
{
$this->reconnaisAvoirPrisConnaissance = $reconnaisAvoirPrisConnaissance;
return $this;
}
public function getResidenceIdentificationFiscalPays(): ?string
{
return $this->residenceIdentificationFiscalPays;
}
public function setResidenceIdentificationFiscalPays(?string $residenceIdentificationFiscalPays): self
{
$this->residenceIdentificationFiscalPays = $residenceIdentificationFiscalPays;
return $this;
}
public function getProfessionCspCategory(): ?int
{
return $this->professionCspCategory;
}
public function setProfessionCspCategory(?int $professionCspCategory): self
{
$this->professionCspCategory = $professionCspCategory;
return $this;
}
public function getProfessionCspSousCategory(): ?int
{
return $this->professionCspSousCategory;
}
public function setProfessionCspSousCategory(?int $professionCspSousCategory): self
{
$this->professionCspSousCategory = $professionCspSousCategory;
return $this;
}
public function isAcceptRecevoirDocumentGarantieEmail(): ?bool
{
return $this->acceptRecevoirDocumentGarantieEmail;
}
public function setAcceptRecevoirDocumentGarantieEmail(?bool $acceptRecevoirDocumentGarantieEmail): self
{
$this->acceptRecevoirDocumentGarantieEmail = $acceptRecevoirDocumentGarantieEmail;
return $this;
}
public function isAcceptPropositionCommercialEmail(): ?bool
{
return $this->acceptPropositionCommercialEmail;
}
public function setAcceptPropositionCommercialEmail(?bool $acceptPropositionCommercialEmail): self
{
$this->acceptPropositionCommercialEmail = $acceptPropositionCommercialEmail;
return $this;
}
public function isAcceptPropositionCommercialTelephone(): ?bool
{
return $this->acceptPropositionCommercialTelephone;
}
public function setAcceptPropositionCommercialTelephone(?bool $acceptPropositionCommercialTelephone): self
{
$this->acceptPropositionCommercialTelephone = $acceptPropositionCommercialTelephone;
return $this;
}
public function getVersementProgrammePeriodiciteJourDuMois(): ?string
{
return $this->versementProgrammePeriodiciteJourDuMois;
}
public function setVersementProgrammePeriodiciteJourDuMois(?string $versementProgrammePeriodiciteJourDuMois): self
{
$this->versementProgrammePeriodiciteJourDuMois = $versementProgrammePeriodiciteJourDuMois;
return $this;
}
public function isEngageFournirCopieTitreAttribue(): ?bool
{
return $this->engageFournirCopieTitreAttribue;
}
public function setEngageFournirCopieTitreAttribue(?bool $engageFournirCopieTitreAttribue): self
{
$this->engageFournirCopieTitreAttribue = $engageFournirCopieTitreAttribue;
return $this;
}
public function isTypeBeneficiairesClauseNotariee(): ?bool
{
return $this->typeBeneficiairesClauseNotariee;
}
public function setTypeBeneficiairesClauseNotariee(?bool $typeBeneficiairesClauseNotariee): self
{
$this->typeBeneficiairesClauseNotariee = $typeBeneficiairesClauseNotariee;
return $this;
}
public function getTypeBeneficiairesClauseNotarieeCoordonnees(): ?string
{
return $this->typeBeneficiairesClauseNotarieeCoordonnees;
}
public function setTypeBeneficiairesClauseNotarieeCoordonnees(?string $typeBeneficiairesClauseNotarieeCoordonnees): self
{
$this->typeBeneficiairesClauseNotarieeCoordonnees = $typeBeneficiairesClauseNotarieeCoordonnees;
return $this;
}
public function isReconnaisRenoncer30Jours(): ?bool
{
return $this->reconnaisRenoncer30Jours;
}
public function setReconnaisRenoncer30Jours(?bool $reconnaisRenoncer30Jours): self
{
$this->reconnaisRenoncer30Jours = $reconnaisRenoncer30Jours;
return $this;
}
public function getAddress(): ?string
{
return $this->address;
}
public function setAddress(?string $address): static
{
$this->address = $address;
return $this;
}
public function getFiscalePays(): ?string
{
return $this->fiscalePays;
}
public function setFiscalePays(?string $fiscalePays): static
{
$this->fiscalePays = $fiscalePays;
return $this;
}
public function getNumeroCarteCombattant(): ?string
{
return $this->numeroCarteCombattant;
}
public function setNumeroCarteCombattant(?string $numeroCarteCombattant): static
{
$this->numeroCarteCombattant = $numeroCarteCombattant;
return $this;
}
public function isObjectifPrincipalConstitutionRetraite(): ?bool
{
return $this->objectifPrincipalConstitutionRetraite;
}
public function setObjectifPrincipalConstitutionRetraite(?bool $objectifPrincipalConstitutionRetraite): static
{
$this->objectifPrincipalConstitutionRetraite = $objectifPrincipalConstitutionRetraite;
return $this;
}
public function getLieuVilleDeNaissance(): ?string
{
return $this->lieuVilleDeNaissance;
}
public function setLieuVilleDeNaissance(?string $lieuVilleDeNaissance): static
{
$this->lieuVilleDeNaissance = $lieuVilleDeNaissance;
return $this;
}
public function getLieuCodePostalDeNaissance(): ?string
{
return $this->lieuCodePostalDeNaissance;
}
public function setLieuCodePostalDeNaissance(?string $lieuCodePostalDeNaissance): static
{
$this->lieuCodePostalDeNaissance = $lieuCodePostalDeNaissance;
return $this;
}
public function getLieuPaysDeNaissance(): ?string
{
return $this->lieuPaysDeNaissance;
}
public function setLieuPaysDeNaissance(?string $lieuPaysDeNaissance): static
{
$this->lieuPaysDeNaissance = $lieuPaysDeNaissance;
return $this;
}
public function getNationaliteSeconde(): ?string
{
return $this->nationaliteSeconde;
}
public function setNationaliteSeconde(?string $nationaliteSeconde): static
{
$this->nationaliteSeconde = $nationaliteSeconde;
return $this;
}
public function isPossedeNationaliteSeconde(): ?bool
{
return $this->possedeNationaliteSeconde;
}
public function setPossedeNationaliteSeconde(?bool $possedeNationaliteSeconde): static
{
$this->possedeNationaliteSeconde = $possedeNationaliteSeconde;
return $this;
}
public function isAdressePostaleDifferente(): ?bool
{
return $this->adressePostaleDifferente;
}
public function setAdressePostaleDifferente(?bool $adressePostaleDifferente): static
{
$this->adressePostaleDifferente = $adressePostaleDifferente;
return $this;
}
public function getTypeBeneficiairesClauseNotarieeName(): ?string
{
return $this->typeBeneficiairesClauseNotarieeName;
}
public function setTypeBeneficiairesClauseNotarieeName(?string $typeBeneficiairesClauseNotarieeName): static
{
$this->typeBeneficiairesClauseNotarieeName = $typeBeneficiairesClauseNotarieeName;
return $this;
}
public function getTypeBeneficiairesBychoices(): ?string
{
return $this->typeBeneficiairesBychoices;
}
public function setTypeBeneficiairesBychoices(?string $typeBeneficiairesBychoices): static
{
$this->typeBeneficiairesBychoices = $typeBeneficiairesBychoices;
return $this;
}
public function getTitulaireTitre(): ?string
{
return $this->titulaireTitre;
}
public function setTitulaireTitre(?string $titulaireTitre): static
{
$this->titulaireTitre = $titulaireTitre;
return $this;
}
public function isJeDemandeAdhesionProduit(): ?bool
{
return $this->jeDemandeAdhesionProduit;
}
public function setJeDemandeAdhesionProduit(?bool $jeDemandeAdhesionProduit): static
{
$this->jeDemandeAdhesionProduit = $jeDemandeAdhesionProduit;
return $this;
}
public function isJeMengageFournirMerCopieTitreAttribue(): ?bool
{
return $this->jeMengageFournirMerCopieTitreAttribue;
}
public function setJeMengageFournirMerCopieTitreAttribue(?bool $jeMengageFournirMerCopieTitreAttribue): static
{
$this->jeMengageFournirMerCopieTitreAttribue = $jeMengageFournirMerCopieTitreAttribue;
return $this;
}
public function isBeneficiezProtectionJuridique(): ?bool
{
return $this->beneficiezProtectionJuridique;
}
public function setBeneficiezProtectionJuridique(?bool $beneficiezProtectionJuridique): static
{
$this->beneficiezProtectionJuridique = $beneficiezProtectionJuridique;
return $this;
}
public function getProtectionJuridique(): ?string
{
return $this->protectionJuridique;
}
public function setProtectionJuridique(?string $protectionJuridique): static
{
$this->protectionJuridique = $protectionJuridique;
return $this;
}
public function getProtectionJuridiqueOther(): ?string
{
return $this->protectionJuridiqueOther;
}
public function setProtectionJuridiqueOther(?string $protectionJuridiqueOther): static
{
$this->protectionJuridiqueOther = $protectionJuridiqueOther;
return $this;
}
public function getProtectionJuridiqueMineur(): ?string
{
return $this->protectionJuridiqueMineur;
}
public function setProtectionJuridiqueMineur(?string $protectionJuridiqueMineur): static
{
$this->protectionJuridiqueMineur = $protectionJuridiqueMineur;
return $this;
}
public function getMoyenDeVersementProgramme(): ?string
{
return $this->moyenDeVersementProgramme;
}
public function setMoyenDeVersementProgramme(?string $moyenDeVersementProgramme): static
{
$this->moyenDeVersementProgramme = $moyenDeVersementProgramme;
return $this;
}
public function isPrendsActeEvolutionPerso(): ?bool
{
return $this->prendsActeEvolutionPerso;
}
public function setPrendsActeEvolutionPerso(?bool $prendsActeEvolutionPerso): static
{
$this->prendsActeEvolutionPerso = $prendsActeEvolutionPerso;
return $this;
}
public function isMineurDonDeSommes(): ?bool
{
return $this->mineurDonDeSommes;
}
public function setMineurDonDeSommes(?bool $mineurDonDeSommes): static
{
$this->mineurDonDeSommes = $mineurDonDeSommes;
return $this;
}
public function isProtectionJuridiquePatrimoinePersonneRepresente(): ?bool
{
return $this->protectionJuridiquePatrimoinePersonneRepresente;
}
public function setProtectionJuridiquePatrimoinePersonneRepresente(?bool $protectionJuridiquePatrimoinePersonneRepresente): static
{
$this->protectionJuridiquePatrimoinePersonneRepresente = $protectionJuridiquePatrimoinePersonneRepresente;
return $this;
}
public function isProtectionJuridiquePatrimoineRepresentantLegal(): ?bool
{
return $this->protectionJuridiquePatrimoineRepresentantLegal;
}
public function setProtectionJuridiquePatrimoineRepresentantLegal(?bool $protectionJuridiquePatrimoineRepresentantLegal): static
{
$this->protectionJuridiquePatrimoineRepresentantLegal = $protectionJuridiquePatrimoineRepresentantLegal;
return $this;
}
public function isRepLegal1Use(): ?bool
{
return $this->repLegal1Use;
}
public function setRepLegal1Use(?bool $repLegal1Use): static
{
$this->repLegal1Use = $repLegal1Use;
return $this;
}
public function getRepLegal1Sex(): ?string
{
return $this->repLegal1Sex;
}
public function setRepLegal1Sex(?string $repLegal1Sex): static
{
$this->repLegal1Sex = $repLegal1Sex;
return $this;
}
public function getRepLegal1NumeroSS(): ?string
{
return $this->repLegal1NumeroSS;
}
public function setRepLegal1NumeroSS(?string $repLegal1NumeroSS): static
{
$this->repLegal1NumeroSS = $repLegal1NumeroSS;
return $this;
}
public function getRepLegal1CleNumeroSS(): ?string
{
return $this->repLegal1CleNumeroSS;
}
public function setRepLegal1CleNumeroSS(?string $repLegal1CleNumeroSS): static
{
$this->repLegal1CleNumeroSS = $repLegal1CleNumeroSS;
return $this;
}
public function getRepLegal1Nom(): ?string
{
return $this->repLegal1Nom;
}
public function setRepLegal1Nom(?string $repLegal1Nom): static
{
$this->repLegal1Nom = $repLegal1Nom;
return $this;
}
public function getRepLegal1Prenoms(): ?string
{
return $this->repLegal1Prenoms;
}
public function setRepLegal1Prenoms(?string $repLegal1Prenoms): static
{
$this->repLegal1Prenoms = $repLegal1Prenoms;
return $this;
}
public function getRepLegal1DateDeNaissance()
{
return $this->repLegal1DateDeNaissance;
}
public function setRepLegal1DateDeNaissance($repLegal1DateDeNaissance): static
{
$this->repLegal1DateDeNaissance = $repLegal1DateDeNaissance;
return $this;
}
public function getRepLegal1LieuDeNaissance(): ?string
{
return $this->repLegal1LieuDeNaissance;
}
public function setRepLegal1LieuDeNaissance(?string $repLegal1LieuDeNaissance): static
{
$this->repLegal1LieuDeNaissance = $repLegal1LieuDeNaissance;
return $this;
}
public function getRepLegal1Nationalite(): ?string
{
return $this->repLegal1Nationalite;
}
public function setRepLegal1Nationalite(?string $repLegal1Nationalite): static
{
$this->repLegal1Nationalite = $repLegal1Nationalite;
return $this;
}
public function isRepLegal1ResidanceFiscalFrance(): ?bool
{
return $this->repLegal1ResidanceFiscalFrance;
}
public function setRepLegal1ResidanceFiscalFrance(?bool $repLegal1ResidanceFiscalFrance): static
{
$this->repLegal1ResidanceFiscalFrance = $repLegal1ResidanceFiscalFrance;
return $this;
}
public function getRepLegal1FiscalAdresse(): ?string
{
return $this->repLegal1FiscalAdresse;
}
public function setRepLegal1FiscalAdresse(?string $repLegal1FiscalAdresse): static
{
$this->repLegal1FiscalAdresse = $repLegal1FiscalAdresse;
return $this;
}
public function getRepLegal1FiscalCodePostal(): ?string
{
return $this->repLegal1FiscalCodePostal;
}
public function setRepLegal1FiscalCodePostal(?string $repLegal1FiscalCodePostal): static
{
$this->repLegal1FiscalCodePostal = $repLegal1FiscalCodePostal;
return $this;
}
public function getRepLegal1FiscalVille(): ?string
{
return $this->repLegal1FiscalVille;
}
public function setRepLegal1FiscalVille(?string $repLegal1FiscalVille): static
{
$this->repLegal1FiscalVille = $repLegal1FiscalVille;
return $this;
}
public function getRepLegal1FiscalPays(): ?string
{
return $this->repLegal1FiscalPays;
}
public function setRepLegal1FiscalPays(?string $repLegal1FiscalPays): static
{
$this->repLegal1FiscalPays = $repLegal1FiscalPays;
return $this;
}
public function getRepLegal1PostaleAdresse(): ?string
{
return $this->repLegal1PostaleAdresse;
}
public function setRepLegal1PostaleAdresse(?string $repLegal1PostaleAdresse): static
{
$this->repLegal1PostaleAdresse = $repLegal1PostaleAdresse;
return $this;
}
public function getRepLegal1PostaleCodePostal(): ?string
{
return $this->repLegal1PostaleCodePostal;
}
public function setRepLegal1PostaleCodePostal(?string $repLegal1PostaleCodePostal): static
{
$this->repLegal1PostaleCodePostal = $repLegal1PostaleCodePostal;
return $this;
}
public function getRepLegal1PostaleVille(): ?string
{
return $this->repLegal1PostaleVille;
}
public function setRepLegal1PostaleVille(?string $repLegal1PostaleVille): static
{
$this->repLegal1PostaleVille = $repLegal1PostaleVille;
return $this;
}
public function getRepLegal1PostalePays(): ?string
{
return $this->repLegal1PostalePays;
}
public function setRepLegal1PostalePays(?string $repLegal1PostalePays): static
{
$this->repLegal1PostalePays = $repLegal1PostalePays;
return $this;
}
public function getRepLegal1TelephonePortablePrefix(): ?string
{
return $this->repLegal1TelephonePortablePrefix;
}
public function setRepLegal1TelephonePortablePrefix(?string $repLegal1TelephonePortablePrefix): static
{
$this->repLegal1TelephonePortablePrefix = $repLegal1TelephonePortablePrefix;
return $this;
}
public function getRepLegal1TelephonePortable(): ?string
{
return $this->repLegal1TelephonePortable;
}
public function setRepLegal1TelephonePortable(?string $repLegal1TelephonePortable): static
{
$this->repLegal1TelephonePortable = $repLegal1TelephonePortable;
return $this;
}
public function getRepLegal1TelephonePrefix(): ?string
{
return $this->repLegal1TelephonePrefix;
}
public function setRepLegal1TelephonePrefix(?string $repLegal1TelephonePrefix): static
{
$this->repLegal1TelephonePrefix = $repLegal1TelephonePrefix;
return $this;
}
public function getRepLegal1Telephone(): ?string
{
return $this->repLegal1Telephone;
}
public function setRepLegal1Telephone(?string $repLegal1Telephone): static
{
$this->repLegal1Telephone = $repLegal1Telephone;
return $this;
}
public function getRepLegal1Email(): ?string
{
return $this->repLegal1Email;
}
public function setRepLegal1Email(?string $repLegal1Email): static
{
$this->repLegal1Email = $repLegal1Email;
return $this;
}
public function getRepLegal1SituationFamiliale(): ?string
{
return $this->repLegal1SituationFamiliale;
}
public function setRepLegal1SituationFamiliale(?string $repLegal1SituationFamiliale): static
{
$this->repLegal1SituationFamiliale = $repLegal1SituationFamiliale;
return $this;
}
public function getRepLegal1NombreEnfant(): ?int
{
return $this->repLegal1NombreEnfant;
}
public function setRepLegal1NombreEnfant(?int $repLegal1NombreEnfant): static
{
$this->repLegal1NombreEnfant = $repLegal1NombreEnfant;
return $this;
}
public function getRepLegal1NombreEnfantCharge(): ?int
{
return $this->repLegal1NombreEnfantCharge;
}
public function setRepLegal1NombreEnfantCharge(?int $repLegal1NombreEnfantCharge): static
{
$this->repLegal1NombreEnfantCharge = $repLegal1NombreEnfantCharge;
return $this;
}
public function getRepLegal1QualiteDe(): ?string
{
return $this->repLegal1QualiteDe;
}
public function setRepLegal1QualiteDe(?string $repLegal1QualiteDe): static
{
$this->repLegal1QualiteDe = $repLegal1QualiteDe;
return $this;
}
public function isRepLegal1PolitiquementExpose(): ?bool
{
return $this->repLegal1PolitiquementExpose;
}
public function setRepLegal1PolitiquementExpose(?bool $repLegal1PolitiquementExpose): static
{
$this->repLegal1PolitiquementExpose = $repLegal1PolitiquementExpose;
return $this;
}
public function getRepLegal1PersonnePolitiquementExposeeType(): ?string
{
return $this->repLegal1PersonnePolitiquementExposeeType;
}
public function setRepLegal1PersonnePolitiquementExposeeType(?string $repLegal1PersonnePolitiquementExposeeType): static
{
$this->repLegal1PersonnePolitiquementExposeeType = $repLegal1PersonnePolitiquementExposeeType;
return $this;
}
public function getRepLegal1PersonnePolitiquementExposeeMaFonction(): ?string
{
return $this->repLegal1PersonnePolitiquementExposeeMaFonction;
}
public function setRepLegal1PersonnePolitiquementExposeeMaFonction(?string $repLegal1PersonnePolitiquementExposeeMaFonction): static
{
$this->repLegal1PersonnePolitiquementExposeeMaFonction = $repLegal1PersonnePolitiquementExposeeMaFonction;
return $this;
}
public function getRepLegal1PersonnePolitiquementExposeeEntourageFonction(): ?string
{
return $this->repLegal1PersonnePolitiquementExposeeEntourageFonction;
}
public function setRepLegal1PersonnePolitiquementExposeeEntourageFonction(?string $repLegal1PersonnePolitiquementExposeeEntourageFonction): static
{
$this->repLegal1PersonnePolitiquementExposeeEntourageFonction = $repLegal1PersonnePolitiquementExposeeEntourageFonction;
return $this;
}
public function getRepLegal1PersonnePolitiquementExposeeEntourageLien(): ?string
{
return $this->repLegal1PersonnePolitiquementExposeeEntourageLien;
}
public function setRepLegal1PersonnePolitiquementExposeeEntourageLien(?string $repLegal1PersonnePolitiquementExposeeEntourageLien): static
{
$this->repLegal1PersonnePolitiquementExposeeEntourageLien = $repLegal1PersonnePolitiquementExposeeEntourageLien;
return $this;
}
public function isRepLegal1GreenCard(): ?bool
{
return $this->repLegal1GreenCard;
}
public function setRepLegal1GreenCard(?bool $repLegal1GreenCard): static
{
$this->repLegal1GreenCard = $repLegal1GreenCard;
return $this;
}
public function isRepLegal1ResidanceFiscalAutrePaysFranceEtatUnis(): ?bool
{
return $this->repLegal1ResidanceFiscalAutrePaysFranceEtatUnis;
}
public function setRepLegal1ResidanceFiscalAutrePaysFranceEtatUnis(?bool $repLegal1ResidanceFiscalAutrePaysFranceEtatUnis): static
{
$this->repLegal1ResidanceFiscalAutrePaysFranceEtatUnis = $repLegal1ResidanceFiscalAutrePaysFranceEtatUnis;
return $this;
}
public function getRepLegal1ResidenceIdentificationFiscalPays(): ?string
{
return $this->repLegal1ResidenceIdentificationFiscalPays;
}
public function setRepLegal1ResidenceIdentificationFiscalPays(?string $repLegal1ResidenceIdentificationFiscalPays): static
{
$this->repLegal1ResidenceIdentificationFiscalPays = $repLegal1ResidenceIdentificationFiscalPays;
return $this;
}
public function isRepLegal1AcceptRecevoirDocumentGarantieEmail(): ?bool
{
return $this->repLegal1AcceptRecevoirDocumentGarantieEmail;
}
public function setRepLegal1AcceptRecevoirDocumentGarantieEmail(?bool $repLegal1AcceptRecevoirDocumentGarantieEmail): static
{
$this->repLegal1AcceptRecevoirDocumentGarantieEmail = $repLegal1AcceptRecevoirDocumentGarantieEmail;
return $this;
}
public function isRepLegal1AcceptPropositionCommercialEmail(): ?bool
{
return $this->repLegal1AcceptPropositionCommercialEmail;
}
public function setRepLegal1AcceptPropositionCommercialEmail(?bool $repLegal1AcceptPropositionCommercialEmail): static
{
$this->repLegal1AcceptPropositionCommercialEmail = $repLegal1AcceptPropositionCommercialEmail;
return $this;
}
public function isRepLegal1AcceptPropositionCommercialTelephone(): ?bool
{
return $this->repLegal1AcceptPropositionCommercialTelephone;
}
public function setRepLegal1AcceptPropositionCommercialTelephone(?bool $repLegal1AcceptPropositionCommercialTelephone): static
{
$this->repLegal1AcceptPropositionCommercialTelephone = $repLegal1AcceptPropositionCommercialTelephone;
return $this;
}
public function isRepLegal2Use(): ?bool
{
return $this->repLegal2Use;
}
public function setRepLegal2Use(?bool $repLegal2Use): static
{
$this->repLegal2Use = $repLegal2Use;
return $this;
}
public function getRepLegal2Sex(): ?string
{
return $this->repLegal2Sex;
}
public function setRepLegal2Sex(?string $repLegal2Sex): static
{
$this->repLegal2Sex = $repLegal2Sex;
return $this;
}
public function getRepLegal2Nom(): ?string
{
return $this->repLegal2Nom;
}
public function setRepLegal2Nom(?string $repLegal2Nom): static
{
$this->repLegal2Nom = $repLegal2Nom;
return $this;
}
public function getRepLegal2Prenoms(): ?string
{
return $this->repLegal2Prenoms;
}
public function setRepLegal2Prenoms(?string $repLegal2Prenoms): static
{
$this->repLegal2Prenoms = $repLegal2Prenoms;
return $this;
}
public function getRepLegal2DateDeNaissance()
{
return $this->repLegal2DateDeNaissance;
}
public function setRepLegal2DateDeNaissance($repLegal2DateDeNaissance): static
{
$this->repLegal2DateDeNaissance = $repLegal2DateDeNaissance;
return $this;
}
public function getRepLegal2LieuDeNaissance(): ?string
{
return $this->repLegal2LieuDeNaissance;
}
public function setRepLegal2LieuDeNaissance(?string $repLegal2LieuDeNaissance): static
{
$this->repLegal2LieuDeNaissance = $repLegal2LieuDeNaissance;
return $this;
}
public function getRepLegal2Nationalite(): ?string
{
return $this->repLegal2Nationalite;
}
public function setRepLegal2Nationalite(?string $repLegal2Nationalite): static
{
$this->repLegal2Nationalite = $repLegal2Nationalite;
return $this;
}
public function isRepLegal2ResidanceFiscalFrance(): ?bool
{
return $this->repLegal2ResidanceFiscalFrance;
}
public function setRepLegal2ResidanceFiscalFrance(?bool $repLegal2ResidanceFiscalFrance): static
{
$this->repLegal2ResidanceFiscalFrance = $repLegal2ResidanceFiscalFrance;
return $this;
}
public function getRepLegal2FiscalAdresse(): ?string
{
return $this->repLegal2FiscalAdresse;
}
public function setRepLegal2FiscalAdresse(?string $repLegal2FiscalAdresse): static
{
$this->repLegal2FiscalAdresse = $repLegal2FiscalAdresse;
return $this;
}
public function getRepLegal2FiscalCodePostal(): ?string
{
return $this->repLegal2FiscalCodePostal;
}
public function setRepLegal2FiscalCodePostal(?string $repLegal2FiscalCodePostal): static
{
$this->repLegal2FiscalCodePostal = $repLegal2FiscalCodePostal;
return $this;
}
public function getRepLegal2FiscalVille(): ?string
{
return $this->repLegal2FiscalVille;
}
public function setRepLegal2FiscalVille(?string $repLegal2FiscalVille): static
{
$this->repLegal2FiscalVille = $repLegal2FiscalVille;
return $this;
}
public function getRepLegal2FiscalPays(): ?string
{
return $this->repLegal2FiscalPays;
}
public function setRepLegal2FiscalPays(?string $repLegal2FiscalPays): static
{
$this->repLegal2FiscalPays = $repLegal2FiscalPays;
return $this;
}
public function getRepLegal2PostaleAdresse(): ?string
{
return $this->repLegal2PostaleAdresse;
}
public function setRepLegal2PostaleAdresse(?string $repLegal2PostaleAdresse): static
{
$this->repLegal2PostaleAdresse = $repLegal2PostaleAdresse;
return $this;
}
public function getRepLegal2PostaleCodePostal(): ?string
{
return $this->repLegal2PostaleCodePostal;
}
public function setRepLegal2PostaleCodePostal(?string $repLegal2PostaleCodePostal): static
{
$this->repLegal2PostaleCodePostal = $repLegal2PostaleCodePostal;
return $this;
}
public function getRepLegal2PostaleVille(): ?string
{
return $this->repLegal2PostaleVille;
}
public function setRepLegal2PostaleVille(?string $repLegal2PostaleVille): static
{
$this->repLegal2PostaleVille = $repLegal2PostaleVille;
return $this;
}
public function getRepLegal2PostalePays(): ?string
{
return $this->repLegal2PostalePays;
}
public function setRepLegal2PostalePays(?string $repLegal2PostalePays): static
{
$this->repLegal2PostalePays = $repLegal2PostalePays;
return $this;
}
public function getRepLegal2TelephonePortablePrefix(): ?string
{
return $this->repLegal2TelephonePortablePrefix;
}
public function setRepLegal2TelephonePortablePrefix(?string $repLegal2TelephonePortablePrefix): static
{
$this->repLegal2TelephonePortablePrefix = $repLegal2TelephonePortablePrefix;
return $this;
}
public function getRepLegal2TelephonePortable(): ?string
{
return $this->repLegal2TelephonePortable;
}
public function setRepLegal2TelephonePortable(?string $repLegal2TelephonePortable): static
{
$this->repLegal2TelephonePortable = $repLegal2TelephonePortable;
return $this;
}
public function getRepLegal2TelephonePrefix(): ?string
{
return $this->repLegal2TelephonePrefix;
}
public function setRepLegal2TelephonePrefix(?string $repLegal2TelephonePrefix): static
{
$this->repLegal2TelephonePrefix = $repLegal2TelephonePrefix;
return $this;
}
public function getRepLegal2Telephone(): ?string
{
return $this->repLegal2Telephone;
}
public function setRepLegal2Telephone(?string $repLegal2Telephone): static
{
$this->repLegal2Telephone = $repLegal2Telephone;
return $this;
}
public function getRepLegal2Email(): ?string
{
return $this->repLegal2Email;
}
public function setRepLegal2Email(?string $repLegal2Email): static
{
$this->repLegal2Email = $repLegal2Email;
return $this;
}
public function getRepLegal2SituationFamiliale(): ?string
{
return $this->repLegal2SituationFamiliale;
}
public function setRepLegal2SituationFamiliale(?string $repLegal2SituationFamiliale): static
{
$this->repLegal2SituationFamiliale = $repLegal2SituationFamiliale;
return $this;
}
public function getRepLegal2NombreEnfant(): ?int
{
return $this->repLegal2NombreEnfant;
}
public function setRepLegal2NombreEnfant(?int $repLegal2NombreEnfant): static
{
$this->repLegal2NombreEnfant = $repLegal2NombreEnfant;
return $this;
}
public function getRepLegal2NombreEnfantCharge(): ?int
{
return $this->repLegal2NombreEnfantCharge;
}
public function setRepLegal2NombreEnfantCharge(?int $repLegal2NombreEnfantCharge): static
{
$this->repLegal2NombreEnfantCharge = $repLegal2NombreEnfantCharge;
return $this;
}
public function getRepLegal2QualiteDe(): ?string
{
return $this->repLegal2QualiteDe;
}
public function setRepLegal2QualiteDe(?string $repLegal2QualiteDe): static
{
$this->repLegal2QualiteDe = $repLegal2QualiteDe;
return $this;
}
public function isRepLegal2PolitiquementExpose(): ?bool
{
return $this->repLegal2PolitiquementExpose;
}
public function setRepLegal2PolitiquementExpose(?bool $repLegal2PolitiquementExpose): static
{
$this->repLegal2PolitiquementExpose = $repLegal2PolitiquementExpose;
return $this;
}
public function getRepLegal2PersonnePolitiquementExposeeType(): ?string
{
return $this->repLegal2PersonnePolitiquementExposeeType;
}
public function setRepLegal2PersonnePolitiquementExposeeType(?string $repLegal2PersonnePolitiquementExposeeType): static
{
$this->repLegal2PersonnePolitiquementExposeeType = $repLegal2PersonnePolitiquementExposeeType;
return $this;
}
public function getRepLegal2PersonnePolitiquementExposeeMaFonction(): ?string
{
return $this->repLegal2PersonnePolitiquementExposeeMaFonction;
}
public function setRepLegal2PersonnePolitiquementExposeeMaFonction(?string $repLegal2PersonnePolitiquementExposeeMaFonction): static
{
$this->repLegal2PersonnePolitiquementExposeeMaFonction = $repLegal2PersonnePolitiquementExposeeMaFonction;
return $this;
}
public function getRepLegal2PersonnePolitiquementExposeeEntourageFonction(): ?string
{
return $this->repLegal2PersonnePolitiquementExposeeEntourageFonction;
}
public function setRepLegal2PersonnePolitiquementExposeeEntourageFonction(?string $repLegal2PersonnePolitiquementExposeeEntourageFonction): static
{
$this->repLegal2PersonnePolitiquementExposeeEntourageFonction = $repLegal2PersonnePolitiquementExposeeEntourageFonction;
return $this;
}
public function getRepLegal2PersonnePolitiquementExposeeEntourageLien(): ?string
{
return $this->repLegal2PersonnePolitiquementExposeeEntourageLien;
}
public function setRepLegal2PersonnePolitiquementExposeeEntourageLien(?string $repLegal2PersonnePolitiquementExposeeEntourageLien): static
{
$this->repLegal2PersonnePolitiquementExposeeEntourageLien = $repLegal2PersonnePolitiquementExposeeEntourageLien;
return $this;
}
public function isRepLegal2GreenCard(): ?bool
{
return $this->repLegal2GreenCard;
}
public function setRepLegal2GreenCard(?bool $repLegal2GreenCard): static
{
$this->repLegal2GreenCard = $repLegal2GreenCard;
return $this;
}
public function isRepLegal2ResidanceFiscalAutrePaysFranceEtatUnis(): ?bool
{
return $this->repLegal2ResidanceFiscalAutrePaysFranceEtatUnis;
}
public function setRepLegal2ResidanceFiscalAutrePaysFranceEtatUnis(?bool $repLegal2ResidanceFiscalAutrePaysFranceEtatUnis): static
{
$this->repLegal2ResidanceFiscalAutrePaysFranceEtatUnis = $repLegal2ResidanceFiscalAutrePaysFranceEtatUnis;
return $this;
}
public function getRepLegal2ResidenceIdentificationFiscalPays(): ?string
{
return $this->repLegal2ResidenceIdentificationFiscalPays;
}
public function setRepLegal2ResidenceIdentificationFiscalPays(?string $repLegal2ResidenceIdentificationFiscalPays): static
{
$this->repLegal2ResidenceIdentificationFiscalPays = $repLegal2ResidenceIdentificationFiscalPays;
return $this;
}
public function isRepLegal2AcceptRecevoirDocumentGarantieEmail(): ?bool
{
return $this->repLegal2AcceptRecevoirDocumentGarantieEmail;
}
public function setRepLegal2AcceptRecevoirDocumentGarantieEmail(?bool $repLegal2AcceptRecevoirDocumentGarantieEmail): static
{
$this->repLegal2AcceptRecevoirDocumentGarantieEmail = $repLegal2AcceptRecevoirDocumentGarantieEmail;
return $this;
}
public function isRepLegal2AcceptPropositionCommercialEmail(): ?bool
{
return $this->repLegal2AcceptPropositionCommercialEmail;
}
public function setRepLegal2AcceptPropositionCommercialEmail(?bool $repLegal2AcceptPropositionCommercialEmail): static
{
$this->repLegal2AcceptPropositionCommercialEmail = $repLegal2AcceptPropositionCommercialEmail;
return $this;
}
public function isRepLegal2AcceptPropositionCommercialTelephone(): ?bool
{
return $this->repLegal2AcceptPropositionCommercialTelephone;
}
public function setRepLegal2AcceptPropositionCommercialTelephone(?bool $repLegal2AcceptPropositionCommercialTelephone): static
{
$this->repLegal2AcceptPropositionCommercialTelephone = $repLegal2AcceptPropositionCommercialTelephone;
return $this;
}
public function getRepLegal2NumeroSS(): ?string
{
return $this->repLegal2NumeroSS;
}
public function setRepLegal2NumeroSS(?string $repLegal2NumeroSS): static
{
$this->repLegal2NumeroSS = $repLegal2NumeroSS;
return $this;
}
public function getRepLegal2CleNumeroSS(): ?string
{
return $this->repLegal2CleNumeroSS;
}
public function setRepLegal2CleNumeroSS(?string $repLegal2CleNumeroSS): static
{
$this->repLegal2CleNumeroSS = $repLegal2CleNumeroSS;
return $this;
}
public function getSepaOriginVersmement(): ?string
{
return $this->sepaOriginVersmement;
}
public function setSepaOriginVersmement(?string $sepaOriginVersmement): static
{
$this->sepaOriginVersmement = $sepaOriginVersmement;
return $this;
}
public function isResidentFiscalPaysAutreFranceEtatUnis(): ?bool
{
return $this->residentFiscalPaysAutreFranceEtatUnis;
}
public function setResidentFiscalPaysAutreFranceEtatUnis(?bool $residentFiscalPaysAutreFranceEtatUnis): static
{
$this->residentFiscalPaysAutreFranceEtatUnis = $residentFiscalPaysAutreFranceEtatUnis;
return $this;
}
}