com.prowidesoftware.swift.model.mx.dic.InformativeTax1 Maven / Gradle / Ivy
Show all versions of pw-iso20022 Show documentation
package com.prowidesoftware.swift.model.mx.dic;
import java.math.BigDecimal;
import java.util.ArrayList;
import java.util.List;
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;
/**
* Tax related to an investment fund order.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "InformativeTax1", propOrder = {
"taxblIncmPerDvdd",
"euCptlGn",
"euDvddSts",
"pctgOfDebtClm",
"indvTax"
})
public class InformativeTax1 {
@XmlElement(name = "TaxblIncmPerDvdd")
protected ActiveCurrencyAndAmount taxblIncmPerDvdd;
@XmlElement(name = "EUCptlGn")
protected EUCapitalGain3Choice euCptlGn;
@XmlElement(name = "EUDvddSts")
protected EUDividendStatusType2Choice euDvddSts;
@XmlElement(name = "PctgOfDebtClm")
protected BigDecimal pctgOfDebtClm;
@XmlElement(name = "IndvTax")
protected List indvTax;
/**
* Gets the value of the taxblIncmPerDvdd property.
*
* @return
* possible object is
* {@link ActiveCurrencyAndAmount }
*
*/
public ActiveCurrencyAndAmount getTaxblIncmPerDvdd() {
return taxblIncmPerDvdd;
}
/**
* Sets the value of the taxblIncmPerDvdd property.
*
* @param value
* allowed object is
* {@link ActiveCurrencyAndAmount }
*
*/
public InformativeTax1 setTaxblIncmPerDvdd(ActiveCurrencyAndAmount value) {
this.taxblIncmPerDvdd = value;
return this;
}
/**
* Gets the value of the euCptlGn property.
*
* @return
* possible object is
* {@link EUCapitalGain3Choice }
*
*/
public EUCapitalGain3Choice getEUCptlGn() {
return euCptlGn;
}
/**
* Sets the value of the euCptlGn property.
*
* @param value
* allowed object is
* {@link EUCapitalGain3Choice }
*
*/
public InformativeTax1 setEUCptlGn(EUCapitalGain3Choice value) {
this.euCptlGn = value;
return this;
}
/**
* Gets the value of the euDvddSts property.
*
* @return
* possible object is
* {@link EUDividendStatusType2Choice }
*
*/
public EUDividendStatusType2Choice getEUDvddSts() {
return euDvddSts;
}
/**
* Sets the value of the euDvddSts property.
*
* @param value
* allowed object is
* {@link EUDividendStatusType2Choice }
*
*/
public InformativeTax1 setEUDvddSts(EUDividendStatusType2Choice value) {
this.euDvddSts = value;
return this;
}
/**
* Gets the value of the pctgOfDebtClm property.
*
* @return
* possible object is
* {@link BigDecimal }
*
*/
public BigDecimal getPctgOfDebtClm() {
return pctgOfDebtClm;
}
/**
* Sets the value of the pctgOfDebtClm property.
*
* @param value
* allowed object is
* {@link BigDecimal }
*
*/
public InformativeTax1 setPctgOfDebtClm(BigDecimal value) {
this.pctgOfDebtClm = value;
return this;
}
/**
* Gets the value of the indvTax property.
*
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a set
method for the indvTax property.
*
*
* For example, to add a new item, do as follows:
*
* getIndvTax().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link Tax32 }
*
*
*/
public List getIndvTax() {
if (indvTax == null) {
indvTax = new ArrayList();
}
return this.indvTax;
}
@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);
}
/**
* Adds a new item to the indvTax list.
* @see #getIndvTax()
*
*/
public InformativeTax1 addIndvTax(Tax32 indvTax) {
getIndvTax().add(indvTax);
return this;
}
}