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

org.iso20022.pain013_001.v09.RemittanceAmount3 Maven / Gradle / Ivy

//
// This file was generated by the Eclipse Implementation of JAXB, v3.0.1 
// See https://eclipse-ee4j.github.io/jaxb-ri 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2021.09.21 at 06:05:21 PM IST 
//


package org.iso20022.pain013_001.v09;

import java.util.ArrayList;
import java.util.List;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlType;


/**
 * 

Java class for RemittanceAmount3 complex type. * *

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

 * <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:pain.013.001.09}ActiveOrHistoricCurrencyAndAmount" minOccurs="0"/>
 *         <element name="DscntApldAmt" type="{urn:iso:std:iso:20022:tech:xsd:pain.013.001.09}DiscountAmountAndType1" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="CdtNoteAmt" type="{urn:iso:std:iso:20022:tech:xsd:pain.013.001.09}ActiveOrHistoricCurrencyAndAmount" minOccurs="0"/>
 *         <element name="TaxAmt" type="{urn:iso:std:iso:20022:tech:xsd:pain.013.001.09}TaxAmountAndType1" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="AdjstmntAmtAndRsn" type="{urn:iso:std:iso:20022:tech:xsd:pain.013.001.09}DocumentAdjustment1" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="RmtdAmt" type="{urn:iso:std:iso:20022:tech:xsd:pain.013.001.09}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; /** * 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 Jakarta XML Binding 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 Jakarta XML Binding 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 Jakarta XML Binding 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 - 2025 Weber Informatics LLC | Privacy Policy