GLS ShipIT 4.0.f2
GLS ShipIT - REST services
Loading...
Searching...
No Matches
GetParcelShopByCountryCodeRequestType.java
Go to the documentation of this file.
1
2package eu.glsgroup.ws.parcelshopsearch;
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
31@XmlAccessorType(XmlAccessType.FIELD)
32@XmlType(name = "GetParcelShopByCountryCodeRequestType", propOrder = {
33 "credentials",
34 "countryCode",
35 "parcelShopType"
36})
38
39 @XmlElement(name = "Credentials", required = true)
40 protected GLSUserCredentials credentials;
41 @XmlElement(name = "CountryCode", required = true)
42 protected String countryCode;
43 @XmlElement(name = "ParcelShopType", required = true)
44 protected String parcelShopType;
45
54 public GLSUserCredentials getCredentials() {
55 return credentials;
56 }
57
67 this.credentials = value;
68 }
69
78 public String getCountryCode() {
79 return countryCode;
80 }
81
90 public void setCountryCode(String value) {
91 this.countryCode = value;
92 }
93
102 public String getParcelShopType() {
103 return parcelShopType;
104 }
105
114 public void setParcelShopType(String value) {
115 this.parcelShopType = value;
116 }
117
118}