com.prowidesoftware.swift.model.mx.dic.TimeFrame7Choice Maven / Gradle / Ivy
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.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 elements to define a time period.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "TimeFrame7Choice", propOrder = {
"tPlus",
"prepmt"
})
public class TimeFrame7Choice {
@XmlElement(name = "TPlus")
protected BigDecimal tPlus;
@XmlElement(name = "Prepmt")
protected Boolean prepmt;
/**
* Gets the value of the tPlus property.
*
* @return
* possible object is
* {@link BigDecimal }
*
*/
public BigDecimal getTPlus() {
return tPlus;
}
/**
* Sets the value of the tPlus property.
*
* @param value
* allowed object is
* {@link BigDecimal }
*
*/
public TimeFrame7Choice setTPlus(BigDecimal value) {
this.tPlus = value;
return this;
}
/**
* Gets the value of the prepmt property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isPrepmt() {
return prepmt;
}
/**
* Sets the value of the prepmt property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public TimeFrame7Choice setPrepmt(Boolean value) {
this.prepmt = 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