GLS ShipIT 4.0.f2
GLS ShipIT - SOAP services
Loading...
Searching...
No Matches
CreateReturnRequestParameter.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
36@XmlAccessorType(XmlAccessType.FIELD)
37@XmlType(name = "", propOrder = {
38 "shipment",
39 "printingOptions",
40 "customContent"
41})
42@XmlRootElement(name = "CreateReturnRequestParameter")
44
45 @XmlElement(name = "Shipment", required = true)
46 protected ReturnShipment shipment;
47 @XmlElement(name = "PrintingOptions", required = true)
48 protected PrintingOptions printingOptions;
49 @XmlElement(name = "CustomContent")
50 protected CustomContent customContent;
51
60 public ReturnShipment getShipment() {
61 return shipment;
62 }
63
72 public void setShipment(ReturnShipment value) {
73 this.shipment = value;
74 }
75
85 return printingOptions;
86 }
87
97 this.printingOptions = value;
98 }
99
109 return customContent;
110 }
111
120 public void setCustomContent(CustomContent value) {
121 this.customContent = value;
122 }
123
124}