GLS ShipIT 4.0.f2
GLS ShipIT - SOAP services
Loading...
Searching...
No Matches
CreatePickupRequestParameter.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.XmlRootElement;
8import javax.xml.bind.annotation.XmlType;
9
10
34@XmlAccessorType(XmlAccessType.FIELD)
35@XmlType(name = "", propOrder = {
36 "shipment"
37})
38@XmlRootElement(name = "CreatePickupRequestParameter")
40
41 @XmlElement(name = "Shipment", required = true)
42 protected PickUpShipment shipment;
43
52 public PickUpShipment getShipment() {
53 return shipment;
54 }
55
64 public void setShipment(PickUpShipment value) {
65 this.shipment = value;
66 }
67
68}