checkmarx.wsdl.portal.PivotClientDateRangeParam Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cx-spring-boot-sdk Show documentation
Show all versions of cx-spring-boot-sdk Show documentation
Checkmarx Java Spring Boot SDK
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-646
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2017.11.17 at 10:51:56 PM EST
//
package checkmarx.wsdl.portal;
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 PivotClientDateRangeParam complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="PivotClientDateRangeParam">
* <complexContent>
* <extension base="{http://Checkmarx.com}PivotClientBaseParam">
* <sequence>
* <element name="RangeType" type="{http://Checkmarx.com}PivotClientDateRanges"/>
* <element name="DateFrom" type="{http://Checkmarx.com}CxDateTime" minOccurs="0"/>
* <element name="DateTo" type="{http://Checkmarx.com}CxDateTime" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "PivotClientDateRangeParam", propOrder = {
"rangeType",
"dateFrom",
"dateTo"
})
public class PivotClientDateRangeParam
extends PivotClientBaseParam
{
@XmlElement(name = "RangeType", required = true)
protected PivotClientDateRanges rangeType;
@XmlElement(name = "DateFrom")
protected CxDateTime dateFrom;
@XmlElement(name = "DateTo")
protected CxDateTime dateTo;
/**
* Gets the value of the rangeType property.
*
* @return
* possible object is
* {@link PivotClientDateRanges }
*
*/
public PivotClientDateRanges getRangeType() {
return rangeType;
}
/**
* Sets the value of the rangeType property.
*
* @param value
* allowed object is
* {@link PivotClientDateRanges }
*
*/
public void setRangeType(PivotClientDateRanges value) {
this.rangeType = value;
}
/**
* Gets the value of the dateFrom property.
*
* @return
* possible object is
* {@link CxDateTime }
*
*/
public CxDateTime getDateFrom() {
return dateFrom;
}
/**
* Sets the value of the dateFrom property.
*
* @param value
* allowed object is
* {@link CxDateTime }
*
*/
public void setDateFrom(CxDateTime value) {
this.dateFrom = value;
}
/**
* Gets the value of the dateTo property.
*
* @return
* possible object is
* {@link CxDateTime }
*
*/
public CxDateTime getDateTo() {
return dateTo;
}
/**
* Sets the value of the dateTo property.
*
* @param value
* allowed object is
* {@link CxDateTime }
*
*/
public void setDateTo(CxDateTime value) {
this.dateTo = value;
}
}