com.sugarcrm.ws.soap.LastViewedEntry 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 last_viewed_entry complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="last_viewed_entry">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <all>
* <element name="id" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="item_id" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="item_summary" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="module_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="monitor_id" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="date_modified" type="{http://www.w3.org/2001/XMLSchema}string"/>
* </all>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "last_viewed_entry", propOrder = {
})
public class LastViewedEntry {
@XmlElement(required = true)
protected java.lang.String id;
@XmlElement(name = "item_id", required = true)
protected java.lang.String itemId;
@XmlElement(name = "item_summary", required = true)
protected java.lang.String itemSummary;
@XmlElement(name = "module_name", required = true)
protected java.lang.String moduleName;
@XmlElement(name = "monitor_id", required = true)
protected java.lang.String monitorId;
@XmlElement(name = "date_modified", required = true)
protected java.lang.String dateModified;
/**
* 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 itemId property.
*
* @return
* possible object is
* {@link java.lang.String }
*
*/
public java.lang.String getItemId() {
return itemId;
}
/**
* Sets the value of the itemId property.
*
* @param value
* allowed object is
* {@link java.lang.String }
*
*/
public void setItemId(java.lang.String value) {
this.itemId = value;
}
/**
* Gets the value of the itemSummary property.
*
* @return
* possible object is
* {@link java.lang.String }
*
*/
public java.lang.String getItemSummary() {
return itemSummary;
}
/**
* Sets the value of the itemSummary property.
*
* @param value
* allowed object is
* {@link java.lang.String }
*
*/
public void setItemSummary(java.lang.String value) {
this.itemSummary = value;
}
/**
* 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 monitorId property.
*
* @return
* possible object is
* {@link java.lang.String }
*
*/
public java.lang.String getMonitorId() {
return monitorId;
}
/**
* Sets the value of the monitorId property.
*
* @param value
* allowed object is
* {@link java.lang.String }
*
*/
public void setMonitorId(java.lang.String value) {
this.monitorId = value;
}
/**
* Gets the value of the dateModified property.
*
* @return
* possible object is
* {@link java.lang.String }
*
*/
public java.lang.String getDateModified() {
return dateModified;
}
/**
* Sets the value of the dateModified property.
*
* @param value
* allowed object is
* {@link java.lang.String }
*
*/
public void setDateModified(java.lang.String value) {
this.dateModified = value;
}
}