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

org.adorsys.psd2.iso20022.camt054.TaxParty2 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 TaxParty2 complex type. * *

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

 * <complexType name="TaxParty2">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="TaxId" type="{urn:iso:std:iso:20022:tech:xsd:camt.054.001.06}Max35Text" minOccurs="0"/>
 *         <element name="RegnId" type="{urn:iso:std:iso:20022:tech:xsd:camt.054.001.06}Max35Text" minOccurs="0"/>
 *         <element name="TaxTp" type="{urn:iso:std:iso:20022:tech:xsd:camt.054.001.06}Max35Text" minOccurs="0"/>
 *         <element name="Authstn" type="{urn:iso:std:iso:20022:tech:xsd:camt.054.001.06}TaxAuthorisation1" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "TaxParty2", propOrder = { "taxId", "regnId", "taxTp", "authstn" }) public class TaxParty2 { @XmlElement(name = "TaxId") protected String taxId; @XmlElement(name = "RegnId") protected String regnId; @XmlElement(name = "TaxTp") protected String taxTp; @XmlElement(name = "Authstn") protected TaxAuthorisation1 authstn; /** * Gets the value of the taxId property. * * @return * possible object is * {@link String } * */ public String getTaxId() { return taxId; } /** * Sets the value of the taxId property. * * @param value * allowed object is * {@link String } * */ public void setTaxId(String value) { this.taxId = value; } /** * Gets the value of the regnId property. * * @return * possible object is * {@link String } * */ public String getRegnId() { return regnId; } /** * Sets the value of the regnId property. * * @param value * allowed object is * {@link String } * */ public void setRegnId(String value) { this.regnId = value; } /** * Gets the value of the taxTp property. * * @return * possible object is * {@link String } * */ public String getTaxTp() { return taxTp; } /** * Sets the value of the taxTp property. * * @param value * allowed object is * {@link String } * */ public void setTaxTp(String value) { this.taxTp = value; } /** * Gets the value of the authstn property. * * @return * possible object is * {@link TaxAuthorisation1 } * */ public TaxAuthorisation1 getAuthstn() { return authstn; } /** * Sets the value of the authstn property. * * @param value * allowed object is * {@link TaxAuthorisation1 } * */ public void setAuthstn(TaxAuthorisation1 value) { this.authstn = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy