
tsg.ns.wsdl.coop.CustomListCustomValue 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 CustomListCustomValue complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="CustomListCustomValue">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="value" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="abbreviation" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="isInactive" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="valueId" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
* <element name="valueLanguageValueList" type="{urn:customization_2023_1.setup.webservices.netsuite.com}LanguageValueList" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "CustomListCustomValue", namespace = "urn:customization_2023_1.setup.webservices.netsuite.com", propOrder = {
"value",
"abbreviation",
"isInactive",
"valueId",
"valueLanguageValueList"
})
public class CustomListCustomValue {
protected String value;
protected String abbreviation;
protected Boolean isInactive;
protected Long valueId;
protected LanguageValueList valueLanguageValueList;
/**
* Gets the value of the value property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getValue() {
return value;
}
/**
* Sets the value of the value property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setValue(String value) {
this.value = value;
}
/**
* Gets the value of the abbreviation property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getAbbreviation() {
return abbreviation;
}
/**
* Sets the value of the abbreviation property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setAbbreviation(String value) {
this.abbreviation = value;
}
/**
* Gets the value of the isInactive property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isIsInactive() {
return isInactive;
}
/**
* Sets the value of the isInactive property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setIsInactive(Boolean value) {
this.isInactive = value;
}
/**
* Gets the value of the valueId property.
*
* @return
* possible object is
* {@link Long }
*
*/
public Long getValueId() {
return valueId;
}
/**
* Sets the value of the valueId property.
*
* @param value
* allowed object is
* {@link Long }
*
*/
public void setValueId(Long value) {
this.valueId = value;
}
/**
* Gets the value of the valueLanguageValueList property.
*
* @return
* possible object is
* {@link LanguageValueList }
*
*/
public LanguageValueList getValueLanguageValueList() {
return valueLanguageValueList;
}
/**
* Sets the value of the valueLanguageValueList property.
*
* @param value
* allowed object is
* {@link LanguageValueList }
*
*/
public void setValueLanguageValueList(LanguageValueList value) {
this.valueLanguageValueList = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy