
cz.abclinuxu.datoveschranky.ws.dm.TGetStateChangesInput Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of isds-web-services Show documentation
Show all versions of isds-web-services Show documentation
Entity classes generated from WSDL.
The newest version!
package cz.abclinuxu.datoveschranky.ws.dm;
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;
/**
* Java class for tGetStateChangesInput complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="tGetStateChangesInput">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="dmFromTime" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
* <element name="dmToTime" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "tGetStateChangesInput", propOrder = {
"dmFromTime",
"dmToTime"
})
public class TGetStateChangesInput {
@XmlElement(required = true, nillable = true)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar dmFromTime;
@XmlElement(required = true, nillable = true)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar dmToTime;
/**
* Gets the value of the dmFromTime property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getDmFromTime() {
return dmFromTime;
}
/**
* Sets the value of the dmFromTime property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setDmFromTime(XMLGregorianCalendar value) {
this.dmFromTime = value;
}
/**
* Gets the value of the dmToTime property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getDmToTime() {
return dmToTime;
}
/**
* Sets the value of the dmToTime property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setDmToTime(XMLGregorianCalendar value) {
this.dmToTime = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy