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

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy