org.adorsys.psd2.iso20022.camt054.CashDeposit1 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.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-Klasse für CashDeposit1 complex type.
*
*
Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
*
* <complexType name="CashDeposit1">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="NoteDnmtn" type="{urn:iso:std:iso:20022:tech:xsd:camt.054.001.06}ActiveCurrencyAndAmount"/>
* <element name="NbOfNotes" type="{urn:iso:std:iso:20022:tech:xsd:camt.054.001.06}Max15NumericText"/>
* <element name="Amt" type="{urn:iso:std:iso:20022:tech:xsd:camt.054.001.06}ActiveCurrencyAndAmount"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "CashDeposit1", propOrder = {
"noteDnmtn",
"nbOfNotes",
"amt"
})
public class CashDeposit1 {
@XmlElement(name = "NoteDnmtn", required = true)
protected ActiveCurrencyAndAmount noteDnmtn;
@XmlElement(name = "NbOfNotes", required = true)
protected String nbOfNotes;
@XmlElement(name = "Amt", required = true)
protected ActiveCurrencyAndAmount amt;
/**
* Ruft den Wert der noteDnmtn-Eigenschaft ab.
*
* @return
* possible object is
* {@link ActiveCurrencyAndAmount }
*
*/
public ActiveCurrencyAndAmount getNoteDnmtn() {
return noteDnmtn;
}
/**
* Legt den Wert der noteDnmtn-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link ActiveCurrencyAndAmount }
*
*/
public void setNoteDnmtn(ActiveCurrencyAndAmount value) {
this.noteDnmtn = value;
}
/**
* Ruft den Wert der nbOfNotes-Eigenschaft ab.
*
* @return
* possible object is
* {@link String }
*
*/
public String getNbOfNotes() {
return nbOfNotes;
}
/**
* Legt den Wert der nbOfNotes-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setNbOfNotes(String value) {
this.nbOfNotes = value;
}
/**
* Ruft den Wert der amt-Eigenschaft ab.
*
* @return
* possible object is
* {@link ActiveCurrencyAndAmount }
*
*/
public ActiveCurrencyAndAmount getAmt() {
return amt;
}
/**
* Legt den Wert der amt-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link ActiveCurrencyAndAmount }
*
*/
public void setAmt(ActiveCurrencyAndAmount value) {
this.amt = value;
}
}