
tsg.ns.wsdl.coop.InventoryNumberSearchRowBasic Maven / Gradle / Ivy
package tsg.ns.wsdl.coop;
import java.util.ArrayList;
import java.util.List;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlType;
/**
* Java class for InventoryNumberSearchRowBasic complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="InventoryNumberSearchRowBasic">
* <complexContent>
* <extension base="{urn:core_2023_1.platform.webservices.netsuite.com}SearchRowBasic">
* <sequence>
* <element name="expirationDate" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchColumnDateField" maxOccurs="unbounded" minOccurs="0"/>
* <element name="externalId" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchColumnSelectField" maxOccurs="unbounded" minOccurs="0"/>
* <element name="internalId" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchColumnSelectField" maxOccurs="unbounded" minOccurs="0"/>
* <element name="inventoryNumber" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchColumnStringField" maxOccurs="unbounded" minOccurs="0"/>
* <element name="isonhand" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchColumnBooleanField" maxOccurs="unbounded" minOccurs="0"/>
* <element name="item" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchColumnSelectField" maxOccurs="unbounded" minOccurs="0"/>
* <element name="location" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchColumnSelectField" maxOccurs="unbounded" minOccurs="0"/>
* <element name="memo" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchColumnStringField" maxOccurs="unbounded" minOccurs="0"/>
* <element name="quantityavailable" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchColumnDoubleField" maxOccurs="unbounded" minOccurs="0"/>
* <element name="quantityintransit" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchColumnDoubleField" maxOccurs="unbounded" minOccurs="0"/>
* <element name="quantityonhand" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchColumnDoubleField" maxOccurs="unbounded" minOccurs="0"/>
* <element name="quantityonorder" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchColumnDoubleField" maxOccurs="unbounded" minOccurs="0"/>
* <element name="customFieldList" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchColumnCustomFieldList" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "InventoryNumberSearchRowBasic", namespace = "urn:common_2023_1.platform.webservices.netsuite.com", propOrder = {
"expirationDate",
"externalId",
"internalId",
"inventoryNumber",
"isonhand",
"item",
"location",
"memo",
"quantityavailable",
"quantityintransit",
"quantityonhand",
"quantityonorder",
"customFieldList"
})
public class InventoryNumberSearchRowBasic
extends SearchRowBasic
{
protected List expirationDate;
protected List externalId;
protected List internalId;
protected List inventoryNumber;
protected List isonhand;
protected List item;
protected List location;
protected List memo;
protected List quantityavailable;
protected List quantityintransit;
protected List quantityonhand;
protected List quantityonorder;
protected SearchColumnCustomFieldList customFieldList;
/**
* Gets the value of the expirationDate property.
*
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the Jakarta XML Binding object.
* This is why there is not a set
method for the expirationDate property.
*
*
* For example, to add a new item, do as follows:
*
* getExpirationDate().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link SearchColumnDateField }
*
*
*/
public List getExpirationDate() {
if (expirationDate == null) {
expirationDate = new ArrayList();
}
return this.expirationDate;
}
/**
* Gets the value of the externalId property.
*
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the Jakarta XML Binding object.
* This is why there is not a set
method for the externalId property.
*
*
* For example, to add a new item, do as follows:
*
* getExternalId().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link SearchColumnSelectField }
*
*
*/
public List getExternalId() {
if (externalId == null) {
externalId = new ArrayList();
}
return this.externalId;
}
/**
* Gets the value of the internalId property.
*
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the Jakarta XML Binding object.
* This is why there is not a set
method for the internalId property.
*
*
* For example, to add a new item, do as follows:
*
* getInternalId().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link SearchColumnSelectField }
*
*
*/
public List getInternalId() {
if (internalId == null) {
internalId = new ArrayList();
}
return this.internalId;
}
/**
* Gets the value of the inventoryNumber property.
*
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the Jakarta XML Binding object.
* This is why there is not a set
method for the inventoryNumber property.
*
*
* For example, to add a new item, do as follows:
*
* getInventoryNumber().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link SearchColumnStringField }
*
*
*/
public List getInventoryNumber() {
if (inventoryNumber == null) {
inventoryNumber = new ArrayList();
}
return this.inventoryNumber;
}
/**
* Gets the value of the isonhand property.
*
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the Jakarta XML Binding object.
* This is why there is not a set
method for the isonhand property.
*
*
* For example, to add a new item, do as follows:
*
* getIsonhand().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link SearchColumnBooleanField }
*
*
*/
public List getIsonhand() {
if (isonhand == null) {
isonhand = new ArrayList();
}
return this.isonhand;
}
/**
* Gets the value of the item property.
*
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the Jakarta XML Binding object.
* This is why there is not a set
method for the item property.
*
*
* For example, to add a new item, do as follows:
*
* getItem().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link SearchColumnSelectField }
*
*
*/
public List getItem() {
if (item == null) {
item = new ArrayList();
}
return this.item;
}
/**
* Gets the value of the location property.
*
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the Jakarta XML Binding object.
* This is why there is not a set
method for the location property.
*
*
* For example, to add a new item, do as follows:
*
* getLocation().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link SearchColumnSelectField }
*
*
*/
public List getLocation() {
if (location == null) {
location = new ArrayList();
}
return this.location;
}
/**
* Gets the value of the memo property.
*
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the Jakarta XML Binding object.
* This is why there is not a set
method for the memo property.
*
*
* For example, to add a new item, do as follows:
*
* getMemo().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link SearchColumnStringField }
*
*
*/
public List getMemo() {
if (memo == null) {
memo = new ArrayList();
}
return this.memo;
}
/**
* Gets the value of the quantityavailable property.
*
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the Jakarta XML Binding object.
* This is why there is not a set
method for the quantityavailable property.
*
*
* For example, to add a new item, do as follows:
*
* getQuantityavailable().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link SearchColumnDoubleField }
*
*
*/
public List getQuantityavailable() {
if (quantityavailable == null) {
quantityavailable = new ArrayList();
}
return this.quantityavailable;
}
/**
* Gets the value of the quantityintransit property.
*
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the Jakarta XML Binding object.
* This is why there is not a set
method for the quantityintransit property.
*
*
* For example, to add a new item, do as follows:
*
* getQuantityintransit().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link SearchColumnDoubleField }
*
*
*/
public List getQuantityintransit() {
if (quantityintransit == null) {
quantityintransit = new ArrayList();
}
return this.quantityintransit;
}
/**
* Gets the value of the quantityonhand property.
*
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the Jakarta XML Binding object.
* This is why there is not a set
method for the quantityonhand property.
*
*
* For example, to add a new item, do as follows:
*
* getQuantityonhand().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link SearchColumnDoubleField }
*
*
*/
public List getQuantityonhand() {
if (quantityonhand == null) {
quantityonhand = new ArrayList();
}
return this.quantityonhand;
}
/**
* Gets the value of the quantityonorder property.
*
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the Jakarta XML Binding object.
* This is why there is not a set
method for the quantityonorder property.
*
*
* For example, to add a new item, do as follows:
*
* getQuantityonorder().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link SearchColumnDoubleField }
*
*
*/
public List getQuantityonorder() {
if (quantityonorder == null) {
quantityonorder = new ArrayList();
}
return this.quantityonorder;
}
/**
* Gets the value of the customFieldList property.
*
* @return
* possible object is
* {@link SearchColumnCustomFieldList }
*
*/
public SearchColumnCustomFieldList getCustomFieldList() {
return customFieldList;
}
/**
* Sets the value of the customFieldList property.
*
* @param value
* allowed object is
* {@link SearchColumnCustomFieldList }
*
*/
public void setCustomFieldList(SearchColumnCustomFieldList value) {
this.customFieldList = value;
}
}