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

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

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

 * <complexType name="ItemAccountMappingSearchRowBasic">
 *   <complexContent>
 *     <extension base="{urn:core_2023_1.platform.webservices.netsuite.com}SearchRowBasic">
 *       <sequence>
 *         <element name="accountingBook" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchColumnSelectField" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="class" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchColumnSelectField" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="customDimension" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchColumnSelectCustomField" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="department" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchColumnSelectField" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="destinationAccount" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchColumnSelectField" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="effectiveDate" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchColumnDateField" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="endDate" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchColumnDateField" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="externalId" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchColumnSelectField" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="internalId" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchColumnSelectField" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="itemAccount" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchColumnEnumSelectField" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="location" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchColumnSelectField" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="sourceAccount" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchColumnSelectField" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="subsidiary" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchColumnSelectField" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="customFieldList" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchColumnCustomFieldList" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ItemAccountMappingSearchRowBasic", namespace = "urn:common_2023_1.platform.webservices.netsuite.com", propOrder = { "accountingBook", "clazz", "customDimension", "department", "destinationAccount", "effectiveDate", "endDate", "externalId", "internalId", "itemAccount", "location", "sourceAccount", "subsidiary", "customFieldList" }) public class ItemAccountMappingSearchRowBasic extends SearchRowBasic { protected List accountingBook; @XmlElement(name = "class") protected List clazz; protected List customDimension; protected List department; protected List destinationAccount; protected List effectiveDate; protected List endDate; protected List externalId; protected List internalId; protected List itemAccount; protected List location; protected List sourceAccount; protected List subsidiary; protected SearchColumnCustomFieldList customFieldList; /** * Gets the value of the accountingBook 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 accountingBook property. * *

* For example, to add a new item, do as follows: *

     *    getAccountingBook().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link SearchColumnSelectField } * * */ public List getAccountingBook() { if (accountingBook == null) { accountingBook = new ArrayList(); } return this.accountingBook; } /** * Gets the value of the clazz 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 clazz property. * *

* For example, to add a new item, do as follows: *

     *    getClazz().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link SearchColumnSelectField } * * */ public List getClazz() { if (clazz == null) { clazz = new ArrayList(); } return this.clazz; } /** * Gets the value of the customDimension 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 customDimension property. * *

* For example, to add a new item, do as follows: *

     *    getCustomDimension().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link SearchColumnSelectCustomField } * * */ public List getCustomDimension() { if (customDimension == null) { customDimension = new ArrayList(); } return this.customDimension; } /** * Gets the value of the department 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 department property. * *

* For example, to add a new item, do as follows: *

     *    getDepartment().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link SearchColumnSelectField } * * */ public List getDepartment() { if (department == null) { department = new ArrayList(); } return this.department; } /** * Gets the value of the destinationAccount 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 destinationAccount property. * *

* For example, to add a new item, do as follows: *

     *    getDestinationAccount().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link SearchColumnSelectField } * * */ public List getDestinationAccount() { if (destinationAccount == null) { destinationAccount = new ArrayList(); } return this.destinationAccount; } /** * Gets the value of the effectiveDate 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 effectiveDate property. * *

* For example, to add a new item, do as follows: *

     *    getEffectiveDate().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link SearchColumnDateField } * * */ public List getEffectiveDate() { if (effectiveDate == null) { effectiveDate = new ArrayList(); } return this.effectiveDate; } /** * Gets the value of the endDate 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 endDate property. * *

* For example, to add a new item, do as follows: *

     *    getEndDate().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link SearchColumnDateField } * * */ public List getEndDate() { if (endDate == null) { endDate = new ArrayList(); } return this.endDate; } /** * Gets the value of the externalId 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 externalId property. * *

* For example, to add a new item, do as follows: *

     *    getExternalId().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link SearchColumnSelectField } * * */ public List getExternalId() { if (externalId == null) { externalId = new ArrayList(); } return this.externalId; } /** * Gets the value of the internalId 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 internalId property. * *

* For example, to add a new item, do as follows: *

     *    getInternalId().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link SearchColumnSelectField } * * */ public List getInternalId() { if (internalId == null) { internalId = new ArrayList(); } return this.internalId; } /** * Gets the value of the itemAccount 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 itemAccount property. * *

* For example, to add a new item, do as follows: *

     *    getItemAccount().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link SearchColumnEnumSelectField } * * */ public List getItemAccount() { if (itemAccount == null) { itemAccount = new ArrayList(); } return this.itemAccount; } /** * Gets the value of the location 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 location property. * *

* For example, to add a new item, do as follows: *

     *    getLocation().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link SearchColumnSelectField } * * */ public List getLocation() { if (location == null) { location = new ArrayList(); } return this.location; } /** * Gets the value of the sourceAccount 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 sourceAccount property. * *

* For example, to add a new item, do as follows: *

     *    getSourceAccount().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link SearchColumnSelectField } * * */ public List getSourceAccount() { if (sourceAccount == null) { sourceAccount = new ArrayList(); } return this.sourceAccount; } /** * Gets the value of the subsidiary 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 subsidiary property. * *

* For example, to add a new item, do as follows: *

     *    getSubsidiary().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link SearchColumnSelectField } * * */ public List getSubsidiary() { if (subsidiary == null) { subsidiary = new ArrayList(); } return this.subsidiary; } /** * Gets the value of the customFieldList property. * * @return * possible object is * {@link SearchColumnCustomFieldList } * */ public SearchColumnCustomFieldList getCustomFieldList() { return customFieldList; } /** * Sets the value of the customFieldList property. * * @param value * allowed object is * {@link SearchColumnCustomFieldList } * */ public void setCustomFieldList(SearchColumnCustomFieldList value) { this.customFieldList = value; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy