com.prowidesoftware.swift.model.mx.dic.Customer8 Maven / Gradle / Ivy
package com.prowidesoftware.swift.model.mx.dic;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlType;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
/**
* Details of the customer
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Customer8", propOrder = {
"nm",
"id",
"cstmrFileRefNb",
"age",
"adr",
"ctct"
})
public class Customer8 {
@XmlElement(name = "Nm")
protected String nm;
@XmlElement(name = "Id", required = true)
protected PartyIdentification208 id;
@XmlElement(name = "CstmrFileRefNb")
protected String cstmrFileRefNb;
@XmlElement(name = "Age")
protected String age;
@XmlElement(name = "Adr")
protected Address2 adr;
@XmlElement(name = "Ctct")
protected Contact6 ctct;
/**
* Gets the value of the nm property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getNm() {
return nm;
}
/**
* Sets the value of the nm property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public Customer8 setNm(String value) {
this.nm = value;
return this;
}
/**
* Gets the value of the id property.
*
* @return
* possible object is
* {@link PartyIdentification208 }
*
*/
public PartyIdentification208 getId() {
return id;
}
/**
* Sets the value of the id property.
*
* @param value
* allowed object is
* {@link PartyIdentification208 }
*
*/
public Customer8 setId(PartyIdentification208 value) {
this.id = value;
return this;
}
/**
* Gets the value of the cstmrFileRefNb property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCstmrFileRefNb() {
return cstmrFileRefNb;
}
/**
* Sets the value of the cstmrFileRefNb property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public Customer8 setCstmrFileRefNb(String value) {
this.cstmrFileRefNb = value;
return this;
}
/**
* Gets the value of the age property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getAge() {
return age;
}
/**
* Sets the value of the age property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public Customer8 setAge(String value) {
this.age = value;
return this;
}
/**
* Gets the value of the adr property.
*
* @return
* possible object is
* {@link Address2 }
*
*/
public Address2 getAdr() {
return adr;
}
/**
* Sets the value of the adr property.
*
* @param value
* allowed object is
* {@link Address2 }
*
*/
public Customer8 setAdr(Address2 value) {
this.adr = value;
return this;
}
/**
* Gets the value of the ctct property.
*
* @return
* possible object is
* {@link Contact6 }
*
*/
public Contact6 getCtct() {
return ctct;
}
/**
* Sets the value of the ctct property.
*
* @param value
* allowed object is
* {@link Contact6 }
*
*/
public Customer8 setCtct(Contact6 value) {
this.ctct = value;
return this;
}
@Override
public String toString() {
return ToStringBuilder.reflectionToString(this, ToStringStyle.MULTI_LINE_STYLE);
}
@Override
public boolean equals(Object that) {
return EqualsBuilder.reflectionEquals(this, that);
}
@Override
public int hashCode() {
return HashCodeBuilder.reflectionHashCode(this);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy