com.prowidesoftware.swift.model.mx.dic.ReferredMandateDocument2 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
The newest version!
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;
/**
* Identifies the documents referred to in the remittance information.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ReferredMandateDocument2", propOrder = {
"tp",
"nb",
"cdtrRef",
"rltdDt"
})
public class ReferredMandateDocument2 {
@XmlElement(name = "Tp")
protected DocumentType1 tp;
@XmlElement(name = "Nb")
protected String nb;
@XmlElement(name = "CdtrRef")
protected String cdtrRef;
@XmlElement(name = "RltdDt")
protected DateAndType1 rltdDt;
/**
* Gets the value of the tp property.
*
* @return
* possible object is
* {@link DocumentType1 }
*
*/
public DocumentType1 getTp() {
return tp;
}
/**
* Sets the value of the tp property.
*
* @param value
* allowed object is
* {@link DocumentType1 }
*
*/
public ReferredMandateDocument2 setTp(DocumentType1 value) {
this.tp = value;
return this;
}
/**
* Gets the value of the nb property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getNb() {
return nb;
}
/**
* Sets the value of the nb property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public ReferredMandateDocument2 setNb(String value) {
this.nb = value;
return this;
}
/**
* Gets the value of the cdtrRef property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCdtrRef() {
return cdtrRef;
}
/**
* Sets the value of the cdtrRef property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public ReferredMandateDocument2 setCdtrRef(String value) {
this.cdtrRef = value;
return this;
}
/**
* Gets the value of the rltdDt property.
*
* @return
* possible object is
* {@link DateAndType1 }
*
*/
public DateAndType1 getRltdDt() {
return rltdDt;
}
/**
* Sets the value of the rltdDt property.
*
* @param value
* allowed object is
* {@link DateAndType1 }
*
*/
public ReferredMandateDocument2 setRltdDt(DateAndType1 value) {
this.rltdDt = 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