
tsg.ns.wsdl.coop.InitializeAuxRef 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 InitializeAuxRef complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="InitializeAuxRef">
* <complexContent>
* <extension base="{urn:core_2023_1.platform.webservices.netsuite.com}BaseRef">
* <attribute name="type" type="{urn:types.core_2023_1.platform.webservices.netsuite.com}InitializeAuxRefType" />
* <attribute name="internalId" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="externalId" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="scriptId" type="{http://www.w3.org/2001/XMLSchema}string" />
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "InitializeAuxRef", namespace = "urn:core_2023_1.platform.webservices.netsuite.com")
public class InitializeAuxRef
extends BaseRef
{
@XmlAttribute(name = "type")
protected InitializeAuxRefType type;
@XmlAttribute(name = "internalId")
protected String internalId;
@XmlAttribute(name = "externalId")
protected String externalId;
@XmlAttribute(name = "scriptId")
protected String scriptId;
/**
* Gets the value of the type property.
*
* @return
* possible object is
* {@link InitializeAuxRefType }
*
*/
public InitializeAuxRefType getType() {
return type;
}
/**
* Sets the value of the type property.
*
* @param value
* allowed object is
* {@link InitializeAuxRefType }
*
*/
public void setType(InitializeAuxRefType value) {
this.type = 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 externalId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getExternalId() {
return externalId;
}
/**
* Sets the value of the externalId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setExternalId(String value) {
this.externalId = 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