
com.prowidesoftware.swift.model.mx.dic.RateAdjustment1 Maven / Gradle / Ivy
package com.prowidesoftware.swift.model.mx.dic;
import java.math.BigDecimal;
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 the rate adjustments as determined by the rate schedule.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "RateAdjustment1", propOrder = {
"rate",
"adjstmntDt"
})
public class RateAdjustment1 {
@XmlElement(name = "Rate", required = true)
protected BigDecimal rate;
@XmlElement(name = "AdjstmntDt", required = true)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar adjstmntDt;
/**
* Gets the value of the rate property.
*
* @return
* possible object is
* {@link BigDecimal }
*
*/
public BigDecimal getRate() {
return rate;
}
/**
* Sets the value of the rate property.
*
* @param value
* allowed object is
* {@link BigDecimal }
*
*/
public RateAdjustment1 setRate(BigDecimal value) {
this.rate = value;
return this;
}
/**
* Gets the value of the adjstmntDt property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getAdjstmntDt() {
return adjstmntDt;
}
/**
* Sets the value of the adjstmntDt property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public RateAdjustment1 setAdjstmntDt(XMLGregorianCalendar value) {
this.adjstmntDt = 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