
tsg.ns.wsdl.coop.InventoryTransferInventory 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 InventoryTransferInventory complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="InventoryTransferInventory">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="line" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
* <element name="item" type="{urn:core_2023_1.platform.webservices.netsuite.com}RecordRef" minOccurs="0"/>
* <element name="description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="units" type="{urn:core_2023_1.platform.webservices.netsuite.com}RecordRef" minOccurs="0"/>
* <element name="quantityOnHand" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
* <element name="adjustQtyBy" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
* <element name="serialNumbers" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="fromBinNumbers" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="toBinNumbers" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="inventoryDetail" type="{urn:common_2023_1.platform.webservices.netsuite.com}InventoryDetail" minOccurs="0"/>
* <element name="customFieldList" type="{urn:core_2023_1.platform.webservices.netsuite.com}CustomFieldList" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "InventoryTransferInventory", namespace = "urn:inventory_2023_1.transactions.webservices.netsuite.com", propOrder = {
"line",
"item",
"description",
"units",
"quantityOnHand",
"adjustQtyBy",
"serialNumbers",
"fromBinNumbers",
"toBinNumbers",
"inventoryDetail",
"customFieldList"
})
public class InventoryTransferInventory {
protected Long line;
protected RecordRef item;
protected String description;
protected RecordRef units;
protected Double quantityOnHand;
protected Double adjustQtyBy;
protected String serialNumbers;
protected String fromBinNumbers;
protected String toBinNumbers;
protected InventoryDetail inventoryDetail;
protected CustomFieldList customFieldList;
/**
* Gets the value of the line property.
*
* @return
* possible object is
* {@link Long }
*
*/
public Long getLine() {
return line;
}
/**
* Sets the value of the line property.
*
* @param value
* allowed object is
* {@link Long }
*
*/
public void setLine(Long value) {
this.line = value;
}
/**
* 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 description property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDescription() {
return description;
}
/**
* Sets the value of the description property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setDescription(String value) {
this.description = value;
}
/**
* Gets the value of the units property.
*
* @return
* possible object is
* {@link RecordRef }
*
*/
public RecordRef getUnits() {
return units;
}
/**
* Sets the value of the units property.
*
* @param value
* allowed object is
* {@link RecordRef }
*
*/
public void setUnits(RecordRef value) {
this.units = value;
}
/**
* Gets the value of the quantityOnHand property.
*
* @return
* possible object is
* {@link Double }
*
*/
public Double getQuantityOnHand() {
return quantityOnHand;
}
/**
* Sets the value of the quantityOnHand property.
*
* @param value
* allowed object is
* {@link Double }
*
*/
public void setQuantityOnHand(Double value) {
this.quantityOnHand = value;
}
/**
* Gets the value of the adjustQtyBy property.
*
* @return
* possible object is
* {@link Double }
*
*/
public Double getAdjustQtyBy() {
return adjustQtyBy;
}
/**
* Sets the value of the adjustQtyBy property.
*
* @param value
* allowed object is
* {@link Double }
*
*/
public void setAdjustQtyBy(Double value) {
this.adjustQtyBy = value;
}
/**
* Gets the value of the serialNumbers property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSerialNumbers() {
return serialNumbers;
}
/**
* Sets the value of the serialNumbers property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSerialNumbers(String value) {
this.serialNumbers = value;
}
/**
* Gets the value of the fromBinNumbers property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getFromBinNumbers() {
return fromBinNumbers;
}
/**
* Sets the value of the fromBinNumbers property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setFromBinNumbers(String value) {
this.fromBinNumbers = value;
}
/**
* Gets the value of the toBinNumbers property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getToBinNumbers() {
return toBinNumbers;
}
/**
* Sets the value of the toBinNumbers property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setToBinNumbers(String value) {
this.toBinNumbers = value;
}
/**
* Gets the value of the inventoryDetail property.
*
* @return
* possible object is
* {@link InventoryDetail }
*
*/
public InventoryDetail getInventoryDetail() {
return inventoryDetail;
}
/**
* Sets the value of the inventoryDetail property.
*
* @param value
* allowed object is
* {@link InventoryDetail }
*
*/
public void setInventoryDetail(InventoryDetail value) {
this.inventoryDetail = value;
}
/**
* Gets the value of the customFieldList property.
*
* @return
* possible object is
* {@link CustomFieldList }
*
*/
public CustomFieldList getCustomFieldList() {
return customFieldList;
}
/**
* Sets the value of the customFieldList property.
*
* @param value
* allowed object is
* {@link CustomFieldList }
*
*/
public void setCustomFieldList(CustomFieldList value) {
this.customFieldList = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy