com.prowidesoftware.swift.model.mx.dic.Product5 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.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;
/**
* Product to purchase.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Product5", propOrder = {
"pdctCd",
"addtlPdctCd",
"amtLmt",
"qtyLmt",
"unitOfMeasr"
})
public class Product5 {
@XmlElement(name = "PdctCd", required = true)
protected String pdctCd;
@XmlElement(name = "AddtlPdctCd")
protected String addtlPdctCd;
@XmlElement(name = "AmtLmt")
protected BigDecimal amtLmt;
@XmlElement(name = "QtyLmt")
protected BigDecimal qtyLmt;
@XmlElement(name = "UnitOfMeasr")
@XmlSchemaType(name = "string")
protected UnitOfMeasure6Code unitOfMeasr;
/**
* Gets the value of the pdctCd property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getPdctCd() {
return pdctCd;
}
/**
* Sets the value of the pdctCd property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public Product5 setPdctCd(String value) {
this.pdctCd = value;
return this;
}
/**
* Gets the value of the addtlPdctCd property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getAddtlPdctCd() {
return addtlPdctCd;
}
/**
* Sets the value of the addtlPdctCd property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public Product5 setAddtlPdctCd(String value) {
this.addtlPdctCd = value;
return this;
}
/**
* Gets the value of the amtLmt property.
*
* @return
* possible object is
* {@link BigDecimal }
*
*/
public BigDecimal getAmtLmt() {
return amtLmt;
}
/**
* Sets the value of the amtLmt property.
*
* @param value
* allowed object is
* {@link BigDecimal }
*
*/
public Product5 setAmtLmt(BigDecimal value) {
this.amtLmt = value;
return this;
}
/**
* Gets the value of the qtyLmt property.
*
* @return
* possible object is
* {@link BigDecimal }
*
*/
public BigDecimal getQtyLmt() {
return qtyLmt;
}
/**
* Sets the value of the qtyLmt property.
*
* @param value
* allowed object is
* {@link BigDecimal }
*
*/
public Product5 setQtyLmt(BigDecimal value) {
this.qtyLmt = value;
return this;
}
/**
* Gets the value of the unitOfMeasr property.
*
* @return
* possible object is
* {@link UnitOfMeasure6Code }
*
*/
public UnitOfMeasure6Code getUnitOfMeasr() {
return unitOfMeasr;
}
/**
* Sets the value of the unitOfMeasr property.
*
* @param value
* allowed object is
* {@link UnitOfMeasure6Code }
*
*/
public Product5 setUnitOfMeasr(UnitOfMeasure6Code value) {
this.unitOfMeasr = 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