GLS ShipIT  3.5.15
GLS ShipIT - REST services
glsgroup/fpcs/datatypes/soap/v2/shipmentprocessing/PrintingOptions.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.XmlType;
8 
9 
33 @XmlAccessorType(XmlAccessType.FIELD)
34 @XmlType(name = "PrintingOptions", propOrder = {
35  "labels"
36 })
37 public class PrintingOptions {
38 
39  @XmlElement(name = "Labels")
40  protected Labels labels;
41 
50  public Labels getLabels() {
51  return labels;
52  }
53 
62  public void setLabels(Labels value) {
63  this.labels = value;
64  }
65 
66 }