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

tsg.ns.wsdl.coop.TermSearchAdvanced 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.XmlAttribute;
import jakarta.xml.bind.annotation.XmlType;


/**
 * 

Java class for TermSearchAdvanced complex type. * *

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

 * <complexType name="TermSearchAdvanced">
 *   <complexContent>
 *     <extension base="{urn:core_2023_1.platform.webservices.netsuite.com}SearchRecord">
 *       <sequence>
 *         <element name="criteria" type="{urn:accounting_2023_1.lists.webservices.netsuite.com}TermSearch" minOccurs="0"/>
 *         <element name="columns" type="{urn:accounting_2023_1.lists.webservices.netsuite.com}TermSearchRow" 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 = "TermSearchAdvanced", propOrder = { "criteria", "columns" }) public class TermSearchAdvanced extends SearchRecord { protected TermSearch criteria; protected TermSearchRow 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 TermSearch } * */ public TermSearch getCriteria() { return criteria; } /** * Sets the value of the criteria property. * * @param value * allowed object is * {@link TermSearch } * */ public void setCriteria(TermSearch value) { this.criteria = value; } /** * Gets the value of the columns property. * * @return * possible object is * {@link TermSearchRow } * */ public TermSearchRow getColumns() { return columns; } /** * Sets the value of the columns property. * * @param value * allowed object is * {@link TermSearchRow } * */ public void setColumns(TermSearchRow 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 - 2025 Weber Informatics LLC | Privacy Policy