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

tsg.ns.wsdl.coop.TimeSheetSearchRow 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.XmlType;


/**
 * 

Java class for TimeSheetSearchRow complex type. * *

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

 * <complexType name="TimeSheetSearchRow">
 *   <complexContent>
 *     <extension base="{urn:core_2023_1.platform.webservices.netsuite.com}SearchRow">
 *       <sequence>
 *         <element name="basic" type="{urn:common_2023_1.platform.webservices.netsuite.com}TimeSheetSearchRowBasic" minOccurs="0"/>
 *         <element name="employeeJoin" type="{urn:common_2023_1.platform.webservices.netsuite.com}EmployeeSearchRowBasic" minOccurs="0"/>
 *         <element name="timeBillJoin" type="{urn:common_2023_1.platform.webservices.netsuite.com}TimeBillSearchRowBasic" minOccurs="0"/>
 *         <element name="timeEntryJoin" type="{urn:common_2023_1.platform.webservices.netsuite.com}TimeEntrySearchRowBasic" minOccurs="0"/>
 *         <element name="customSearchJoin" type="{urn:common_2023_1.platform.webservices.netsuite.com}CustomSearchRowBasic" maxOccurs="unbounded" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "TimeSheetSearchRow", namespace = "urn:employees_2023_1.transactions.webservices.netsuite.com", propOrder = { "basic", "employeeJoin", "timeBillJoin", "timeEntryJoin", "customSearchJoin" }) public class TimeSheetSearchRow extends SearchRow { protected TimeSheetSearchRowBasic basic; protected EmployeeSearchRowBasic employeeJoin; protected TimeBillSearchRowBasic timeBillJoin; protected TimeEntrySearchRowBasic timeEntryJoin; protected List customSearchJoin; /** * Gets the value of the basic property. * * @return * possible object is * {@link TimeSheetSearchRowBasic } * */ public TimeSheetSearchRowBasic getBasic() { return basic; } /** * Sets the value of the basic property. * * @param value * allowed object is * {@link TimeSheetSearchRowBasic } * */ public void setBasic(TimeSheetSearchRowBasic value) { this.basic = value; } /** * Gets the value of the employeeJoin property. * * @return * possible object is * {@link EmployeeSearchRowBasic } * */ public EmployeeSearchRowBasic getEmployeeJoin() { return employeeJoin; } /** * Sets the value of the employeeJoin property. * * @param value * allowed object is * {@link EmployeeSearchRowBasic } * */ public void setEmployeeJoin(EmployeeSearchRowBasic value) { this.employeeJoin = value; } /** * Gets the value of the timeBillJoin property. * * @return * possible object is * {@link TimeBillSearchRowBasic } * */ public TimeBillSearchRowBasic getTimeBillJoin() { return timeBillJoin; } /** * Sets the value of the timeBillJoin property. * * @param value * allowed object is * {@link TimeBillSearchRowBasic } * */ public void setTimeBillJoin(TimeBillSearchRowBasic value) { this.timeBillJoin = value; } /** * Gets the value of the timeEntryJoin property. * * @return * possible object is * {@link TimeEntrySearchRowBasic } * */ public TimeEntrySearchRowBasic getTimeEntryJoin() { return timeEntryJoin; } /** * Sets the value of the timeEntryJoin property. * * @param value * allowed object is * {@link TimeEntrySearchRowBasic } * */ public void setTimeEntryJoin(TimeEntrySearchRowBasic value) { this.timeEntryJoin = 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 Jakarta XML Binding 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 - 2025 Weber Informatics LLC | Privacy Policy