com.prowidesoftware.swift.model.mx.dic.Contacts3 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.XmlSchemaType;
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;
/**
* Address for electronic mail (e-mail).
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Contacts3", propOrder = {
"nmPrfx",
"nm",
"phneNb",
"mobNb",
"faxNb",
"emailAdr",
"othr",
"jobTitl",
"rspnsblty",
"dept"
})
public class Contacts3 {
@XmlElement(name = "NmPrfx")
@XmlSchemaType(name = "string")
protected NamePrefix1Code nmPrfx;
@XmlElement(name = "Nm")
protected String nm;
@XmlElement(name = "PhneNb")
protected String phneNb;
@XmlElement(name = "MobNb")
protected String mobNb;
@XmlElement(name = "FaxNb")
protected String faxNb;
@XmlElement(name = "EmailAdr")
protected String emailAdr;
@XmlElement(name = "Othr")
protected String othr;
@XmlElement(name = "JobTitl")
protected String jobTitl;
@XmlElement(name = "Rspnsblty")
protected String rspnsblty;
@XmlElement(name = "Dept")
protected String dept;
/**
* Gets the value of the nmPrfx property.
*
* @return
* possible object is
* {@link NamePrefix1Code }
*
*/
public NamePrefix1Code getNmPrfx() {
return nmPrfx;
}
/**
* Sets the value of the nmPrfx property.
*
* @param value
* allowed object is
* {@link NamePrefix1Code }
*
*/
public Contacts3 setNmPrfx(NamePrefix1Code value) {
this.nmPrfx = value;
return this;
}
/**
* 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 Contacts3 setNm(String value) {
this.nm = value;
return this;
}
/**
* Gets the value of the phneNb property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getPhneNb() {
return phneNb;
}
/**
* Sets the value of the phneNb property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public Contacts3 setPhneNb(String value) {
this.phneNb = value;
return this;
}
/**
* Gets the value of the mobNb property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getMobNb() {
return mobNb;
}
/**
* Sets the value of the mobNb property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public Contacts3 setMobNb(String value) {
this.mobNb = 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 Contacts3 setFaxNb(String value) {
this.faxNb = value;
return this;
}
/**
* Gets the value of the emailAdr property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getEmailAdr() {
return emailAdr;
}
/**
* Sets the value of the emailAdr property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public Contacts3 setEmailAdr(String value) {
this.emailAdr = value;
return this;
}
/**
* Gets the value of the othr property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getOthr() {
return othr;
}
/**
* Sets the value of the othr property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public Contacts3 setOthr(String value) {
this.othr = value;
return this;
}
/**
* Gets the value of the jobTitl property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getJobTitl() {
return jobTitl;
}
/**
* Sets the value of the jobTitl property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public Contacts3 setJobTitl(String value) {
this.jobTitl = value;
return this;
}
/**
* Gets the value of the rspnsblty property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getRspnsblty() {
return rspnsblty;
}
/**
* Sets the value of the rspnsblty property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public Contacts3 setRspnsblty(String value) {
this.rspnsblty = value;
return this;
}
/**
* Gets the value of the dept property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDept() {
return dept;
}
/**
* Sets the value of the dept property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public Contacts3 setDept(String value) {
this.dept = 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