org.iso20022.pain014_001.v09.TaxParty2 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:23 PM IST
//
package org.iso20022.pain014_001.v09;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.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:pain.014.001.09}Max35Text" minOccurs="0"/>
* <element name="RegnId" type="{urn:iso:std:iso:20022:tech:xsd:pain.014.001.09}Max35Text" minOccurs="0"/>
* <element name="TaxTp" type="{urn:iso:std:iso:20022:tech:xsd:pain.014.001.09}Max35Text" minOccurs="0"/>
* <element name="Authstn" type="{urn:iso:std:iso:20022:tech:xsd:pain.014.001.09}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 - 2025 Weber Informatics LLC | Privacy Policy