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

tsg.ns.wsdl.coop.AccountingPeriodSearchRow 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 AccountingPeriodSearchRow complex type. * *

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

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy