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