GLS ShipIT  3.5.15
GLS ShipIT - REST services
CreateReturnRequestParameter.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 
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 
96  public void setPrintingOptions(PrintingOptions value) {
97  this.printingOptions = value;
98  }
99 
109  return customContent;
110  }
111 
120  public void setCustomContent(CustomContent value) {
121  this.customContent = value;
122  }
123 
124 }