
com.prowidesoftware.swift.model.mx.dic.InterestPaymentDateRange2 Maven / Gradle / Ivy
package com.prowidesoftware.swift.model.mx.dic;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.datatype.XMLGregorianCalendar;
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;
/**
* Specifies an interest payment schedule, that is an amount that must be paid no sooner than the expected payment date and no later than the due date.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "InterestPaymentDateRange2", propOrder = {
"intrstSchdlId",
"amt",
"dueDt",
"addtlInf"
})
public class InterestPaymentDateRange2 {
@XmlElement(name = "IntrstSchdlId")
protected String intrstSchdlId;
@XmlElement(name = "Amt", required = true)
protected ActiveCurrencyAndAmount amt;
@XmlElement(name = "DueDt", required = true)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar dueDt;
@XmlElement(name = "AddtlInf")
protected String addtlInf;
/**
* Gets the value of the intrstSchdlId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getIntrstSchdlId() {
return intrstSchdlId;
}
/**
* Sets the value of the intrstSchdlId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public InterestPaymentDateRange2 setIntrstSchdlId(String value) {
this.intrstSchdlId = value;
return this;
}
/**
* Gets the value of the amt property.
*
* @return
* possible object is
* {@link ActiveCurrencyAndAmount }
*
*/
public ActiveCurrencyAndAmount getAmt() {
return amt;
}
/**
* Sets the value of the amt property.
*
* @param value
* allowed object is
* {@link ActiveCurrencyAndAmount }
*
*/
public InterestPaymentDateRange2 setAmt(ActiveCurrencyAndAmount value) {
this.amt = value;
return this;
}
/**
* Gets the value of the dueDt property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getDueDt() {
return dueDt;
}
/**
* Sets the value of the dueDt property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public InterestPaymentDateRange2 setDueDt(XMLGregorianCalendar value) {
this.dueDt = value;
return this;
}
/**
* Gets the value of the addtlInf property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getAddtlInf() {
return addtlInf;
}
/**
* Sets the value of the addtlInf property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public InterestPaymentDateRange2 setAddtlInf(String value) {
this.addtlInf = 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);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy