
tsg.ns.wsdl.coop.ItemSearchAdvanced 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 ItemSearchAdvanced complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="ItemSearchAdvanced">
* <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}ItemSearch" minOccurs="0"/>
* <element name="columns" type="{urn:accounting_2023_1.lists.webservices.netsuite.com}ItemSearchRow" 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 = "ItemSearchAdvanced", propOrder = {
"criteria",
"columns"
})
public class ItemSearchAdvanced
extends SearchRecord
{
protected ItemSearch criteria;
protected ItemSearchRow 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 ItemSearch }
*
*/
public ItemSearch getCriteria() {
return criteria;
}
/**
* Sets the value of the criteria property.
*
* @param value
* allowed object is
* {@link ItemSearch }
*
*/
public void setCriteria(ItemSearch value) {
this.criteria = value;
}
/**
* Gets the value of the columns property.
*
* @return
* possible object is
* {@link ItemSearchRow }
*
*/
public ItemSearchRow getColumns() {
return columns;
}
/**
* Sets the value of the columns property.
*
* @param value
* allowed object is
* {@link ItemSearchRow }
*
*/
public void setColumns(ItemSearchRow 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