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;
36@XmlAccessorType(XmlAccessType.FIELD)
37@XmlType(name =
"", propOrder = {
44@XmlRootElement(name =
"ParcelShopSearchDistance")
47 @XmlElement(name =
"Latitude", required =
true)
48 protected String latitude;
49 @XmlElement(name = "Longitude", required = true)
50 protected String longitude;
51 @XmlElement(name = "Distance", required = true)
52 protected String distance;
53 @XmlElement(name = "MaxNumberOfShops")
54 protected String maxNumberOfShops;
56 protected String parcelShopType;
66 public String getLatitude() {
79 this.latitude = value;
103 this.longitude = value;
127 this.distance = value;
139 return maxNumberOfShops;
151 this.maxNumberOfShops = value;
163 return parcelShopType;
175 this.parcelShopType = value;
String getMaxNumberOfShops()
void setDistance(String value)
void setParcelShopType(String value)
String getParcelShopType()
void setLongitude(String value)
void setMaxNumberOfShops(String value)
void setLatitude(String value)