
tsg.ns.wsdl.coop.WorkOrderCompletionComponent Maven / Gradle / Ivy
package tsg.ns.wsdl.coop;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlType;
/**
* Java class for WorkOrderCompletionComponent complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="WorkOrderCompletionComponent">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="item" type="{urn:core_2023_1.platform.webservices.netsuite.com}RecordRef" minOccurs="0"/>
* <element name="operationSequenceNumber" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
* <element name="quantityPer" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
* <element name="quantity" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
* <element name="componentInventoryDetail" type="{urn:common_2023_1.platform.webservices.netsuite.com}InventoryDetail" minOccurs="0"/>
* <element name="lineNumber" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "WorkOrderCompletionComponent", namespace = "urn:inventory_2023_1.transactions.webservices.netsuite.com", propOrder = {
"item",
"operationSequenceNumber",
"quantityPer",
"quantity",
"componentInventoryDetail",
"lineNumber"
})
public class WorkOrderCompletionComponent {
protected RecordRef item;
protected Long operationSequenceNumber;
protected Double quantityPer;
protected Double quantity;
protected InventoryDetail componentInventoryDetail;
protected Long lineNumber;
/**
* Gets the value of the item property.
*
* @return
* possible object is
* {@link RecordRef }
*
*/
public RecordRef getItem() {
return item;
}
/**
* Sets the value of the item property.
*
* @param value
* allowed object is
* {@link RecordRef }
*
*/
public void setItem(RecordRef value) {
this.item = value;
}
/**
* Gets the value of the operationSequenceNumber property.
*
* @return
* possible object is
* {@link Long }
*
*/
public Long getOperationSequenceNumber() {
return operationSequenceNumber;
}
/**
* Sets the value of the operationSequenceNumber property.
*
* @param value
* allowed object is
* {@link Long }
*
*/
public void setOperationSequenceNumber(Long value) {
this.operationSequenceNumber = value;
}
/**
* Gets the value of the quantityPer property.
*
* @return
* possible object is
* {@link Double }
*
*/
public Double getQuantityPer() {
return quantityPer;
}
/**
* Sets the value of the quantityPer property.
*
* @param value
* allowed object is
* {@link Double }
*
*/
public void setQuantityPer(Double value) {
this.quantityPer = value;
}
/**
* Gets the value of the quantity property.
*
* @return
* possible object is
* {@link Double }
*
*/
public Double getQuantity() {
return quantity;
}
/**
* Sets the value of the quantity property.
*
* @param value
* allowed object is
* {@link Double }
*
*/
public void setQuantity(Double value) {
this.quantity = value;
}
/**
* Gets the value of the componentInventoryDetail property.
*
* @return
* possible object is
* {@link InventoryDetail }
*
*/
public InventoryDetail getComponentInventoryDetail() {
return componentInventoryDetail;
}
/**
* Sets the value of the componentInventoryDetail property.
*
* @param value
* allowed object is
* {@link InventoryDetail }
*
*/
public void setComponentInventoryDetail(InventoryDetail value) {
this.componentInventoryDetail = value;
}
/**
* Gets the value of the lineNumber property.
*
* @return
* possible object is
* {@link Long }
*
*/
public Long getLineNumber() {
return lineNumber;
}
/**
* Sets the value of the lineNumber property.
*
* @param value
* allowed object is
* {@link Long }
*
*/
public void setLineNumber(Long value) {
this.lineNumber = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy