Class TaxAmount1
- java.lang.Object
-
- org.kapott.hbci.sepa.jaxb.camt_052_001_06.TaxAmount1
-
public class TaxAmount1 extends java.lang.ObjectJava class for TaxAmount1 complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="TaxAmount1"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="Rate" type="{urn:iso:std:iso:20022:tech:xsd:camt.052.001.06}PercentageRate" minOccurs="0"/> <element name="TaxblBaseAmt" type="{urn:iso:std:iso:20022:tech:xsd:camt.052.001.06}ActiveOrHistoricCurrencyAndAmount" minOccurs="0"/> <element name="TtlAmt" type="{urn:iso:std:iso:20022:tech:xsd:camt.052.001.06}ActiveOrHistoricCurrencyAndAmount" minOccurs="0"/> <element name="Dtls" type="{urn:iso:std:iso:20022:tech:xsd:camt.052.001.06}TaxRecordDetails1" maxOccurs="unbounded" minOccurs="0"/> </sequence> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected java.util.List<TaxRecordDetails1>dtlsprotected java.math.BigDecimalrateprotected ActiveOrHistoricCurrencyAndAmounttaxblBaseAmtprotected ActiveOrHistoricCurrencyAndAmountttlAmt
-
Constructor Summary
Constructors Constructor Description TaxAmount1()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.List<TaxRecordDetails1>getDtls()Gets the value of the dtls property.java.math.BigDecimalgetRate()Gets the value of the rate property.ActiveOrHistoricCurrencyAndAmountgetTaxblBaseAmt()Gets the value of the taxblBaseAmt property.ActiveOrHistoricCurrencyAndAmountgetTtlAmt()Gets the value of the ttlAmt property.voidsetRate(java.math.BigDecimal value)Sets the value of the rate property.voidsetTaxblBaseAmt(ActiveOrHistoricCurrencyAndAmount value)Sets the value of the taxblBaseAmt property.voidsetTtlAmt(ActiveOrHistoricCurrencyAndAmount value)Sets the value of the ttlAmt property.
-
-
-
Field Detail
-
rate
protected java.math.BigDecimal rate
-
taxblBaseAmt
protected ActiveOrHistoricCurrencyAndAmount taxblBaseAmt
-
ttlAmt
protected ActiveOrHistoricCurrencyAndAmount ttlAmt
-
dtls
protected java.util.List<TaxRecordDetails1> dtls
-
-
Method Detail
-
getRate
public java.math.BigDecimal getRate()
Gets the value of the rate property.- Returns:
- possible object is
BigDecimal
-
setRate
public void setRate(java.math.BigDecimal value)
Sets the value of the rate property.- Parameters:
value- allowed object isBigDecimal
-
getTaxblBaseAmt
public ActiveOrHistoricCurrencyAndAmount getTaxblBaseAmt()
Gets the value of the taxblBaseAmt property.- Returns:
- possible object is
ActiveOrHistoricCurrencyAndAmount
-
setTaxblBaseAmt
public void setTaxblBaseAmt(ActiveOrHistoricCurrencyAndAmount value)
Sets the value of the taxblBaseAmt property.- Parameters:
value- allowed object isActiveOrHistoricCurrencyAndAmount
-
getTtlAmt
public ActiveOrHistoricCurrencyAndAmount getTtlAmt()
Gets the value of the ttlAmt property.- Returns:
- possible object is
ActiveOrHistoricCurrencyAndAmount
-
setTtlAmt
public void setTtlAmt(ActiveOrHistoricCurrencyAndAmount value)
Sets the value of the ttlAmt property.- Parameters:
value- allowed object isActiveOrHistoricCurrencyAndAmount
-
getDtls
public java.util.List<TaxRecordDetails1> getDtls()
Gets the value of the dtls 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
setmethod for the dtls property.For example, to add a new item, do as follows:
getDtls().add(newItem);Objects of the following type(s) are allowed in the list
TaxRecordDetails1
-
-