com.prowidesoftware.swift.model.mx.dic.AccountInterest4 Maven / Gradle / Ivy
Show all versions of pw-iso20022 Show documentation
package com.prowidesoftware.swift.model.mx.dic;
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;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
/**
* Provides further details on the interest that applies to the account at a particular moment in time.
*
*
*
*/
@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 AccountInterest4 setTp(InterestType1Choice value) {
this.tp = value;
return this;
}
/**
* 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 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 AccountInterest4 setFrToDt(DateTimePeriod1 value) {
this.frToDt = value;
return this;
}
/**
* 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 AccountInterest4 setRsn(String value) {
this.rsn = value;
return this;
}
/**
* 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 AccountInterest4 setTax(TaxCharges2 value) {
this.tax = value;
return this;
}
@Override
public String toString() {
return ToStringBuilder.reflectionToString(this, ToStringStyle.MULTI_LINE_STYLE);
}
@Override
public boolean equals(Object that) {
return EqualsBuilder.reflectionEquals(this, that);
}
@Override
public int hashCode() {
return HashCodeBuilder.reflectionHashCode(this);
}
/**
* Adds a new item to the rate list.
* @see #getRate()
*
*/
public AccountInterest4 addRate(Rate4 rate) {
getRate().add(rate);
return this;
}
}