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