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

com.bytekast.netsuite.client.SearchColumnDoubleCustomField 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.XmlType;


/**
 * 

Java class for SearchColumnDoubleCustomField complex type. * *

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

 * <complexType name="SearchColumnDoubleCustomField">
 *   <complexContent>
 *     <extension base="{urn:core_2017_1.platform.webservices.netsuite.com}SearchColumnCustomField">
 *       <sequence>
 *         <element name="searchValue" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "SearchColumnDoubleCustomField", namespace = "urn:core_2017_1.platform.webservices.netsuite.com", propOrder = { "searchValue" }) public class SearchColumnDoubleCustomField extends SearchColumnCustomField implements Serializable { protected Double searchValue; /** * Gets the value of the searchValue property. * * @return * possible object is * {@link Double } * */ public Double getSearchValue() { return searchValue; } /** * Sets the value of the searchValue property. * * @param value * allowed object is * {@link Double } * */ public void setSearchValue(Double value) { this.searchValue = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy