com.sugarcrm.ws.soap.DocumentRevision Maven / Gradle / Ivy
The newest version!
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 document_revision complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="document_revision">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <all>
* <element name="id" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="document_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="revision" 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"/>
* </all>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "document_revision", propOrder = {
})
public class DocumentRevision {
@XmlElement(required = true)
protected java.lang.String id;
@XmlElement(name = "document_name", required = true)
protected java.lang.String documentName;
@XmlElement(required = true)
protected java.lang.String revision;
@XmlElement(required = true)
protected java.lang.String filename;
@XmlElement(required = true)
protected java.lang.String file;
/**
* 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 documentName property.
*
* @return
* possible object is
* {@link java.lang.String }
*
*/
public java.lang.String getDocumentName() {
return documentName;
}
/**
* Sets the value of the documentName property.
*
* @param value
* allowed object is
* {@link java.lang.String }
*
*/
public void setDocumentName(java.lang.String value) {
this.documentName = value;
}
/**
* Gets the value of the revision property.
*
* @return
* possible object is
* {@link java.lang.String }
*
*/
public java.lang.String getRevision() {
return revision;
}
/**
* Sets the value of the revision property.
*
* @param value
* allowed object is
* {@link java.lang.String }
*
*/
public void setRevision(java.lang.String value) {
this.revision = 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;
}
}