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

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


/**
 * 

Java class for SearchColumnCustomField complex type. * *

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

 * <complexType name="SearchColumnCustomField">
 *   <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>
 *       <attribute name="internalId" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="scriptId" type="{http://www.w3.org/2001/XMLSchema}string" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "SearchColumnCustomField", namespace = "urn:core_2023_1.platform.webservices.netsuite.com", propOrder = { "customLabel" }) @XmlSeeAlso({ SearchColumnBooleanCustomField.class, SearchColumnStringCustomField.class, SearchColumnLongCustomField.class, SearchColumnDoubleCustomField.class, SearchColumnDateCustomField.class, SearchColumnEnumMultiSelectCustomField.class, SearchColumnSelectCustomField.class, SearchColumnMultiSelectCustomField.class }) public abstract class SearchColumnCustomField { protected String customLabel; @XmlAttribute(name = "internalId") protected String internalId; @XmlAttribute(name = "scriptId") protected String scriptId; /** * 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; } /** * Gets the value of the internalId property. * * @return * possible object is * {@link String } * */ public String getInternalId() { return internalId; } /** * Sets the value of the internalId property. * * @param value * allowed object is * {@link String } * */ public void setInternalId(String value) { this.internalId = value; } /** * Gets the value of the scriptId property. * * @return * possible object is * {@link String } * */ public String getScriptId() { return scriptId; } /** * Sets the value of the scriptId property. * * @param value * allowed object is * {@link String } * */ public void setScriptId(String value) { this.scriptId = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy