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

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

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

 * <complexType name="OriginatingLeadSearchRow">
 *   <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}OriginatingLeadSearchRowBasic" 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 = "OriginatingLeadSearchRow", namespace = "urn:relationships_2017_1.lists.webservices.netsuite.com", propOrder = { "basic", "customSearchJoin" }) public class OriginatingLeadSearchRow extends SearchRow implements Serializable { protected OriginatingLeadSearchRowBasic basic; protected List customSearchJoin; /** * Gets the value of the basic property. * * @return * possible object is * {@link OriginatingLeadSearchRowBasic } * */ public OriginatingLeadSearchRowBasic getBasic() { return basic; } /** * Sets the value of the basic property. * * @param value * allowed object is * {@link OriginatingLeadSearchRowBasic } * */ public void setBasic(OriginatingLeadSearchRowBasic value) { this.basic = 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