
tsg.ns.wsdl.coop.InventoryNumberSearchBasic 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 InventoryNumberSearchBasic complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="InventoryNumberSearchBasic">
* <complexContent>
* <extension base="{urn:core_2023_1.platform.webservices.netsuite.com}SearchRecordBasic">
* <sequence>
* <element name="expirationDate" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchDateField" minOccurs="0"/>
* <element name="externalId" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchMultiSelectField" minOccurs="0"/>
* <element name="externalIdString" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchStringField" minOccurs="0"/>
* <element name="internalId" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchMultiSelectField" minOccurs="0"/>
* <element name="internalIdNumber" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchLongField" minOccurs="0"/>
* <element name="inventoryNumber" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchStringField" minOccurs="0"/>
* <element name="isOnHand" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchBooleanField" minOccurs="0"/>
* <element name="item" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchMultiSelectField" minOccurs="0"/>
* <element name="location" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchMultiSelectField" minOccurs="0"/>
* <element name="memo" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchStringField" minOccurs="0"/>
* <element name="quantityAvailable" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchDoubleField" minOccurs="0"/>
* <element name="quantityInTransit" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchDoubleField" minOccurs="0"/>
* <element name="quantityOnHand" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchDoubleField" minOccurs="0"/>
* <element name="quantityOnOrder" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchDoubleField" minOccurs="0"/>
* <element name="customFieldList" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchCustomFieldList" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "InventoryNumberSearchBasic", namespace = "urn:common_2023_1.platform.webservices.netsuite.com", propOrder = {
"expirationDate",
"externalId",
"externalIdString",
"internalId",
"internalIdNumber",
"inventoryNumber",
"isOnHand",
"item",
"location",
"memo",
"quantityAvailable",
"quantityInTransit",
"quantityOnHand",
"quantityOnOrder",
"customFieldList"
})
public class InventoryNumberSearchBasic
extends SearchRecordBasic
{
protected SearchDateField expirationDate;
protected SearchMultiSelectField externalId;
protected SearchStringField externalIdString;
protected SearchMultiSelectField internalId;
protected SearchLongField internalIdNumber;
protected SearchStringField inventoryNumber;
protected SearchBooleanField isOnHand;
protected SearchMultiSelectField item;
protected SearchMultiSelectField location;
protected SearchStringField memo;
protected SearchDoubleField quantityAvailable;
protected SearchDoubleField quantityInTransit;
protected SearchDoubleField quantityOnHand;
protected SearchDoubleField quantityOnOrder;
protected SearchCustomFieldList customFieldList;
/**
* Gets the value of the expirationDate property.
*
* @return
* possible object is
* {@link SearchDateField }
*
*/
public SearchDateField getExpirationDate() {
return expirationDate;
}
/**
* Sets the value of the expirationDate property.
*
* @param value
* allowed object is
* {@link SearchDateField }
*
*/
public void setExpirationDate(SearchDateField value) {
this.expirationDate = value;
}
/**
* Gets the value of the externalId property.
*
* @return
* possible object is
* {@link SearchMultiSelectField }
*
*/
public SearchMultiSelectField getExternalId() {
return externalId;
}
/**
* Sets the value of the externalId property.
*
* @param value
* allowed object is
* {@link SearchMultiSelectField }
*
*/
public void setExternalId(SearchMultiSelectField value) {
this.externalId = value;
}
/**
* Gets the value of the externalIdString property.
*
* @return
* possible object is
* {@link SearchStringField }
*
*/
public SearchStringField getExternalIdString() {
return externalIdString;
}
/**
* Sets the value of the externalIdString property.
*
* @param value
* allowed object is
* {@link SearchStringField }
*
*/
public void setExternalIdString(SearchStringField value) {
this.externalIdString = value;
}
/**
* Gets the value of the internalId property.
*
* @return
* possible object is
* {@link SearchMultiSelectField }
*
*/
public SearchMultiSelectField getInternalId() {
return internalId;
}
/**
* Sets the value of the internalId property.
*
* @param value
* allowed object is
* {@link SearchMultiSelectField }
*
*/
public void setInternalId(SearchMultiSelectField value) {
this.internalId = value;
}
/**
* Gets the value of the internalIdNumber property.
*
* @return
* possible object is
* {@link SearchLongField }
*
*/
public SearchLongField getInternalIdNumber() {
return internalIdNumber;
}
/**
* Sets the value of the internalIdNumber property.
*
* @param value
* allowed object is
* {@link SearchLongField }
*
*/
public void setInternalIdNumber(SearchLongField value) {
this.internalIdNumber = value;
}
/**
* Gets the value of the inventoryNumber property.
*
* @return
* possible object is
* {@link SearchStringField }
*
*/
public SearchStringField getInventoryNumber() {
return inventoryNumber;
}
/**
* Sets the value of the inventoryNumber property.
*
* @param value
* allowed object is
* {@link SearchStringField }
*
*/
public void setInventoryNumber(SearchStringField value) {
this.inventoryNumber = value;
}
/**
* Gets the value of the isOnHand property.
*
* @return
* possible object is
* {@link SearchBooleanField }
*
*/
public SearchBooleanField getIsOnHand() {
return isOnHand;
}
/**
* Sets the value of the isOnHand property.
*
* @param value
* allowed object is
* {@link SearchBooleanField }
*
*/
public void setIsOnHand(SearchBooleanField value) {
this.isOnHand = value;
}
/**
* Gets the value of the item property.
*
* @return
* possible object is
* {@link SearchMultiSelectField }
*
*/
public SearchMultiSelectField getItem() {
return item;
}
/**
* Sets the value of the item property.
*
* @param value
* allowed object is
* {@link SearchMultiSelectField }
*
*/
public void setItem(SearchMultiSelectField value) {
this.item = value;
}
/**
* Gets the value of the location property.
*
* @return
* possible object is
* {@link SearchMultiSelectField }
*
*/
public SearchMultiSelectField getLocation() {
return location;
}
/**
* Sets the value of the location property.
*
* @param value
* allowed object is
* {@link SearchMultiSelectField }
*
*/
public void setLocation(SearchMultiSelectField value) {
this.location = value;
}
/**
* Gets the value of the memo property.
*
* @return
* possible object is
* {@link SearchStringField }
*
*/
public SearchStringField getMemo() {
return memo;
}
/**
* Sets the value of the memo property.
*
* @param value
* allowed object is
* {@link SearchStringField }
*
*/
public void setMemo(SearchStringField value) {
this.memo = value;
}
/**
* Gets the value of the quantityAvailable property.
*
* @return
* possible object is
* {@link SearchDoubleField }
*
*/
public SearchDoubleField getQuantityAvailable() {
return quantityAvailable;
}
/**
* Sets the value of the quantityAvailable property.
*
* @param value
* allowed object is
* {@link SearchDoubleField }
*
*/
public void setQuantityAvailable(SearchDoubleField value) {
this.quantityAvailable = value;
}
/**
* Gets the value of the quantityInTransit property.
*
* @return
* possible object is
* {@link SearchDoubleField }
*
*/
public SearchDoubleField getQuantityInTransit() {
return quantityInTransit;
}
/**
* Sets the value of the quantityInTransit property.
*
* @param value
* allowed object is
* {@link SearchDoubleField }
*
*/
public void setQuantityInTransit(SearchDoubleField value) {
this.quantityInTransit = value;
}
/**
* Gets the value of the quantityOnHand property.
*
* @return
* possible object is
* {@link SearchDoubleField }
*
*/
public SearchDoubleField getQuantityOnHand() {
return quantityOnHand;
}
/**
* Sets the value of the quantityOnHand property.
*
* @param value
* allowed object is
* {@link SearchDoubleField }
*
*/
public void setQuantityOnHand(SearchDoubleField value) {
this.quantityOnHand = value;
}
/**
* Gets the value of the quantityOnOrder property.
*
* @return
* possible object is
* {@link SearchDoubleField }
*
*/
public SearchDoubleField getQuantityOnOrder() {
return quantityOnOrder;
}
/**
* Sets the value of the quantityOnOrder property.
*
* @param value
* allowed object is
* {@link SearchDoubleField }
*
*/
public void setQuantityOnOrder(SearchDoubleField value) {
this.quantityOnOrder = value;
}
/**
* Gets the value of the customFieldList property.
*
* @return
* possible object is
* {@link SearchCustomFieldList }
*
*/
public SearchCustomFieldList getCustomFieldList() {
return customFieldList;
}
/**
* Sets the value of the customFieldList property.
*
* @param value
* allowed object is
* {@link SearchCustomFieldList }
*
*/
public void setCustomFieldList(SearchCustomFieldList value) {
this.customFieldList = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy