All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.adorsys.psd2.iso20022.camt053.RemittanceAmount2 Maven / Gradle / Ivy

The newest version!
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2018.03.27 at 07:28:42 AM CEST 
//


package org.adorsys.psd2.iso20022.camt053;

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 class for RemittanceAmount2 complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="RemittanceAmount2">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="DuePyblAmt" type="{urn:iso:std:iso:20022:tech:xsd:camt.053.001.06}ActiveOrHistoricCurrencyAndAmount" minOccurs="0"/>
 *         <element name="DscntApldAmt" type="{urn:iso:std:iso:20022:tech:xsd:camt.053.001.06}DiscountAmountAndType1" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="CdtNoteAmt" type="{urn:iso:std:iso:20022:tech:xsd:camt.053.001.06}ActiveOrHistoricCurrencyAndAmount" minOccurs="0"/>
 *         <element name="TaxAmt" type="{urn:iso:std:iso:20022:tech:xsd:camt.053.001.06}TaxAmountAndType1" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="AdjstmntAmtAndRsn" type="{urn:iso:std:iso:20022:tech:xsd:camt.053.001.06}DocumentAdjustment1" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="RmtdAmt" type="{urn:iso:std:iso:20022:tech:xsd:camt.053.001.06}ActiveOrHistoricCurrencyAndAmount" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "RemittanceAmount2", propOrder = { "duePyblAmt", "dscntApldAmt", "cdtNoteAmt", "taxAmt", "adjstmntAmtAndRsn", "rmtdAmt" }) public class RemittanceAmount2 { @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; /** * Gets the value of the duePyblAmt property. * * @return * possible object is * {@link ActiveOrHistoricCurrencyAndAmount } * */ public ActiveOrHistoricCurrencyAndAmount getDuePyblAmt() { return duePyblAmt; } /** * Sets the value of the duePyblAmt property. * * @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; } /** * Gets the value of the cdtNoteAmt property. * * @return * possible object is * {@link ActiveOrHistoricCurrencyAndAmount } * */ public ActiveOrHistoricCurrencyAndAmount getCdtNoteAmt() { return cdtNoteAmt; } /** * Sets the value of the cdtNoteAmt property. * * @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; } /** * Gets the value of the rmtdAmt property. * * @return * possible object is * {@link ActiveOrHistoricCurrencyAndAmount } * */ public ActiveOrHistoricCurrencyAndAmount getRmtdAmt() { return rmtdAmt; } /** * Sets the value of the rmtdAmt property. * * @param value * allowed object is * {@link ActiveOrHistoricCurrencyAndAmount } * */ public void setRmtdAmt(ActiveOrHistoricCurrencyAndAmount value) { this.rmtdAmt = value; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy