org.iso20022.pain008_001.v10.TaxData1 Maven / Gradle / Ivy
//
// This file was generated by the Eclipse Implementation of JAXB, v3.0.1
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2021.09.21 at 06:05:19 PM IST
//
package org.iso20022.pain008_001.v10;
import java.math.BigDecimal;
import java.util.ArrayList;
import java.util.List;
import javax.xml.datatype.XMLGregorianCalendar;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlSchemaType;
import jakarta.xml.bind.annotation.XmlType;
/**
* Java class for TaxData1 complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="TaxData1">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="Cdtr" type="{urn:iso:std:iso:20022:tech:xsd:pain.008.001.10}TaxParty1" minOccurs="0"/>
* <element name="Dbtr" type="{urn:iso:std:iso:20022:tech:xsd:pain.008.001.10}TaxParty2" minOccurs="0"/>
* <element name="UltmtDbtr" type="{urn:iso:std:iso:20022:tech:xsd:pain.008.001.10}TaxParty2" minOccurs="0"/>
* <element name="AdmstnZone" type="{urn:iso:std:iso:20022:tech:xsd:pain.008.001.10}Max35Text" minOccurs="0"/>
* <element name="RefNb" type="{urn:iso:std:iso:20022:tech:xsd:pain.008.001.10}Max140Text" minOccurs="0"/>
* <element name="Mtd" type="{urn:iso:std:iso:20022:tech:xsd:pain.008.001.10}Max35Text" minOccurs="0"/>
* <element name="TtlTaxblBaseAmt" type="{urn:iso:std:iso:20022:tech:xsd:pain.008.001.10}ActiveOrHistoricCurrencyAndAmount" minOccurs="0"/>
* <element name="TtlTaxAmt" type="{urn:iso:std:iso:20022:tech:xsd:pain.008.001.10}ActiveOrHistoricCurrencyAndAmount" minOccurs="0"/>
* <element name="Dt" type="{urn:iso:std:iso:20022:tech:xsd:pain.008.001.10}ISODate" minOccurs="0"/>
* <element name="SeqNb" type="{urn:iso:std:iso:20022:tech:xsd:pain.008.001.10}Number" minOccurs="0"/>
* <element name="Rcrd" type="{urn:iso:std:iso:20022:tech:xsd:pain.008.001.10}TaxRecord3" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "TaxData1", propOrder = {
"cdtr",
"dbtr",
"ultmtDbtr",
"admstnZone",
"refNb",
"mtd",
"ttlTaxblBaseAmt",
"ttlTaxAmt",
"dt",
"seqNb",
"rcrd"
})
public class TaxData1 {
@XmlElement(name = "Cdtr")
protected TaxParty1 cdtr;
@XmlElement(name = "Dbtr")
protected TaxParty2 dbtr;
@XmlElement(name = "UltmtDbtr")
protected TaxParty2 ultmtDbtr;
@XmlElement(name = "AdmstnZone")
protected String admstnZone;
@XmlElement(name = "RefNb")
protected String refNb;
@XmlElement(name = "Mtd")
protected String mtd;
@XmlElement(name = "TtlTaxblBaseAmt")
protected ActiveOrHistoricCurrencyAndAmount ttlTaxblBaseAmt;
@XmlElement(name = "TtlTaxAmt")
protected ActiveOrHistoricCurrencyAndAmount ttlTaxAmt;
@XmlElement(name = "Dt")
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar dt;
@XmlElement(name = "SeqNb")
protected BigDecimal seqNb;
@XmlElement(name = "Rcrd")
protected List rcrd;
/**
* Gets the value of the cdtr property.
*
* @return
* possible object is
* {@link TaxParty1 }
*
*/
public TaxParty1 getCdtr() {
return cdtr;
}
/**
* Sets the value of the cdtr property.
*
* @param value
* allowed object is
* {@link TaxParty1 }
*
*/
public void setCdtr(TaxParty1 value) {
this.cdtr = value;
}
/**
* Gets the value of the dbtr property.
*
* @return
* possible object is
* {@link TaxParty2 }
*
*/
public TaxParty2 getDbtr() {
return dbtr;
}
/**
* Sets the value of the dbtr property.
*
* @param value
* allowed object is
* {@link TaxParty2 }
*
*/
public void setDbtr(TaxParty2 value) {
this.dbtr = value;
}
/**
* Gets the value of the ultmtDbtr property.
*
* @return
* possible object is
* {@link TaxParty2 }
*
*/
public TaxParty2 getUltmtDbtr() {
return ultmtDbtr;
}
/**
* Sets the value of the ultmtDbtr property.
*
* @param value
* allowed object is
* {@link TaxParty2 }
*
*/
public void setUltmtDbtr(TaxParty2 value) {
this.ultmtDbtr = value;
}
/**
* Gets the value of the admstnZone property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getAdmstnZone() {
return admstnZone;
}
/**
* Sets the value of the admstnZone property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setAdmstnZone(String value) {
this.admstnZone = value;
}
/**
* Gets the value of the refNb property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getRefNb() {
return refNb;
}
/**
* Sets the value of the refNb property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setRefNb(String value) {
this.refNb = value;
}
/**
* Gets the value of the mtd property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getMtd() {
return mtd;
}
/**
* Sets the value of the mtd property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setMtd(String value) {
this.mtd = value;
}
/**
* Gets the value of the ttlTaxblBaseAmt property.
*
* @return
* possible object is
* {@link ActiveOrHistoricCurrencyAndAmount }
*
*/
public ActiveOrHistoricCurrencyAndAmount getTtlTaxblBaseAmt() {
return ttlTaxblBaseAmt;
}
/**
* Sets the value of the ttlTaxblBaseAmt property.
*
* @param value
* allowed object is
* {@link ActiveOrHistoricCurrencyAndAmount }
*
*/
public void setTtlTaxblBaseAmt(ActiveOrHistoricCurrencyAndAmount value) {
this.ttlTaxblBaseAmt = value;
}
/**
* Gets the value of the ttlTaxAmt property.
*
* @return
* possible object is
* {@link ActiveOrHistoricCurrencyAndAmount }
*
*/
public ActiveOrHistoricCurrencyAndAmount getTtlTaxAmt() {
return ttlTaxAmt;
}
/**
* Sets the value of the ttlTaxAmt property.
*
* @param value
* allowed object is
* {@link ActiveOrHistoricCurrencyAndAmount }
*
*/
public void setTtlTaxAmt(ActiveOrHistoricCurrencyAndAmount value) {
this.ttlTaxAmt = value;
}
/**
* Gets the value of the dt property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getDt() {
return dt;
}
/**
* Sets the value of the dt property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setDt(XMLGregorianCalendar value) {
this.dt = value;
}
/**
* Gets the value of the seqNb property.
*
* @return
* possible object is
* {@link BigDecimal }
*
*/
public BigDecimal getSeqNb() {
return seqNb;
}
/**
* Sets the value of the seqNb property.
*
* @param value
* allowed object is
* {@link BigDecimal }
*
*/
public void setSeqNb(BigDecimal value) {
this.seqNb = value;
}
/**
* Gets the value of the rcrd 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 Jakarta XML Binding object.
* This is why there is not a set
method for the rcrd property.
*
*
* For example, to add a new item, do as follows:
*
* getRcrd().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link TaxRecord3 }
*
*
*/
public List getRcrd() {
if (rcrd == null) {
rcrd = new ArrayList();
}
return this.rcrd;
}
}