GLS ShipIT  3.5.15
GLS ShipIT - SOAP services
glsgroup/fpcs/datatypes/soap/v2/shipmentprocessing/ShopReturnService.java
Go to the documentation of this file.
1 
2 package eu.glsgroup.fpcs.datatypes.soap.v2.shipmentprocessing;
3 
4 import javax.xml.bind.annotation.XmlAccessType;
5 import javax.xml.bind.annotation.XmlAccessorType;
6 import javax.xml.bind.annotation.XmlElement;
7 import javax.xml.bind.annotation.XmlSchemaType;
8 import javax.xml.bind.annotation.XmlType;
9 
10 
34 @XmlAccessorType(XmlAccessType.FIELD)
35 @XmlType(name = "ShopReturnService", propOrder = {
36  "numberOfParcels"
37 })
38 public class ShopReturnService {
39 
40  @XmlElement(name = "NumberOfParcels")
41  @XmlSchemaType(name = "unsignedInt")
42  protected long numberOfParcels;
43 
48  public long getNumberOfParcels() {
49  return numberOfParcels;
50  }
51 
56  public void setNumberOfParcels(long value) {
57  this.numberOfParcels = value;
58  }
59 
60 }