
tsg.ns.wsdl.coop.IssueSearchRow 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 IssueSearchRow complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="IssueSearchRow">
* <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}IssueSearchRowBasic" minOccurs="0"/>
* <element name="caseJoin" type="{urn:common_2023_1.platform.webservices.netsuite.com}SupportCaseSearchRowBasic" minOccurs="0"/>
* <element name="employeeJoin" type="{urn:common_2023_1.platform.webservices.netsuite.com}EmployeeSearchRowBasic" minOccurs="0"/>
* <element name="fileJoin" type="{urn:common_2023_1.platform.webservices.netsuite.com}FileSearchRowBasic" minOccurs="0"/>
* <element name="productTeamJoin" type="{urn:common_2023_1.platform.webservices.netsuite.com}EntityGroupSearchRowBasic" 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 = "IssueSearchRow", namespace = "urn:support_2023_1.lists.webservices.netsuite.com", propOrder = {
"basic",
"caseJoin",
"employeeJoin",
"fileJoin",
"productTeamJoin",
"userJoin",
"userNotesJoin",
"customSearchJoin"
})
public class IssueSearchRow
extends SearchRow
{
protected IssueSearchRowBasic basic;
protected SupportCaseSearchRowBasic caseJoin;
protected EmployeeSearchRowBasic employeeJoin;
protected FileSearchRowBasic fileJoin;
protected EntityGroupSearchRowBasic productTeamJoin;
protected EmployeeSearchRowBasic userJoin;
protected NoteSearchRowBasic userNotesJoin;
protected List customSearchJoin;
/**
* Gets the value of the basic property.
*
* @return
* possible object is
* {@link IssueSearchRowBasic }
*
*/
public IssueSearchRowBasic getBasic() {
return basic;
}
/**
* Sets the value of the basic property.
*
* @param value
* allowed object is
* {@link IssueSearchRowBasic }
*
*/
public void setBasic(IssueSearchRowBasic 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 employeeJoin property.
*
* @return
* possible object is
* {@link EmployeeSearchRowBasic }
*
*/
public EmployeeSearchRowBasic getEmployeeJoin() {
return employeeJoin;
}
/**
* Sets the value of the employeeJoin property.
*
* @param value
* allowed object is
* {@link EmployeeSearchRowBasic }
*
*/
public void setEmployeeJoin(EmployeeSearchRowBasic value) {
this.employeeJoin = value;
}
/**
* Gets the value of the fileJoin property.
*
* @return
* possible object is
* {@link FileSearchRowBasic }
*
*/
public FileSearchRowBasic getFileJoin() {
return fileJoin;
}
/**
* Sets the value of the fileJoin property.
*
* @param value
* allowed object is
* {@link FileSearchRowBasic }
*
*/
public void setFileJoin(FileSearchRowBasic value) {
this.fileJoin = value;
}
/**
* Gets the value of the productTeamJoin property.
*
* @return
* possible object is
* {@link EntityGroupSearchRowBasic }
*
*/
public EntityGroupSearchRowBasic getProductTeamJoin() {
return productTeamJoin;
}
/**
* Sets the value of the productTeamJoin property.
*
* @param value
* allowed object is
* {@link EntityGroupSearchRowBasic }
*
*/
public void setProductTeamJoin(EntityGroupSearchRowBasic value) {
this.productTeamJoin = 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;
}
}