2package eu.glsgroup.fpcs.datatypes.soap.v1.parcelshop;
4import javax.xml.bind.annotation.XmlAccessType;
5import javax.xml.bind.annotation.XmlAccessorType;
6import javax.xml.bind.annotation.XmlElement;
7import javax.xml.bind.annotation.XmlRootElement;
8import javax.xml.bind.annotation.XmlType;
40@XmlAccessorType(XmlAccessType.FIELD)
41@XmlType(name =
"", propOrder = {
52@XmlRootElement(name =
"ParcelShopSearchLocation")
55 @XmlElement(name =
"Street")
56 protected String street;
57 @XmlElement(name = "StreetNumber")
58 protected String streetNumber;
59 @XmlElement(name = "CountryCode", required = true)
60 protected String countryCode;
61 @XmlElement(name = "Province")
62 protected String province;
63 @XmlElement(name = "ZIPCode", required = true)
64 protected String zipCode;
65 @XmlElement(name = "City")
66 protected String city;
67 @XmlElement(name = "Distance")
68 protected String distance;
69 @XmlElement(name = "MaxNumberOfShops")
70 protected String maxNumberOfShops;
72 protected String parcelShopType;
82 public String getStreet() {
119 this.streetNumber = value;
143 this.countryCode = value;
167 this.province = value;
191 this.zipCode = value;
239 this.distance = value;
251 return maxNumberOfShops;
263 this.maxNumberOfShops = value;
275 return parcelShopType;
287 this.parcelShopType = value;
void setParcelShopType(String value)
void setStreetNumber(String value)
void setMaxNumberOfShops(String value)
String getParcelShopType()
void setStreet(String value)
void setZIPCode(String value)
void setProvince(String value)
String getMaxNumberOfShops()
void setCity(String value)
void setDistance(String value)
void setCountryCode(String value)