GLS ShipIT  5.2.5
GLS ShipIT - REST services
gls_group/fpcs/v1/shipmentprocessing/types/BelgianLuxData.java
Go to the documentation of this file.
1 
2 package eu.gls_group.fpcs.v1.shipmentprocessing.types;
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 
34 @XmlAccessorType(XmlAccessType.FIELD)
35 @XmlType(name = "BelgianLuxData", propOrder = {
36  "sector",
37  "block",
38  "consigneeType"
39 })
40 public class BelgianLuxData {
41 
42  @XmlElement(name = "Sector")
43  protected String sector;
44  @XmlElement(name = "Block")
45  protected String block;
46  @XmlElement(name = "ConsigneeType")
47  protected String consigneeType;
48 
57  public String getSector() {
58  return sector;
59  }
60 
69  public void setSector(String value) {
70  this.sector = value;
71  }
72 
81  public String getBlock() {
82  return block;
83  }
84 
93  public void setBlock(String value) {
94  this.block = value;
95  }
96 
105  public String getConsigneeType() {
106  return consigneeType;
107  }
108 
117  public void setConsigneeType(String value) {
118  this.consigneeType = value;
119  }
120 
121 }