
com.prowidesoftware.swift.model.mx.dic.AmountAndRateStatus2 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 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 amount and a rate status.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "AmountAndRateStatus2", propOrder = {
"amt",
"rateSts"
})
public class AmountAndRateStatus2 {
@XmlElement(name = "Amt", required = true)
protected RestrictedFINActiveCurrencyAnd13DecimalAmount amt;
@XmlElement(name = "RateSts", required = true)
@XmlSchemaType(name = "string")
protected RateStatus1Code rateSts;
/**
* Gets the value of the amt property.
*
* @return
* possible object is
* {@link RestrictedFINActiveCurrencyAnd13DecimalAmount }
*
*/
public RestrictedFINActiveCurrencyAnd13DecimalAmount getAmt() {
return amt;
}
/**
* Sets the value of the amt property.
*
* @param value
* allowed object is
* {@link RestrictedFINActiveCurrencyAnd13DecimalAmount }
*
*/
public AmountAndRateStatus2 setAmt(RestrictedFINActiveCurrencyAnd13DecimalAmount value) {
this.amt = value;
return this;
}
/**
* Gets the value of the rateSts property.
*
* @return
* possible object is
* {@link RateStatus1Code }
*
*/
public RateStatus1Code getRateSts() {
return rateSts;
}
/**
* Sets the value of the rateSts property.
*
* @param value
* allowed object is
* {@link RateStatus1Code }
*
*/
public AmountAndRateStatus2 setRateSts(RateStatus1Code value) {
this.rateSts = 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