
tsg.ns.wsdl.coop.PhoneCallSearchRow 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 PhoneCallSearchRow complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="PhoneCallSearchRow">
* <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}PhoneCallSearchRowBasic" minOccurs="0"/>
* <element name="caseJoin" type="{urn:common_2023_1.platform.webservices.netsuite.com}SupportCaseSearchRowBasic" minOccurs="0"/>
* <element name="companyCustomerJoin" type="{urn:common_2023_1.platform.webservices.netsuite.com}CustomerSearchRowBasic" minOccurs="0"/>
* <element name="contactJoin" type="{urn:common_2023_1.platform.webservices.netsuite.com}ContactSearchRowBasic" 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="opportunityJoin" type="{urn:common_2023_1.platform.webservices.netsuite.com}OpportunitySearchRowBasic" minOccurs="0"/>
* <element name="originatingLeadJoin" type="{urn:common_2023_1.platform.webservices.netsuite.com}OriginatingLeadSearchRowBasic" minOccurs="0"/>
* <element name="participantJoin" type="{urn:common_2023_1.platform.webservices.netsuite.com}EntitySearchRowBasic" minOccurs="0"/>
* <element name="transactionJoin" type="{urn:common_2023_1.platform.webservices.netsuite.com}TransactionSearchRowBasic" 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 = "PhoneCallSearchRow", namespace = "urn:scheduling_2023_1.activities.webservices.netsuite.com", propOrder = {
"basic",
"caseJoin",
"companyCustomerJoin",
"contactJoin",
"employeeJoin",
"fileJoin",
"opportunityJoin",
"originatingLeadJoin",
"participantJoin",
"transactionJoin",
"userJoin",
"userNotesJoin",
"customSearchJoin"
})
public class PhoneCallSearchRow
extends SearchRow
{
protected PhoneCallSearchRowBasic basic;
protected SupportCaseSearchRowBasic caseJoin;
protected CustomerSearchRowBasic companyCustomerJoin;
protected ContactSearchRowBasic contactJoin;
protected EmployeeSearchRowBasic employeeJoin;
protected FileSearchRowBasic fileJoin;
protected OpportunitySearchRowBasic opportunityJoin;
protected OriginatingLeadSearchRowBasic originatingLeadJoin;
protected EntitySearchRowBasic participantJoin;
protected TransactionSearchRowBasic transactionJoin;
protected EmployeeSearchRowBasic userJoin;
protected NoteSearchRowBasic userNotesJoin;
protected List customSearchJoin;
/**
* Gets the value of the basic property.
*
* @return
* possible object is
* {@link PhoneCallSearchRowBasic }
*
*/
public PhoneCallSearchRowBasic getBasic() {
return basic;
}
/**
* Sets the value of the basic property.
*
* @param value
* allowed object is
* {@link PhoneCallSearchRowBasic }
*
*/
public void setBasic(PhoneCallSearchRowBasic 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 companyCustomerJoin property.
*
* @return
* possible object is
* {@link CustomerSearchRowBasic }
*
*/
public CustomerSearchRowBasic getCompanyCustomerJoin() {
return companyCustomerJoin;
}
/**
* Sets the value of the companyCustomerJoin property.
*
* @param value
* allowed object is
* {@link CustomerSearchRowBasic }
*
*/
public void setCompanyCustomerJoin(CustomerSearchRowBasic value) {
this.companyCustomerJoin = value;
}
/**
* Gets the value of the contactJoin property.
*
* @return
* possible object is
* {@link ContactSearchRowBasic }
*
*/
public ContactSearchRowBasic getContactJoin() {
return contactJoin;
}
/**
* Sets the value of the contactJoin property.
*
* @param value
* allowed object is
* {@link ContactSearchRowBasic }
*
*/
public void setContactJoin(ContactSearchRowBasic value) {
this.contactJoin = 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 opportunityJoin property.
*
* @return
* possible object is
* {@link OpportunitySearchRowBasic }
*
*/
public OpportunitySearchRowBasic getOpportunityJoin() {
return opportunityJoin;
}
/**
* Sets the value of the opportunityJoin property.
*
* @param value
* allowed object is
* {@link OpportunitySearchRowBasic }
*
*/
public void setOpportunityJoin(OpportunitySearchRowBasic value) {
this.opportunityJoin = value;
}
/**
* Gets the value of the originatingLeadJoin property.
*
* @return
* possible object is
* {@link OriginatingLeadSearchRowBasic }
*
*/
public OriginatingLeadSearchRowBasic getOriginatingLeadJoin() {
return originatingLeadJoin;
}
/**
* Sets the value of the originatingLeadJoin property.
*
* @param value
* allowed object is
* {@link OriginatingLeadSearchRowBasic }
*
*/
public void setOriginatingLeadJoin(OriginatingLeadSearchRowBasic value) {
this.originatingLeadJoin = value;
}
/**
* Gets the value of the participantJoin property.
*
* @return
* possible object is
* {@link EntitySearchRowBasic }
*
*/
public EntitySearchRowBasic getParticipantJoin() {
return participantJoin;
}
/**
* Sets the value of the participantJoin property.
*
* @param value
* allowed object is
* {@link EntitySearchRowBasic }
*
*/
public void setParticipantJoin(EntitySearchRowBasic value) {
this.participantJoin = value;
}
/**
* Gets the value of the transactionJoin property.
*
* @return
* possible object is
* {@link TransactionSearchRowBasic }
*
*/
public TransactionSearchRowBasic getTransactionJoin() {
return transactionJoin;
}
/**
* Sets the value of the transactionJoin property.
*
* @param value
* allowed object is
* {@link TransactionSearchRowBasic }
*
*/
public void setTransactionJoin(TransactionSearchRowBasic value) {
this.transactionJoin = 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;
}
}