com.sugarcrm.ws.soap.UpcomingActivityEntry 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 upcoming_activity_entry complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="upcoming_activity_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="module" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="date_due" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="summary" type="{http://www.w3.org/2001/XMLSchema}string"/>
* </all>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "upcoming_activity_entry", propOrder = {
})
public class UpcomingActivityEntry {
@XmlElement(required = true)
protected java.lang.String id;
@XmlElement(required = true)
protected java.lang.String module;
@XmlElement(name = "date_due", required = true)
protected java.lang.String dateDue;
@XmlElement(required = true)
protected java.lang.String summary;
/**
* 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 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 dateDue property.
*
* @return
* possible object is
* {@link java.lang.String }
*
*/
public java.lang.String getDateDue() {
return dateDue;
}
/**
* Sets the value of the dateDue property.
*
* @param value
* allowed object is
* {@link java.lang.String }
*
*/
public void setDateDue(java.lang.String value) {
this.dateDue = value;
}
/**
* Gets the value of the summary property.
*
* @return
* possible object is
* {@link java.lang.String }
*
*/
public java.lang.String getSummary() {
return summary;
}
/**
* Sets the value of the summary property.
*
* @param value
* allowed object is
* {@link java.lang.String }
*
*/
public void setSummary(java.lang.String value) {
this.summary = value;
}
}