
cz.abclinuxu.datoveschranky.ws.dm.TListOfSentInput 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 java.math.BigInteger;
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 tListOfSentInput complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="tListOfSentInput">
* <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"/>
* <element name="dmSenderOrgUnitNum" type="{http://www.w3.org/2001/XMLSchema}integer"/>
* <element name="dmStatusFilter" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="dmOffset" type="{http://www.w3.org/2001/XMLSchema}integer"/>
* <element name="dmLimit" type="{http://www.w3.org/2001/XMLSchema}integer"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "tListOfSentInput", propOrder = {
"dmFromTime",
"dmToTime",
"dmSenderOrgUnitNum",
"dmStatusFilter",
"dmOffset",
"dmLimit"
})
public class TListOfSentInput {
@XmlElement(required = true, nillable = true)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar dmFromTime;
@XmlElement(required = true, nillable = true)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar dmToTime;
@XmlElement(required = true, nillable = true)
protected BigInteger dmSenderOrgUnitNum;
@XmlElement(required = true)
protected String dmStatusFilter;
@XmlElement(required = true, nillable = true)
protected BigInteger dmOffset;
@XmlElement(required = true, nillable = true)
protected BigInteger dmLimit;
/**
* 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;
}
/**
* Gets the value of the dmSenderOrgUnitNum property.
*
* @return
* possible object is
* {@link BigInteger }
*
*/
public BigInteger getDmSenderOrgUnitNum() {
return dmSenderOrgUnitNum;
}
/**
* Sets the value of the dmSenderOrgUnitNum property.
*
* @param value
* allowed object is
* {@link BigInteger }
*
*/
public void setDmSenderOrgUnitNum(BigInteger value) {
this.dmSenderOrgUnitNum = value;
}
/**
* Gets the value of the dmStatusFilter property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDmStatusFilter() {
return dmStatusFilter;
}
/**
* Sets the value of the dmStatusFilter property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setDmStatusFilter(String value) {
this.dmStatusFilter = value;
}
/**
* Gets the value of the dmOffset property.
*
* @return
* possible object is
* {@link BigInteger }
*
*/
public BigInteger getDmOffset() {
return dmOffset;
}
/**
* Sets the value of the dmOffset property.
*
* @param value
* allowed object is
* {@link BigInteger }
*
*/
public void setDmOffset(BigInteger value) {
this.dmOffset = value;
}
/**
* Gets the value of the dmLimit property.
*
* @return
* possible object is
* {@link BigInteger }
*
*/
public BigInteger getDmLimit() {
return dmLimit;
}
/**
* Sets the value of the dmLimit property.
*
* @param value
* allowed object is
* {@link BigInteger }
*
*/
public void setDmLimit(BigInteger value) {
this.dmLimit = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy