com.prowidesoftware.swift.model.mx.dic.CashOutForecast6 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.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.datatype.XMLGregorianCalendar;
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;
/**
* Cash movements out of a fund as a result of investment funds transactions, eg, redemptions or switch-out.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "CashOutForecast6", propOrder = {
"cshSttlmDt",
"subTtlAmt",
"subTtlUnitsNb",
"xcptnlCshFlowInd",
"addtlBal"
})
public class CashOutForecast6 {
@XmlElement(name = "CshSttlmDt", required = true)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar cshSttlmDt;
@XmlElement(name = "SubTtlAmt")
protected ActiveOrHistoricCurrencyAndAmount subTtlAmt;
@XmlElement(name = "SubTtlUnitsNb")
protected FinancialInstrumentQuantity1 subTtlUnitsNb;
@XmlElement(name = "XcptnlCshFlowInd")
protected Boolean xcptnlCshFlowInd;
@XmlElement(name = "AddtlBal")
protected FundBalance1 addtlBal;
/**
* Gets the value of the cshSttlmDt property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getCshSttlmDt() {
return cshSttlmDt;
}
/**
* Sets the value of the cshSttlmDt property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public CashOutForecast6 setCshSttlmDt(XMLGregorianCalendar value) {
this.cshSttlmDt = value;
return this;
}
/**
* Gets the value of the subTtlAmt property.
*
* @return
* possible object is
* {@link ActiveOrHistoricCurrencyAndAmount }
*
*/
public ActiveOrHistoricCurrencyAndAmount getSubTtlAmt() {
return subTtlAmt;
}
/**
* Sets the value of the subTtlAmt property.
*
* @param value
* allowed object is
* {@link ActiveOrHistoricCurrencyAndAmount }
*
*/
public CashOutForecast6 setSubTtlAmt(ActiveOrHistoricCurrencyAndAmount value) {
this.subTtlAmt = value;
return this;
}
/**
* Gets the value of the subTtlUnitsNb property.
*
* @return
* possible object is
* {@link FinancialInstrumentQuantity1 }
*
*/
public FinancialInstrumentQuantity1 getSubTtlUnitsNb() {
return subTtlUnitsNb;
}
/**
* Sets the value of the subTtlUnitsNb property.
*
* @param value
* allowed object is
* {@link FinancialInstrumentQuantity1 }
*
*/
public CashOutForecast6 setSubTtlUnitsNb(FinancialInstrumentQuantity1 value) {
this.subTtlUnitsNb = value;
return this;
}
/**
* Gets the value of the xcptnlCshFlowInd property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isXcptnlCshFlowInd() {
return xcptnlCshFlowInd;
}
/**
* Sets the value of the xcptnlCshFlowInd property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public CashOutForecast6 setXcptnlCshFlowInd(Boolean value) {
this.xcptnlCshFlowInd = value;
return this;
}
/**
* Gets the value of the addtlBal property.
*
* @return
* possible object is
* {@link FundBalance1 }
*
*/
public FundBalance1 getAddtlBal() {
return addtlBal;
}
/**
* Sets the value of the addtlBal property.
*
* @param value
* allowed object is
* {@link FundBalance1 }
*
*/
public CashOutForecast6 setAddtlBal(FundBalance1 value) {
this.addtlBal = 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