GLS ShipIT  3.3.20
GLS ShipIT - SOAP 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.XmlSchemaType;
8 import javax.xml.bind.annotation.XmlType;
9 
10 
38 @XmlAccessorType(XmlAccessType.FIELD)
39 @XmlType(name = "CustomContent", propOrder = {
40  "customerLogo",
41  "barcode",
42  "barcodeType",
43  "hideShipperAddress"
44 })
45 public class CustomContent {
46 
47  @XmlElement(name = "CustomerLogo")
48  protected byte[] customerLogo;
49  @XmlElement(name = "Barcode")
50  protected String barcode;
51  @XmlElement(name = "BarcodeType")
52  @XmlSchemaType(name = "string")
53  protected BarcodeType barcodeType;
54  @XmlElement(name = "HideShipperAddress")
55  protected Boolean hideShipperAddress;
56 
64  public byte[] getCustomerLogo() {
65  return customerLogo;
66  }
67 
75  public void setCustomerLogo(byte[] value) {
76  this.customerLogo = value;
77  }
78 
87  public String getBarcode() {
88  return barcode;
89  }
90 
99  public void setBarcode(String value) {
100  this.barcode = value;
101  }
102 
112  return barcodeType;
113  }
114 
123  public void setBarcodeType(BarcodeType value) {
124  this.barcodeType = value;
125  }
126 
135  public Boolean isHideShipperAddress() {
136  return hideShipperAddress;
137  }
138 
147  public void setHideShipperAddress(Boolean value) {
148  this.hideShipperAddress = value;
149  }
150 
151 }