All Downloads are FREE. Search and download functionalities are using the official Maven repository.

tsg.ns.wsdl.coop.InventoryAdjustmentInventory Maven / Gradle / Ivy


package tsg.ns.wsdl.coop;

import javax.xml.datatype.XMLGregorianCalendar;
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;


/**
 * 

Java class for InventoryAdjustmentInventory complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="InventoryAdjustmentInventory">
 *   <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="line" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
 *         <element name="inventoryDetail" type="{urn:common_2023_1.platform.webservices.netsuite.com}InventoryDetail" minOccurs="0"/>
 *         <element name="description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="department" type="{urn:core_2023_1.platform.webservices.netsuite.com}RecordRef" minOccurs="0"/>
 *         <element name="class" type="{urn:core_2023_1.platform.webservices.netsuite.com}RecordRef" minOccurs="0"/>
 *         <element name="location" type="{urn:core_2023_1.platform.webservices.netsuite.com}RecordRef" 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="currentValue" 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="binNumbers" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="serialNumbers" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="newQuantity" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
 *         <element name="unitCost" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
 *         <element name="foreignCurrencyUnitCost" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
 *         <element name="memo" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="currency" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="expirationDate" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
 *         <element name="exchangeRate" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "InventoryAdjustmentInventory", namespace = "urn:inventory_2023_1.transactions.webservices.netsuite.com", propOrder = { "item", "line", "inventoryDetail", "description", "department", "clazz", "location", "units", "quantityOnHand", "currentValue", "adjustQtyBy", "binNumbers", "serialNumbers", "newQuantity", "unitCost", "foreignCurrencyUnitCost", "memo", "currency", "expirationDate", "exchangeRate" }) public class InventoryAdjustmentInventory { protected RecordRef item; protected Long line; protected InventoryDetail inventoryDetail; protected String description; protected RecordRef department; @XmlElement(name = "class") protected RecordRef clazz; protected RecordRef location; protected RecordRef units; protected Double quantityOnHand; protected Double currentValue; protected Double adjustQtyBy; protected String binNumbers; protected String serialNumbers; protected Double newQuantity; protected Double unitCost; protected Double foreignCurrencyUnitCost; protected String memo; protected String currency; @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar expirationDate; protected Double exchangeRate; /** * 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 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 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 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 department property. * * @return * possible object is * {@link RecordRef } * */ public RecordRef getDepartment() { return department; } /** * Sets the value of the department property. * * @param value * allowed object is * {@link RecordRef } * */ public void setDepartment(RecordRef value) { this.department = value; } /** * Gets the value of the clazz property. * * @return * possible object is * {@link RecordRef } * */ public RecordRef getClazz() { return clazz; } /** * Sets the value of the clazz property. * * @param value * allowed object is * {@link RecordRef } * */ public void setClazz(RecordRef value) { this.clazz = value; } /** * Gets the value of the location property. * * @return * possible object is * {@link RecordRef } * */ public RecordRef getLocation() { return location; } /** * Sets the value of the location property. * * @param value * allowed object is * {@link RecordRef } * */ public void setLocation(RecordRef value) { this.location = 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 currentValue property. * * @return * possible object is * {@link Double } * */ public Double getCurrentValue() { return currentValue; } /** * Sets the value of the currentValue property. * * @param value * allowed object is * {@link Double } * */ public void setCurrentValue(Double value) { this.currentValue = 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 binNumbers property. * * @return * possible object is * {@link String } * */ public String getBinNumbers() { return binNumbers; } /** * Sets the value of the binNumbers property. * * @param value * allowed object is * {@link String } * */ public void setBinNumbers(String value) { this.binNumbers = 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 newQuantity property. * * @return * possible object is * {@link Double } * */ public Double getNewQuantity() { return newQuantity; } /** * Sets the value of the newQuantity property. * * @param value * allowed object is * {@link Double } * */ public void setNewQuantity(Double value) { this.newQuantity = value; } /** * Gets the value of the unitCost property. * * @return * possible object is * {@link Double } * */ public Double getUnitCost() { return unitCost; } /** * Sets the value of the unitCost property. * * @param value * allowed object is * {@link Double } * */ public void setUnitCost(Double value) { this.unitCost = value; } /** * Gets the value of the foreignCurrencyUnitCost property. * * @return * possible object is * {@link Double } * */ public Double getForeignCurrencyUnitCost() { return foreignCurrencyUnitCost; } /** * Sets the value of the foreignCurrencyUnitCost property. * * @param value * allowed object is * {@link Double } * */ public void setForeignCurrencyUnitCost(Double value) { this.foreignCurrencyUnitCost = value; } /** * Gets the value of the memo property. * * @return * possible object is * {@link String } * */ public String getMemo() { return memo; } /** * Sets the value of the memo property. * * @param value * allowed object is * {@link String } * */ public void setMemo(String value) { this.memo = value; } /** * Gets the value of the currency property. * * @return * possible object is * {@link String } * */ public String getCurrency() { return currency; } /** * Sets the value of the currency property. * * @param value * allowed object is * {@link String } * */ public void setCurrency(String value) { this.currency = value; } /** * Gets the value of the expirationDate property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getExpirationDate() { return expirationDate; } /** * Sets the value of the expirationDate property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setExpirationDate(XMLGregorianCalendar value) { this.expirationDate = value; } /** * Gets the value of the exchangeRate property. * * @return * possible object is * {@link Double } * */ public Double getExchangeRate() { return exchangeRate; } /** * Sets the value of the exchangeRate property. * * @param value * allowed object is * {@link Double } * */ public void setExchangeRate(Double value) { this.exchangeRate = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy