
tsg.ns.wsdl.coop.SolutionSearchRow Maven / Gradle / Ivy
package tsg.ns.wsdl.coop;
import java.util.ArrayList;
import java.util.List;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlType;
/**
* Java class for SolutionSearchRow complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="SolutionSearchRow">
* <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}SolutionSearchRowBasic" minOccurs="0"/>
* <element name="caseJoin" type="{urn:common_2023_1.platform.webservices.netsuite.com}SupportCaseSearchRowBasic" minOccurs="0"/>
* <element name="relatedSolutionJoin" type="{urn:common_2023_1.platform.webservices.netsuite.com}SolutionSearchRowBasic" minOccurs="0"/>
* <element name="topicJoin" type="{urn:common_2023_1.platform.webservices.netsuite.com}TopicSearchRowBasic" 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"/>
* <element name="customSearchJoin" type="{urn:common_2023_1.platform.webservices.netsuite.com}CustomSearchRowBasic" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "SolutionSearchRow", namespace = "urn:support_2023_1.lists.webservices.netsuite.com", propOrder = {
"basic",
"caseJoin",
"relatedSolutionJoin",
"topicJoin",
"userJoin",
"userNotesJoin",
"customSearchJoin"
})
public class SolutionSearchRow
extends SearchRow
{
protected SolutionSearchRowBasic basic;
protected SupportCaseSearchRowBasic caseJoin;
protected SolutionSearchRowBasic relatedSolutionJoin;
protected TopicSearchRowBasic topicJoin;
protected EmployeeSearchRowBasic userJoin;
protected NoteSearchRowBasic userNotesJoin;
protected List customSearchJoin;
/**
* Gets the value of the basic property.
*
* @return
* possible object is
* {@link SolutionSearchRowBasic }
*
*/
public SolutionSearchRowBasic getBasic() {
return basic;
}
/**
* Sets the value of the basic property.
*
* @param value
* allowed object is
* {@link SolutionSearchRowBasic }
*
*/
public void setBasic(SolutionSearchRowBasic value) {
this.basic = value;
}
/**
* Gets the value of the caseJoin property.
*
* @return
* possible object is
* {@link SupportCaseSearchRowBasic }
*
*/
public SupportCaseSearchRowBasic getCaseJoin() {
return caseJoin;
}
/**
* Sets the value of the caseJoin property.
*
* @param value
* allowed object is
* {@link SupportCaseSearchRowBasic }
*
*/
public void setCaseJoin(SupportCaseSearchRowBasic value) {
this.caseJoin = value;
}
/**
* Gets the value of the relatedSolutionJoin property.
*
* @return
* possible object is
* {@link SolutionSearchRowBasic }
*
*/
public SolutionSearchRowBasic getRelatedSolutionJoin() {
return relatedSolutionJoin;
}
/**
* Sets the value of the relatedSolutionJoin property.
*
* @param value
* allowed object is
* {@link SolutionSearchRowBasic }
*
*/
public void setRelatedSolutionJoin(SolutionSearchRowBasic value) {
this.relatedSolutionJoin = value;
}
/**
* Gets the value of the topicJoin property.
*
* @return
* possible object is
* {@link TopicSearchRowBasic }
*
*/
public TopicSearchRowBasic getTopicJoin() {
return topicJoin;
}
/**
* Sets the value of the topicJoin property.
*
* @param value
* allowed object is
* {@link TopicSearchRowBasic }
*
*/
public void setTopicJoin(TopicSearchRowBasic value) {
this.topicJoin = 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;
}
/**
* Gets the value of the customSearchJoin property.
*
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the Jakarta XML Binding object.
* This is why there is not a set
method for the customSearchJoin property.
*
*
* For example, to add a new item, do as follows:
*
* getCustomSearchJoin().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link CustomSearchRowBasic }
*
*
*/
public List getCustomSearchJoin() {
if (customSearchJoin == null) {
customSearchJoin = new ArrayList();
}
return this.customSearchJoin;
}
}