GLS ShipIT 4.0.f2
GLS ShipIT - REST services
Loading...
Searching...
No Matches
ParcelShopSearchDistance.java
Go to the documentation of this file.
1
2package eu.glsgroup.fpcs.datatypes.soap.v1.parcelshop;
3
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;
9
10
36@XmlAccessorType(XmlAccessType.FIELD)
37@XmlType(name = "", propOrder = {
38 "latitude",
39 "longitude",
40 "distance",
41 "maxNumberOfShops",
42 "parcelShopType"
43})
44@XmlRootElement(name = "ParcelShopSearchDistance")
46
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;
55 @XmlElement(name = "ParcelShopType")
56 protected String parcelShopType;
57
66 public String getLatitude() {
67 return latitude;
68 }
69
78 public void setLatitude(String value) {
79 this.latitude = value;
80 }
81
90 public String getLongitude() {
91 return longitude;
92 }
93
102 public void setLongitude(String value) {
103 this.longitude = value;
104 }
105
114 public String getDistance() {
115 return distance;
116 }
117
126 public void setDistance(String value) {
127 this.distance = value;
128 }
129
138 public String getMaxNumberOfShops() {
139 return maxNumberOfShops;
140 }
141
150 public void setMaxNumberOfShops(String value) {
151 this.maxNumberOfShops = value;
152 }
153
162 public String getParcelShopType() {
163 return parcelShopType;
164 }
165
174 public void setParcelShopType(String value) {
175 this.parcelShopType = value;
176 }
177
178}