All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.sugarcrm.ws.soap.GetEntryListResultVersion2 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_entry_list_result_version2 complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="get_entry_list_result_version2">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <all>
 *         <element name="result_count" type="{http://www.w3.org/2001/XMLSchema}int"/>
 *         <element name="total_count" type="{http://www.w3.org/2001/XMLSchema}int"/>
 *         <element name="next_offset" type="{http://www.w3.org/2001/XMLSchema}int"/>
 *         <element name="entry_list" type="{http://www.sugarcrm.com/sugarcrm}entry_list"/>
 *         <element name="relationship_list" type="{http://www.sugarcrm.com/sugarcrm}link_lists"/>
 *       </all>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "get_entry_list_result_version2", propOrder = { }) public class GetEntryListResultVersion2 { @XmlElement(name = "result_count") protected int resultCount; @XmlElement(name = "total_count") protected int totalCount; @XmlElement(name = "next_offset") protected int nextOffset; @XmlElement(name = "entry_list", required = true) protected EntryList entryList; @XmlElement(name = "relationship_list", required = true) protected LinkLists relationshipList; /** * 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; } /** * Gets the value of the totalCount property. * */ public int getTotalCount() { return totalCount; } /** * Sets the value of the totalCount property. * */ public void setTotalCount(int value) { this.totalCount = value; } /** * Gets the value of the nextOffset property. * */ public int getNextOffset() { return nextOffset; } /** * Sets the value of the nextOffset property. * */ public void setNextOffset(int value) { this.nextOffset = value; } /** * Gets the value of the entryList property. * * @return * possible object is * {@link EntryList } * */ public EntryList getEntryList() { return entryList; } /** * Sets the value of the entryList property. * * @param value * allowed object is * {@link EntryList } * */ public void setEntryList(EntryList value) { this.entryList = value; } /** * Gets the value of the relationshipList property. * * @return * possible object is * {@link LinkLists } * */ public LinkLists getRelationshipList() { return relationshipList; } /** * Sets the value of the relationshipList property. * * @param value * allowed object is * {@link LinkLists } * */ public void setRelationshipList(LinkLists value) { this.relationshipList = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy