com.sugarcrm.ws.soap.LinkField 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_field complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="link_field">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <all>
* <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="type" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="relationship" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="module" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="bean_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
* </all>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "link_field", propOrder = {
})
public class LinkField {
@XmlElement(required = true)
protected java.lang.String name;
@XmlElement(required = true)
protected java.lang.String type;
@XmlElement(required = true)
protected java.lang.String relationship;
@XmlElement(required = true)
protected java.lang.String module;
@XmlElement(name = "bean_name", required = true)
protected java.lang.String beanName;
/**
* 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 type property.
*
* @return
* possible object is
* {@link java.lang.String }
*
*/
public java.lang.String getType() {
return type;
}
/**
* Sets the value of the type property.
*
* @param value
* allowed object is
* {@link java.lang.String }
*
*/
public void setType(java.lang.String value) {
this.type = value;
}
/**
* Gets the value of the relationship property.
*
* @return
* possible object is
* {@link java.lang.String }
*
*/
public java.lang.String getRelationship() {
return relationship;
}
/**
* Sets the value of the relationship property.
*
* @param value
* allowed object is
* {@link java.lang.String }
*
*/
public void setRelationship(java.lang.String value) {
this.relationship = value;
}
/**
* Gets the value of the module property.
*
* @return
* possible object is
* {@link java.lang.String }
*
*/
public java.lang.String getModule() {
return module;
}
/**
* Sets the value of the module property.
*
* @param value
* allowed object is
* {@link java.lang.String }
*
*/
public void setModule(java.lang.String value) {
this.module = value;
}
/**
* Gets the value of the beanName property.
*
* @return
* possible object is
* {@link java.lang.String }
*
*/
public java.lang.String getBeanName() {
return beanName;
}
/**
* Sets the value of the beanName property.
*
* @param value
* allowed object is
* {@link java.lang.String }
*
*/
public void setBeanName(java.lang.String value) {
this.beanName = value;
}
}