All Downloads are FREE. Search and download functionalities are using the official Maven repository.

tsg.ns.wsdl.coop.MessageSearchRow 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 MessageSearchRow complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="MessageSearchRow">
 *   <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}MessageSearchRowBasic" minOccurs="0"/>
 *         <element name="attachmentsJoin" type="{urn:common_2023_1.platform.webservices.netsuite.com}FileSearchRowBasic" minOccurs="0"/>
 *         <element name="authorJoin" type="{urn:common_2023_1.platform.webservices.netsuite.com}EntitySearchRowBasic" minOccurs="0"/>
 *         <element name="campaignJoin" type="{urn:common_2023_1.platform.webservices.netsuite.com}CampaignSearchRowBasic" minOccurs="0"/>
 *         <element name="caseJoin" type="{urn:common_2023_1.platform.webservices.netsuite.com}SupportCaseSearchRowBasic" minOccurs="0"/>
 *         <element name="contactJoin" type="{urn:common_2023_1.platform.webservices.netsuite.com}ContactSearchRowBasic" minOccurs="0"/>
 *         <element name="customerJoin" type="{urn:common_2023_1.platform.webservices.netsuite.com}CustomerSearchRowBasic" minOccurs="0"/>
 *         <element name="employeeJoin" type="{urn:common_2023_1.platform.webservices.netsuite.com}EmployeeSearchRowBasic" minOccurs="0"/>
 *         <element name="entityJoin" type="{urn:common_2023_1.platform.webservices.netsuite.com}EntitySearchRowBasic" 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="partnerJoin" type="{urn:common_2023_1.platform.webservices.netsuite.com}PartnerSearchRowBasic" minOccurs="0"/>
 *         <element name="recipientJoin" 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="vendorJoin" type="{urn:common_2023_1.platform.webservices.netsuite.com}VendorSearchRowBasic" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "MessageSearchRow", namespace = "urn:communication_2023_1.general.webservices.netsuite.com", propOrder = { "basic", "attachmentsJoin", "authorJoin", "campaignJoin", "caseJoin", "contactJoin", "customerJoin", "employeeJoin", "entityJoin", "opportunityJoin", "originatingLeadJoin", "partnerJoin", "recipientJoin", "transactionJoin", "userJoin", "vendorJoin" }) public class MessageSearchRow extends SearchRow { protected MessageSearchRowBasic basic; protected FileSearchRowBasic attachmentsJoin; protected EntitySearchRowBasic authorJoin; protected CampaignSearchRowBasic campaignJoin; protected SupportCaseSearchRowBasic caseJoin; protected ContactSearchRowBasic contactJoin; protected CustomerSearchRowBasic customerJoin; protected EmployeeSearchRowBasic employeeJoin; protected EntitySearchRowBasic entityJoin; protected OpportunitySearchRowBasic opportunityJoin; protected OriginatingLeadSearchRowBasic originatingLeadJoin; protected PartnerSearchRowBasic partnerJoin; protected EntitySearchRowBasic recipientJoin; protected TransactionSearchRowBasic transactionJoin; protected EmployeeSearchRowBasic userJoin; protected VendorSearchRowBasic vendorJoin; /** * Gets the value of the basic property. * * @return * possible object is * {@link MessageSearchRowBasic } * */ public MessageSearchRowBasic getBasic() { return basic; } /** * Sets the value of the basic property. * * @param value * allowed object is * {@link MessageSearchRowBasic } * */ public void setBasic(MessageSearchRowBasic value) { this.basic = value; } /** * Gets the value of the attachmentsJoin property. * * @return * possible object is * {@link FileSearchRowBasic } * */ public FileSearchRowBasic getAttachmentsJoin() { return attachmentsJoin; } /** * Sets the value of the attachmentsJoin property. * * @param value * allowed object is * {@link FileSearchRowBasic } * */ public void setAttachmentsJoin(FileSearchRowBasic value) { this.attachmentsJoin = value; } /** * Gets the value of the authorJoin property. * * @return * possible object is * {@link EntitySearchRowBasic } * */ public EntitySearchRowBasic getAuthorJoin() { return authorJoin; } /** * Sets the value of the authorJoin property. * * @param value * allowed object is * {@link EntitySearchRowBasic } * */ public void setAuthorJoin(EntitySearchRowBasic value) { this.authorJoin = value; } /** * Gets the value of the campaignJoin property. * * @return * possible object is * {@link CampaignSearchRowBasic } * */ public CampaignSearchRowBasic getCampaignJoin() { return campaignJoin; } /** * Sets the value of the campaignJoin property. * * @param value * allowed object is * {@link CampaignSearchRowBasic } * */ public void setCampaignJoin(CampaignSearchRowBasic value) { this.campaignJoin = 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 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 customerJoin property. * * @return * possible object is * {@link CustomerSearchRowBasic } * */ public CustomerSearchRowBasic getCustomerJoin() { return customerJoin; } /** * Sets the value of the customerJoin property. * * @param value * allowed object is * {@link CustomerSearchRowBasic } * */ public void setCustomerJoin(CustomerSearchRowBasic value) { this.customerJoin = 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 entityJoin property. * * @return * possible object is * {@link EntitySearchRowBasic } * */ public EntitySearchRowBasic getEntityJoin() { return entityJoin; } /** * Sets the value of the entityJoin property. * * @param value * allowed object is * {@link EntitySearchRowBasic } * */ public void setEntityJoin(EntitySearchRowBasic value) { this.entityJoin = 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 partnerJoin property. * * @return * possible object is * {@link PartnerSearchRowBasic } * */ public PartnerSearchRowBasic getPartnerJoin() { return partnerJoin; } /** * Sets the value of the partnerJoin property. * * @param value * allowed object is * {@link PartnerSearchRowBasic } * */ public void setPartnerJoin(PartnerSearchRowBasic value) { this.partnerJoin = value; } /** * Gets the value of the recipientJoin property. * * @return * possible object is * {@link EntitySearchRowBasic } * */ public EntitySearchRowBasic getRecipientJoin() { return recipientJoin; } /** * Sets the value of the recipientJoin property. * * @param value * allowed object is * {@link EntitySearchRowBasic } * */ public void setRecipientJoin(EntitySearchRowBasic value) { this.recipientJoin = 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 vendorJoin property. * * @return * possible object is * {@link VendorSearchRowBasic } * */ public VendorSearchRowBasic getVendorJoin() { return vendorJoin; } /** * Sets the value of the vendorJoin property. * * @param value * allowed object is * {@link VendorSearchRowBasic } * */ public void setVendorJoin(VendorSearchRowBasic value) { this.vendorJoin = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy