com.prowidesoftware.swift.model.mx.dic.TimeFrame4 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 java.math.BigDecimal;
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;
/**
* Time frame elements that define a period as number of days before or after a activity.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "TimeFrame4", propOrder = {
"othrTmFrameDesc",
"tMns",
"nonWorkgDayAdjstmnt",
"refrToOrdrDsk"
})
public class TimeFrame4 {
@XmlElement(name = "OthrTmFrameDesc")
protected String othrTmFrameDesc;
@XmlElement(name = "TMns")
protected BigDecimal tMns;
@XmlElement(name = "NonWorkgDayAdjstmnt")
@XmlSchemaType(name = "string")
protected BusinessDayConvention1Code nonWorkgDayAdjstmnt;
@XmlElement(name = "RefrToOrdrDsk")
@XmlSchemaType(name = "string")
protected ReferToFundOrderDesk1Code refrToOrdrDsk;
/**
* Gets the value of the othrTmFrameDesc property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getOthrTmFrameDesc() {
return othrTmFrameDesc;
}
/**
* Sets the value of the othrTmFrameDesc property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public TimeFrame4 setOthrTmFrameDesc(String value) {
this.othrTmFrameDesc = value;
return this;
}
/**
* Gets the value of the tMns property.
*
* @return
* possible object is
* {@link BigDecimal }
*
*/
public BigDecimal getTMns() {
return tMns;
}
/**
* Sets the value of the tMns property.
*
* @param value
* allowed object is
* {@link BigDecimal }
*
*/
public TimeFrame4 setTMns(BigDecimal value) {
this.tMns = value;
return this;
}
/**
* Gets the value of the nonWorkgDayAdjstmnt property.
*
* @return
* possible object is
* {@link BusinessDayConvention1Code }
*
*/
public BusinessDayConvention1Code getNonWorkgDayAdjstmnt() {
return nonWorkgDayAdjstmnt;
}
/**
* Sets the value of the nonWorkgDayAdjstmnt property.
*
* @param value
* allowed object is
* {@link BusinessDayConvention1Code }
*
*/
public TimeFrame4 setNonWorkgDayAdjstmnt(BusinessDayConvention1Code value) {
this.nonWorkgDayAdjstmnt = value;
return this;
}
/**
* Gets the value of the refrToOrdrDsk property.
*
* @return
* possible object is
* {@link ReferToFundOrderDesk1Code }
*
*/
public ReferToFundOrderDesk1Code getRefrToOrdrDsk() {
return refrToOrdrDsk;
}
/**
* Sets the value of the refrToOrdrDsk property.
*
* @param value
* allowed object is
* {@link ReferToFundOrderDesk1Code }
*
*/
public TimeFrame4 setRefrToOrdrDsk(ReferToFundOrderDesk1Code value) {
this.refrToOrdrDsk = 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