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