com.prowidesoftware.swift.model.mx.dic.Tax32 Maven / Gradle / Ivy
package com.prowidesoftware.swift.model.mx.dic;
import java.math.BigDecimal;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.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 = "Tax32", propOrder = {
"tp",
"inftvAmt",
"inftvRate",
"ctry",
"xmptnInd",
"xmptnRsn",
"rcptId",
"taxClctnDtls"
})
public class Tax32 {
@XmlElement(name = "Tp", required = true)
protected TaxType3Choice tp;
@XmlElement(name = "InftvAmt")
protected ActiveCurrencyAndAmount inftvAmt;
@XmlElement(name = "InftvRate")
protected BigDecimal inftvRate;
@XmlElement(name = "Ctry")
protected String ctry;
@XmlElement(name = "XmptnInd")
protected boolean xmptnInd;
@XmlElement(name = "XmptnRsn")
protected ExemptionReason1Choice xmptnRsn;
@XmlElement(name = "RcptId")
protected PartyIdentification113 rcptId;
@XmlElement(name = "TaxClctnDtls")
protected TaxCalculationInformation10 taxClctnDtls;
/**
* Gets the value of the tp property.
*
* @return
* possible object is
* {@link TaxType3Choice }
*
*/
public TaxType3Choice getTp() {
return tp;
}
/**
* Sets the value of the tp property.
*
* @param value
* allowed object is
* {@link TaxType3Choice }
*
*/
public Tax32 setTp(TaxType3Choice value) {
this.tp = value;
return this;
}
/**
* Gets the value of the inftvAmt property.
*
* @return
* possible object is
* {@link ActiveCurrencyAndAmount }
*
*/
public ActiveCurrencyAndAmount getInftvAmt() {
return inftvAmt;
}
/**
* Sets the value of the inftvAmt property.
*
* @param value
* allowed object is
* {@link ActiveCurrencyAndAmount }
*
*/
public Tax32 setInftvAmt(ActiveCurrencyAndAmount value) {
this.inftvAmt = value;
return this;
}
/**
* Gets the value of the inftvRate property.
*
* @return
* possible object is
* {@link BigDecimal }
*
*/
public BigDecimal getInftvRate() {
return inftvRate;
}
/**
* Sets the value of the inftvRate property.
*
* @param value
* allowed object is
* {@link BigDecimal }
*
*/
public Tax32 setInftvRate(BigDecimal value) {
this.inftvRate = value;
return this;
}
/**
* Gets the value of the ctry property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCtry() {
return ctry;
}
/**
* Sets the value of the ctry property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public Tax32 setCtry(String value) {
this.ctry = value;
return this;
}
/**
* Gets the value of the xmptnInd property.
*
*/
public boolean isXmptnInd() {
return xmptnInd;
}
/**
* Sets the value of the xmptnInd property.
*
*/
public Tax32 setXmptnInd(boolean value) {
this.xmptnInd = value;
return this;
}
/**
* Gets the value of the xmptnRsn property.
*
* @return
* possible object is
* {@link ExemptionReason1Choice }
*
*/
public ExemptionReason1Choice getXmptnRsn() {
return xmptnRsn;
}
/**
* Sets the value of the xmptnRsn property.
*
* @param value
* allowed object is
* {@link ExemptionReason1Choice }
*
*/
public Tax32 setXmptnRsn(ExemptionReason1Choice value) {
this.xmptnRsn = value;
return this;
}
/**
* Gets the value of the rcptId property.
*
* @return
* possible object is
* {@link PartyIdentification113 }
*
*/
public PartyIdentification113 getRcptId() {
return rcptId;
}
/**
* Sets the value of the rcptId property.
*
* @param value
* allowed object is
* {@link PartyIdentification113 }
*
*/
public Tax32 setRcptId(PartyIdentification113 value) {
this.rcptId = value;
return this;
}
/**
* Gets the value of the taxClctnDtls property.
*
* @return
* possible object is
* {@link TaxCalculationInformation10 }
*
*/
public TaxCalculationInformation10 getTaxClctnDtls() {
return taxClctnDtls;
}
/**
* Sets the value of the taxClctnDtls property.
*
* @param value
* allowed object is
* {@link TaxCalculationInformation10 }
*
*/
public Tax32 setTaxClctnDtls(TaxCalculationInformation10 value) {
this.taxClctnDtls = 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