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

com.bytekast.netsuite.client.VendorSearchRow 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 VendorSearchRow complex type. * *

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

 * <complexType name="VendorSearchRow">
 *   <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}VendorSearchRowBasic" minOccurs="0"/>
 *         <element name="accountJoin" type="{urn:common_2017_1.platform.webservices.netsuite.com}AccountSearchRowBasic" minOccurs="0"/>
 *         <element name="campaignResponseJoin" type="{urn:common_2017_1.platform.webservices.netsuite.com}CampaignSearchRowBasic" minOccurs="0"/>
 *         <element name="contactJoin" type="{urn:common_2017_1.platform.webservices.netsuite.com}ContactSearchRowBasic" minOccurs="0"/>
 *         <element name="contactPrimaryJoin" type="{urn:common_2017_1.platform.webservices.netsuite.com}ContactSearchRowBasic" minOccurs="0"/>
 *         <element name="expAccountJoin" type="{urn:common_2017_1.platform.webservices.netsuite.com}AccountSearchRowBasic" minOccurs="0"/>
 *         <element name="fileJoin" type="{urn:common_2017_1.platform.webservices.netsuite.com}FileSearchRowBasic" minOccurs="0"/>
 *         <element name="messagesJoin" type="{urn:common_2017_1.platform.webservices.netsuite.com}MessageSearchRowBasic" minOccurs="0"/>
 *         <element name="messagesFromJoin" type="{urn:common_2017_1.platform.webservices.netsuite.com}MessageSearchRowBasic" minOccurs="0"/>
 *         <element name="messagesToJoin" type="{urn:common_2017_1.platform.webservices.netsuite.com}MessageSearchRowBasic" minOccurs="0"/>
 *         <element name="transactionJoin" type="{urn:common_2017_1.platform.webservices.netsuite.com}TransactionSearchRowBasic" minOccurs="0"/>
 *         <element name="userJoin" type="{urn:common_2017_1.platform.webservices.netsuite.com}EmployeeSearchRowBasic" minOccurs="0"/>
 *         <element name="userNotesJoin" type="{urn:common_2017_1.platform.webservices.netsuite.com}NoteSearchRowBasic" 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 = "VendorSearchRow", namespace = "urn:relationships_2017_1.lists.webservices.netsuite.com", propOrder = { "basic", "accountJoin", "campaignResponseJoin", "contactJoin", "contactPrimaryJoin", "expAccountJoin", "fileJoin", "messagesJoin", "messagesFromJoin", "messagesToJoin", "transactionJoin", "userJoin", "userNotesJoin", "customSearchJoin" }) public class VendorSearchRow extends SearchRow implements Serializable { protected VendorSearchRowBasic basic; protected AccountSearchRowBasic accountJoin; protected CampaignSearchRowBasic campaignResponseJoin; protected ContactSearchRowBasic contactJoin; protected ContactSearchRowBasic contactPrimaryJoin; protected AccountSearchRowBasic expAccountJoin; protected FileSearchRowBasic fileJoin; protected MessageSearchRowBasic messagesJoin; protected MessageSearchRowBasic messagesFromJoin; protected MessageSearchRowBasic messagesToJoin; protected TransactionSearchRowBasic transactionJoin; protected EmployeeSearchRowBasic userJoin; protected NoteSearchRowBasic userNotesJoin; protected List customSearchJoin; /** * Gets the value of the basic property. * * @return * possible object is * {@link VendorSearchRowBasic } * */ public VendorSearchRowBasic getBasic() { return basic; } /** * Sets the value of the basic property. * * @param value * allowed object is * {@link VendorSearchRowBasic } * */ public void setBasic(VendorSearchRowBasic value) { this.basic = value; } /** * Gets the value of the accountJoin property. * * @return * possible object is * {@link AccountSearchRowBasic } * */ public AccountSearchRowBasic getAccountJoin() { return accountJoin; } /** * Sets the value of the accountJoin property. * * @param value * allowed object is * {@link AccountSearchRowBasic } * */ public void setAccountJoin(AccountSearchRowBasic value) { this.accountJoin = value; } /** * Gets the value of the campaignResponseJoin property. * * @return * possible object is * {@link CampaignSearchRowBasic } * */ public CampaignSearchRowBasic getCampaignResponseJoin() { return campaignResponseJoin; } /** * Sets the value of the campaignResponseJoin property. * * @param value * allowed object is * {@link CampaignSearchRowBasic } * */ public void setCampaignResponseJoin(CampaignSearchRowBasic value) { this.campaignResponseJoin = value; } /** * Gets the value of the contactJoin property. * * @return * possible object is * {@link ContactSearchRowBasic } * */ public ContactSearchRowBasic getContactJoin() { return contactJoin; } /** * Sets the value of the contactJoin property. * * @param value * allowed object is * {@link ContactSearchRowBasic } * */ public void setContactJoin(ContactSearchRowBasic value) { this.contactJoin = value; } /** * Gets the value of the contactPrimaryJoin property. * * @return * possible object is * {@link ContactSearchRowBasic } * */ public ContactSearchRowBasic getContactPrimaryJoin() { return contactPrimaryJoin; } /** * Sets the value of the contactPrimaryJoin property. * * @param value * allowed object is * {@link ContactSearchRowBasic } * */ public void setContactPrimaryJoin(ContactSearchRowBasic value) { this.contactPrimaryJoin = value; } /** * Gets the value of the expAccountJoin property. * * @return * possible object is * {@link AccountSearchRowBasic } * */ public AccountSearchRowBasic getExpAccountJoin() { return expAccountJoin; } /** * Sets the value of the expAccountJoin property. * * @param value * allowed object is * {@link AccountSearchRowBasic } * */ public void setExpAccountJoin(AccountSearchRowBasic value) { this.expAccountJoin = value; } /** * Gets the value of the fileJoin property. * * @return * possible object is * {@link FileSearchRowBasic } * */ public FileSearchRowBasic getFileJoin() { return fileJoin; } /** * Sets the value of the fileJoin property. * * @param value * allowed object is * {@link FileSearchRowBasic } * */ public void setFileJoin(FileSearchRowBasic value) { this.fileJoin = value; } /** * Gets the value of the messagesJoin property. * * @return * possible object is * {@link MessageSearchRowBasic } * */ public MessageSearchRowBasic getMessagesJoin() { return messagesJoin; } /** * Sets the value of the messagesJoin property. * * @param value * allowed object is * {@link MessageSearchRowBasic } * */ public void setMessagesJoin(MessageSearchRowBasic value) { this.messagesJoin = value; } /** * Gets the value of the messagesFromJoin property. * * @return * possible object is * {@link MessageSearchRowBasic } * */ public MessageSearchRowBasic getMessagesFromJoin() { return messagesFromJoin; } /** * Sets the value of the messagesFromJoin property. * * @param value * allowed object is * {@link MessageSearchRowBasic } * */ public void setMessagesFromJoin(MessageSearchRowBasic value) { this.messagesFromJoin = value; } /** * Gets the value of the messagesToJoin property. * * @return * possible object is * {@link MessageSearchRowBasic } * */ public MessageSearchRowBasic getMessagesToJoin() { return messagesToJoin; } /** * Sets the value of the messagesToJoin property. * * @param value * allowed object is * {@link MessageSearchRowBasic } * */ public void setMessagesToJoin(MessageSearchRowBasic value) { this.messagesToJoin = value; } /** * Gets the value of the transactionJoin property. * * @return * possible object is * {@link TransactionSearchRowBasic } * */ public TransactionSearchRowBasic getTransactionJoin() { return transactionJoin; } /** * Sets the value of the transactionJoin property. * * @param value * allowed object is * {@link TransactionSearchRowBasic } * */ public void setTransactionJoin(TransactionSearchRowBasic value) { this.transactionJoin = value; } /** * Gets the value of the userJoin property. * * @return * possible object is * {@link EmployeeSearchRowBasic } * */ public EmployeeSearchRowBasic getUserJoin() { return userJoin; } /** * Sets the value of the userJoin property. * * @param value * allowed object is * {@link EmployeeSearchRowBasic } * */ public void setUserJoin(EmployeeSearchRowBasic value) { this.userJoin = value; } /** * Gets the value of the userNotesJoin property. * * @return * possible object is * {@link NoteSearchRowBasic } * */ public NoteSearchRowBasic getUserNotesJoin() { return userNotesJoin; } /** * Sets the value of the userNotesJoin property. * * @param value * allowed object is * {@link NoteSearchRowBasic } * */ public void setUserNotesJoin(NoteSearchRowBasic value) { this.userNotesJoin = 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