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

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

There is a newer version: 2.2.3
Show newest version
//
// 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.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-Klasse für AmountAndCurrencyExchange3 complex type. * *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * <complexType name="AmountAndCurrencyExchange3">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="InstdAmt" type="{urn:iso:std:iso:20022:tech:xsd:camt.053.001.06}AmountAndCurrencyExchangeDetails3" minOccurs="0"/>
 *         <element name="TxAmt" type="{urn:iso:std:iso:20022:tech:xsd:camt.053.001.06}AmountAndCurrencyExchangeDetails3" minOccurs="0"/>
 *         <element name="CntrValAmt" type="{urn:iso:std:iso:20022:tech:xsd:camt.053.001.06}AmountAndCurrencyExchangeDetails3" minOccurs="0"/>
 *         <element name="AnncdPstngAmt" type="{urn:iso:std:iso:20022:tech:xsd:camt.053.001.06}AmountAndCurrencyExchangeDetails3" minOccurs="0"/>
 *         <element name="PrtryAmt" type="{urn:iso:std:iso:20022:tech:xsd:camt.053.001.06}AmountAndCurrencyExchangeDetails4" maxOccurs="unbounded" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "AmountAndCurrencyExchange3", propOrder = { "instdAmt", "txAmt", "cntrValAmt", "anncdPstngAmt", "prtryAmt" }) public class AmountAndCurrencyExchange3 { @XmlElement(name = "InstdAmt") protected AmountAndCurrencyExchangeDetails3 instdAmt; @XmlElement(name = "TxAmt") protected AmountAndCurrencyExchangeDetails3 txAmt; @XmlElement(name = "CntrValAmt") protected AmountAndCurrencyExchangeDetails3 cntrValAmt; @XmlElement(name = "AnncdPstngAmt") protected AmountAndCurrencyExchangeDetails3 anncdPstngAmt; @XmlElement(name = "PrtryAmt") protected List prtryAmt; /** * Ruft den Wert der instdAmt-Eigenschaft ab. * * @return * possible object is * {@link AmountAndCurrencyExchangeDetails3 } * */ public AmountAndCurrencyExchangeDetails3 getInstdAmt() { return instdAmt; } /** * Legt den Wert der instdAmt-Eigenschaft fest. * * @param value * allowed object is * {@link AmountAndCurrencyExchangeDetails3 } * */ public void setInstdAmt(AmountAndCurrencyExchangeDetails3 value) { this.instdAmt = value; } /** * Ruft den Wert der txAmt-Eigenschaft ab. * * @return * possible object is * {@link AmountAndCurrencyExchangeDetails3 } * */ public AmountAndCurrencyExchangeDetails3 getTxAmt() { return txAmt; } /** * Legt den Wert der txAmt-Eigenschaft fest. * * @param value * allowed object is * {@link AmountAndCurrencyExchangeDetails3 } * */ public void setTxAmt(AmountAndCurrencyExchangeDetails3 value) { this.txAmt = value; } /** * Ruft den Wert der cntrValAmt-Eigenschaft ab. * * @return * possible object is * {@link AmountAndCurrencyExchangeDetails3 } * */ public AmountAndCurrencyExchangeDetails3 getCntrValAmt() { return cntrValAmt; } /** * Legt den Wert der cntrValAmt-Eigenschaft fest. * * @param value * allowed object is * {@link AmountAndCurrencyExchangeDetails3 } * */ public void setCntrValAmt(AmountAndCurrencyExchangeDetails3 value) { this.cntrValAmt = value; } /** * Ruft den Wert der anncdPstngAmt-Eigenschaft ab. * * @return * possible object is * {@link AmountAndCurrencyExchangeDetails3 } * */ public AmountAndCurrencyExchangeDetails3 getAnncdPstngAmt() { return anncdPstngAmt; } /** * Legt den Wert der anncdPstngAmt-Eigenschaft fest. * * @param value * allowed object is * {@link AmountAndCurrencyExchangeDetails3 } * */ public void setAnncdPstngAmt(AmountAndCurrencyExchangeDetails3 value) { this.anncdPstngAmt = value; } /** * Gets the value of the prtryAmt 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 prtryAmt property. * *

* For example, to add a new item, do as follows: *

     *    getPrtryAmt().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link AmountAndCurrencyExchangeDetails4 } * * */ public List getPrtryAmt() { if (prtryAmt == null) { prtryAmt = new ArrayList(); } return this.prtryAmt; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy