
tsg.ns.wsdl.coop.AssemblyItemBomSearchRowBasic 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.XmlElement;
import jakarta.xml.bind.annotation.XmlType;
/**
* Java class for AssemblyItemBomSearchRowBasic complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="AssemblyItemBomSearchRowBasic">
* <complexContent>
* <extension base="{urn:core_2023_1.platform.webservices.netsuite.com}SearchRowBasic">
* <sequence>
* <element name="assembly" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchColumnSelectField" maxOccurs="unbounded" minOccurs="0"/>
* <element name="billOfMaterials" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchColumnSelectField" maxOccurs="unbounded" minOccurs="0"/>
* <element name="default" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchColumnBooleanField" maxOccurs="unbounded" minOccurs="0"/>
* <element name="locations" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchColumnSelectField" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "AssemblyItemBomSearchRowBasic", namespace = "urn:common_2023_1.platform.webservices.netsuite.com", propOrder = {
"assembly",
"billOfMaterials",
"_default",
"locations"
})
public class AssemblyItemBomSearchRowBasic
extends SearchRowBasic
{
protected List assembly;
protected List billOfMaterials;
@XmlElement(name = "default")
protected List _default;
protected List locations;
/**
* Gets the value of the assembly 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 assembly property.
*
*
* For example, to add a new item, do as follows:
*
* getAssembly().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link SearchColumnSelectField }
*
*
*/
public List getAssembly() {
if (assembly == null) {
assembly = new ArrayList();
}
return this.assembly;
}
/**
* Gets the value of the billOfMaterials 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 billOfMaterials property.
*
*
* For example, to add a new item, do as follows:
*
* getBillOfMaterials().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link SearchColumnSelectField }
*
*
*/
public List getBillOfMaterials() {
if (billOfMaterials == null) {
billOfMaterials = new ArrayList();
}
return this.billOfMaterials;
}
/**
* Gets the value of the default 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 default property.
*
*
* For example, to add a new item, do as follows:
*
* getDefault().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link SearchColumnBooleanField }
*
*
*/
public List getDefault() {
if (_default == null) {
_default = new ArrayList();
}
return this._default;
}
/**
* Gets the value of the locations 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 locations property.
*
*
* For example, to add a new item, do as follows:
*
* getLocations().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link SearchColumnSelectField }
*
*
*/
public List getLocations() {
if (locations == null) {
locations = new ArrayList();
}
return this.locations;
}
}