GLS ShipIT 4.0.f2
GLS ShipIT - REST services
Loading...
Searching...
No Matches
glsgroup/fpcs/datatypes/soap/v2/shipmentprocessing/CustomContent.java
Go to the documentation of this file.
1
2package eu.glsgroup.fpcs.datatypes.soap.v2.shipmentprocessing;
3
4import javax.xml.bind.annotation.XmlAccessType;
5import javax.xml.bind.annotation.XmlAccessorType;
6import javax.xml.bind.annotation.XmlElement;
7import javax.xml.bind.annotation.XmlSchemaType;
8import 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})
45public 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}