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