
tsg.ns.wsdl.coop.CustomizationRef 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.XmlType;
/**
* Java class for CustomizationRef complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="CustomizationRef">
* <complexContent>
* <extension base="{urn:core_2023_1.platform.webservices.netsuite.com}RecordRef">
* <attribute name="scriptId" type="{http://www.w3.org/2001/XMLSchema}string" />
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "CustomizationRef", namespace = "urn:core_2023_1.platform.webservices.netsuite.com")
public class CustomizationRef
extends RecordRef
{
@XmlAttribute(name = "scriptId")
protected String scriptId;
/**
* 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