
tsg.ns.wsdl.coop.RecordRef 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 RecordRef complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="RecordRef">
* <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="type" type="{urn:types.core_2023_1.platform.webservices.netsuite.com}RecordType" />
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "RecordRef", namespace = "urn:core_2023_1.platform.webservices.netsuite.com")
@XmlSeeAlso({
CustomizationRef.class
})
public class RecordRef
extends BaseRef
{
@XmlAttribute(name = "internalId")
protected String internalId;
@XmlAttribute(name = "externalId")
protected String externalId;
@XmlAttribute(name = "type")
protected RecordType type;
/**
* 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 type property.
*
* @return
* possible object is
* {@link RecordType }
*
*/
public RecordType getType() {
return type;
}
/**
* Sets the value of the type property.
*
* @param value
* allowed object is
* {@link RecordType }
*
*/
public void setType(RecordType value) {
this.type = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy