com.prowidesoftware.swift.model.mx.dic.FundOrderData2 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 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;
/**
* Extract of trade data for an investment fund switch order.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "FundOrderData2", propOrder = {
"ttlRedAmt",
"ttlSbcptAmt",
"sttlmAmt",
"sttlmMtd",
"addtlCshIn",
"rsltgCshOut",
"unitCcy",
"qtdCcy"
})
public class FundOrderData2 {
@XmlElement(name = "TtlRedAmt")
protected ActiveOrHistoricCurrencyAndAmount ttlRedAmt;
@XmlElement(name = "TtlSbcptAmt")
protected ActiveOrHistoricCurrencyAndAmount ttlSbcptAmt;
@XmlElement(name = "SttlmAmt")
protected ActiveCurrencyAndAmount sttlmAmt;
@XmlElement(name = "SttlmMtd")
@XmlSchemaType(name = "string")
protected DeliveryReceiptType2Code sttlmMtd;
@XmlElement(name = "AddtlCshIn")
protected ActiveOrHistoricCurrencyAndAmount addtlCshIn;
@XmlElement(name = "RsltgCshOut")
protected ActiveOrHistoricCurrencyAndAmount rsltgCshOut;
@XmlElement(name = "UnitCcy")
protected String unitCcy;
@XmlElement(name = "QtdCcy")
protected String qtdCcy;
/**
* Gets the value of the ttlRedAmt property.
*
* @return
* possible object is
* {@link ActiveOrHistoricCurrencyAndAmount }
*
*/
public ActiveOrHistoricCurrencyAndAmount getTtlRedAmt() {
return ttlRedAmt;
}
/**
* Sets the value of the ttlRedAmt property.
*
* @param value
* allowed object is
* {@link ActiveOrHistoricCurrencyAndAmount }
*
*/
public FundOrderData2 setTtlRedAmt(ActiveOrHistoricCurrencyAndAmount value) {
this.ttlRedAmt = value;
return this;
}
/**
* Gets the value of the ttlSbcptAmt property.
*
* @return
* possible object is
* {@link ActiveOrHistoricCurrencyAndAmount }
*
*/
public ActiveOrHistoricCurrencyAndAmount getTtlSbcptAmt() {
return ttlSbcptAmt;
}
/**
* Sets the value of the ttlSbcptAmt property.
*
* @param value
* allowed object is
* {@link ActiveOrHistoricCurrencyAndAmount }
*
*/
public FundOrderData2 setTtlSbcptAmt(ActiveOrHistoricCurrencyAndAmount value) {
this.ttlSbcptAmt = value;
return this;
}
/**
* Gets the value of the sttlmAmt property.
*
* @return
* possible object is
* {@link ActiveCurrencyAndAmount }
*
*/
public ActiveCurrencyAndAmount getSttlmAmt() {
return sttlmAmt;
}
/**
* Sets the value of the sttlmAmt property.
*
* @param value
* allowed object is
* {@link ActiveCurrencyAndAmount }
*
*/
public FundOrderData2 setSttlmAmt(ActiveCurrencyAndAmount value) {
this.sttlmAmt = value;
return this;
}
/**
* Gets the value of the sttlmMtd property.
*
* @return
* possible object is
* {@link DeliveryReceiptType2Code }
*
*/
public DeliveryReceiptType2Code getSttlmMtd() {
return sttlmMtd;
}
/**
* Sets the value of the sttlmMtd property.
*
* @param value
* allowed object is
* {@link DeliveryReceiptType2Code }
*
*/
public FundOrderData2 setSttlmMtd(DeliveryReceiptType2Code value) {
this.sttlmMtd = value;
return this;
}
/**
* Gets the value of the addtlCshIn property.
*
* @return
* possible object is
* {@link ActiveOrHistoricCurrencyAndAmount }
*
*/
public ActiveOrHistoricCurrencyAndAmount getAddtlCshIn() {
return addtlCshIn;
}
/**
* Sets the value of the addtlCshIn property.
*
* @param value
* allowed object is
* {@link ActiveOrHistoricCurrencyAndAmount }
*
*/
public FundOrderData2 setAddtlCshIn(ActiveOrHistoricCurrencyAndAmount value) {
this.addtlCshIn = value;
return this;
}
/**
* Gets the value of the rsltgCshOut property.
*
* @return
* possible object is
* {@link ActiveOrHistoricCurrencyAndAmount }
*
*/
public ActiveOrHistoricCurrencyAndAmount getRsltgCshOut() {
return rsltgCshOut;
}
/**
* Sets the value of the rsltgCshOut property.
*
* @param value
* allowed object is
* {@link ActiveOrHistoricCurrencyAndAmount }
*
*/
public FundOrderData2 setRsltgCshOut(ActiveOrHistoricCurrencyAndAmount value) {
this.rsltgCshOut = value;
return this;
}
/**
* Gets the value of the unitCcy property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getUnitCcy() {
return unitCcy;
}
/**
* Sets the value of the unitCcy property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public FundOrderData2 setUnitCcy(String value) {
this.unitCcy = value;
return this;
}
/**
* Gets the value of the qtdCcy property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getQtdCcy() {
return qtdCcy;
}
/**
* Sets the value of the qtdCcy property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public FundOrderData2 setQtdCcy(String value) {
this.qtdCcy = 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