com.prowidesoftware.swift.model.mx.dic.Schedule10 Maven / Gradle / Ivy
package com.prowidesoftware.swift.model.mx.dic;
import java.math.BigDecimal;
import java.time.LocalDate;
import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
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 jakarta.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
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;
/**
* Indicates the unadjusted effective and end date of the schedule.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Schedule10", propOrder = {
"qty",
"unitOfMeasr",
"uadjstdFctvDt",
"uadjstdEndDt"
})
public class Schedule10 {
@XmlElement(name = "Qty", required = true)
protected BigDecimal qty;
@XmlElement(name = "UnitOfMeasr")
protected UnitOfMeasure8Choice unitOfMeasr;
@XmlElement(name = "UadjstdFctvDt", required = true, type = String.class)
@XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected LocalDate uadjstdFctvDt;
@XmlElement(name = "UadjstdEndDt", type = String.class)
@XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected LocalDate uadjstdEndDt;
/**
* Gets the value of the qty property.
*
* @return
* possible object is
* {@link BigDecimal }
*
*/
public BigDecimal getQty() {
return qty;
}
/**
* Sets the value of the qty property.
*
* @param value
* allowed object is
* {@link BigDecimal }
*
*/
public Schedule10 setQty(BigDecimal value) {
this.qty = value;
return this;
}
/**
* Gets the value of the unitOfMeasr property.
*
* @return
* possible object is
* {@link UnitOfMeasure8Choice }
*
*/
public UnitOfMeasure8Choice getUnitOfMeasr() {
return unitOfMeasr;
}
/**
* Sets the value of the unitOfMeasr property.
*
* @param value
* allowed object is
* {@link UnitOfMeasure8Choice }
*
*/
public Schedule10 setUnitOfMeasr(UnitOfMeasure8Choice value) {
this.unitOfMeasr = value;
return this;
}
/**
* Gets the value of the uadjstdFctvDt property.
*
* @return
* possible object is
* {@link String }
*
*/
public LocalDate getUadjstdFctvDt() {
return uadjstdFctvDt;
}
/**
* Sets the value of the uadjstdFctvDt property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public Schedule10 setUadjstdFctvDt(LocalDate value) {
this.uadjstdFctvDt = value;
return this;
}
/**
* Gets the value of the uadjstdEndDt property.
*
* @return
* possible object is
* {@link String }
*
*/
public LocalDate getUadjstdEndDt() {
return uadjstdEndDt;
}
/**
* Sets the value of the uadjstdEndDt property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public Schedule10 setUadjstdEndDt(LocalDate value) {
this.uadjstdEndDt = 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