com.omgm.speedy.eps.soap.model.GetAllowedDaysForTaking Maven / Gradle / Ivy
package com.omgm.speedy.eps.soap.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 getAllowedDaysForTaking complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="getAllowedDaysForTaking">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="sessionId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="serviceTypeId" type="{http://www.w3.org/2001/XMLSchema}long"/>
* <element name="senderSiteId" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
* <element name="senderOfficeId" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
* <element name="minDate" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "getAllowedDaysForTaking", propOrder = {
"sessionId",
"serviceTypeId",
"senderSiteId",
"senderOfficeId",
"minDate"
})
public class GetAllowedDaysForTaking {
protected String sessionId;
protected long serviceTypeId;
protected Long senderSiteId;
protected Long senderOfficeId;
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar minDate;
/**
* Gets the value of the sessionId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSessionId() {
return sessionId;
}
/**
* Sets the value of the sessionId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSessionId(String value) {
this.sessionId = value;
}
/**
* Gets the value of the serviceTypeId property.
*
*/
public long getServiceTypeId() {
return serviceTypeId;
}
/**
* Sets the value of the serviceTypeId property.
*
*/
public void setServiceTypeId(long value) {
this.serviceTypeId = value;
}
/**
* Gets the value of the senderSiteId property.
*
* @return
* possible object is
* {@link Long }
*
*/
public Long getSenderSiteId() {
return senderSiteId;
}
/**
* Sets the value of the senderSiteId property.
*
* @param value
* allowed object is
* {@link Long }
*
*/
public void setSenderSiteId(Long value) {
this.senderSiteId = value;
}
/**
* Gets the value of the senderOfficeId property.
*
* @return
* possible object is
* {@link Long }
*
*/
public Long getSenderOfficeId() {
return senderOfficeId;
}
/**
* Sets the value of the senderOfficeId property.
*
* @param value
* allowed object is
* {@link Long }
*
*/
public void setSenderOfficeId(Long value) {
this.senderOfficeId = value;
}
/**
* Gets the value of the minDate property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getMinDate() {
return minDate;
}
/**
* Sets the value of the minDate property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setMinDate(XMLGregorianCalendar value) {
this.minDate = value;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy