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

tsg.ns.wsdl.coop.PaycheckSearchRow Maven / Gradle / Ivy


package tsg.ns.wsdl.coop;

import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlType;


/**
 * 

Java class for PaycheckSearchRow complex type. * *

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

 * <complexType name="PaycheckSearchRow">
 *   <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}PaycheckSearchRowBasic" minOccurs="0"/>
 *         <element name="employeeJoin" type="{urn:common_2023_1.platform.webservices.netsuite.com}EmployeeSearchRowBasic" minOccurs="0"/>
 *         <element name="payrollItemJoin" type="{urn:common_2023_1.platform.webservices.netsuite.com}PayrollItemSearchRowBasic" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "PaycheckSearchRow", namespace = "urn:employees_2023_1.transactions.webservices.netsuite.com", propOrder = { "basic", "employeeJoin", "payrollItemJoin" }) public class PaycheckSearchRow extends SearchRow { protected PaycheckSearchRowBasic basic; protected EmployeeSearchRowBasic employeeJoin; protected PayrollItemSearchRowBasic payrollItemJoin; /** * Gets the value of the basic property. * * @return * possible object is * {@link PaycheckSearchRowBasic } * */ public PaycheckSearchRowBasic getBasic() { return basic; } /** * Sets the value of the basic property. * * @param value * allowed object is * {@link PaycheckSearchRowBasic } * */ public void setBasic(PaycheckSearchRowBasic 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 payrollItemJoin property. * * @return * possible object is * {@link PayrollItemSearchRowBasic } * */ public PayrollItemSearchRowBasic getPayrollItemJoin() { return payrollItemJoin; } /** * Sets the value of the payrollItemJoin property. * * @param value * allowed object is * {@link PayrollItemSearchRowBasic } * */ public void setPayrollItemJoin(PayrollItemSearchRowBasic value) { this.payrollItemJoin = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy