2 package eu.glsgroup.fpcs.datatypes.soap.v1.parcelshop;
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.XmlRootElement;
8 import javax.xml.bind.annotation.XmlType;
35 @XmlAccessorType(XmlAccessType.FIELD)
36 @XmlType(name =
"", propOrder = {
44 @XmlRootElement(name =
"ParcelShopSearchLocation")
47 @XmlElement(name =
"Street")
48 protected String street;
49 @XmlElement(name = "StreetNumber")
50 protected String streetNumber;
51 @XmlElement(name = "CountryCode", required = true)
52 protected String countryCode;
53 @XmlElement(name = "Province")
54 protected String province;
55 @XmlElement(name = "ZIPCode", required = true)
56 protected String zipCode;
57 @XmlElement(name = "City")
58 protected String city;
68 public String getStreet() {
105 this.streetNumber = value;
129 this.countryCode = value;
153 this.province = value;
177 this.zipCode = value;
void setZIPCode(String value)
void setCity(String value)
void setCountryCode(String value)
void setStreetNumber(String value)
void setProvince(String value)
void setStreet(String value)