GLS ShipIT  4.0.f3
GLS ShipIT - REST services
gls_group/fpcs/v1/shipmentprocessing/types/RelabelParcelRequestParameter.java
Go to the documentation of this file.
1 
2 package eu.gls_group.fpcs.v1.shipmentprocessing.types;
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 
47 @XmlAccessorType(XmlAccessType.FIELD)
48 @XmlType(name = "", propOrder = {
49  "trackID",
50  "parcelNumber",
51  "shipmentReference",
52  "shipmentUnitReference",
53  "partnerParcelNumber",
54  "nationalParcelNumber",
55  "creationDate",
56  "printingOptions",
57  "returnOptions",
58  "customContent"
59 })
60 @XmlRootElement(name = "RelabelParcelRequestParameter")
62 
63  @XmlElement(name = "TrackID")
64  protected String trackID;
65  @XmlElement(name = "ParcelNumber")
66  protected String parcelNumber;
67  @XmlElement(name = "ShipmentReference")
68  protected String shipmentReference;
69  @XmlElement(name = "ShipmentUnitReference")
70  protected String shipmentUnitReference;
71  @XmlElement(name = "PartnerParcelNumber")
72  protected String partnerParcelNumber;
73  @XmlElement(name = "NationalParcelNumber")
74  protected String nationalParcelNumber;
75  @XmlElement(name = "CreationDate", type = String.class)
76  @XmlJavaTypeAdapter(Adapter3 .class)
77  @XmlSchemaType(name = "date")
78  protected Date creationDate;
79  @XmlElement(name = "PrintingOptions")
80  protected PrintingOptions printingOptions;
81  @XmlElement(name = "ReturnOptions")
82  protected ReturnOptions returnOptions;
83  @XmlElement(name = "CustomContent")
84  protected CustomContent customContent;
85 
94  public String getTrackID() {
95  return trackID;
96  }
97 
106  public void setTrackID(String value) {
107  this.trackID = value;
108  }
109 
118  public String getParcelNumber() {
119  return parcelNumber;
120  }
121 
130  public void setParcelNumber(String value) {
131  this.parcelNumber = value;
132  }
133 
142  public String getShipmentReference() {
143  return shipmentReference;
144  }
145 
154  public void setShipmentReference(String value) {
155  this.shipmentReference = value;
156  }
157 
166  public String getShipmentUnitReference() {
167  return shipmentUnitReference;
168  }
169 
178  public void setShipmentUnitReference(String value) {
179  this.shipmentUnitReference = value;
180  }
181 
190  public String getPartnerParcelNumber() {
191  return partnerParcelNumber;
192  }
193 
202  public void setPartnerParcelNumber(String value) {
203  this.partnerParcelNumber = value;
204  }
205 
214  public String getNationalParcelNumber() {
215  return nationalParcelNumber;
216  }
217 
226  public void setNationalParcelNumber(String value) {
227  this.nationalParcelNumber = value;
228  }
229 
238  public Date getCreationDate() {
239  return creationDate;
240  }
241 
250  public void setCreationDate(Date value) {
251  this.creationDate = value;
252  }
253 
263  return printingOptions;
264  }
265 
274  public void setPrintingOptions(PrintingOptions value) {
275  this.printingOptions = value;
276  }
277 
287  return returnOptions;
288  }
289 
298  public void setReturnOptions(ReturnOptions value) {
299  this.returnOptions = value;
300  }
301 
311  return customContent;
312  }
313 
322  public void setCustomContent(CustomContent value) {
323  this.customContent = value;
324  }
325 
326 }