com.bytekast.netsuite.client.CustomTransactionRef Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of netsuite-suitetalk Show documentation
Show all versions of netsuite-suitetalk Show documentation
Client API for NetSuite Suitetalk Web Services
The newest version!
package com.bytekast.netsuite.client;
import java.io.Serializable;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for CustomTransactionRef complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="CustomTransactionRef">
* <complexContent>
* <extension base="{urn:core_2017_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 = "CustomTransactionRef", namespace = "urn:core_2017_1.platform.webservices.netsuite.com")
public class CustomTransactionRef
extends BaseRef
implements Serializable
{
@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;
}
}