com.sforce.soap.tooling.GetUpdated Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sforce-tooling-api Show documentation
Show all versions of sforce-tooling-api Show documentation
Salesforce Tooling API client
The newest version!
package com.sforce.soap.tooling;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.datatype.XMLGregorianCalendar;
/**
* Java class for anonymous complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="sObjectType" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="start" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
* <element name="end" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"sObjectType",
"start",
"end"
})
@XmlRootElement(name = "getUpdated")
public class GetUpdated {
@XmlElement(required = true)
protected String sObjectType;
@XmlElement(required = true)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar start;
@XmlElement(required = true)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar end;
/**
* Gets the value of the sObjectType property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSObjectType() {
return sObjectType;
}
/**
* Sets the value of the sObjectType property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSObjectType(String value) {
this.sObjectType = value;
}
/**
* Gets the value of the start property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getStart() {
return start;
}
/**
* Sets the value of the start property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setStart(XMLGregorianCalendar value) {
this.start = value;
}
/**
* Gets the value of the end property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getEnd() {
return end;
}
/**
* Sets the value of the end property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setEnd(XMLGregorianCalendar value) {
this.end = value;
}
}