package fr.axxx.pivotal; import java.math.BigDecimal; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for anonymous complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="Identifiant_Client" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="Raison_Sociale" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="Anciennete" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/> * <element name="Type_Structure" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="Num_et_voie" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="Email" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="Code_Postal" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="Ville" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="Pays" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="Tel" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="RIB" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="Forme_Juridique" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="SIREN" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="Dot_Glob_APV_N" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/> * <element name="Dont_Reliquat_N_1" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/> * <element name="Dont_Dot_N" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/> * <element name="Nb_Benef_Prev_N" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/> * <element name="Montant_Utilise_N" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/> * <element name="Nb_Benef_N" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "identifiantClient", "raisonSociale", "anciennete", "typeStructure", "numEtVoie", "email", "codePostal", "ville", "pays", "tel", "rib", "formeJuridique", "siren", "dotGlobAPVN", "dontReliquatN1", "dontDotN", "nbBenefPrevN", "montantUtiliseN", "nbBenefN" }) @XmlRootElement(name = "Client") public class Client { @XmlElement(name = "Identifiant_Client") protected String identifiantClient; @XmlElement(name = "Raison_Sociale") protected String raisonSociale; @XmlElement(name = "Anciennete") protected Integer anciennete; @XmlElement(name = "Type_Structure") protected String typeStructure; @XmlElement(name = "Num_et_voie") protected String numEtVoie; @XmlElement(name = "Email") protected String email; @XmlElement(name = "Code_Postal") protected String codePostal; @XmlElement(name = "Ville") protected String ville; @XmlElement(name = "Pays") protected String pays; @XmlElement(name = "Tel") protected String tel; @XmlElement(name = "RIB") protected String rib; @XmlElement(name = "Forme_Juridique") protected String formeJuridique; @XmlElement(name = "SIREN") protected String siren; @XmlElement(name = "Dot_Glob_APV_N") protected BigDecimal dotGlobAPVN; @XmlElement(name = "Dont_Reliquat_N_1") protected BigDecimal dontReliquatN1; @XmlElement(name = "Dont_Dot_N") protected BigDecimal dontDotN; @XmlElement(name = "Nb_Benef_Prev_N") protected BigDecimal nbBenefPrevN; @XmlElement(name = "Montant_Utilise_N") protected BigDecimal montantUtiliseN; @XmlElement(name = "Nb_Benef_N") protected BigDecimal nbBenefN; /** * Gets the value of the identifiantClient property. * * @return * possible object is * {@link String } * */ public String getIdentifiantClient() { return identifiantClient; } /** * Sets the value of the identifiantClient property. * * @param value * allowed object is * {@link String } * */ public void setIdentifiantClient(String value) { this.identifiantClient = value; } /** * Gets the value of the raisonSociale property. * * @return * possible object is * {@link String } * */ public String getRaisonSociale() { return raisonSociale; } /** * Sets the value of the raisonSociale property. * * @param value * allowed object is * {@link String } * */ public void setRaisonSociale(String value) { this.raisonSociale = value; } /** * Gets the value of the anciennete property. * * @return * possible object is * {@link Integer } * */ public Integer getAnciennete() { return anciennete; } /** * Sets the value of the anciennete property. * * @param value * allowed object is * {@link Integer } * */ public void setAnciennete(Integer value) { this.anciennete = value; } /** * Gets the value of the typeStructure property. * * @return * possible object is * {@link String } * */ public String getTypeStructure() { return typeStructure; } /** * Sets the value of the typeStructure property. * * @param value * allowed object is * {@link String } * */ public void setTypeStructure(String value) { this.typeStructure = value; } /** * Gets the value of the numEtVoie property. * * @return * possible object is * {@link String } * */ public String getNumEtVoie() { return numEtVoie; } /** * Sets the value of the numEtVoie property. * * @param value * allowed object is * {@link String } * */ public void setNumEtVoie(String value) { this.numEtVoie = value; } /** * Gets the value of the email property. * * @return * possible object is * {@link String } * */ public String getEmail() { return email; } /** * Sets the value of the email property. * * @param value * allowed object is * {@link String } * */ public void setEmail(String value) { this.email = value; } /** * Gets the value of the codePostal property. * * @return * possible object is * {@link String } * */ public String getCodePostal() { return codePostal; } /** * Sets the value of the codePostal property. * * @param value * allowed object is * {@link String } * */ public void setCodePostal(String value) { this.codePostal = value; } /** * Gets the value of the ville property. * * @return * possible object is * {@link String } * */ public String getVille() { return ville; } /** * Sets the value of the ville property. * * @param value * allowed object is * {@link String } * */ public void setVille(String value) { this.ville = value; } /** * Gets the value of the pays property. * * @return * possible object is * {@link String } * */ public String getPays() { return pays; } /** * Sets the value of the pays property. * * @param value * allowed object is * {@link String } * */ public void setPays(String value) { this.pays = value; } /** * Gets the value of the tel property. * * @return * possible object is * {@link String } * */ public String getTel() { return tel; } /** * Sets the value of the tel property. * * @param value * allowed object is * {@link String } * */ public void setTel(String value) { this.tel = value; } /** * Gets the value of the rib property. * * @return * possible object is * {@link String } * */ public String getRIB() { return rib; } /** * Sets the value of the rib property. * * @param value * allowed object is * {@link String } * */ public void setRIB(String value) { this.rib = value; } /** * Gets the value of the formeJuridique property. * * @return * possible object is * {@link String } * */ public String getFormeJuridique() { return formeJuridique; } /** * Sets the value of the formeJuridique property. * * @param value * allowed object is * {@link String } * */ public void setFormeJuridique(String value) { this.formeJuridique = value; } /** * Gets the value of the siren property. * * @return * possible object is * {@link String } * */ public String getSIREN() { return siren; } /** * Sets the value of the siren property. * * @param value * allowed object is * {@link String } * */ public void setSIREN(String value) { this.siren = value; } /** * Gets the value of the dotGlobAPVN property. * * @return * possible object is * {@link BigDecimal } * */ public BigDecimal getDotGlobAPVN() { return dotGlobAPVN; } /** * Sets the value of the dotGlobAPVN property. * * @param value * allowed object is * {@link BigDecimal } * */ public void setDotGlobAPVN(BigDecimal value) { this.dotGlobAPVN = value; } /** * Gets the value of the dontReliquatN1 property. * * @return * possible object is * {@link BigDecimal } * */ public BigDecimal getDontReliquatN1() { return dontReliquatN1; } /** * Sets the value of the dontReliquatN1 property. * * @param value * allowed object is * {@link BigDecimal } * */ public void setDontReliquatN1(BigDecimal value) { this.dontReliquatN1 = value; } /** * Gets the value of the dontDotN property. * * @return * possible object is * {@link BigDecimal } * */ public BigDecimal getDontDotN() { return dontDotN; } /** * Sets the value of the dontDotN property. * * @param value * allowed object is * {@link BigDecimal } * */ public void setDontDotN(BigDecimal value) { this.dontDotN = value; } /** * Gets the value of the nbBenefPrevN property. * * @return * possible object is * {@link BigDecimal } * */ public BigDecimal getNbBenefPrevN() { return nbBenefPrevN; } /** * Sets the value of the nbBenefPrevN property. * * @param value * allowed object is * {@link BigDecimal } * */ public void setNbBenefPrevN(BigDecimal value) { this.nbBenefPrevN = value; } /** * Gets the value of the montantUtiliseN property. * * @return * possible object is * {@link BigDecimal } * */ public BigDecimal getMontantUtiliseN() { return montantUtiliseN; } /** * Sets the value of the montantUtiliseN property. * * @param value * allowed object is * {@link BigDecimal } * */ public void setMontantUtiliseN(BigDecimal value) { this.montantUtiliseN = value; } /** * Gets the value of the nbBenefN property. * * @return * possible object is * {@link BigDecimal } * */ public BigDecimal getNbBenefN() { return nbBenefN; } /** * Sets the value of the nbBenefN property. * * @param value * allowed object is * {@link BigDecimal } * */ public void setNbBenefN(BigDecimal value) { this.nbBenefN = value; } }