GLS ShipIT 4.0.f2
GLS ShipIT - REST services
Loading...
Searching...
No Matches
gls_group/fpcs/v1/shipmentprocessing/types/NDIArea.java
Go to the documentation of this file.
1
2package eu.gls_group.fpcs.v1.shipmentprocessing.types;
3
4import javax.xml.bind.annotation.XmlAccessType;
5import javax.xml.bind.annotation.XmlAccessorType;
6import javax.xml.bind.annotation.XmlElement;
7import javax.xml.bind.annotation.XmlType;
8
9
38@XmlAccessorType(XmlAccessType.FIELD)
39@XmlType(name = "NDIArea", propOrder = {
40 "ndi1D",
41 "gbProductIdentifier",
42 "gbPostOffice1D",
43 "chParcelNumber",
44 "chpri1D",
45 "chsi1D"
46})
47public class NDIArea {
48
49 @XmlElement(name = "NDI1D", required = true)
50 protected String ndi1D;
51 @XmlElement(name = "GBProductIdentifier")
52 protected String gbProductIdentifier;
53 @XmlElement(name = "GBPostOffice1D")
54 protected String gbPostOffice1D;
55 @XmlElement(name = "CHParcelNumber")
56 protected String chParcelNumber;
57 @XmlElement(name = "CHPRI1D")
58 protected String chpri1D;
59 @XmlElement(name = "CHSI1D")
60 protected String chsi1D;
61
70 public String getNDI1D() {
71 return ndi1D;
72 }
73
82 public void setNDI1D(String value) {
83 this.ndi1D = value;
84 }
85
94 public String getGBProductIdentifier() {
95 return gbProductIdentifier;
96 }
97
106 public void setGBProductIdentifier(String value) {
107 this.gbProductIdentifier = value;
108 }
109
118 public String getGBPostOffice1D() {
119 return gbPostOffice1D;
120 }
121
130 public void setGBPostOffice1D(String value) {
131 this.gbPostOffice1D = value;
132 }
133
142 public String getCHParcelNumber() {
143 return chParcelNumber;
144 }
145
154 public void setCHParcelNumber(String value) {
155 this.chParcelNumber = value;
156 }
157
166 public String getCHPRI1D() {
167 return chpri1D;
168 }
169
178 public void setCHPRI1D(String value) {
179 this.chpri1D = value;
180 }
181
190 public String getCHSI1D() {
191 return chsi1D;
192 }
193
202 public void setCHSI1D(String value) {
203 this.chsi1D = value;
204 }
205
206}