com.prowidesoftware.swift.model.mx.dic.FloatingInterestRate6 Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pw-iso20022 Show documentation
Show all versions of pw-iso20022 Show documentation
Prowide Library for ISO 20022 messages
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.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 the index used to define the rate and the basis point spread.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "FloatingInterestRate6", propOrder = {
"refRate",
"term",
"bsisPtSprd"
})
public class FloatingInterestRate6 {
@XmlElement(name = "RefRate", required = true)
protected BenchmarkCurveName6Choice refRate;
@XmlElement(name = "Term", required = true)
protected InterestRateContractTerm2 term;
@XmlElement(name = "BsisPtSprd", required = true)
protected BigDecimal bsisPtSprd;
/**
* Gets the value of the refRate property.
*
* @return
* possible object is
* {@link BenchmarkCurveName6Choice }
*
*/
public BenchmarkCurveName6Choice getRefRate() {
return refRate;
}
/**
* Sets the value of the refRate property.
*
* @param value
* allowed object is
* {@link BenchmarkCurveName6Choice }
*
*/
public FloatingInterestRate6 setRefRate(BenchmarkCurveName6Choice value) {
this.refRate = value;
return this;
}
/**
* Gets the value of the term property.
*
* @return
* possible object is
* {@link InterestRateContractTerm2 }
*
*/
public InterestRateContractTerm2 getTerm() {
return term;
}
/**
* Sets the value of the term property.
*
* @param value
* allowed object is
* {@link InterestRateContractTerm2 }
*
*/
public FloatingInterestRate6 setTerm(InterestRateContractTerm2 value) {
this.term = value;
return this;
}
/**
* Gets the value of the bsisPtSprd property.
*
* @return
* possible object is
* {@link BigDecimal }
*
*/
public BigDecimal getBsisPtSprd() {
return bsisPtSprd;
}
/**
* Sets the value of the bsisPtSprd property.
*
* @param value
* allowed object is
* {@link BigDecimal }
*
*/
public FloatingInterestRate6 setBsisPtSprd(BigDecimal value) {
this.bsisPtSprd = 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