com.sugarcrm.ws.soap.NewNoteAttachment 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_note_attachment complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="new_note_attachment">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <all>
* <element name="id" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="filename" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="file" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="related_module_id" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="related_module_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
* </all>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "new_note_attachment", propOrder = {
})
public class NewNoteAttachment {
@XmlElement(required = true)
protected java.lang.String id;
@XmlElement(required = true)
protected java.lang.String filename;
@XmlElement(required = true)
protected java.lang.String file;
@XmlElement(name = "related_module_id", required = true)
protected java.lang.String relatedModuleId;
@XmlElement(name = "related_module_name", required = true)
protected java.lang.String relatedModuleName;
/**
* Gets the value of the id property.
*
* @return
* possible object is
* {@link java.lang.String }
*
*/
public java.lang.String getId() {
return id;
}
/**
* Sets the value of the id property.
*
* @param value
* allowed object is
* {@link java.lang.String }
*
*/
public void setId(java.lang.String value) {
this.id = value;
}
/**
* Gets the value of the filename property.
*
* @return
* possible object is
* {@link java.lang.String }
*
*/
public java.lang.String getFilename() {
return filename;
}
/**
* Sets the value of the filename property.
*
* @param value
* allowed object is
* {@link java.lang.String }
*
*/
public void setFilename(java.lang.String value) {
this.filename = value;
}
/**
* Gets the value of the file property.
*
* @return
* possible object is
* {@link java.lang.String }
*
*/
public java.lang.String getFile() {
return file;
}
/**
* Sets the value of the file property.
*
* @param value
* allowed object is
* {@link java.lang.String }
*
*/
public void setFile(java.lang.String value) {
this.file = value;
}
/**
* Gets the value of the relatedModuleId property.
*
* @return
* possible object is
* {@link java.lang.String }
*
*/
public java.lang.String getRelatedModuleId() {
return relatedModuleId;
}
/**
* Sets the value of the relatedModuleId property.
*
* @param value
* allowed object is
* {@link java.lang.String }
*
*/
public void setRelatedModuleId(java.lang.String value) {
this.relatedModuleId = value;
}
/**
* Gets the value of the relatedModuleName property.
*
* @return
* possible object is
* {@link java.lang.String }
*
*/
public java.lang.String getRelatedModuleName() {
return relatedModuleName;
}
/**
* Sets the value of the relatedModuleName property.
*
* @param value
* allowed object is
* {@link java.lang.String }
*
*/
public void setRelatedModuleName(java.lang.String value) {
this.relatedModuleName = value;
}
}