com.prowidesoftware.swift.model.mx.dic.PartyIdentificationSD2 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;
/**
* Provides additional information regarding the existing agent component.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "PartyIdentificationSD2", propOrder = {
"plcAndNm",
"agtId",
"agtTelNb",
"ctctInf",
"agtEmailAdr",
"agtAdr"
})
public class PartyIdentificationSD2 {
@XmlElement(name = "PlcAndNm", required = true)
protected String plcAndNm;
@XmlElement(name = "AgtId")
protected String agtId;
@XmlElement(name = "AgtTelNb")
protected String agtTelNb;
@XmlElement(name = "CtctInf")
protected PartyIdentificationSD4 ctctInf;
@XmlElement(name = "AgtEmailAdr")
protected String agtEmailAdr;
@XmlElement(name = "AgtAdr")
protected PostalAddress1 agtAdr;
/**
* Gets the value of the plcAndNm property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getPlcAndNm() {
return plcAndNm;
}
/**
* Sets the value of the plcAndNm property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public PartyIdentificationSD2 setPlcAndNm(String value) {
this.plcAndNm = value;
return this;
}
/**
* Gets the value of the agtId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getAgtId() {
return agtId;
}
/**
* Sets the value of the agtId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public PartyIdentificationSD2 setAgtId(String value) {
this.agtId = value;
return this;
}
/**
* Gets the value of the agtTelNb property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getAgtTelNb() {
return agtTelNb;
}
/**
* Sets the value of the agtTelNb property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public PartyIdentificationSD2 setAgtTelNb(String value) {
this.agtTelNb = value;
return this;
}
/**
* Gets the value of the ctctInf property.
*
* @return
* possible object is
* {@link PartyIdentificationSD4 }
*
*/
public PartyIdentificationSD4 getCtctInf() {
return ctctInf;
}
/**
* Sets the value of the ctctInf property.
*
* @param value
* allowed object is
* {@link PartyIdentificationSD4 }
*
*/
public PartyIdentificationSD2 setCtctInf(PartyIdentificationSD4 value) {
this.ctctInf = value;
return this;
}
/**
* Gets the value of the agtEmailAdr property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getAgtEmailAdr() {
return agtEmailAdr;
}
/**
* Sets the value of the agtEmailAdr property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public PartyIdentificationSD2 setAgtEmailAdr(String value) {
this.agtEmailAdr = value;
return this;
}
/**
* Gets the value of the agtAdr property.
*
* @return
* possible object is
* {@link PostalAddress1 }
*
*/
public PostalAddress1 getAgtAdr() {
return agtAdr;
}
/**
* Sets the value of the agtAdr property.
*
* @param value
* allowed object is
* {@link PostalAddress1 }
*
*/
public PartyIdentificationSD2 setAgtAdr(PostalAddress1 value) {
this.agtAdr = 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