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

tsg.ns.wsdl.coop.Bom Maven / Gradle / Ivy


package tsg.ns.wsdl.coop;

import javax.xml.datatype.XMLGregorianCalendar;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlAttribute;
import jakarta.xml.bind.annotation.XmlSchemaType;
import jakarta.xml.bind.annotation.XmlType;


/**
 * 

Java class for Bom complex type. * *

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

 * <complexType name="Bom">
 *   <complexContent>
 *     <extension base="{urn:core_2023_1.platform.webservices.netsuite.com}Record">
 *       <sequence>
 *         <element name="customForm" type="{urn:core_2023_1.platform.webservices.netsuite.com}RecordRef" minOccurs="0"/>
 *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="usedOnAssembly" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *         <element name="createdDate" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
 *         <element name="isInactive" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *         <element name="useComponentYield" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *         <element name="memo" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="legacyBomForAssembly" type="{urn:core_2023_1.platform.webservices.netsuite.com}RecordRef" minOccurs="0"/>
 *         <element name="availableForAllAssemblies" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *         <element name="restrictToAssembliesList" type="{urn:core_2023_1.platform.webservices.netsuite.com}RecordRefList" minOccurs="0"/>
 *         <element name="availableForAllLocations" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *         <element name="restrictToLocationsList" type="{urn:core_2023_1.platform.webservices.netsuite.com}RecordRefList" minOccurs="0"/>
 *         <element name="subsidiaryList" type="{urn:core_2023_1.platform.webservices.netsuite.com}RecordRefList" minOccurs="0"/>
 *         <element name="includeChildren" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *         <element name="customFieldList" type="{urn:core_2023_1.platform.webservices.netsuite.com}CustomFieldList" minOccurs="0"/>
 *       </sequence>
 *       <attribute name="internalId" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="externalId" type="{http://www.w3.org/2001/XMLSchema}string" />
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Bom", propOrder = { "customForm", "name", "usedOnAssembly", "createdDate", "isInactive", "useComponentYield", "memo", "legacyBomForAssembly", "availableForAllAssemblies", "restrictToAssembliesList", "availableForAllLocations", "restrictToLocationsList", "subsidiaryList", "includeChildren", "customFieldList" }) public class Bom extends Record { protected RecordRef customForm; protected String name; protected Boolean usedOnAssembly; @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar createdDate; protected Boolean isInactive; protected Boolean useComponentYield; protected String memo; protected RecordRef legacyBomForAssembly; protected Boolean availableForAllAssemblies; protected RecordRefList restrictToAssembliesList; protected Boolean availableForAllLocations; protected RecordRefList restrictToLocationsList; protected RecordRefList subsidiaryList; protected Boolean includeChildren; protected CustomFieldList customFieldList; @XmlAttribute(name = "internalId") protected String internalId; @XmlAttribute(name = "externalId") protected String externalId; /** * Gets the value of the customForm property. * * @return * possible object is * {@link RecordRef } * */ public RecordRef getCustomForm() { return customForm; } /** * Sets the value of the customForm property. * * @param value * allowed object is * {@link RecordRef } * */ public void setCustomForm(RecordRef value) { this.customForm = value; } /** * Gets the value of the name property. * * @return * possible object is * {@link String } * */ public String getName() { return name; } /** * Sets the value of the name property. * * @param value * allowed object is * {@link String } * */ public void setName(String value) { this.name = value; } /** * Gets the value of the usedOnAssembly property. * * @return * possible object is * {@link Boolean } * */ public Boolean isUsedOnAssembly() { return usedOnAssembly; } /** * Sets the value of the usedOnAssembly property. * * @param value * allowed object is * {@link Boolean } * */ public void setUsedOnAssembly(Boolean value) { this.usedOnAssembly = value; } /** * Gets the value of the createdDate property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getCreatedDate() { return createdDate; } /** * Sets the value of the createdDate property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setCreatedDate(XMLGregorianCalendar value) { this.createdDate = value; } /** * Gets the value of the isInactive property. * * @return * possible object is * {@link Boolean } * */ public Boolean isIsInactive() { return isInactive; } /** * Sets the value of the isInactive property. * * @param value * allowed object is * {@link Boolean } * */ public void setIsInactive(Boolean value) { this.isInactive = value; } /** * Gets the value of the useComponentYield property. * * @return * possible object is * {@link Boolean } * */ public Boolean isUseComponentYield() { return useComponentYield; } /** * Sets the value of the useComponentYield property. * * @param value * allowed object is * {@link Boolean } * */ public void setUseComponentYield(Boolean value) { this.useComponentYield = value; } /** * Gets the value of the memo property. * * @return * possible object is * {@link String } * */ public String getMemo() { return memo; } /** * Sets the value of the memo property. * * @param value * allowed object is * {@link String } * */ public void setMemo(String value) { this.memo = value; } /** * Gets the value of the legacyBomForAssembly property. * * @return * possible object is * {@link RecordRef } * */ public RecordRef getLegacyBomForAssembly() { return legacyBomForAssembly; } /** * Sets the value of the legacyBomForAssembly property. * * @param value * allowed object is * {@link RecordRef } * */ public void setLegacyBomForAssembly(RecordRef value) { this.legacyBomForAssembly = value; } /** * Gets the value of the availableForAllAssemblies property. * * @return * possible object is * {@link Boolean } * */ public Boolean isAvailableForAllAssemblies() { return availableForAllAssemblies; } /** * Sets the value of the availableForAllAssemblies property. * * @param value * allowed object is * {@link Boolean } * */ public void setAvailableForAllAssemblies(Boolean value) { this.availableForAllAssemblies = value; } /** * Gets the value of the restrictToAssembliesList property. * * @return * possible object is * {@link RecordRefList } * */ public RecordRefList getRestrictToAssembliesList() { return restrictToAssembliesList; } /** * Sets the value of the restrictToAssembliesList property. * * @param value * allowed object is * {@link RecordRefList } * */ public void setRestrictToAssembliesList(RecordRefList value) { this.restrictToAssembliesList = value; } /** * Gets the value of the availableForAllLocations property. * * @return * possible object is * {@link Boolean } * */ public Boolean isAvailableForAllLocations() { return availableForAllLocations; } /** * Sets the value of the availableForAllLocations property. * * @param value * allowed object is * {@link Boolean } * */ public void setAvailableForAllLocations(Boolean value) { this.availableForAllLocations = value; } /** * Gets the value of the restrictToLocationsList property. * * @return * possible object is * {@link RecordRefList } * */ public RecordRefList getRestrictToLocationsList() { return restrictToLocationsList; } /** * Sets the value of the restrictToLocationsList property. * * @param value * allowed object is * {@link RecordRefList } * */ public void setRestrictToLocationsList(RecordRefList value) { this.restrictToLocationsList = value; } /** * Gets the value of the subsidiaryList property. * * @return * possible object is * {@link RecordRefList } * */ public RecordRefList getSubsidiaryList() { return subsidiaryList; } /** * Sets the value of the subsidiaryList property. * * @param value * allowed object is * {@link RecordRefList } * */ public void setSubsidiaryList(RecordRefList value) { this.subsidiaryList = value; } /** * Gets the value of the includeChildren property. * * @return * possible object is * {@link Boolean } * */ public Boolean isIncludeChildren() { return includeChildren; } /** * Sets the value of the includeChildren property. * * @param value * allowed object is * {@link Boolean } * */ public void setIncludeChildren(Boolean value) { this.includeChildren = value; } /** * Gets the value of the customFieldList property. * * @return * possible object is * {@link CustomFieldList } * */ public CustomFieldList getCustomFieldList() { return customFieldList; } /** * Sets the value of the customFieldList property. * * @param value * allowed object is * {@link CustomFieldList } * */ public void setCustomFieldList(CustomFieldList value) { this.customFieldList = value; } /** * Gets the value of the internalId property. * * @return * possible object is * {@link String } * */ public String getInternalId() { return internalId; } /** * Sets the value of the internalId property. * * @param value * allowed object is * {@link String } * */ public void setInternalId(String value) { this.internalId = value; } /** * Gets the value of the externalId property. * * @return * possible object is * {@link String } * */ public String getExternalId() { return externalId; } /** * Sets the value of the externalId property. * * @param value * allowed object is * {@link String } * */ public void setExternalId(String value) { this.externalId = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy