com.sugarcrm.ws.soap.NewModuleFields 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 new_module_fields complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="new_module_fields">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <all>
* <element name="module_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="table_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="module_fields" type="{http://www.sugarcrm.com/sugarcrm}field_list"/>
* <element name="link_fields" type="{http://www.sugarcrm.com/sugarcrm}link_field_list"/>
* </all>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "new_module_fields", propOrder = {
})
public class NewModuleFields {
@XmlElement(name = "module_name", required = true)
protected java.lang.String moduleName;
@XmlElement(name = "table_name", required = true)
protected java.lang.String tableName;
@XmlElement(name = "module_fields", required = true)
protected FieldList moduleFields;
@XmlElement(name = "link_fields", required = true)
protected LinkFieldList linkFields;
/**
* Gets the value of the moduleName property.
*
* @return
* possible object is
* {@link java.lang.String }
*
*/
public java.lang.String getModuleName() {
return moduleName;
}
/**
* Sets the value of the moduleName property.
*
* @param value
* allowed object is
* {@link java.lang.String }
*
*/
public void setModuleName(java.lang.String value) {
this.moduleName = value;
}
/**
* Gets the value of the tableName property.
*
* @return
* possible object is
* {@link java.lang.String }
*
*/
public java.lang.String getTableName() {
return tableName;
}
/**
* Sets the value of the tableName property.
*
* @param value
* allowed object is
* {@link java.lang.String }
*
*/
public void setTableName(java.lang.String value) {
this.tableName = value;
}
/**
* Gets the value of the moduleFields property.
*
* @return
* possible object is
* {@link FieldList }
*
*/
public FieldList getModuleFields() {
return moduleFields;
}
/**
* Sets the value of the moduleFields property.
*
* @param value
* allowed object is
* {@link FieldList }
*
*/
public void setModuleFields(FieldList value) {
this.moduleFields = value;
}
/**
* Gets the value of the linkFields property.
*
* @return
* possible object is
* {@link LinkFieldList }
*
*/
public LinkFieldList getLinkFields() {
return linkFields;
}
/**
* Sets the value of the linkFields property.
*
* @param value
* allowed object is
* {@link LinkFieldList }
*
*/
public void setLinkFields(LinkFieldList value) {
this.linkFields = value;
}
}