
com.bronto.api.model.DateValue Maven / Gradle / Ivy
The newest version!
package com.bronto.api.model;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.datatype.XMLGregorianCalendar;
/**
* Java class for dateValue complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="dateValue">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="operator" type="{http://api.bronto.com/v4}filterOperator" minOccurs="0"/>
* <element name="value" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "dateValue", propOrder = {
"operator",
"value"
})
public class DateValue {
@XmlSchemaType(name = "string")
protected FilterOperator operator;
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar value;
/**
* Gets the value of the operator property.
*
* @return
* possible object is
* {@link FilterOperator }
*
*/
public FilterOperator getOperator() {
return operator;
}
/**
* Sets the value of the operator property.
*
* @param value
* allowed object is
* {@link FilterOperator }
*
*/
public void setOperator(FilterOperator value) {
this.operator = value;
}
/**
* Gets the value of the value property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getValue() {
return value;
}
/**
* Sets the value of the value property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setValue(XMLGregorianCalendar value) {
this.value = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy