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