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