
tsg.ns.wsdl.coop.DimensionRef 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 DimensionRef complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="DimensionRef">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <attribute name="scriptId" type="{http://www.w3.org/2001/XMLSchema}string" />
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "DimensionRef", namespace = "urn:core_2023_1.platform.webservices.netsuite.com")
@XmlSeeAlso({
StringDimensionRef.class,
SelectDimensionRef.class
})
public abstract class DimensionRef {
@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