com.prowidesoftware.swift.model.mx.dic.CashOption11 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;
/**
* Provides information about the cash option.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "CashOption11", propOrder = {
"cdtDbtInd",
"ctrctlPmtInd",
"nonElgblPrcdsInd",
"incmTp",
"cshAcctId",
"amtDtls",
"dtDtls",
"fxDtls",
"rateAndAmtDtls",
"pricDtls"
})
public class CashOption11 {
@XmlElement(name = "CdtDbtInd", required = true)
@XmlSchemaType(name = "string")
protected CreditDebitCode cdtDbtInd;
@XmlElement(name = "CtrctlPmtInd")
@XmlSchemaType(name = "string")
protected Payment1Code ctrctlPmtInd;
@XmlElement(name = "NonElgblPrcdsInd")
protected NonEligibleProceedsIndicator1Choice nonElgblPrcdsInd;
@XmlElement(name = "IncmTp")
protected GenericIdentification20 incmTp;
@XmlElement(name = "CshAcctId")
protected CashAccountIdentification5Choice cshAcctId;
@XmlElement(name = "AmtDtls")
protected CorporateActionAmounts9 amtDtls;
@XmlElement(name = "DtDtls", required = true)
protected CorporateActionDate17 dtDtls;
@XmlElement(name = "FXDtls")
protected ForeignExchangeTerms13 fxDtls;
@XmlElement(name = "RateAndAmtDtls")
protected RateDetails3 rateAndAmtDtls;
@XmlElement(name = "PricDtls")
protected PriceDetails3 pricDtls;
/**
* Gets the value of the cdtDbtInd property.
*
* @return
* possible object is
* {@link CreditDebitCode }
*
*/
public CreditDebitCode getCdtDbtInd() {
return cdtDbtInd;
}
/**
* Sets the value of the cdtDbtInd property.
*
* @param value
* allowed object is
* {@link CreditDebitCode }
*
*/
public CashOption11 setCdtDbtInd(CreditDebitCode value) {
this.cdtDbtInd = value;
return this;
}
/**
* Gets the value of the ctrctlPmtInd property.
*
* @return
* possible object is
* {@link Payment1Code }
*
*/
public Payment1Code getCtrctlPmtInd() {
return ctrctlPmtInd;
}
/**
* Sets the value of the ctrctlPmtInd property.
*
* @param value
* allowed object is
* {@link Payment1Code }
*
*/
public CashOption11 setCtrctlPmtInd(Payment1Code value) {
this.ctrctlPmtInd = value;
return this;
}
/**
* Gets the value of the nonElgblPrcdsInd property.
*
* @return
* possible object is
* {@link NonEligibleProceedsIndicator1Choice }
*
*/
public NonEligibleProceedsIndicator1Choice getNonElgblPrcdsInd() {
return nonElgblPrcdsInd;
}
/**
* Sets the value of the nonElgblPrcdsInd property.
*
* @param value
* allowed object is
* {@link NonEligibleProceedsIndicator1Choice }
*
*/
public CashOption11 setNonElgblPrcdsInd(NonEligibleProceedsIndicator1Choice value) {
this.nonElgblPrcdsInd = value;
return this;
}
/**
* Gets the value of the incmTp property.
*
* @return
* possible object is
* {@link GenericIdentification20 }
*
*/
public GenericIdentification20 getIncmTp() {
return incmTp;
}
/**
* Sets the value of the incmTp property.
*
* @param value
* allowed object is
* {@link GenericIdentification20 }
*
*/
public CashOption11 setIncmTp(GenericIdentification20 value) {
this.incmTp = value;
return this;
}
/**
* Gets the value of the cshAcctId property.
*
* @return
* possible object is
* {@link CashAccountIdentification5Choice }
*
*/
public CashAccountIdentification5Choice getCshAcctId() {
return cshAcctId;
}
/**
* Sets the value of the cshAcctId property.
*
* @param value
* allowed object is
* {@link CashAccountIdentification5Choice }
*
*/
public CashOption11 setCshAcctId(CashAccountIdentification5Choice value) {
this.cshAcctId = value;
return this;
}
/**
* Gets the value of the amtDtls property.
*
* @return
* possible object is
* {@link CorporateActionAmounts9 }
*
*/
public CorporateActionAmounts9 getAmtDtls() {
return amtDtls;
}
/**
* Sets the value of the amtDtls property.
*
* @param value
* allowed object is
* {@link CorporateActionAmounts9 }
*
*/
public CashOption11 setAmtDtls(CorporateActionAmounts9 value) {
this.amtDtls = value;
return this;
}
/**
* Gets the value of the dtDtls property.
*
* @return
* possible object is
* {@link CorporateActionDate17 }
*
*/
public CorporateActionDate17 getDtDtls() {
return dtDtls;
}
/**
* Sets the value of the dtDtls property.
*
* @param value
* allowed object is
* {@link CorporateActionDate17 }
*
*/
public CashOption11 setDtDtls(CorporateActionDate17 value) {
this.dtDtls = value;
return this;
}
/**
* Gets the value of the fxDtls property.
*
* @return
* possible object is
* {@link ForeignExchangeTerms13 }
*
*/
public ForeignExchangeTerms13 getFXDtls() {
return fxDtls;
}
/**
* Sets the value of the fxDtls property.
*
* @param value
* allowed object is
* {@link ForeignExchangeTerms13 }
*
*/
public CashOption11 setFXDtls(ForeignExchangeTerms13 value) {
this.fxDtls = value;
return this;
}
/**
* Gets the value of the rateAndAmtDtls property.
*
* @return
* possible object is
* {@link RateDetails3 }
*
*/
public RateDetails3 getRateAndAmtDtls() {
return rateAndAmtDtls;
}
/**
* Sets the value of the rateAndAmtDtls property.
*
* @param value
* allowed object is
* {@link RateDetails3 }
*
*/
public CashOption11 setRateAndAmtDtls(RateDetails3 value) {
this.rateAndAmtDtls = value;
return this;
}
/**
* Gets the value of the pricDtls property.
*
* @return
* possible object is
* {@link PriceDetails3 }
*
*/
public PriceDetails3 getPricDtls() {
return pricDtls;
}
/**
* Sets the value of the pricDtls property.
*
* @param value
* allowed object is
* {@link PriceDetails3 }
*
*/
public CashOption11 setPricDtls(PriceDetails3 value) {
this.pricDtls = 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