com.sugarcrm.ws.soap.SetEntriesDetailResult Maven / Gradle / Ivy
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 set_entries_detail_result complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="set_entries_detail_result">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <all>
* <element name="name_value_lists" type="{http://www.sugarcrm.com/sugarcrm}name_value_lists"/>
* </all>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "set_entries_detail_result", propOrder = {
})
public class SetEntriesDetailResult {
@XmlElement(name = "name_value_lists", required = true)
protected NameValueLists nameValueLists;
/**
* Gets the value of the nameValueLists property.
*
* @return
* possible object is
* {@link NameValueLists }
*
*/
public NameValueLists getNameValueLists() {
return nameValueLists;
}
/**
* Sets the value of the nameValueLists property.
*
* @param value
* allowed object is
* {@link NameValueLists }
*
*/
public void setNameValueLists(NameValueLists value) {
this.nameValueLists = value;
}
}