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

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

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

 * <complexType name="BomRevisionComponentSearchBasic">
 *   <complexContent>
 *     <extension base="{urn:core_2023_1.platform.webservices.netsuite.com}SearchRecordBasic">
 *       <sequence>
 *         <element name="bomQuantity" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchDoubleField" minOccurs="0"/>
 *         <element name="bomRevision" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchMultiSelectField" minOccurs="0"/>
 *         <element name="componentYield" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchDoubleField" minOccurs="0"/>
 *         <element name="description" 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="item" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchMultiSelectField" minOccurs="0"/>
 *         <element name="itemSource" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchEnumMultiSelectField" minOccurs="0"/>
 *         <element name="itemSubtype" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchStringField" minOccurs="0"/>
 *         <element name="itemType" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchMultiSelectField" minOccurs="0"/>
 *         <element name="lineId" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchLongField" minOccurs="0"/>
 *         <element name="quantity" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchDoubleField" minOccurs="0"/>
 *         <element name="units" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchStringField" minOccurs="0"/>
 *         <element name="weight" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchDoubleField" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "BomRevisionComponentSearchBasic", namespace = "urn:common_2023_1.platform.webservices.netsuite.com", propOrder = { "bomQuantity", "bomRevision", "componentYield", "description", "internalId", "internalIdNumber", "item", "itemSource", "itemSubtype", "itemType", "lineId", "quantity", "units", "weight" }) public class BomRevisionComponentSearchBasic extends SearchRecordBasic { protected SearchDoubleField bomQuantity; protected SearchMultiSelectField bomRevision; protected SearchDoubleField componentYield; protected SearchStringField description; protected SearchMultiSelectField internalId; protected SearchLongField internalIdNumber; protected SearchMultiSelectField item; protected SearchEnumMultiSelectField itemSource; protected SearchStringField itemSubtype; protected SearchMultiSelectField itemType; protected SearchLongField lineId; protected SearchDoubleField quantity; protected SearchStringField units; protected SearchDoubleField weight; /** * Gets the value of the bomQuantity property. * * @return * possible object is * {@link SearchDoubleField } * */ public SearchDoubleField getBomQuantity() { return bomQuantity; } /** * Sets the value of the bomQuantity property. * * @param value * allowed object is * {@link SearchDoubleField } * */ public void setBomQuantity(SearchDoubleField value) { this.bomQuantity = value; } /** * Gets the value of the bomRevision property. * * @return * possible object is * {@link SearchMultiSelectField } * */ public SearchMultiSelectField getBomRevision() { return bomRevision; } /** * Sets the value of the bomRevision property. * * @param value * allowed object is * {@link SearchMultiSelectField } * */ public void setBomRevision(SearchMultiSelectField value) { this.bomRevision = value; } /** * Gets the value of the componentYield property. * * @return * possible object is * {@link SearchDoubleField } * */ public SearchDoubleField getComponentYield() { return componentYield; } /** * Sets the value of the componentYield property. * * @param value * allowed object is * {@link SearchDoubleField } * */ public void setComponentYield(SearchDoubleField value) { this.componentYield = value; } /** * Gets the value of the description property. * * @return * possible object is * {@link SearchStringField } * */ public SearchStringField getDescription() { return description; } /** * Sets the value of the description property. * * @param value * allowed object is * {@link SearchStringField } * */ public void setDescription(SearchStringField value) { this.description = 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 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 itemSource property. * * @return * possible object is * {@link SearchEnumMultiSelectField } * */ public SearchEnumMultiSelectField getItemSource() { return itemSource; } /** * Sets the value of the itemSource property. * * @param value * allowed object is * {@link SearchEnumMultiSelectField } * */ public void setItemSource(SearchEnumMultiSelectField value) { this.itemSource = value; } /** * Gets the value of the itemSubtype property. * * @return * possible object is * {@link SearchStringField } * */ public SearchStringField getItemSubtype() { return itemSubtype; } /** * Sets the value of the itemSubtype property. * * @param value * allowed object is * {@link SearchStringField } * */ public void setItemSubtype(SearchStringField value) { this.itemSubtype = value; } /** * Gets the value of the itemType property. * * @return * possible object is * {@link SearchMultiSelectField } * */ public SearchMultiSelectField getItemType() { return itemType; } /** * Sets the value of the itemType property. * * @param value * allowed object is * {@link SearchMultiSelectField } * */ public void setItemType(SearchMultiSelectField value) { this.itemType = value; } /** * Gets the value of the lineId property. * * @return * possible object is * {@link SearchLongField } * */ public SearchLongField getLineId() { return lineId; } /** * Sets the value of the lineId property. * * @param value * allowed object is * {@link SearchLongField } * */ public void setLineId(SearchLongField value) { this.lineId = value; } /** * Gets the value of the quantity property. * * @return * possible object is * {@link SearchDoubleField } * */ public SearchDoubleField getQuantity() { return quantity; } /** * Sets the value of the quantity property. * * @param value * allowed object is * {@link SearchDoubleField } * */ public void setQuantity(SearchDoubleField value) { this.quantity = value; } /** * Gets the value of the units property. * * @return * possible object is * {@link SearchStringField } * */ public SearchStringField getUnits() { return units; } /** * Sets the value of the units property. * * @param value * allowed object is * {@link SearchStringField } * */ public void setUnits(SearchStringField value) { this.units = value; } /** * Gets the value of the weight property. * * @return * possible object is * {@link SearchDoubleField } * */ public SearchDoubleField getWeight() { return weight; } /** * Sets the value of the weight property. * * @param value * allowed object is * {@link SearchDoubleField } * */ public void setWeight(SearchDoubleField value) { this.weight = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy