org.adorsys.psd2.iso20022.camt053.AccountInterest3 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.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 AccountInterest3 complex type.
*
*
Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
*
* <complexType name="AccountInterest3">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="Tp" type="{urn:iso:std:iso:20022:tech:xsd:camt.053.001.06}InterestType1Choice" minOccurs="0"/>
* <element name="Rate" type="{urn:iso:std:iso:20022:tech:xsd:camt.053.001.06}Rate3" maxOccurs="unbounded" minOccurs="0"/>
* <element name="FrToDt" type="{urn:iso:std:iso:20022:tech:xsd:camt.053.001.06}DateTimePeriodDetails" minOccurs="0"/>
* <element name="Rsn" type="{urn:iso:std:iso:20022:tech:xsd:camt.053.001.06}Max35Text" minOccurs="0"/>
* <element name="Tax" type="{urn:iso:std:iso:20022:tech:xsd:camt.053.001.06}TaxCharges2" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "AccountInterest3", propOrder = {
"tp",
"rate",
"frToDt",
"rsn",
"tax"
})
public class AccountInterest3 {
@XmlElement(name = "Tp")
protected InterestType1Choice tp;
@XmlElement(name = "Rate")
protected List rate;
@XmlElement(name = "FrToDt")
protected DateTimePeriodDetails frToDt;
@XmlElement(name = "Rsn")
protected String rsn;
@XmlElement(name = "Tax")
protected TaxCharges2 tax;
/**
* Ruft den Wert der tp-Eigenschaft ab.
*
* @return
* possible object is
* {@link InterestType1Choice }
*
*/
public InterestType1Choice getTp() {
return tp;
}
/**
* Legt den Wert der tp-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link InterestType1Choice }
*
*/
public void setTp(InterestType1Choice value) {
this.tp = value;
}
/**
* Gets the value of the rate 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 rate property.
*
*
* For example, to add a new item, do as follows:
*
* getRate().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link Rate3 }
*
*
*/
public List getRate() {
if (rate == null) {
rate = new ArrayList();
}
return this.rate;
}
/**
* Ruft den Wert der frToDt-Eigenschaft ab.
*
* @return
* possible object is
* {@link DateTimePeriodDetails }
*
*/
public DateTimePeriodDetails getFrToDt() {
return frToDt;
}
/**
* Legt den Wert der frToDt-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link DateTimePeriodDetails }
*
*/
public void setFrToDt(DateTimePeriodDetails value) {
this.frToDt = value;
}
/**
* Ruft den Wert der rsn-Eigenschaft ab.
*
* @return
* possible object is
* {@link String }
*
*/
public String getRsn() {
return rsn;
}
/**
* Legt den Wert der rsn-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setRsn(String value) {
this.rsn = value;
}
/**
* Ruft den Wert der tax-Eigenschaft ab.
*
* @return
* possible object is
* {@link TaxCharges2 }
*
*/
public TaxCharges2 getTax() {
return tax;
}
/**
* Legt den Wert der tax-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link TaxCharges2 }
*
*/
public void setTax(TaxCharges2 value) {
this.tax = value;
}
}