GLS ShipIT  2.8.11
GLS ShipIT - REST services
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 
35 @XmlAccessorType(XmlAccessType.FIELD)
36 @XmlType(name = "CustomContent", propOrder = {
37  "customerLogo",
38  "barcode",
39  "barcodeType",
40  "hideShipperAddress"
41 })
42 public class CustomContent {
43 
44  @XmlElement(name = "CustomerLogo")
45  protected byte[] customerLogo;
46  @XmlElement(name = "Barcode")
47  protected String barcode;
48  @XmlElement(name = "BarcodeType")
49  protected BarcodeType barcodeType;
50  @XmlElement(name = "HideShipperAddress")
51  protected Boolean hideShipperAddress;
52 
60  public byte[] getCustomerLogo() {
61  return customerLogo;
62  }
63 
71  public void setCustomerLogo(byte[] value) {
72  this.customerLogo = value;
73  }
74 
83  public String getBarcode() {
84  return barcode;
85  }
86 
95  public void setBarcode(String value) {
96  this.barcode = value;
97  }
98 
108  return barcodeType;
109  }
110 
119  public void setBarcodeType(BarcodeType value) {
120  this.barcodeType = value;
121  }
122 
131  public Boolean isHideShipperAddress() {
132  return hideShipperAddress;
133  }
134 
143  public void setHideShipperAddress(Boolean value) {
144  this.hideShipperAddress = value;
145  }
146 
147 }