
org.iso20022.camt053_001.v09.AccountInterest4 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:04:47 PM IST
//
package org.iso20022.camt053_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 AccountInterest4 complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="AccountInterest4">
* <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.09}InterestType1Choice" minOccurs="0"/>
* <element name="Rate" type="{urn:iso:std:iso:20022:tech:xsd:camt.053.001.09}Rate4" maxOccurs="unbounded" minOccurs="0"/>
* <element name="FrToDt" type="{urn:iso:std:iso:20022:tech:xsd:camt.053.001.09}DateTimePeriod1" minOccurs="0"/>
* <element name="Rsn" type="{urn:iso:std:iso:20022:tech:xsd:camt.053.001.09}Max35Text" minOccurs="0"/>
* <element name="Tax" type="{urn:iso:std:iso:20022:tech:xsd:camt.053.001.09}TaxCharges2" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "AccountInterest4", propOrder = {
"tp",
"rate",
"frToDt",
"rsn",
"tax"
})
public class AccountInterest4 {
@XmlElement(name = "Tp")
protected InterestType1Choice tp;
@XmlElement(name = "Rate")
protected List rate;
@XmlElement(name = "FrToDt")
protected DateTimePeriod1 frToDt;
@XmlElement(name = "Rsn")
protected String rsn;
@XmlElement(name = "Tax")
protected TaxCharges2 tax;
/**
* Gets the value of the tp property.
*
* @return
* possible object is
* {@link InterestType1Choice }
*
*/
public InterestType1Choice getTp() {
return tp;
}
/**
* Sets the value of the tp property.
*
* @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 Jakarta XML Binding 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 Rate4 }
*
*
*/
public List getRate() {
if (rate == null) {
rate = new ArrayList();
}
return this.rate;
}
/**
* Gets the value of the frToDt property.
*
* @return
* possible object is
* {@link DateTimePeriod1 }
*
*/
public DateTimePeriod1 getFrToDt() {
return frToDt;
}
/**
* Sets the value of the frToDt property.
*
* @param value
* allowed object is
* {@link DateTimePeriod1 }
*
*/
public void setFrToDt(DateTimePeriod1 value) {
this.frToDt = value;
}
/**
* Gets the value of the rsn property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getRsn() {
return rsn;
}
/**
* Sets the value of the rsn property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setRsn(String value) {
this.rsn = value;
}
/**
* Gets the value of the tax property.
*
* @return
* possible object is
* {@link TaxCharges2 }
*
*/
public TaxCharges2 getTax() {
return tax;
}
/**
* Sets the value of the tax property.
*
* @param value
* allowed object is
* {@link TaxCharges2 }
*
*/
public void setTax(TaxCharges2 value) {
this.tax = value;
}
}