com.sugarcrm.ws.soap.EntryValue Maven / Gradle / Ivy
The newest version!
package com.sugarcrm.ws.soap;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for entry_value complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="entry_value">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <all>
* <element name="id" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="module_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="name_value_list" type="{http://www.sugarcrm.com/sugarcrm}name_value_list"/>
* </all>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "entry_value", propOrder = {
})
public class EntryValue {
@XmlElement(required = true)
protected java.lang.String id;
@XmlElement(name = "module_name", required = true)
protected java.lang.String moduleName;
@XmlElement(name = "name_value_list", required = true)
protected NameValueList nameValueList;
/**
* Gets the value of the id property.
*
* @return
* possible object is
* {@link java.lang.String }
*
*/
public java.lang.String getId() {
return id;
}
/**
* Sets the value of the id property.
*
* @param value
* allowed object is
* {@link java.lang.String }
*
*/
public void setId(java.lang.String value) {
this.id = value;
}
/**
* Gets the value of the moduleName property.
*
* @return
* possible object is
* {@link java.lang.String }
*
*/
public java.lang.String getModuleName() {
return moduleName;
}
/**
* Sets the value of the moduleName property.
*
* @param value
* allowed object is
* {@link java.lang.String }
*
*/
public void setModuleName(java.lang.String value) {
this.moduleName = value;
}
/**
* Gets the value of the nameValueList property.
*
* @return
* possible object is
* {@link NameValueList }
*
*/
public NameValueList getNameValueList() {
return nameValueList;
}
/**
* Sets the value of the nameValueList property.
*
* @param value
* allowed object is
* {@link NameValueList }
*
*/
public void setNameValueList(NameValueList value) {
this.nameValueList = value;
}
}