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

com.bytekast.netsuite.client.CampaignSearchAdvanced Maven / Gradle / Ivy

The newest version!

package com.bytekast.netsuite.client;

import java.io.Serializable;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for CampaignSearchAdvanced complex type. * *

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

 * <complexType name="CampaignSearchAdvanced">
 *   <complexContent>
 *     <extension base="{urn:core_2017_1.platform.webservices.netsuite.com}SearchRecord">
 *       <sequence>
 *         <element name="criteria" type="{urn:marketing_2017_1.lists.webservices.netsuite.com}CampaignSearch" minOccurs="0"/>
 *         <element name="columns" type="{urn:marketing_2017_1.lists.webservices.netsuite.com}CampaignSearchRow" minOccurs="0"/>
 *       </sequence>
 *       <attribute name="savedSearchId" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="savedSearchScriptId" type="{http://www.w3.org/2001/XMLSchema}string" />
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "CampaignSearchAdvanced", namespace = "urn:marketing_2017_1.lists.webservices.netsuite.com", propOrder = { "criteria", "columns" }) public class CampaignSearchAdvanced extends SearchRecord implements Serializable { protected CampaignSearch criteria; protected CampaignSearchRow columns; @XmlAttribute(name = "savedSearchId") protected String savedSearchId; @XmlAttribute(name = "savedSearchScriptId") protected String savedSearchScriptId; /** * Gets the value of the criteria property. * * @return * possible object is * {@link CampaignSearch } * */ public CampaignSearch getCriteria() { return criteria; } /** * Sets the value of the criteria property. * * @param value * allowed object is * {@link CampaignSearch } * */ public void setCriteria(CampaignSearch value) { this.criteria = value; } /** * Gets the value of the columns property. * * @return * possible object is * {@link CampaignSearchRow } * */ public CampaignSearchRow getColumns() { return columns; } /** * Sets the value of the columns property. * * @param value * allowed object is * {@link CampaignSearchRow } * */ public void setColumns(CampaignSearchRow value) { this.columns = value; } /** * Gets the value of the savedSearchId property. * * @return * possible object is * {@link String } * */ public String getSavedSearchId() { return savedSearchId; } /** * Sets the value of the savedSearchId property. * * @param value * allowed object is * {@link String } * */ public void setSavedSearchId(String value) { this.savedSearchId = value; } /** * Gets the value of the savedSearchScriptId property. * * @return * possible object is * {@link String } * */ public String getSavedSearchScriptId() { return savedSearchScriptId; } /** * Sets the value of the savedSearchScriptId property. * * @param value * allowed object is * {@link String } * */ public void setSavedSearchScriptId(String value) { this.savedSearchScriptId = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy