All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.omgm.speedy.eps.soap.model.ResultTrackPickingEx 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 resultTrackPickingEx complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="resultTrackPickingEx">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="consignee" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="moment" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
 *         <element name="operationCode" type="{http://www.w3.org/2001/XMLSchema}int"/>
 *         <element name="operationComment" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="operationDescription" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="redirectBillOfLading" type="{http://www.w3.org/2001/XMLSchema}long"/>
 *         <element name="returnBillOfLading" type="{http://www.w3.org/2001/XMLSchema}long"/>
 *         <element name="siteName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="siteType" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "resultTrackPickingEx", propOrder = { "consignee", "moment", "operationCode", "operationComment", "operationDescription", "redirectBillOfLading", "returnBillOfLading", "siteName", "siteType" }) public class ResultTrackPickingEx { protected String consignee; @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar moment; protected int operationCode; protected String operationComment; protected String operationDescription; protected long redirectBillOfLading; protected long returnBillOfLading; protected String siteName; protected String siteType; /** * Gets the value of the consignee property. * * @return * possible object is * {@link String } * */ public String getConsignee() { return consignee; } /** * Sets the value of the consignee property. * * @param value * allowed object is * {@link String } * */ public void setConsignee(String value) { this.consignee = value; } /** * Gets the value of the moment property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getMoment() { return moment; } /** * Sets the value of the moment property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setMoment(XMLGregorianCalendar value) { this.moment = value; } /** * Gets the value of the operationCode property. * */ public int getOperationCode() { return operationCode; } /** * Sets the value of the operationCode property. * */ public void setOperationCode(int value) { this.operationCode = value; } /** * Gets the value of the operationComment property. * * @return * possible object is * {@link String } * */ public String getOperationComment() { return operationComment; } /** * Sets the value of the operationComment property. * * @param value * allowed object is * {@link String } * */ public void setOperationComment(String value) { this.operationComment = value; } /** * Gets the value of the operationDescription property. * * @return * possible object is * {@link String } * */ public String getOperationDescription() { return operationDescription; } /** * Sets the value of the operationDescription property. * * @param value * allowed object is * {@link String } * */ public void setOperationDescription(String value) { this.operationDescription = value; } /** * Gets the value of the redirectBillOfLading property. * */ public long getRedirectBillOfLading() { return redirectBillOfLading; } /** * Sets the value of the redirectBillOfLading property. * */ public void setRedirectBillOfLading(long value) { this.redirectBillOfLading = value; } /** * Gets the value of the returnBillOfLading property. * */ public long getReturnBillOfLading() { return returnBillOfLading; } /** * Sets the value of the returnBillOfLading property. * */ public void setReturnBillOfLading(long value) { this.returnBillOfLading = value; } /** * Gets the value of the siteName property. * * @return * possible object is * {@link String } * */ public String getSiteName() { return siteName; } /** * Sets the value of the siteName property. * * @param value * allowed object is * {@link String } * */ public void setSiteName(String value) { this.siteName = value; } /** * Gets the value of the siteType property. * * @return * possible object is * {@link String } * */ public String getSiteType() { return siteType; } /** * Sets the value of the siteType property. * * @param value * allowed object is * {@link String } * */ public void setSiteType(String value) { this.siteType = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy