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