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

tsg.ns.wsdl.coop.InventoryNumberBinSearchBasic 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 InventoryNumberBinSearchBasic complex type. * *

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

 * <complexType name="InventoryNumberBinSearchBasic">
 *   <complexContent>
 *     <extension base="{urn:core_2023_1.platform.webservices.netsuite.com}SearchRecordBasic">
 *       <sequence>
 *         <element name="binNumber" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchMultiSelectField" minOccurs="0"/>
 *         <element name="inventoryNumber" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchStringField" minOccurs="0"/>
 *         <element name="location" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchMultiSelectField" minOccurs="0"/>
 *         <element name="quantityAvailable" 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"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "InventoryNumberBinSearchBasic", namespace = "urn:common_2023_1.platform.webservices.netsuite.com", propOrder = { "binNumber", "inventoryNumber", "location", "quantityAvailable", "quantityOnHand" }) public class InventoryNumberBinSearchBasic extends SearchRecordBasic { protected SearchMultiSelectField binNumber; protected SearchStringField inventoryNumber; protected SearchMultiSelectField location; protected SearchDoubleField quantityAvailable; protected SearchDoubleField quantityOnHand; /** * Gets the value of the binNumber property. * * @return * possible object is * {@link SearchMultiSelectField } * */ public SearchMultiSelectField getBinNumber() { return binNumber; } /** * Sets the value of the binNumber property. * * @param value * allowed object is * {@link SearchMultiSelectField } * */ public void setBinNumber(SearchMultiSelectField value) { this.binNumber = 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 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 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 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; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy