com.sugarcrm.ws.soap.GetEntryResultVersion2 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 get_entry_result_version2 complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="get_entry_result_version2">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <all>
* <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_result_version2", propOrder = {
})
public class GetEntryResultVersion2 {
@XmlElement(name = "entry_list", required = true)
protected EntryList entryList;
@XmlElement(name = "relationship_list", required = true)
protected LinkLists relationshipList;
/**
* 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;
}
}