com.prowidesoftware.swift.model.mx.dic.Cheque9 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;
/**
* Set of characteristics related to a cheque instruction, such as cheque type or cheque number.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Cheque9", propOrder = {
"nb",
"pyeeId",
"drweeId",
"drwrId"
})
public class Cheque9 {
@XmlElement(name = "Nb")
protected String nb;
@XmlElement(name = "PyeeId", required = true)
protected PartyIdentification113 pyeeId;
@XmlElement(name = "DrweeId")
protected FinancialInstitutionIdentification10 drweeId;
@XmlElement(name = "DrwrId")
protected PartyIdentification113 drwrId;
/**
* 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 Cheque9 setNb(String value) {
this.nb = value;
return this;
}
/**
* Gets the value of the pyeeId property.
*
* @return
* possible object is
* {@link PartyIdentification113 }
*
*/
public PartyIdentification113 getPyeeId() {
return pyeeId;
}
/**
* Sets the value of the pyeeId property.
*
* @param value
* allowed object is
* {@link PartyIdentification113 }
*
*/
public Cheque9 setPyeeId(PartyIdentification113 value) {
this.pyeeId = value;
return this;
}
/**
* Gets the value of the drweeId property.
*
* @return
* possible object is
* {@link FinancialInstitutionIdentification10 }
*
*/
public FinancialInstitutionIdentification10 getDrweeId() {
return drweeId;
}
/**
* Sets the value of the drweeId property.
*
* @param value
* allowed object is
* {@link FinancialInstitutionIdentification10 }
*
*/
public Cheque9 setDrweeId(FinancialInstitutionIdentification10 value) {
this.drweeId = value;
return this;
}
/**
* Gets the value of the drwrId property.
*
* @return
* possible object is
* {@link PartyIdentification113 }
*
*/
public PartyIdentification113 getDrwrId() {
return drwrId;
}
/**
* Sets the value of the drwrId property.
*
* @param value
* allowed object is
* {@link PartyIdentification113 }
*
*/
public Cheque9 setDrwrId(PartyIdentification113 value) {
this.drwrId = 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