GLS ShipIT  3.5.15
GLS ShipIT - REST services
glsgroup/fpcs/datatypes/soap/v1/shipmentprocessing/ReprintParcelRequestParameter.java
Go to the documentation of this file.
1 
2 package eu.glsgroup.fpcs.datatypes.soap.v1.shipmentprocessing;
3 
4 import java.util.Date;
5 import javax.xml.bind.annotation.XmlAccessType;
6 import javax.xml.bind.annotation.XmlAccessorType;
7 import javax.xml.bind.annotation.XmlElement;
8 import javax.xml.bind.annotation.XmlRootElement;
9 import javax.xml.bind.annotation.XmlSchemaType;
10 import javax.xml.bind.annotation.XmlType;
11 import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
13 
14 
46 @XmlAccessorType(XmlAccessType.FIELD)
47 @XmlType(name = "", propOrder = {
48  "trackID",
49  "parcelNumber",
50  "shipmentReference",
51  "shipmentUnitReference",
52  "partnerParcelNumber",
53  "creationDate",
54  "printingOptions",
55  "returnOptions",
56  "customContent"
57 })
58 @XmlRootElement(name = "ReprintParcelRequestParameter")
60 
61  @XmlElement(name = "TrackID")
62  protected String trackID;
63  @XmlElement(name = "ParcelNumber")
64  protected String parcelNumber;
65  @XmlElement(name = "ShipmentReference")
66  protected String shipmentReference;
67  @XmlElement(name = "ShipmentUnitReference")
68  protected String shipmentUnitReference;
69  @XmlElement(name = "PartnerParcelNumber")
70  protected String partnerParcelNumber;
71  @XmlElement(name = "CreationDate", type = String.class)
72  @XmlJavaTypeAdapter(Adapter3 .class)
73  @XmlSchemaType(name = "date")
74  protected Date creationDate;
75  @XmlElement(name = "PrintingOptions")
76  protected PrintingOptions printingOptions;
77  @XmlElement(name = "ReturnOptions")
78  protected ReturnOptions returnOptions;
79  @XmlElement(name = "CustomContent")
80  protected CustomContent customContent;
81 
90  public String getTrackID() {
91  return trackID;
92  }
93 
102  public void setTrackID(String value) {
103  this.trackID = value;
104  }
105 
114  public String getParcelNumber() {
115  return parcelNumber;
116  }
117 
126  public void setParcelNumber(String value) {
127  this.parcelNumber = value;
128  }
129 
138  public String getShipmentReference() {
139  return shipmentReference;
140  }
141 
150  public void setShipmentReference(String value) {
151  this.shipmentReference = value;
152  }
153 
162  public String getShipmentUnitReference() {
163  return shipmentUnitReference;
164  }
165 
174  public void setShipmentUnitReference(String value) {
175  this.shipmentUnitReference = value;
176  }
177 
186  public String getPartnerParcelNumber() {
187  return partnerParcelNumber;
188  }
189 
198  public void setPartnerParcelNumber(String value) {
199  this.partnerParcelNumber = value;
200  }
201 
210  public Date getCreationDate() {
211  return creationDate;
212  }
213 
222  public void setCreationDate(Date value) {
223  this.creationDate = value;
224  }
225 
235  return printingOptions;
236  }
237 
246  public void setPrintingOptions(PrintingOptions value) {
247  this.printingOptions = value;
248  }
249 
259  return returnOptions;
260  }
261 
270  public void setReturnOptions(ReturnOptions value) {
271  this.returnOptions = value;
272  }
273 
283  return customContent;
284  }
285 
294  public void setCustomContent(CustomContent value) {
295  this.customContent = value;
296  }
297 
298 }