GLS ShipIT 4.0.f2
GLS ShipIT - SOAP services
Loading...
Searching...
No Matches
CreatePickupService.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.XmlType;
8
9
37@XmlAccessorType(XmlAccessType.FIELD)
38@XmlType(name = "CreatePickupService", propOrder = {
39 "pickAndReturnService",
40 "pickAndShipService"
41})
42public class CreatePickupService {
43
44 @XmlElement(name = "PickAndReturnService")
45 protected PickAndReturnService pickAndReturnService;
46 @XmlElement(name = "PickAndShipService")
47 protected PickAndShipService pickAndShipService;
48
57 public PickAndReturnService getPickAndReturnService() {
58 return pickAndReturnService;
59 }
60
70 this.pickAndReturnService = value;
71 }
72
82 return pickAndShipService;
83 }
84
94 this.pickAndShipService = value;
95 }
96
97}