com.sugarcrm.ws.soap.SearchLinkNameValue 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 search_link_name_value complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="search_link_name_value">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <all>
* <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="records" type="{http://www.sugarcrm.com/sugarcrm}search_link_array_list"/>
* </all>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "search_link_name_value", propOrder = {
})
public class SearchLinkNameValue {
@XmlElement(required = true)
protected java.lang.String name;
@XmlElement(required = true)
protected SearchLinkArrayList records;
/**
* Gets the value of the name property.
*
* @return
* possible object is
* {@link java.lang.String }
*
*/
public java.lang.String getName() {
return name;
}
/**
* Sets the value of the name property.
*
* @param value
* allowed object is
* {@link java.lang.String }
*
*/
public void setName(java.lang.String value) {
this.name = value;
}
/**
* Gets the value of the records property.
*
* @return
* possible object is
* {@link SearchLinkArrayList }
*
*/
public SearchLinkArrayList getRecords() {
return records;
}
/**
* Sets the value of the records property.
*
* @param value
* allowed object is
* {@link SearchLinkArrayList }
*
*/
public void setRecords(SearchLinkArrayList value) {
this.records = value;
}
}