|
package trax.skp5;
|
|
import javax.xml.bind.annotation.XmlAccessType;
|
import javax.xml.bind.annotation.XmlAccessorType;
|
import javax.xml.bind.annotation.XmlElement;
|
import javax.xml.bind.annotation.XmlSchemaType;
|
import javax.xml.bind.annotation.XmlType;
|
import javax.xml.datatype.XMLGregorianCalendar;
|
|
|
/**
|
* Checking current measurements.
|
*
|
* <p>Clase Java para checkSkpDataRequest complex type.
|
*
|
* <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
|
*
|
* <pre>
|
* <complexType name="checkSkpDataRequest">
|
* <complexContent>
|
* <extension base="{http://traxelektronik.pl/trax/ws/protocol}HeaderRequest">
|
* <sequence>
|
* <element name="dateFrom" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
|
* <element name="dateTo" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
|
* </sequence>
|
* </extension>
|
* </complexContent>
|
* </complexType>
|
* </pre>
|
*
|
*
|
*/
|
@XmlAccessorType(XmlAccessType.FIELD)
|
@XmlType(name = "checkSkpDataRequest", propOrder = {
|
"dateFrom",
|
"dateTo"
|
})
|
public class CheckSkpDataRequest
|
extends HeaderRequest
|
{
|
|
@XmlElement(required = true)
|
@XmlSchemaType(name = "dateTime")
|
protected XMLGregorianCalendar dateFrom;
|
@XmlElement(required = true)
|
@XmlSchemaType(name = "dateTime")
|
protected XMLGregorianCalendar dateTo;
|
|
/**
|
* Obtiene el valor de la propiedad dateFrom.
|
*
|
* @return
|
* possible object is
|
* {@link XMLGregorianCalendar }
|
*
|
*/
|
public XMLGregorianCalendar getDateFrom() {
|
return dateFrom;
|
}
|
|
/**
|
* Define el valor de la propiedad dateFrom.
|
*
|
* @param value
|
* allowed object is
|
* {@link XMLGregorianCalendar }
|
*
|
*/
|
public void setDateFrom(XMLGregorianCalendar value) {
|
this.dateFrom = value;
|
}
|
|
/**
|
* Obtiene el valor de la propiedad dateTo.
|
*
|
* @return
|
* possible object is
|
* {@link XMLGregorianCalendar }
|
*
|
*/
|
public XMLGregorianCalendar getDateTo() {
|
return dateTo;
|
}
|
|
/**
|
* Define el valor de la propiedad dateTo.
|
*
|
* @param value
|
* allowed object is
|
* {@link XMLGregorianCalendar }
|
*
|
*/
|
public void setDateTo(XMLGregorianCalendar value) {
|
this.dateTo = value;
|
}
|
|
}
|