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

tsg.ns.wsdl.coop.AssemblyItemBomSearchBasic 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.XmlElement;
import jakarta.xml.bind.annotation.XmlType;


/**
 * 

Java class for AssemblyItemBomSearchBasic complex type. * *

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

 * <complexType name="AssemblyItemBomSearchBasic">
 *   <complexContent>
 *     <extension base="{urn:core_2023_1.platform.webservices.netsuite.com}SearchRecordBasic">
 *       <sequence>
 *         <element name="assembly" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchMultiSelectField" minOccurs="0"/>
 *         <element name="billOfMaterials" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchMultiSelectField" minOccurs="0"/>
 *         <element name="default" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchBooleanField" minOccurs="0"/>
 *         <element name="locations" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchMultiSelectField" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "AssemblyItemBomSearchBasic", namespace = "urn:common_2023_1.platform.webservices.netsuite.com", propOrder = { "assembly", "billOfMaterials", "_default", "locations" }) public class AssemblyItemBomSearchBasic extends SearchRecordBasic { protected SearchMultiSelectField assembly; protected SearchMultiSelectField billOfMaterials; @XmlElement(name = "default") protected SearchBooleanField _default; protected SearchMultiSelectField locations; /** * Gets the value of the assembly property. * * @return * possible object is * {@link SearchMultiSelectField } * */ public SearchMultiSelectField getAssembly() { return assembly; } /** * Sets the value of the assembly property. * * @param value * allowed object is * {@link SearchMultiSelectField } * */ public void setAssembly(SearchMultiSelectField value) { this.assembly = value; } /** * Gets the value of the billOfMaterials property. * * @return * possible object is * {@link SearchMultiSelectField } * */ public SearchMultiSelectField getBillOfMaterials() { return billOfMaterials; } /** * Sets the value of the billOfMaterials property. * * @param value * allowed object is * {@link SearchMultiSelectField } * */ public void setBillOfMaterials(SearchMultiSelectField value) { this.billOfMaterials = value; } /** * Gets the value of the default property. * * @return * possible object is * {@link SearchBooleanField } * */ public SearchBooleanField getDefault() { return _default; } /** * Sets the value of the default property. * * @param value * allowed object is * {@link SearchBooleanField } * */ public void setDefault(SearchBooleanField value) { this._default = value; } /** * Gets the value of the locations property. * * @return * possible object is * {@link SearchMultiSelectField } * */ public SearchMultiSelectField getLocations() { return locations; } /** * Sets the value of the locations property. * * @param value * allowed object is * {@link SearchMultiSelectField } * */ public void setLocations(SearchMultiSelectField value) { this.locations = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy