com.omgm.speedy.eps.soap.model.GetWeightInterval 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 getWeightInterval complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="getWeightInterval">
* <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"/>
* <element name="receiverSiteId" type="{http://www.w3.org/2001/XMLSchema}long"/>
* <element name="date" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
* <element name="documents" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "getWeightInterval", propOrder = {
"sessionId",
"serviceTypeId",
"senderSiteId",
"receiverSiteId",
"date",
"documents"
})
public class GetWeightInterval {
protected String sessionId;
protected long serviceTypeId;
protected long senderSiteId;
protected long receiverSiteId;
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar date;
protected boolean documents;
/**
* 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.
*
*/
public long getSenderSiteId() {
return senderSiteId;
}
/**
* Sets the value of the senderSiteId property.
*
*/
public void setSenderSiteId(long value) {
this.senderSiteId = value;
}
/**
* Gets the value of the receiverSiteId property.
*
*/
public long getReceiverSiteId() {
return receiverSiteId;
}
/**
* Sets the value of the receiverSiteId property.
*
*/
public void setReceiverSiteId(long value) {
this.receiverSiteId = value;
}
/**
* Gets the value of the date property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getDate() {
return date;
}
/**
* Sets the value of the date property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setDate(XMLGregorianCalendar value) {
this.date = value;
}
/**
* Gets the value of the documents property.
*
*/
public boolean isDocuments() {
return documents;
}
/**
* Sets the value of the documents property.
*
*/
public void setDocuments(boolean value) {
this.documents = value;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy