GLS ShipIT 4.0.f2
GLS ShipIT - SOAP services
Loading...
Searching...
No Matches
glsgroup/fpcs/datatypes/soap/v2/shipmentprocessing/IntercompanyService.java
Go to the documentation of this file.
1
2package eu.glsgroup.fpcs.datatypes.soap.v2.shipmentprocessing;
3
4import javax.xml.bind.annotation.XmlAccessType;
5import javax.xml.bind.annotation.XmlAccessorType;
6import javax.xml.bind.annotation.XmlElement;
7import javax.xml.bind.annotation.XmlSchemaType;
8import javax.xml.bind.annotation.XmlType;
9
10
34@XmlAccessorType(XmlAccessType.FIELD)
35@XmlType(name = "IntercompanyService", propOrder = {
36 "numberOfParcels"
37})
38public class IntercompanyService {
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}