
tsg.ns.wsdl.coop.LongCustomFieldRef 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.XmlType;
/**
* Java class for LongCustomFieldRef complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="LongCustomFieldRef">
* <complexContent>
* <extension base="{urn:core_2023_1.platform.webservices.netsuite.com}CustomFieldRef">
* <sequence>
* <element name="value" type="{http://www.w3.org/2001/XMLSchema}long"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "LongCustomFieldRef", namespace = "urn:core_2023_1.platform.webservices.netsuite.com", propOrder = {
"value"
})
public class LongCustomFieldRef
extends CustomFieldRef
{
protected long value;
/**
* Gets the value of the value property.
*
*/
public long getValue() {
return value;
}
/**
* Sets the value of the value property.
*
*/
public void setValue(long value) {
this.value = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy