GLS ShipIT  3.5.15
GLS ShipIT - REST services
CreatePickupRequestParameter.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.XmlRootElement;
8 import 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 }