com.prowidesoftware.swift.model.mx.dic.Contact7 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;
/**
* Communication device number or electronic address used for communication.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Contact7", propOrder = {
"nm",
"faxNb",
"telNb",
"email",
"urlAdr"
})
public class Contact7 {
@XmlElement(name = "Nm")
protected String nm;
@XmlElement(name = "FaxNb")
protected String faxNb;
@XmlElement(name = "TelNb")
protected String telNb;
@XmlElement(name = "Email")
protected String email;
@XmlElement(name = "URLAdr")
protected String urlAdr;
/**
* 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 Contact7 setNm(String value) {
this.nm = value;
return this;
}
/**
* Gets the value of the faxNb property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getFaxNb() {
return faxNb;
}
/**
* Sets the value of the faxNb property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public Contact7 setFaxNb(String value) {
this.faxNb = value;
return this;
}
/**
* Gets the value of the telNb property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getTelNb() {
return telNb;
}
/**
* Sets the value of the telNb property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public Contact7 setTelNb(String value) {
this.telNb = value;
return this;
}
/**
* 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 Contact7 setEmail(String value) {
this.email = value;
return this;
}
/**
* Gets the value of the urlAdr property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getURLAdr() {
return urlAdr;
}
/**
* Sets the value of the urlAdr property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public Contact7 setURLAdr(String value) {
this.urlAdr = 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