org.adorsys.psd2.iso20022.camt052.RemittanceAmount3 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 java.util.ArrayList;
import java.util.List;
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 RemittanceAmount3 complex type.
*
*
Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
*
* <complexType name="RemittanceAmount3">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="DuePyblAmt" type="{urn:iso:std:iso:20022:tech:xsd:camt.052.001.06}ActiveOrHistoricCurrencyAndAmount" minOccurs="0"/>
* <element name="DscntApldAmt" type="{urn:iso:std:iso:20022:tech:xsd:camt.052.001.06}DiscountAmountAndType1" maxOccurs="unbounded" minOccurs="0"/>
* <element name="CdtNoteAmt" type="{urn:iso:std:iso:20022:tech:xsd:camt.052.001.06}ActiveOrHistoricCurrencyAndAmount" minOccurs="0"/>
* <element name="TaxAmt" type="{urn:iso:std:iso:20022:tech:xsd:camt.052.001.06}TaxAmountAndType1" maxOccurs="unbounded" minOccurs="0"/>
* <element name="AdjstmntAmtAndRsn" type="{urn:iso:std:iso:20022:tech:xsd:camt.052.001.06}DocumentAdjustment1" maxOccurs="unbounded" minOccurs="0"/>
* <element name="RmtdAmt" type="{urn:iso:std:iso:20022:tech:xsd:camt.052.001.06}ActiveOrHistoricCurrencyAndAmount" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "RemittanceAmount3", propOrder = {
"duePyblAmt",
"dscntApldAmt",
"cdtNoteAmt",
"taxAmt",
"adjstmntAmtAndRsn",
"rmtdAmt"
})
public class RemittanceAmount3 {
@XmlElement(name = "DuePyblAmt")
protected ActiveOrHistoricCurrencyAndAmount duePyblAmt;
@XmlElement(name = "DscntApldAmt")
protected List dscntApldAmt;
@XmlElement(name = "CdtNoteAmt")
protected ActiveOrHistoricCurrencyAndAmount cdtNoteAmt;
@XmlElement(name = "TaxAmt")
protected List taxAmt;
@XmlElement(name = "AdjstmntAmtAndRsn")
protected List adjstmntAmtAndRsn;
@XmlElement(name = "RmtdAmt")
protected ActiveOrHistoricCurrencyAndAmount rmtdAmt;
/**
* Ruft den Wert der duePyblAmt-Eigenschaft ab.
*
* @return
* possible object is
* {@link ActiveOrHistoricCurrencyAndAmount }
*
*/
public ActiveOrHistoricCurrencyAndAmount getDuePyblAmt() {
return duePyblAmt;
}
/**
* Legt den Wert der duePyblAmt-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link ActiveOrHistoricCurrencyAndAmount }
*
*/
public void setDuePyblAmt(ActiveOrHistoricCurrencyAndAmount value) {
this.duePyblAmt = value;
}
/**
* Gets the value of the dscntApldAmt property.
*
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a set
method for the dscntApldAmt property.
*
*
* For example, to add a new item, do as follows:
*
* getDscntApldAmt().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link DiscountAmountAndType1 }
*
*
*/
public List getDscntApldAmt() {
if (dscntApldAmt == null) {
dscntApldAmt = new ArrayList();
}
return this.dscntApldAmt;
}
/**
* Ruft den Wert der cdtNoteAmt-Eigenschaft ab.
*
* @return
* possible object is
* {@link ActiveOrHistoricCurrencyAndAmount }
*
*/
public ActiveOrHistoricCurrencyAndAmount getCdtNoteAmt() {
return cdtNoteAmt;
}
/**
* Legt den Wert der cdtNoteAmt-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link ActiveOrHistoricCurrencyAndAmount }
*
*/
public void setCdtNoteAmt(ActiveOrHistoricCurrencyAndAmount value) {
this.cdtNoteAmt = value;
}
/**
* Gets the value of the taxAmt property.
*
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a set
method for the taxAmt property.
*
*
* For example, to add a new item, do as follows:
*
* getTaxAmt().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link TaxAmountAndType1 }
*
*
*/
public List getTaxAmt() {
if (taxAmt == null) {
taxAmt = new ArrayList();
}
return this.taxAmt;
}
/**
* Gets the value of the adjstmntAmtAndRsn property.
*
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a set
method for the adjstmntAmtAndRsn property.
*
*
* For example, to add a new item, do as follows:
*
* getAdjstmntAmtAndRsn().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link DocumentAdjustment1 }
*
*
*/
public List getAdjstmntAmtAndRsn() {
if (adjstmntAmtAndRsn == null) {
adjstmntAmtAndRsn = new ArrayList();
}
return this.adjstmntAmtAndRsn;
}
/**
* Ruft den Wert der rmtdAmt-Eigenschaft ab.
*
* @return
* possible object is
* {@link ActiveOrHistoricCurrencyAndAmount }
*
*/
public ActiveOrHistoricCurrencyAndAmount getRmtdAmt() {
return rmtdAmt;
}
/**
* Legt den Wert der rmtdAmt-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link ActiveOrHistoricCurrencyAndAmount }
*
*/
public void setRmtdAmt(ActiveOrHistoricCurrencyAndAmount value) {
this.rmtdAmt = value;
}
}