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

com.bytekast.netsuite.client.ResourceAllocationSearchAdvanced 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 ResourceAllocationSearchAdvanced complex type. * *

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

 * <complexType name="ResourceAllocationSearchAdvanced">
 *   <complexContent>
 *     <extension base="{urn:core_2017_1.platform.webservices.netsuite.com}SearchRecord">
 *       <sequence>
 *         <element name="criteria" type="{urn:scheduling_2017_1.activities.webservices.netsuite.com}ResourceAllocationSearch" minOccurs="0"/>
 *         <element name="columns" type="{urn:scheduling_2017_1.activities.webservices.netsuite.com}ResourceAllocationSearchRow" 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 = "ResourceAllocationSearchAdvanced", namespace = "urn:scheduling_2017_1.activities.webservices.netsuite.com", propOrder = { "criteria", "columns" }) public class ResourceAllocationSearchAdvanced extends SearchRecord implements Serializable { protected ResourceAllocationSearch criteria; protected ResourceAllocationSearchRow 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 ResourceAllocationSearch } * */ public ResourceAllocationSearch getCriteria() { return criteria; } /** * Sets the value of the criteria property. * * @param value * allowed object is * {@link ResourceAllocationSearch } * */ public void setCriteria(ResourceAllocationSearch value) { this.criteria = value; } /** * Gets the value of the columns property. * * @return * possible object is * {@link ResourceAllocationSearchRow } * */ public ResourceAllocationSearchRow getColumns() { return columns; } /** * Sets the value of the columns property. * * @param value * allowed object is * {@link ResourceAllocationSearchRow } * */ public void setColumns(ResourceAllocationSearchRow 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