
tsg.ns.wsdl.coop.ManufacturingRoutingSearchBasic 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 ManufacturingRoutingSearchBasic complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="ManufacturingRoutingSearchBasic">
* <complexContent>
* <extension base="{urn:core_2023_1.platform.webservices.netsuite.com}SearchRecordBasic">
* <sequence>
* <element name="autoCalculateLag" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchBooleanField" minOccurs="0"/>
* <element name="billOfMaterials" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchMultiSelectField" minOccurs="0"/>
* <element name="externalId" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchMultiSelectField" minOccurs="0"/>
* <element name="externalIdString" 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="isDefault" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchBooleanField" minOccurs="0"/>
* <element name="isInactive" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchBooleanField" minOccurs="0"/>
* <element name="item" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchMultiSelectField" minOccurs="0"/>
* <element name="lagAmount" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchDoubleField" minOccurs="0"/>
* <element name="lagType" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchEnumMultiSelectField" minOccurs="0"/>
* <element name="lagUnits" 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="manufacturingCostTemplate" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchMultiSelectField" minOccurs="0"/>
* <element name="manufacturingWorkCenter" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchMultiSelectField" minOccurs="0"/>
* <element name="memo" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchStringField" minOccurs="0"/>
* <element name="name" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchStringField" minOccurs="0"/>
* <element name="operationName" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchStringField" minOccurs="0"/>
* <element name="operationYield" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchDoubleField" minOccurs="0"/>
* <element name="runRate" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchDoubleField" minOccurs="0"/>
* <element name="sequence" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchLongField" minOccurs="0"/>
* <element name="setupTime" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchDoubleField" minOccurs="0"/>
* <element name="subsidiary" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchMultiSelectField" minOccurs="0"/>
* <element name="customFieldList" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchCustomFieldList" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ManufacturingRoutingSearchBasic", namespace = "urn:common_2023_1.platform.webservices.netsuite.com", propOrder = {
"autoCalculateLag",
"billOfMaterials",
"externalId",
"externalIdString",
"internalId",
"internalIdNumber",
"isDefault",
"isInactive",
"item",
"lagAmount",
"lagType",
"lagUnits",
"location",
"manufacturingCostTemplate",
"manufacturingWorkCenter",
"memo",
"name",
"operationName",
"operationYield",
"runRate",
"sequence",
"setupTime",
"subsidiary",
"customFieldList"
})
public class ManufacturingRoutingSearchBasic
extends SearchRecordBasic
{
protected SearchBooleanField autoCalculateLag;
protected SearchMultiSelectField billOfMaterials;
protected SearchMultiSelectField externalId;
protected SearchStringField externalIdString;
protected SearchMultiSelectField internalId;
protected SearchLongField internalIdNumber;
protected SearchBooleanField isDefault;
protected SearchBooleanField isInactive;
protected SearchMultiSelectField item;
protected SearchDoubleField lagAmount;
protected SearchEnumMultiSelectField lagType;
protected SearchStringField lagUnits;
protected SearchMultiSelectField location;
protected SearchMultiSelectField manufacturingCostTemplate;
protected SearchMultiSelectField manufacturingWorkCenter;
protected SearchStringField memo;
protected SearchStringField name;
protected SearchStringField operationName;
protected SearchDoubleField operationYield;
protected SearchDoubleField runRate;
protected SearchLongField sequence;
protected SearchDoubleField setupTime;
protected SearchMultiSelectField subsidiary;
protected SearchCustomFieldList customFieldList;
/**
* Gets the value of the autoCalculateLag property.
*
* @return
* possible object is
* {@link SearchBooleanField }
*
*/
public SearchBooleanField getAutoCalculateLag() {
return autoCalculateLag;
}
/**
* Sets the value of the autoCalculateLag property.
*
* @param value
* allowed object is
* {@link SearchBooleanField }
*
*/
public void setAutoCalculateLag(SearchBooleanField value) {
this.autoCalculateLag = 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 externalId property.
*
* @return
* possible object is
* {@link SearchMultiSelectField }
*
*/
public SearchMultiSelectField getExternalId() {
return externalId;
}
/**
* Sets the value of the externalId property.
*
* @param value
* allowed object is
* {@link SearchMultiSelectField }
*
*/
public void setExternalId(SearchMultiSelectField value) {
this.externalId = value;
}
/**
* Gets the value of the externalIdString property.
*
* @return
* possible object is
* {@link SearchStringField }
*
*/
public SearchStringField getExternalIdString() {
return externalIdString;
}
/**
* Sets the value of the externalIdString property.
*
* @param value
* allowed object is
* {@link SearchStringField }
*
*/
public void setExternalIdString(SearchStringField value) {
this.externalIdString = 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 isDefault property.
*
* @return
* possible object is
* {@link SearchBooleanField }
*
*/
public SearchBooleanField getIsDefault() {
return isDefault;
}
/**
* Sets the value of the isDefault property.
*
* @param value
* allowed object is
* {@link SearchBooleanField }
*
*/
public void setIsDefault(SearchBooleanField value) {
this.isDefault = value;
}
/**
* Gets the value of the isInactive property.
*
* @return
* possible object is
* {@link SearchBooleanField }
*
*/
public SearchBooleanField getIsInactive() {
return isInactive;
}
/**
* Sets the value of the isInactive property.
*
* @param value
* allowed object is
* {@link SearchBooleanField }
*
*/
public void setIsInactive(SearchBooleanField value) {
this.isInactive = 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 lagAmount property.
*
* @return
* possible object is
* {@link SearchDoubleField }
*
*/
public SearchDoubleField getLagAmount() {
return lagAmount;
}
/**
* Sets the value of the lagAmount property.
*
* @param value
* allowed object is
* {@link SearchDoubleField }
*
*/
public void setLagAmount(SearchDoubleField value) {
this.lagAmount = value;
}
/**
* Gets the value of the lagType property.
*
* @return
* possible object is
* {@link SearchEnumMultiSelectField }
*
*/
public SearchEnumMultiSelectField getLagType() {
return lagType;
}
/**
* Sets the value of the lagType property.
*
* @param value
* allowed object is
* {@link SearchEnumMultiSelectField }
*
*/
public void setLagType(SearchEnumMultiSelectField value) {
this.lagType = value;
}
/**
* Gets the value of the lagUnits property.
*
* @return
* possible object is
* {@link SearchStringField }
*
*/
public SearchStringField getLagUnits() {
return lagUnits;
}
/**
* Sets the value of the lagUnits property.
*
* @param value
* allowed object is
* {@link SearchStringField }
*
*/
public void setLagUnits(SearchStringField value) {
this.lagUnits = 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 manufacturingCostTemplate property.
*
* @return
* possible object is
* {@link SearchMultiSelectField }
*
*/
public SearchMultiSelectField getManufacturingCostTemplate() {
return manufacturingCostTemplate;
}
/**
* Sets the value of the manufacturingCostTemplate property.
*
* @param value
* allowed object is
* {@link SearchMultiSelectField }
*
*/
public void setManufacturingCostTemplate(SearchMultiSelectField value) {
this.manufacturingCostTemplate = value;
}
/**
* Gets the value of the manufacturingWorkCenter property.
*
* @return
* possible object is
* {@link SearchMultiSelectField }
*
*/
public SearchMultiSelectField getManufacturingWorkCenter() {
return manufacturingWorkCenter;
}
/**
* Sets the value of the manufacturingWorkCenter property.
*
* @param value
* allowed object is
* {@link SearchMultiSelectField }
*
*/
public void setManufacturingWorkCenter(SearchMultiSelectField value) {
this.manufacturingWorkCenter = value;
}
/**
* Gets the value of the memo property.
*
* @return
* possible object is
* {@link SearchStringField }
*
*/
public SearchStringField getMemo() {
return memo;
}
/**
* Sets the value of the memo property.
*
* @param value
* allowed object is
* {@link SearchStringField }
*
*/
public void setMemo(SearchStringField value) {
this.memo = value;
}
/**
* Gets the value of the name property.
*
* @return
* possible object is
* {@link SearchStringField }
*
*/
public SearchStringField getName() {
return name;
}
/**
* Sets the value of the name property.
*
* @param value
* allowed object is
* {@link SearchStringField }
*
*/
public void setName(SearchStringField value) {
this.name = value;
}
/**
* Gets the value of the operationName property.
*
* @return
* possible object is
* {@link SearchStringField }
*
*/
public SearchStringField getOperationName() {
return operationName;
}
/**
* Sets the value of the operationName property.
*
* @param value
* allowed object is
* {@link SearchStringField }
*
*/
public void setOperationName(SearchStringField value) {
this.operationName = value;
}
/**
* Gets the value of the operationYield property.
*
* @return
* possible object is
* {@link SearchDoubleField }
*
*/
public SearchDoubleField getOperationYield() {
return operationYield;
}
/**
* Sets the value of the operationYield property.
*
* @param value
* allowed object is
* {@link SearchDoubleField }
*
*/
public void setOperationYield(SearchDoubleField value) {
this.operationYield = value;
}
/**
* Gets the value of the runRate property.
*
* @return
* possible object is
* {@link SearchDoubleField }
*
*/
public SearchDoubleField getRunRate() {
return runRate;
}
/**
* Sets the value of the runRate property.
*
* @param value
* allowed object is
* {@link SearchDoubleField }
*
*/
public void setRunRate(SearchDoubleField value) {
this.runRate = value;
}
/**
* Gets the value of the sequence property.
*
* @return
* possible object is
* {@link SearchLongField }
*
*/
public SearchLongField getSequence() {
return sequence;
}
/**
* Sets the value of the sequence property.
*
* @param value
* allowed object is
* {@link SearchLongField }
*
*/
public void setSequence(SearchLongField value) {
this.sequence = value;
}
/**
* Gets the value of the setupTime property.
*
* @return
* possible object is
* {@link SearchDoubleField }
*
*/
public SearchDoubleField getSetupTime() {
return setupTime;
}
/**
* Sets the value of the setupTime property.
*
* @param value
* allowed object is
* {@link SearchDoubleField }
*
*/
public void setSetupTime(SearchDoubleField value) {
this.setupTime = value;
}
/**
* Gets the value of the subsidiary property.
*
* @return
* possible object is
* {@link SearchMultiSelectField }
*
*/
public SearchMultiSelectField getSubsidiary() {
return subsidiary;
}
/**
* Sets the value of the subsidiary property.
*
* @param value
* allowed object is
* {@link SearchMultiSelectField }
*
*/
public void setSubsidiary(SearchMultiSelectField value) {
this.subsidiary = value;
}
/**
* Gets the value of the customFieldList property.
*
* @return
* possible object is
* {@link SearchCustomFieldList }
*
*/
public SearchCustomFieldList getCustomFieldList() {
return customFieldList;
}
/**
* Sets the value of the customFieldList property.
*
* @param value
* allowed object is
* {@link SearchCustomFieldList }
*
*/
public void setCustomFieldList(SearchCustomFieldList value) {
this.customFieldList = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy