com.prowidesoftware.swift.model.mx.dic.PartyTextInformation1 Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pw-iso20022 Show documentation
Show all versions of pw-iso20022 Show documentation
Prowide Library for ISO 20022 messages
package com.prowidesoftware.swift.model.mx.dic;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.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 party, eg, the contact unit or person responsible for the transaction identified in the message.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "PartyTextInformation1", propOrder = {
"dclrtnDtls",
"ptyCtctDtls",
"regnDtls"
})
public class PartyTextInformation1 {
@XmlElement(name = "DclrtnDtls")
protected String dclrtnDtls;
@XmlElement(name = "PtyCtctDtls")
protected String ptyCtctDtls;
@XmlElement(name = "RegnDtls")
protected String regnDtls;
/**
* Gets the value of the dclrtnDtls property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDclrtnDtls() {
return dclrtnDtls;
}
/**
* Sets the value of the dclrtnDtls property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public PartyTextInformation1 setDclrtnDtls(String value) {
this.dclrtnDtls = value;
return this;
}
/**
* Gets the value of the ptyCtctDtls property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getPtyCtctDtls() {
return ptyCtctDtls;
}
/**
* Sets the value of the ptyCtctDtls property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public PartyTextInformation1 setPtyCtctDtls(String value) {
this.ptyCtctDtls = value;
return this;
}
/**
* Gets the value of the regnDtls property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getRegnDtls() {
return regnDtls;
}
/**
* Sets the value of the regnDtls property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public PartyTextInformation1 setRegnDtls(String value) {
this.regnDtls = 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