
tsg.ns.wsdl.coop.BaseRef 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 BaseRef complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="BaseRef">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "BaseRef", namespace = "urn:core_2023_1.platform.webservices.netsuite.com", propOrder = {
"name"
})
@XmlSeeAlso({
CustomRecordRef.class,
CustomTransactionRef.class,
RecordRef.class,
InitializeRef.class,
InitializeAuxRef.class
})
public abstract class BaseRef {
protected String name;
/**
* Gets the value of the name property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getName() {
return name;
}
/**
* Sets the value of the name property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setName(String value) {
this.name = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy