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

tsg.ns.wsdl.coop.SearchColumnField 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.XmlSeeAlso;
import jakarta.xml.bind.annotation.XmlType;


/**
 * 

Java class for SearchColumnField complex type. * *

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

 * <complexType name="SearchColumnField">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="customLabel" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "SearchColumnField", namespace = "urn:core_2023_1.platform.webservices.netsuite.com", propOrder = { "customLabel" }) @XmlSeeAlso({ SearchColumnBooleanField.class, SearchColumnStringField.class, SearchColumnLongField.class, SearchColumnTextNumberField.class, SearchColumnDoubleField.class, SearchColumnDateField.class, SearchColumnEnumSelectField.class, SearchColumnSelectField.class }) public abstract class SearchColumnField { protected String customLabel; /** * Gets the value of the customLabel property. * * @return * possible object is * {@link String } * */ public String getCustomLabel() { return customLabel; } /** * Sets the value of the customLabel property. * * @param value * allowed object is * {@link String } * */ public void setCustomLabel(String value) { this.customLabel = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy