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

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

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

 * <complexType name="ItemAccountMappingSearchBasic">
 *   <complexContent>
 *     <extension base="{urn:core_2023_1.platform.webservices.netsuite.com}SearchRecordBasic">
 *       <sequence>
 *         <element name="accountingBook" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchMultiSelectField" minOccurs="0"/>
 *         <element name="class" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchMultiSelectField" minOccurs="0"/>
 *         <element name="customDimension" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchMultiSelectCustomField" minOccurs="0"/>
 *         <element name="department" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchMultiSelectField" minOccurs="0"/>
 *         <element name="destinationAccount" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchMultiSelectField" minOccurs="0"/>
 *         <element name="effectiveDate" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchDateField" minOccurs="0"/>
 *         <element name="endDate" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchDateField" 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="itemAccount" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchEnumMultiSelectField" minOccurs="0"/>
 *         <element name="location" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchMultiSelectField" minOccurs="0"/>
 *         <element name="sourceAccount" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchMultiSelectField" 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 = "ItemAccountMappingSearchBasic", namespace = "urn:common_2023_1.platform.webservices.netsuite.com", propOrder = { "accountingBook", "clazz", "customDimension", "department", "destinationAccount", "effectiveDate", "endDate", "externalId", "externalIdString", "internalId", "internalIdNumber", "itemAccount", "location", "sourceAccount", "subsidiary", "customFieldList" }) public class ItemAccountMappingSearchBasic extends SearchRecordBasic { protected SearchMultiSelectField accountingBook; @XmlElement(name = "class") protected SearchMultiSelectField clazz; protected SearchMultiSelectCustomField customDimension; protected SearchMultiSelectField department; protected SearchMultiSelectField destinationAccount; protected SearchDateField effectiveDate; protected SearchDateField endDate; protected SearchMultiSelectField externalId; protected SearchStringField externalIdString; protected SearchMultiSelectField internalId; protected SearchLongField internalIdNumber; protected SearchEnumMultiSelectField itemAccount; protected SearchMultiSelectField location; protected SearchMultiSelectField sourceAccount; protected SearchMultiSelectField subsidiary; protected SearchCustomFieldList customFieldList; /** * Gets the value of the accountingBook property. * * @return * possible object is * {@link SearchMultiSelectField } * */ public SearchMultiSelectField getAccountingBook() { return accountingBook; } /** * Sets the value of the accountingBook property. * * @param value * allowed object is * {@link SearchMultiSelectField } * */ public void setAccountingBook(SearchMultiSelectField value) { this.accountingBook = value; } /** * Gets the value of the clazz property. * * @return * possible object is * {@link SearchMultiSelectField } * */ public SearchMultiSelectField getClazz() { return clazz; } /** * Sets the value of the clazz property. * * @param value * allowed object is * {@link SearchMultiSelectField } * */ public void setClazz(SearchMultiSelectField value) { this.clazz = value; } /** * Gets the value of the customDimension property. * * @return * possible object is * {@link SearchMultiSelectCustomField } * */ public SearchMultiSelectCustomField getCustomDimension() { return customDimension; } /** * Sets the value of the customDimension property. * * @param value * allowed object is * {@link SearchMultiSelectCustomField } * */ public void setCustomDimension(SearchMultiSelectCustomField value) { this.customDimension = value; } /** * Gets the value of the department property. * * @return * possible object is * {@link SearchMultiSelectField } * */ public SearchMultiSelectField getDepartment() { return department; } /** * Sets the value of the department property. * * @param value * allowed object is * {@link SearchMultiSelectField } * */ public void setDepartment(SearchMultiSelectField value) { this.department = value; } /** * Gets the value of the destinationAccount property. * * @return * possible object is * {@link SearchMultiSelectField } * */ public SearchMultiSelectField getDestinationAccount() { return destinationAccount; } /** * Sets the value of the destinationAccount property. * * @param value * allowed object is * {@link SearchMultiSelectField } * */ public void setDestinationAccount(SearchMultiSelectField value) { this.destinationAccount = value; } /** * Gets the value of the effectiveDate property. * * @return * possible object is * {@link SearchDateField } * */ public SearchDateField getEffectiveDate() { return effectiveDate; } /** * Sets the value of the effectiveDate property. * * @param value * allowed object is * {@link SearchDateField } * */ public void setEffectiveDate(SearchDateField value) { this.effectiveDate = value; } /** * Gets the value of the endDate property. * * @return * possible object is * {@link SearchDateField } * */ public SearchDateField getEndDate() { return endDate; } /** * Sets the value of the endDate property. * * @param value * allowed object is * {@link SearchDateField } * */ public void setEndDate(SearchDateField value) { this.endDate = 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 itemAccount property. * * @return * possible object is * {@link SearchEnumMultiSelectField } * */ public SearchEnumMultiSelectField getItemAccount() { return itemAccount; } /** * Sets the value of the itemAccount property. * * @param value * allowed object is * {@link SearchEnumMultiSelectField } * */ public void setItemAccount(SearchEnumMultiSelectField value) { this.itemAccount = 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 sourceAccount property. * * @return * possible object is * {@link SearchMultiSelectField } * */ public SearchMultiSelectField getSourceAccount() { return sourceAccount; } /** * Sets the value of the sourceAccount property. * * @param value * allowed object is * {@link SearchMultiSelectField } * */ public void setSourceAccount(SearchMultiSelectField value) { this.sourceAccount = 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