org.adorsys.psd2.iso20022.camt052.DocumentLineIdentification1 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.22 um 02:39:24 PM CET
//
package org.adorsys.psd2.iso20022.camt052;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.datatype.XMLGregorianCalendar;
/**
* Java-Klasse für DocumentLineIdentification1 complex type.
*
*
Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
*
* <complexType name="DocumentLineIdentification1">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="Tp" type="{urn:iso:std:iso:20022:tech:xsd:camt.052.001.06}DocumentLineType1" minOccurs="0"/>
* <element name="Nb" type="{urn:iso:std:iso:20022:tech:xsd:camt.052.001.06}Max35Text" minOccurs="0"/>
* <element name="RltdDt" type="{urn:iso:std:iso:20022:tech:xsd:camt.052.001.06}ISODate" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "DocumentLineIdentification1", propOrder = {
"tp",
"nb",
"rltdDt"
})
public class DocumentLineIdentification1 {
@XmlElement(name = "Tp")
protected DocumentLineType1 tp;
@XmlElement(name = "Nb")
protected String nb;
@XmlElement(name = "RltdDt")
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar rltdDt;
/**
* Ruft den Wert der tp-Eigenschaft ab.
*
* @return
* possible object is
* {@link DocumentLineType1 }
*
*/
public DocumentLineType1 getTp() {
return tp;
}
/**
* Legt den Wert der tp-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link DocumentLineType1 }
*
*/
public void setTp(DocumentLineType1 value) {
this.tp = value;
}
/**
* Ruft den Wert der nb-Eigenschaft ab.
*
* @return
* possible object is
* {@link String }
*
*/
public String getNb() {
return nb;
}
/**
* Legt den Wert der nb-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setNb(String value) {
this.nb = value;
}
/**
* Ruft den Wert der rltdDt-Eigenschaft ab.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getRltdDt() {
return rltdDt;
}
/**
* Legt den Wert der rltdDt-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setRltdDt(XMLGregorianCalendar value) {
this.rltdDt = value;
}
}