com.prowidesoftware.swift.model.mx.dic.SettlementInformation15 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 elements used to provide information on the settlement of the instruction.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "SettlementInformation15", propOrder = {
"instgRmbrsmntAgt",
"instgRmbrsmntAgtAcct",
"instdRmbrsmntAgt",
"instdRmbrsmntAgtAcct"
})
public class SettlementInformation15 {
@XmlElement(name = "InstgRmbrsmntAgt")
protected BranchAndFinancialInstitutionIdentification4 instgRmbrsmntAgt;
@XmlElement(name = "InstgRmbrsmntAgtAcct")
protected CashAccount16 instgRmbrsmntAgtAcct;
@XmlElement(name = "InstdRmbrsmntAgt")
protected BranchAndFinancialInstitutionIdentification4 instdRmbrsmntAgt;
@XmlElement(name = "InstdRmbrsmntAgtAcct")
protected CashAccount16 instdRmbrsmntAgtAcct;
/**
* Gets the value of the instgRmbrsmntAgt property.
*
* @return
* possible object is
* {@link BranchAndFinancialInstitutionIdentification4 }
*
*/
public BranchAndFinancialInstitutionIdentification4 getInstgRmbrsmntAgt() {
return instgRmbrsmntAgt;
}
/**
* Sets the value of the instgRmbrsmntAgt property.
*
* @param value
* allowed object is
* {@link BranchAndFinancialInstitutionIdentification4 }
*
*/
public SettlementInformation15 setInstgRmbrsmntAgt(BranchAndFinancialInstitutionIdentification4 value) {
this.instgRmbrsmntAgt = value;
return this;
}
/**
* Gets the value of the instgRmbrsmntAgtAcct property.
*
* @return
* possible object is
* {@link CashAccount16 }
*
*/
public CashAccount16 getInstgRmbrsmntAgtAcct() {
return instgRmbrsmntAgtAcct;
}
/**
* Sets the value of the instgRmbrsmntAgtAcct property.
*
* @param value
* allowed object is
* {@link CashAccount16 }
*
*/
public SettlementInformation15 setInstgRmbrsmntAgtAcct(CashAccount16 value) {
this.instgRmbrsmntAgtAcct = value;
return this;
}
/**
* Gets the value of the instdRmbrsmntAgt property.
*
* @return
* possible object is
* {@link BranchAndFinancialInstitutionIdentification4 }
*
*/
public BranchAndFinancialInstitutionIdentification4 getInstdRmbrsmntAgt() {
return instdRmbrsmntAgt;
}
/**
* Sets the value of the instdRmbrsmntAgt property.
*
* @param value
* allowed object is
* {@link BranchAndFinancialInstitutionIdentification4 }
*
*/
public SettlementInformation15 setInstdRmbrsmntAgt(BranchAndFinancialInstitutionIdentification4 value) {
this.instdRmbrsmntAgt = value;
return this;
}
/**
* Gets the value of the instdRmbrsmntAgtAcct property.
*
* @return
* possible object is
* {@link CashAccount16 }
*
*/
public CashAccount16 getInstdRmbrsmntAgtAcct() {
return instdRmbrsmntAgtAcct;
}
/**
* Sets the value of the instdRmbrsmntAgtAcct property.
*
* @param value
* allowed object is
* {@link CashAccount16 }
*
*/
public SettlementInformation15 setInstdRmbrsmntAgtAcct(CashAccount16 value) {
this.instdRmbrsmntAgtAcct = 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