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

com.omgm.speedy.eps.soap.model.ParamParcel 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.XmlType;


/**
 * 

Java class for paramParcel complex type. * *

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

 * <complexType name="paramParcel">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="billOfLading" type="{http://www.w3.org/2001/XMLSchema}long"/>
 *         <element name="packId" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
 *         <element name="parcelId" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
 *         <element name="size" type="{http://ver01.eps.speedy.sirma.com/}size" minOccurs="0"/>
 *         <element name="weight" type="{http://www.w3.org/2001/XMLSchema}double"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "paramParcel", propOrder = { "billOfLading", "packId", "parcelId", "size", "weight" }) public class ParamParcel { protected long billOfLading; protected Long packId; protected Long parcelId; protected Size size; protected double weight; /** * Gets the value of the billOfLading property. * */ public long getBillOfLading() { return billOfLading; } /** * Sets the value of the billOfLading property. * */ public void setBillOfLading(long value) { this.billOfLading = value; } /** * Gets the value of the packId property. * * @return * possible object is * {@link Long } * */ public Long getPackId() { return packId; } /** * Sets the value of the packId property. * * @param value * allowed object is * {@link Long } * */ public void setPackId(Long value) { this.packId = value; } /** * Gets the value of the parcelId property. * * @return * possible object is * {@link Long } * */ public Long getParcelId() { return parcelId; } /** * Sets the value of the parcelId property. * * @param value * allowed object is * {@link Long } * */ public void setParcelId(Long value) { this.parcelId = value; } /** * Gets the value of the size property. * * @return * possible object is * {@link Size } * */ public Size getSize() { return size; } /** * Sets the value of the size property. * * @param value * allowed object is * {@link Size } * */ public void setSize(Size value) { this.size = value; } /** * Gets the value of the weight property. * */ public double getWeight() { return weight; } /** * Sets the value of the weight property. * */ public void setWeight(double value) { this.weight = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy