
tsg.ns.wsdl.coop.AccountingPeriodSearch 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 AccountingPeriodSearch complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="AccountingPeriodSearch">
* <complexContent>
* <extension base="{urn:core_2023_1.platform.webservices.netsuite.com}SearchRecord">
* <sequence>
* <element name="basic" type="{urn:common_2023_1.platform.webservices.netsuite.com}AccountingPeriodSearchBasic" minOccurs="0"/>
* <element name="userJoin" type="{urn:common_2023_1.platform.webservices.netsuite.com}EmployeeSearchBasic" minOccurs="0"/>
* <element name="userNotesJoin" type="{urn:common_2023_1.platform.webservices.netsuite.com}NoteSearchBasic" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "AccountingPeriodSearch", propOrder = {
"basic",
"userJoin",
"userNotesJoin"
})
public class AccountingPeriodSearch
extends SearchRecord
{
protected AccountingPeriodSearchBasic basic;
protected EmployeeSearchBasic userJoin;
protected NoteSearchBasic userNotesJoin;
/**
* Gets the value of the basic property.
*
* @return
* possible object is
* {@link AccountingPeriodSearchBasic }
*
*/
public AccountingPeriodSearchBasic getBasic() {
return basic;
}
/**
* Sets the value of the basic property.
*
* @param value
* allowed object is
* {@link AccountingPeriodSearchBasic }
*
*/
public void setBasic(AccountingPeriodSearchBasic value) {
this.basic = value;
}
/**
* Gets the value of the userJoin property.
*
* @return
* possible object is
* {@link EmployeeSearchBasic }
*
*/
public EmployeeSearchBasic getUserJoin() {
return userJoin;
}
/**
* Sets the value of the userJoin property.
*
* @param value
* allowed object is
* {@link EmployeeSearchBasic }
*
*/
public void setUserJoin(EmployeeSearchBasic value) {
this.userJoin = value;
}
/**
* Gets the value of the userNotesJoin property.
*
* @return
* possible object is
* {@link NoteSearchBasic }
*
*/
public NoteSearchBasic getUserNotesJoin() {
return userNotesJoin;
}
/**
* Sets the value of the userNotesJoin property.
*
* @param value
* allowed object is
* {@link NoteSearchBasic }
*
*/
public void setUserNotesJoin(NoteSearchBasic value) {
this.userNotesJoin = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy