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

com.bytekast.netsuite.client.OtherCustomFieldFilter 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.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for OtherCustomFieldFilter complex type. * *

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

 * <complexType name="OtherCustomFieldFilter">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="fldFilter" type="{urn:core_2017_1.platform.webservices.netsuite.com}RecordRef" minOccurs="0"/>
 *         <element name="fldFilterChecked" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *         <element name="fldFilterCompareType" type="{urn:types.customization_2017_1.setup.webservices.netsuite.com}CustomizationFilterCompareType" minOccurs="0"/>
 *         <element name="fldFilterVal" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="fldFilterSelList" type="{urn:customization_2017_1.setup.webservices.netsuite.com}FldFilterSelList" minOccurs="0"/>
 *         <element name="fldFilterNotNull" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "OtherCustomFieldFilter", namespace = "urn:customization_2017_1.setup.webservices.netsuite.com", propOrder = { "fldFilter", "fldFilterChecked", "fldFilterCompareType", "fldFilterVal", "fldFilterSelList", "fldFilterNotNull" }) public class OtherCustomFieldFilter implements Serializable { protected RecordRef fldFilter; protected Boolean fldFilterChecked; @XmlSchemaType(name = "string") protected CustomizationFilterCompareType fldFilterCompareType; protected String fldFilterVal; protected FldFilterSelList fldFilterSelList; protected Boolean fldFilterNotNull; /** * Gets the value of the fldFilter property. * * @return * possible object is * {@link RecordRef } * */ public RecordRef getFldFilter() { return fldFilter; } /** * Sets the value of the fldFilter property. * * @param value * allowed object is * {@link RecordRef } * */ public void setFldFilter(RecordRef value) { this.fldFilter = value; } /** * Gets the value of the fldFilterChecked property. * * @return * possible object is * {@link Boolean } * */ public Boolean isFldFilterChecked() { return fldFilterChecked; } /** * Sets the value of the fldFilterChecked property. * * @param value * allowed object is * {@link Boolean } * */ public void setFldFilterChecked(Boolean value) { this.fldFilterChecked = value; } /** * Gets the value of the fldFilterCompareType property. * * @return * possible object is * {@link CustomizationFilterCompareType } * */ public CustomizationFilterCompareType getFldFilterCompareType() { return fldFilterCompareType; } /** * Sets the value of the fldFilterCompareType property. * * @param value * allowed object is * {@link CustomizationFilterCompareType } * */ public void setFldFilterCompareType(CustomizationFilterCompareType value) { this.fldFilterCompareType = value; } /** * Gets the value of the fldFilterVal property. * * @return * possible object is * {@link String } * */ public String getFldFilterVal() { return fldFilterVal; } /** * Sets the value of the fldFilterVal property. * * @param value * allowed object is * {@link String } * */ public void setFldFilterVal(String value) { this.fldFilterVal = value; } /** * Gets the value of the fldFilterSelList property. * * @return * possible object is * {@link FldFilterSelList } * */ public FldFilterSelList getFldFilterSelList() { return fldFilterSelList; } /** * Sets the value of the fldFilterSelList property. * * @param value * allowed object is * {@link FldFilterSelList } * */ public void setFldFilterSelList(FldFilterSelList value) { this.fldFilterSelList = value; } /** * Gets the value of the fldFilterNotNull property. * * @return * possible object is * {@link Boolean } * */ public Boolean isFldFilterNotNull() { return fldFilterNotNull; } /** * Sets the value of the fldFilterNotNull property. * * @param value * allowed object is * {@link Boolean } * */ public void setFldFilterNotNull(Boolean value) { this.fldFilterNotNull = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy