GLS ShipIT 4.0.f2
GLS ShipIT - REST services
Loading...
Searching...
No Matches
gls_group/fpcs/v1/shipmentprocessing/types/ShipmentRequestData.java
Go to the documentation of this file.
1
2package eu.gls_group.fpcs.v1.shipmentprocessing.types;
3
4import javax.xml.bind.annotation.XmlAccessType;
5import javax.xml.bind.annotation.XmlAccessorType;
6import javax.xml.bind.annotation.XmlAttribute;
7import javax.xml.bind.annotation.XmlElement;
8import javax.xml.bind.annotation.XmlRootElement;
9import javax.xml.bind.annotation.XmlType;
10
11
41@XmlAccessorType(XmlAccessType.FIELD)
42@XmlType(name = "", propOrder = {
43 "shipment",
44 "printingOptions",
45 "customContent",
46 "returnOptions"
47})
48@XmlRootElement(name = "ShipmentRequestData")
49public class ShipmentRequestData {
50
51 @XmlElement(name = "Shipment", required = true)
52 protected Shipment shipment;
53 @XmlElement(name = "PrintingOptions", required = true)
54 protected PrintingOptions printingOptions;
55 @XmlElement(name = "CustomContent")
56 protected CustomContent customContent;
57 @XmlElement(name = "ReturnOptions")
58 protected ReturnOptions returnOptions;
59 @XmlAttribute(name = "PartnerReference")
60 protected String partnerReference;
61
70 public Shipment getShipment() {
71 return shipment;
72 }
73
82 public void setShipment(Shipment value) {
83 this.shipment = value;
84 }
85
95 return printingOptions;
96 }
97
107 this.printingOptions = value;
108 }
109
119 return customContent;
120 }
121
130 public void setCustomContent(CustomContent value) {
131 this.customContent = value;
132 }
133
143 return returnOptions;
144 }
145
154 public void setReturnOptions(ReturnOptions value) {
155 this.returnOptions = value;
156 }
157
166 public String getPartnerReference() {
167 return partnerReference;
168 }
169
178 public void setPartnerReference(String value) {
179 this.partnerReference = value;
180 }
181
182}