com.prowidesoftware.swift.model.mx.dic.CashNetPosition3 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;
/**
* Specifies details of the cash net position.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "CashNetPosition3", propOrder = {
"netPosId",
"cshAcctOwnr",
"cshAcct",
"authrsdAmt"
})
public class CashNetPosition3 {
@XmlElement(name = "NetPosId", required = true)
protected String netPosId;
@XmlElement(name = "CshAcctOwnr")
protected PartyIdentification125 cshAcctOwnr;
@XmlElement(name = "CshAcct")
protected CashAccount24 cshAcct;
@XmlElement(name = "AuthrsdAmt")
protected AmountAndDirection52 authrsdAmt;
/**
* Gets the value of the netPosId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getNetPosId() {
return netPosId;
}
/**
* Sets the value of the netPosId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public CashNetPosition3 setNetPosId(String value) {
this.netPosId = value;
return this;
}
/**
* Gets the value of the cshAcctOwnr property.
*
* @return
* possible object is
* {@link PartyIdentification125 }
*
*/
public PartyIdentification125 getCshAcctOwnr() {
return cshAcctOwnr;
}
/**
* Sets the value of the cshAcctOwnr property.
*
* @param value
* allowed object is
* {@link PartyIdentification125 }
*
*/
public CashNetPosition3 setCshAcctOwnr(PartyIdentification125 value) {
this.cshAcctOwnr = value;
return this;
}
/**
* Gets the value of the cshAcct property.
*
* @return
* possible object is
* {@link CashAccount24 }
*
*/
public CashAccount24 getCshAcct() {
return cshAcct;
}
/**
* Sets the value of the cshAcct property.
*
* @param value
* allowed object is
* {@link CashAccount24 }
*
*/
public CashNetPosition3 setCshAcct(CashAccount24 value) {
this.cshAcct = value;
return this;
}
/**
* Gets the value of the authrsdAmt property.
*
* @return
* possible object is
* {@link AmountAndDirection52 }
*
*/
public AmountAndDirection52 getAuthrsdAmt() {
return authrsdAmt;
}
/**
* Sets the value of the authrsdAmt property.
*
* @param value
* allowed object is
* {@link AmountAndDirection52 }
*
*/
public CashNetPosition3 setAuthrsdAmt(AmountAndDirection52 value) {
this.authrsdAmt = 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