org.adorsys.psd2.iso20022.camt060.PartyIdentification43 Maven / Gradle / Ivy
//
// Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11 generiert
// Siehe http://java.sun.com/xml/jaxb
// Änderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren.
// Generiert: 2017.12.20 um 11:40:51 PM CET
//
package org.adorsys.psd2.iso20022.camt060;
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-Klasse für PartyIdentification43 complex type.
*
*
Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
*
* <complexType name="PartyIdentification43">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="Nm" type="{urn:iso:std:iso:20022:tech:xsd:camt.060.001.03}Max140Text" minOccurs="0"/>
* <element name="PstlAdr" type="{urn:iso:std:iso:20022:tech:xsd:camt.060.001.03}PostalAddress6" minOccurs="0"/>
* <element name="Id" type="{urn:iso:std:iso:20022:tech:xsd:camt.060.001.03}Party11Choice" minOccurs="0"/>
* <element name="CtryOfRes" type="{urn:iso:std:iso:20022:tech:xsd:camt.060.001.03}CountryCode" minOccurs="0"/>
* <element name="CtctDtls" type="{urn:iso:std:iso:20022:tech:xsd:camt.060.001.03}ContactDetails2" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "PartyIdentification43", propOrder = {
"nm",
"pstlAdr",
"id",
"ctryOfRes",
"ctctDtls"
})
public class PartyIdentification43 {
@XmlElement(name = "Nm")
protected String nm;
@XmlElement(name = "PstlAdr")
protected PostalAddress6 pstlAdr;
@XmlElement(name = "Id")
protected Party11Choice id;
@XmlElement(name = "CtryOfRes")
protected String ctryOfRes;
@XmlElement(name = "CtctDtls")
protected ContactDetails2 ctctDtls;
/**
* Ruft den Wert der nm-Eigenschaft ab.
*
* @return
* possible object is
* {@link String }
*
*/
public String getNm() {
return nm;
}
/**
* Legt den Wert der nm-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setNm(String value) {
this.nm = value;
}
/**
* Ruft den Wert der pstlAdr-Eigenschaft ab.
*
* @return
* possible object is
* {@link PostalAddress6 }
*
*/
public PostalAddress6 getPstlAdr() {
return pstlAdr;
}
/**
* Legt den Wert der pstlAdr-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link PostalAddress6 }
*
*/
public void setPstlAdr(PostalAddress6 value) {
this.pstlAdr = value;
}
/**
* Ruft den Wert der id-Eigenschaft ab.
*
* @return
* possible object is
* {@link Party11Choice }
*
*/
public Party11Choice getId() {
return id;
}
/**
* Legt den Wert der id-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link Party11Choice }
*
*/
public void setId(Party11Choice value) {
this.id = value;
}
/**
* Ruft den Wert der ctryOfRes-Eigenschaft ab.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCtryOfRes() {
return ctryOfRes;
}
/**
* Legt den Wert der ctryOfRes-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCtryOfRes(String value) {
this.ctryOfRes = value;
}
/**
* Ruft den Wert der ctctDtls-Eigenschaft ab.
*
* @return
* possible object is
* {@link ContactDetails2 }
*
*/
public ContactDetails2 getCtctDtls() {
return ctctDtls;
}
/**
* Legt den Wert der ctctDtls-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link ContactDetails2 }
*
*/
public void setCtctDtls(ContactDetails2 value) {
this.ctctDtls = value;
}
}