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

com.bytekast.netsuite.client.GlobalAccountMappingSearchRow Maven / Gradle / Ivy

The newest version!

package com.bytekast.netsuite.client;

import java.io.Serializable;
import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for GlobalAccountMappingSearchRow complex type. * *

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

 * <complexType name="GlobalAccountMappingSearchRow">
 *   <complexContent>
 *     <extension base="{urn:core_2017_1.platform.webservices.netsuite.com}SearchRow">
 *       <sequence>
 *         <element name="basic" type="{urn:common_2017_1.platform.webservices.netsuite.com}GlobalAccountMappingSearchRowBasic" minOccurs="0"/>
 *         <element name="classJoin" type="{urn:common_2017_1.platform.webservices.netsuite.com}ClassificationSearchRowBasic" minOccurs="0"/>
 *         <element name="departmentJoin" type="{urn:common_2017_1.platform.webservices.netsuite.com}DepartmentSearchRowBasic" minOccurs="0"/>
 *         <element name="destinationAccountJoin" type="{urn:common_2017_1.platform.webservices.netsuite.com}AccountSearchRowBasic" minOccurs="0"/>
 *         <element name="locationJoin" type="{urn:common_2017_1.platform.webservices.netsuite.com}LocationSearchRowBasic" minOccurs="0"/>
 *         <element name="sourceAccountJoin" type="{urn:common_2017_1.platform.webservices.netsuite.com}AccountSearchRowBasic" minOccurs="0"/>
 *         <element name="subsidiaryJoin" type="{urn:common_2017_1.platform.webservices.netsuite.com}SubsidiarySearchRowBasic" minOccurs="0"/>
 *         <element name="customSearchJoin" type="{urn:common_2017_1.platform.webservices.netsuite.com}CustomSearchRowBasic" maxOccurs="unbounded" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "GlobalAccountMappingSearchRow", propOrder = { "basic", "classJoin", "departmentJoin", "destinationAccountJoin", "locationJoin", "sourceAccountJoin", "subsidiaryJoin", "customSearchJoin" }) public class GlobalAccountMappingSearchRow extends SearchRow implements Serializable { protected GlobalAccountMappingSearchRowBasic basic; protected ClassificationSearchRowBasic classJoin; protected DepartmentSearchRowBasic departmentJoin; protected AccountSearchRowBasic destinationAccountJoin; protected LocationSearchRowBasic locationJoin; protected AccountSearchRowBasic sourceAccountJoin; protected SubsidiarySearchRowBasic subsidiaryJoin; protected List customSearchJoin; /** * Gets the value of the basic property. * * @return * possible object is * {@link GlobalAccountMappingSearchRowBasic } * */ public GlobalAccountMappingSearchRowBasic getBasic() { return basic; } /** * Sets the value of the basic property. * * @param value * allowed object is * {@link GlobalAccountMappingSearchRowBasic } * */ public void setBasic(GlobalAccountMappingSearchRowBasic value) { this.basic = value; } /** * Gets the value of the classJoin property. * * @return * possible object is * {@link ClassificationSearchRowBasic } * */ public ClassificationSearchRowBasic getClassJoin() { return classJoin; } /** * Sets the value of the classJoin property. * * @param value * allowed object is * {@link ClassificationSearchRowBasic } * */ public void setClassJoin(ClassificationSearchRowBasic value) { this.classJoin = value; } /** * Gets the value of the departmentJoin property. * * @return * possible object is * {@link DepartmentSearchRowBasic } * */ public DepartmentSearchRowBasic getDepartmentJoin() { return departmentJoin; } /** * Sets the value of the departmentJoin property. * * @param value * allowed object is * {@link DepartmentSearchRowBasic } * */ public void setDepartmentJoin(DepartmentSearchRowBasic value) { this.departmentJoin = value; } /** * Gets the value of the destinationAccountJoin property. * * @return * possible object is * {@link AccountSearchRowBasic } * */ public AccountSearchRowBasic getDestinationAccountJoin() { return destinationAccountJoin; } /** * Sets the value of the destinationAccountJoin property. * * @param value * allowed object is * {@link AccountSearchRowBasic } * */ public void setDestinationAccountJoin(AccountSearchRowBasic value) { this.destinationAccountJoin = value; } /** * Gets the value of the locationJoin property. * * @return * possible object is * {@link LocationSearchRowBasic } * */ public LocationSearchRowBasic getLocationJoin() { return locationJoin; } /** * Sets the value of the locationJoin property. * * @param value * allowed object is * {@link LocationSearchRowBasic } * */ public void setLocationJoin(LocationSearchRowBasic value) { this.locationJoin = value; } /** * Gets the value of the sourceAccountJoin property. * * @return * possible object is * {@link AccountSearchRowBasic } * */ public AccountSearchRowBasic getSourceAccountJoin() { return sourceAccountJoin; } /** * Sets the value of the sourceAccountJoin property. * * @param value * allowed object is * {@link AccountSearchRowBasic } * */ public void setSourceAccountJoin(AccountSearchRowBasic value) { this.sourceAccountJoin = value; } /** * Gets the value of the subsidiaryJoin property. * * @return * possible object is * {@link SubsidiarySearchRowBasic } * */ public SubsidiarySearchRowBasic getSubsidiaryJoin() { return subsidiaryJoin; } /** * Sets the value of the subsidiaryJoin property. * * @param value * allowed object is * {@link SubsidiarySearchRowBasic } * */ public void setSubsidiaryJoin(SubsidiarySearchRowBasic value) { this.subsidiaryJoin = value; } /** * Gets the value of the customSearchJoin 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 JAXB object. * This is why there is not a set method for the customSearchJoin property. * *

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

     *    getCustomSearchJoin().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link CustomSearchRowBasic } * * */ public List getCustomSearchJoin() { if (customSearchJoin == null) { customSearchJoin = new ArrayList(); } return this.customSearchJoin; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy