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

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

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

 * <complexType name="SearchLongField">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="searchValue" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
 *         <element name="searchValue2" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
 *       </sequence>
 *       <attribute name="operator" type="{urn:types.core_2017_1.platform.webservices.netsuite.com}SearchLongFieldOperator" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "SearchLongField", namespace = "urn:core_2017_1.platform.webservices.netsuite.com", propOrder = { "searchValue", "searchValue2" }) public class SearchLongField implements Serializable { protected Long searchValue; protected Long searchValue2; @XmlAttribute(name = "operator") protected SearchLongFieldOperator operator; /** * Gets the value of the searchValue property. * * @return * possible object is * {@link Long } * */ public Long getSearchValue() { return searchValue; } /** * Sets the value of the searchValue property. * * @param value * allowed object is * {@link Long } * */ public void setSearchValue(Long value) { this.searchValue = value; } /** * Gets the value of the searchValue2 property. * * @return * possible object is * {@link Long } * */ public Long getSearchValue2() { return searchValue2; } /** * Sets the value of the searchValue2 property. * * @param value * allowed object is * {@link Long } * */ public void setSearchValue2(Long value) { this.searchValue2 = value; } /** * Gets the value of the operator property. * * @return * possible object is * {@link SearchLongFieldOperator } * */ public SearchLongFieldOperator getOperator() { return operator; } /** * Sets the value of the operator property. * * @param value * allowed object is * {@link SearchLongFieldOperator } * */ public void setOperator(SearchLongFieldOperator value) { this.operator = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy