com.prowidesoftware.swift.model.mx.dic.NetDividendRateFormat39Choice 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
The newest version!
package com.prowidesoftware.swift.model.mx.dic;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlSchemaType;
import jakarta.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;
/**
* Choice between an amount or an unspecified rate.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "NetDividendRateFormat39Choice", propOrder = {
"amt",
"amtAndRateSts",
"rateTpAndAmtAndRateSts",
"notSpcfdRate"
})
public class NetDividendRateFormat39Choice {
@XmlElement(name = "Amt")
protected ActiveCurrencyAnd13DecimalAmount amt;
@XmlElement(name = "AmtAndRateSts")
protected AmountAndRateStatus1 amtAndRateSts;
@XmlElement(name = "RateTpAndAmtAndRateSts")
protected RateTypeAndAmountAndStatus58 rateTpAndAmtAndRateSts;
@XmlElement(name = "NotSpcfdRate")
@XmlSchemaType(name = "string")
protected RateValueType7Code notSpcfdRate;
/**
* Gets the value of the amt property.
*
* @return
* possible object is
* {@link ActiveCurrencyAnd13DecimalAmount }
*
*/
public ActiveCurrencyAnd13DecimalAmount getAmt() {
return amt;
}
/**
* Sets the value of the amt property.
*
* @param value
* allowed object is
* {@link ActiveCurrencyAnd13DecimalAmount }
*
*/
public NetDividendRateFormat39Choice setAmt(ActiveCurrencyAnd13DecimalAmount value) {
this.amt = value;
return this;
}
/**
* Gets the value of the amtAndRateSts property.
*
* @return
* possible object is
* {@link AmountAndRateStatus1 }
*
*/
public AmountAndRateStatus1 getAmtAndRateSts() {
return amtAndRateSts;
}
/**
* Sets the value of the amtAndRateSts property.
*
* @param value
* allowed object is
* {@link AmountAndRateStatus1 }
*
*/
public NetDividendRateFormat39Choice setAmtAndRateSts(AmountAndRateStatus1 value) {
this.amtAndRateSts = value;
return this;
}
/**
* Gets the value of the rateTpAndAmtAndRateSts property.
*
* @return
* possible object is
* {@link RateTypeAndAmountAndStatus58 }
*
*/
public RateTypeAndAmountAndStatus58 getRateTpAndAmtAndRateSts() {
return rateTpAndAmtAndRateSts;
}
/**
* Sets the value of the rateTpAndAmtAndRateSts property.
*
* @param value
* allowed object is
* {@link RateTypeAndAmountAndStatus58 }
*
*/
public NetDividendRateFormat39Choice setRateTpAndAmtAndRateSts(RateTypeAndAmountAndStatus58 value) {
this.rateTpAndAmtAndRateSts = value;
return this;
}
/**
* Gets the value of the notSpcfdRate property.
*
* @return
* possible object is
* {@link RateValueType7Code }
*
*/
public RateValueType7Code getNotSpcfdRate() {
return notSpcfdRate;
}
/**
* Sets the value of the notSpcfdRate property.
*
* @param value
* allowed object is
* {@link RateValueType7Code }
*
*/
public NetDividendRateFormat39Choice setNotSpcfdRate(RateValueType7Code value) {
this.notSpcfdRate = 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