All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.adorsys.psd2.iso20022.camt054.TaxRecord1 Maven / Gradle / Ivy

//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2018.03.27 at 07:28:42 AM CEST 
//


package org.adorsys.psd2.iso20022.camt054;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for TaxRecord1 complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="TaxRecord1">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="Tp" type="{urn:iso:std:iso:20022:tech:xsd:camt.054.001.06}Max35Text" minOccurs="0"/>
 *         <element name="Ctgy" type="{urn:iso:std:iso:20022:tech:xsd:camt.054.001.06}Max35Text" minOccurs="0"/>
 *         <element name="CtgyDtls" type="{urn:iso:std:iso:20022:tech:xsd:camt.054.001.06}Max35Text" minOccurs="0"/>
 *         <element name="DbtrSts" type="{urn:iso:std:iso:20022:tech:xsd:camt.054.001.06}Max35Text" minOccurs="0"/>
 *         <element name="CertId" type="{urn:iso:std:iso:20022:tech:xsd:camt.054.001.06}Max35Text" minOccurs="0"/>
 *         <element name="FrmsCd" type="{urn:iso:std:iso:20022:tech:xsd:camt.054.001.06}Max35Text" minOccurs="0"/>
 *         <element name="Prd" type="{urn:iso:std:iso:20022:tech:xsd:camt.054.001.06}TaxPeriod1" minOccurs="0"/>
 *         <element name="TaxAmt" type="{urn:iso:std:iso:20022:tech:xsd:camt.054.001.06}TaxAmount1" minOccurs="0"/>
 *         <element name="AddtlInf" type="{urn:iso:std:iso:20022:tech:xsd:camt.054.001.06}Max140Text" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "TaxRecord1", propOrder = { "tp", "ctgy", "ctgyDtls", "dbtrSts", "certId", "frmsCd", "prd", "taxAmt", "addtlInf" }) public class TaxRecord1 { @XmlElement(name = "Tp") protected String tp; @XmlElement(name = "Ctgy") protected String ctgy; @XmlElement(name = "CtgyDtls") protected String ctgyDtls; @XmlElement(name = "DbtrSts") protected String dbtrSts; @XmlElement(name = "CertId") protected String certId; @XmlElement(name = "FrmsCd") protected String frmsCd; @XmlElement(name = "Prd") protected TaxPeriod1 prd; @XmlElement(name = "TaxAmt") protected TaxAmount1 taxAmt; @XmlElement(name = "AddtlInf") protected String addtlInf; /** * Gets the value of the tp property. * * @return * possible object is * {@link String } * */ public String getTp() { return tp; } /** * Sets the value of the tp property. * * @param value * allowed object is * {@link String } * */ public void setTp(String value) { this.tp = value; } /** * Gets the value of the ctgy property. * * @return * possible object is * {@link String } * */ public String getCtgy() { return ctgy; } /** * Sets the value of the ctgy property. * * @param value * allowed object is * {@link String } * */ public void setCtgy(String value) { this.ctgy = value; } /** * Gets the value of the ctgyDtls property. * * @return * possible object is * {@link String } * */ public String getCtgyDtls() { return ctgyDtls; } /** * Sets the value of the ctgyDtls property. * * @param value * allowed object is * {@link String } * */ public void setCtgyDtls(String value) { this.ctgyDtls = value; } /** * Gets the value of the dbtrSts property. * * @return * possible object is * {@link String } * */ public String getDbtrSts() { return dbtrSts; } /** * Sets the value of the dbtrSts property. * * @param value * allowed object is * {@link String } * */ public void setDbtrSts(String value) { this.dbtrSts = value; } /** * Gets the value of the certId property. * * @return * possible object is * {@link String } * */ public String getCertId() { return certId; } /** * Sets the value of the certId property. * * @param value * allowed object is * {@link String } * */ public void setCertId(String value) { this.certId = value; } /** * Gets the value of the frmsCd property. * * @return * possible object is * {@link String } * */ public String getFrmsCd() { return frmsCd; } /** * Sets the value of the frmsCd property. * * @param value * allowed object is * {@link String } * */ public void setFrmsCd(String value) { this.frmsCd = value; } /** * Gets the value of the prd property. * * @return * possible object is * {@link TaxPeriod1 } * */ public TaxPeriod1 getPrd() { return prd; } /** * Sets the value of the prd property. * * @param value * allowed object is * {@link TaxPeriod1 } * */ public void setPrd(TaxPeriod1 value) { this.prd = value; } /** * Gets the value of the taxAmt property. * * @return * possible object is * {@link TaxAmount1 } * */ public TaxAmount1 getTaxAmt() { return taxAmt; } /** * Sets the value of the taxAmt property. * * @param value * allowed object is * {@link TaxAmount1 } * */ public void setTaxAmt(TaxAmount1 value) { this.taxAmt = value; } /** * Gets the value of the addtlInf property. * * @return * possible object is * {@link String } * */ public String getAddtlInf() { return addtlInf; } /** * Sets the value of the addtlInf property. * * @param value * allowed object is * {@link String } * */ public void setAddtlInf(String value) { this.addtlInf = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy