2package eu.gls_group.fpcs.v1.shipmentprocessing.types;
4import javax.xml.bind.annotation.XmlAccessType;
5import javax.xml.bind.annotation.XmlAccessorType;
6import javax.xml.bind.annotation.XmlElement;
7import javax.xml.bind.annotation.XmlType;
8import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
9import eu.glsgroup.fpcs.dto.config.BarcodeContentType;
10import eu.glsgroup.fpcs.dto.config.BarcodeType;
41@XmlAccessorType(XmlAccessType.FIELD)
42@XmlType(name =
"CustomContent", propOrder = {
51 @XmlElement(name =
"CustomerLogo")
52 protected
byte[] customerLogo;
53 @XmlElement(name = "BarcodeContentType", type = String.class)
55 protected BarcodeContentType barcodeContentType;
56 @XmlElement(name = "Barcode")
57 protected String barcode;
58 @XmlElement(name = "BarcodeType", type = String.class)
60 protected BarcodeType barcodeType;
61 @XmlElement(name = "HideShipperAddress")
62 protected Boolean hideShipperAddress;
71 public
byte[] getCustomerLogo() {
83 this.customerLogo = value;
95 return barcodeContentType;
107 this.barcodeContentType = value;
131 this.barcode = value;
155 this.barcodeType = value;
167 return hideShipperAddress;
179 this.hideShipperAddress = value;
void setBarcodeContentType(BarcodeContentType value)
void setHideShipperAddress(Boolean value)
void setBarcodeType(BarcodeType value)
BarcodeType getBarcodeType()
void setBarcode(String value)
Boolean isHideShipperAddress()
BarcodeContentType getBarcodeContentType()
void setCustomerLogo(byte[] value)