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