com.sugarcrm.ws.soap.GetEntriesCountResult 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 get_entries_count_result complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="get_entries_count_result">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <all>
* <element name="result_count" type="{http://www.w3.org/2001/XMLSchema}int"/>
* </all>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "get_entries_count_result", propOrder = {
})
public class GetEntriesCountResult {
@XmlElement(name = "result_count")
protected int resultCount;
/**
* Gets the value of the resultCount property.
*
*/
public int getResultCount() {
return resultCount;
}
/**
* Sets the value of the resultCount property.
*
*/
public void setResultCount(int value) {
this.resultCount = value;
}
}