GLS ShipIT
GLS ShipIT - REST services
 All Classes Namespaces Files Functions Variables Enumerator Pages
CustomContent.java
Go to the documentation of this file.
1 
2 package eu.glsgroup.fpcs.datatypes.soap.v1.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 
37 @XmlAccessorType(XmlAccessType.FIELD)
38 @XmlType(name = "CustomContent", propOrder = {
39  "customerLogo",
40  "barcode",
41  "barcodeType",
42  "hideShipperAddress"
43 })
44 public class CustomContent {
45 
46  @XmlElement(name = "CustomerLogo")
47  protected byte[] customerLogo;
48  @XmlElement(name = "Barcode")
49  protected String barcode;
50  @XmlElement(name = "BarcodeType")
51  protected BarcodeType barcodeType;
52  @XmlElement(name = "HideShipperAddress")
53  protected Boolean hideShipperAddress;
54 
62  public byte[] getCustomerLogo() {
63  return customerLogo;
64  }
65 
73  public void setCustomerLogo(byte[] value) {
74  this.customerLogo = value;
75  }
76 
85  public String getBarcode() {
86  return barcode;
87  }
88 
97  public void setBarcode(String value) {
98  this.barcode = value;
99  }
100 
110  return barcodeType;
111  }
112 
121  public void setBarcodeType(BarcodeType value) {
122  this.barcodeType = value;
123  }
124 
133  public Boolean isHideShipperAddress() {
134  return hideShipperAddress;
135  }
136 
145  public void setHideShipperAddress(Boolean value) {
146  this.hideShipperAddress = value;
147  }
148 
149 }