fex 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +19 -0
- data/.rspec +2 -0
- data/Gemfile +4 -0
- data/MIT-LICENSE.txt +22 -0
- data/README.md +161 -0
- data/Rakefile +1 -0
- data/fex.gemspec +23 -0
- data/lib/fex.rb +10 -0
- data/lib/fex/client.rb +26 -0
- data/lib/fex/response.rb +28 -0
- data/lib/fex/service.rb +57 -0
- data/lib/fex/service_factory.rb +69 -0
- data/lib/fex/services.yml +23 -0
- data/lib/fex/ship_response.rb +11 -0
- data/lib/fex/version.rb +3 -0
- data/lib/fex/wsdl.rb +14 -0
- data/spec/integration/address_validation_spec.rb +30 -0
- data/spec/integration/rate_spec.rb +67 -0
- data/spec/integration/ship_spec.rb +88 -0
- data/spec/spec_helper.rb +26 -0
- data/spec/support/credentials.rb +27 -0
- data/spec/support/logger_helper.rb +15 -0
- data/spec/unit/service_spec.rb +22 -0
- data/spec/unit/wsdl_spec.rb +19 -0
- data/wsdl/address_validation.wsdl +603 -0
- data/wsdl/close.wsdl +833 -0
- data/wsdl/global_ship_address.wsdl +748 -0
- data/wsdl/open_ship.wsdl +5651 -0
- data/wsdl/package_movement_information.wsdl +545 -0
- data/wsdl/pickup.wsdl +2761 -0
- data/wsdl/rate.wsdl +4730 -0
- data/wsdl/return_tag.wsdl +421 -0
- data/wsdl/ship.wsdl +6097 -0
- data/wsdl/track.wsdl +1516 -0
- data/wsdl/upload_document.wsdl +537 -0
- metadata +136 -0
@@ -0,0 +1,748 @@
|
|
1
|
+
<definitions xmlns="http://schemas.xmlsoap.org/wsdl/" xmlns:ns="http://fedex.com/ws/gsai/v1" xmlns:s1="http://schemas.xmlsoap.org/wsdl/soap/" targetNamespace="http://fedex.com/ws/gsai/v1" name="GlobalShipAddressServiceDefinitions">
|
2
|
+
<types>
|
3
|
+
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" attributeFormDefault="qualified" elementFormDefault="qualified" targetNamespace="http://fedex.com/ws/gsai/v1">
|
4
|
+
<xs:element name="SearchLocationsReply" type="ns:SearchLocationsReply"/>
|
5
|
+
<xs:element name="SearchLocationsRequest" type="ns:SearchLocationsRequest"/>
|
6
|
+
<xs:complexType name="Address">
|
7
|
+
<xs:annotation>
|
8
|
+
<xs:documentation>Descriptive data for a physical location. May be used as an actual physical address (place to which one could go), or as a container of "address parts" which should be handled as a unit (such as a city-state-ZIP combination within the US).</xs:documentation>
|
9
|
+
</xs:annotation>
|
10
|
+
<xs:sequence>
|
11
|
+
<xs:element name="StreetLines" type="xs:string" minOccurs="0" maxOccurs="unbounded">
|
12
|
+
<xs:annotation>
|
13
|
+
<xs:documentation>Combination of number, street name, etc. At least one line is required for a valid physical address; empty lines should not be included.</xs:documentation>
|
14
|
+
</xs:annotation>
|
15
|
+
</xs:element>
|
16
|
+
<xs:element name="City" type="xs:string" minOccurs="0">
|
17
|
+
<xs:annotation>
|
18
|
+
<xs:documentation>Name of city, town, etc.</xs:documentation>
|
19
|
+
</xs:annotation>
|
20
|
+
</xs:element>
|
21
|
+
<xs:element name="StateOrProvinceCode" type="xs:string" minOccurs="0">
|
22
|
+
<xs:annotation>
|
23
|
+
<xs:documentation>Identifying abbreviation for US state, Canada province, etc. Format and presence of this field will vary, depending on country.</xs:documentation>
|
24
|
+
</xs:annotation>
|
25
|
+
</xs:element>
|
26
|
+
<xs:element name="PostalCode" type="xs:string" minOccurs="0">
|
27
|
+
<xs:annotation>
|
28
|
+
<xs:documentation>Identification of a region (usually small) for mail/package delivery. Format and presence of this field will vary, depending on country.</xs:documentation>
|
29
|
+
</xs:annotation>
|
30
|
+
</xs:element>
|
31
|
+
<xs:element name="UrbanizationCode" type="xs:string" minOccurs="0">
|
32
|
+
<xs:annotation>
|
33
|
+
<xs:documentation>Relevant only to addresses in Puerto Rico.</xs:documentation>
|
34
|
+
</xs:annotation>
|
35
|
+
</xs:element>
|
36
|
+
<xs:element name="CountryCode" type="xs:string" minOccurs="0">
|
37
|
+
<xs:annotation>
|
38
|
+
<xs:documentation>The two-letter code used to identify a country.</xs:documentation>
|
39
|
+
</xs:annotation>
|
40
|
+
</xs:element>
|
41
|
+
<xs:element name="Residential" type="xs:boolean" minOccurs="0">
|
42
|
+
<xs:annotation>
|
43
|
+
<xs:documentation>Indicates whether this address residential (as opposed to commercial).</xs:documentation>
|
44
|
+
</xs:annotation>
|
45
|
+
</xs:element>
|
46
|
+
</xs:sequence>
|
47
|
+
</xs:complexType>
|
48
|
+
<xs:complexType name="AddressAncillaryDetail">
|
49
|
+
<xs:annotation>
|
50
|
+
<xs:documentation>Additional information about a physical location, such as suite number, cross street, floor number in a building. These details are not typically a part of a standard address definition; however, these details might help locate the address.</xs:documentation>
|
51
|
+
</xs:annotation>
|
52
|
+
<xs:sequence>
|
53
|
+
<xs:element name="LocationInCity" type="xs:string" minOccurs="0"/>
|
54
|
+
<xs:element name="LocationInProperty" type="xs:string" minOccurs="0"/>
|
55
|
+
<xs:element name="RoomFloor" type="xs:string" minOccurs="0"/>
|
56
|
+
<xs:element name="Suite" type="xs:string" minOccurs="0"/>
|
57
|
+
<xs:element name="CrossStreet" type="xs:string" minOccurs="0"/>
|
58
|
+
</xs:sequence>
|
59
|
+
</xs:complexType>
|
60
|
+
<xs:complexType name="AddressToLocationRelationshipDetail">
|
61
|
+
<xs:annotation>
|
62
|
+
<xs:documentation>Specifies the relationship between the address specificed and the address of the FedEx Location in terms of distance.</xs:documentation>
|
63
|
+
</xs:annotation>
|
64
|
+
<xs:sequence>
|
65
|
+
<xs:element name="MatchedAddress" type="ns:Address" minOccurs="0">
|
66
|
+
<xs:annotation>
|
67
|
+
<xs:documentation>Address as provided in the request.</xs:documentation>
|
68
|
+
</xs:annotation>
|
69
|
+
</xs:element>
|
70
|
+
<xs:element name="DistanceAndLocationDetails" type="ns:DistanceAndLocationDetail" minOccurs="0" maxOccurs="unbounded">
|
71
|
+
<xs:annotation>
|
72
|
+
<xs:documentation>Specifies the distance between the matched address and the addresses of matched FedEx locations. Also specifies the details of the FedEx locations.</xs:documentation>
|
73
|
+
</xs:annotation>
|
74
|
+
</xs:element>
|
75
|
+
</xs:sequence>
|
76
|
+
</xs:complexType>
|
77
|
+
<xs:simpleType name="CarrierCodeType">
|
78
|
+
<xs:annotation>
|
79
|
+
<xs:documentation>Identification of a FedEx operating company (transportation).</xs:documentation>
|
80
|
+
</xs:annotation>
|
81
|
+
<xs:restriction base="xs:string">
|
82
|
+
<xs:enumeration value="FDXC"/>
|
83
|
+
<xs:enumeration value="FDXE"/>
|
84
|
+
<xs:enumeration value="FDXG"/>
|
85
|
+
<xs:enumeration value="FXCC"/>
|
86
|
+
<xs:enumeration value="FXFR"/>
|
87
|
+
<xs:enumeration value="FXSP"/>
|
88
|
+
</xs:restriction>
|
89
|
+
</xs:simpleType>
|
90
|
+
<xs:complexType name="CarrierDetail">
|
91
|
+
<xs:sequence>
|
92
|
+
<xs:element name="Carrier" type="ns:CarrierCodeType" minOccurs="0"/>
|
93
|
+
<xs:element name="NormalLatestDropOffDetails" type="ns:LatestDropOffDetail" minOccurs="0" maxOccurs="unbounded"/>
|
94
|
+
<xs:element name="ExceptionalLatestDropOffDetails" type="ns:LatestDropOffDetail" minOccurs="0" maxOccurs="unbounded"/>
|
95
|
+
<xs:element name="EffectiveLatestDropOffDetails" type="ns:LatestDropOffDetail" minOccurs="0"/>
|
96
|
+
<xs:element name="ShippingHolidays" type="ns:ShippingHoliday" minOccurs="0" maxOccurs="unbounded"/>
|
97
|
+
</xs:sequence>
|
98
|
+
</xs:complexType>
|
99
|
+
<xs:complexType name="ClientDetail">
|
100
|
+
<xs:annotation>
|
101
|
+
<xs:documentation>Descriptive data for the client submitting a transaction.</xs:documentation>
|
102
|
+
</xs:annotation>
|
103
|
+
<xs:sequence>
|
104
|
+
<xs:element name="AccountNumber" type="xs:string" minOccurs="1">
|
105
|
+
<xs:annotation>
|
106
|
+
<xs:documentation>The FedEx account number associated with this transaction.</xs:documentation>
|
107
|
+
</xs:annotation>
|
108
|
+
</xs:element>
|
109
|
+
<xs:element name="MeterNumber" type="xs:string" minOccurs="1">
|
110
|
+
<xs:annotation>
|
111
|
+
<xs:documentation>This number is assigned by FedEx and identifies the unique device from which the request is originating</xs:documentation>
|
112
|
+
</xs:annotation>
|
113
|
+
</xs:element>
|
114
|
+
<xs:element name="MeterInstance" type="xs:string" minOccurs="0"/>
|
115
|
+
<xs:element name="IntegratorId" type="xs:string" minOccurs="0">
|
116
|
+
<xs:annotation>
|
117
|
+
<xs:documentation>Only used in transactions which require identification of the Fed Ex Office integrator.</xs:documentation>
|
118
|
+
</xs:annotation>
|
119
|
+
</xs:element>
|
120
|
+
<xs:element name="Region" type="ns:ExpressRegionCode" minOccurs="0">
|
121
|
+
<xs:annotation>
|
122
|
+
<xs:documentation>Indicates the region from which the transaction is submitted.</xs:documentation>
|
123
|
+
</xs:annotation>
|
124
|
+
</xs:element>
|
125
|
+
<xs:element name="Localization" type="ns:Localization" minOccurs="0">
|
126
|
+
<xs:annotation>
|
127
|
+
<xs:documentation>The language to be used for human-readable Notification.localizedMessages in responses to the request containing this ClientDetail object. Different requests from the same client may contain different Localization data. (Contrast with TransactionDetail.localization, which governs data payload language/translation.)</xs:documentation>
|
128
|
+
</xs:annotation>
|
129
|
+
</xs:element>
|
130
|
+
</xs:sequence>
|
131
|
+
</xs:complexType>
|
132
|
+
<xs:complexType name="Contact">
|
133
|
+
<xs:annotation>
|
134
|
+
<xs:documentation>The descriptive data for a point-of-contact person.</xs:documentation>
|
135
|
+
</xs:annotation>
|
136
|
+
<xs:sequence>
|
137
|
+
<xs:element name="ContactId" type="xs:string" minOccurs="0">
|
138
|
+
<xs:annotation>
|
139
|
+
<xs:documentation>Client provided identifier corresponding to this contact information.</xs:documentation>
|
140
|
+
</xs:annotation>
|
141
|
+
</xs:element>
|
142
|
+
<xs:element name="PersonName" type="xs:string" minOccurs="0">
|
143
|
+
<xs:annotation>
|
144
|
+
<xs:documentation>Identifies the contact person's name.</xs:documentation>
|
145
|
+
</xs:annotation>
|
146
|
+
</xs:element>
|
147
|
+
<xs:element name="Title" type="xs:string" minOccurs="0">
|
148
|
+
<xs:annotation>
|
149
|
+
<xs:documentation>Identifies the contact person's title.</xs:documentation>
|
150
|
+
</xs:annotation>
|
151
|
+
</xs:element>
|
152
|
+
<xs:element name="CompanyName" type="xs:string" minOccurs="0">
|
153
|
+
<xs:annotation>
|
154
|
+
<xs:documentation>Identifies the company this contact is associated with.</xs:documentation>
|
155
|
+
</xs:annotation>
|
156
|
+
</xs:element>
|
157
|
+
<xs:element name="PhoneNumber" type="xs:string" minOccurs="0">
|
158
|
+
<xs:annotation>
|
159
|
+
<xs:documentation>Identifies the phone number associated with this contact.</xs:documentation>
|
160
|
+
</xs:annotation>
|
161
|
+
</xs:element>
|
162
|
+
<xs:element name="PhoneExtension" type="xs:string" minOccurs="0">
|
163
|
+
<xs:annotation>
|
164
|
+
<xs:documentation>Identifies the phone extension associated with this contact.</xs:documentation>
|
165
|
+
</xs:annotation>
|
166
|
+
</xs:element>
|
167
|
+
<xs:element name="PagerNumber" type="xs:string" minOccurs="0">
|
168
|
+
<xs:annotation>
|
169
|
+
<xs:documentation>Identifies the pager number associated with this contact.</xs:documentation>
|
170
|
+
</xs:annotation>
|
171
|
+
</xs:element>
|
172
|
+
<xs:element name="FaxNumber" type="xs:string" minOccurs="0">
|
173
|
+
<xs:annotation>
|
174
|
+
<xs:documentation>Identifies the fax number associated with this contact.</xs:documentation>
|
175
|
+
</xs:annotation>
|
176
|
+
</xs:element>
|
177
|
+
<xs:element name="EMailAddress" type="xs:string" minOccurs="0">
|
178
|
+
<xs:annotation>
|
179
|
+
<xs:documentation>Identifies the email address associated with this contact.</xs:documentation>
|
180
|
+
</xs:annotation>
|
181
|
+
</xs:element>
|
182
|
+
</xs:sequence>
|
183
|
+
</xs:complexType>
|
184
|
+
<xs:simpleType name="DayOfWeekType">
|
185
|
+
<xs:restriction base="xs:string">
|
186
|
+
<xs:enumeration value="FRI"/>
|
187
|
+
<xs:enumeration value="MON"/>
|
188
|
+
<xs:enumeration value="SAT"/>
|
189
|
+
<xs:enumeration value="SUN"/>
|
190
|
+
<xs:enumeration value="THU"/>
|
191
|
+
<xs:enumeration value="TUE"/>
|
192
|
+
<xs:enumeration value="WED"/>
|
193
|
+
</xs:restriction>
|
194
|
+
</xs:simpleType>
|
195
|
+
<xs:complexType name="Distance">
|
196
|
+
<xs:annotation>
|
197
|
+
<xs:documentation>Driving or other transportation distances, distinct from dimension measurements.</xs:documentation>
|
198
|
+
</xs:annotation>
|
199
|
+
<xs:sequence>
|
200
|
+
<xs:element name="Value" type="xs:decimal" minOccurs="0">
|
201
|
+
<xs:annotation>
|
202
|
+
<xs:documentation>Identifies the distance quantity.</xs:documentation>
|
203
|
+
</xs:annotation>
|
204
|
+
</xs:element>
|
205
|
+
<xs:element name="Units" type="ns:DistanceUnits" minOccurs="0">
|
206
|
+
<xs:annotation>
|
207
|
+
<xs:documentation>Identifies the unit of measure for the distance value.</xs:documentation>
|
208
|
+
</xs:annotation>
|
209
|
+
</xs:element>
|
210
|
+
</xs:sequence>
|
211
|
+
</xs:complexType>
|
212
|
+
<xs:complexType name="DistanceAndLocationDetail">
|
213
|
+
<xs:annotation>
|
214
|
+
<xs:documentation>Specifies the distance between the address of a geographic location and the address of a FedEx location. Also specifies the location details about the Fedex location.</xs:documentation>
|
215
|
+
</xs:annotation>
|
216
|
+
<xs:sequence>
|
217
|
+
<xs:element name="Distance" type="ns:Distance" minOccurs="0">
|
218
|
+
<xs:annotation>
|
219
|
+
<xs:documentation>Distance between an address of a geographic location and an address of a FedEx location.</xs:documentation>
|
220
|
+
</xs:annotation>
|
221
|
+
</xs:element>
|
222
|
+
<xs:element name="LocationDetail" type="ns:LocationDetail" minOccurs="0">
|
223
|
+
<xs:annotation>
|
224
|
+
<xs:documentation>Details about a FedEx location such as services offered, working hours and pick and drop off times.</xs:documentation>
|
225
|
+
</xs:annotation>
|
226
|
+
</xs:element>
|
227
|
+
</xs:sequence>
|
228
|
+
</xs:complexType>
|
229
|
+
<xs:simpleType name="DistanceUnits">
|
230
|
+
<xs:restriction base="xs:string">
|
231
|
+
<xs:enumeration value="KM"/>
|
232
|
+
<xs:enumeration value="MI"/>
|
233
|
+
</xs:restriction>
|
234
|
+
</xs:simpleType>
|
235
|
+
<xs:simpleType name="ExpressRegionCode">
|
236
|
+
<xs:annotation>
|
237
|
+
<xs:documentation>Indicates a FedEx Express operating region.</xs:documentation>
|
238
|
+
</xs:annotation>
|
239
|
+
<xs:restriction base="xs:string">
|
240
|
+
<xs:enumeration value="APAC"/>
|
241
|
+
<xs:enumeration value="CA"/>
|
242
|
+
<xs:enumeration value="EMEA"/>
|
243
|
+
<xs:enumeration value="LAC"/>
|
244
|
+
<xs:enumeration value="US"/>
|
245
|
+
</xs:restriction>
|
246
|
+
</xs:simpleType>
|
247
|
+
<xs:simpleType name="FedExLocationType">
|
248
|
+
<xs:annotation>
|
249
|
+
<xs:documentation>Identifies a kind of FedEx facility.</xs:documentation>
|
250
|
+
</xs:annotation>
|
251
|
+
<xs:restriction base="xs:string">
|
252
|
+
<xs:enumeration value="FEDEX_AUTHORIZED_SHIP_CENTER"/>
|
253
|
+
<xs:enumeration value="FEDEX_EXPRESS_STATION"/>
|
254
|
+
<xs:enumeration value="FEDEX_FREIGHT_SERVICE_CENTER"/>
|
255
|
+
<xs:enumeration value="FEDEX_GROUND_TERMINAL"/>
|
256
|
+
<xs:enumeration value="FEDEX_HOME_DELIVERY_STATION"/>
|
257
|
+
<xs:enumeration value="FEDEX_OFFICE"/>
|
258
|
+
<xs:enumeration value="FEDEX_SELF_SERVICE_LOCATION"/>
|
259
|
+
<xs:enumeration value="FEDEX_SMART_POST_HUB"/>
|
260
|
+
</xs:restriction>
|
261
|
+
</xs:simpleType>
|
262
|
+
<xs:complexType name="Holiday">
|
263
|
+
<xs:sequence>
|
264
|
+
<xs:element name="Name" type="xs:string" minOccurs="0"/>
|
265
|
+
<xs:element name="Date" type="xs:date" minOccurs="0"/>
|
266
|
+
</xs:sequence>
|
267
|
+
</xs:complexType>
|
268
|
+
<xs:complexType name="LatestDropOffDetail">
|
269
|
+
<xs:annotation>
|
270
|
+
<xs:documentation>Specifies the latest time by which a package can be dropped off at a FedEx location.</xs:documentation>
|
271
|
+
</xs:annotation>
|
272
|
+
<xs:sequence>
|
273
|
+
<xs:element name="DayOfWeek" type="ns:DayOfWeekType" minOccurs="0"/>
|
274
|
+
<xs:element name="Time" type="xs:time" minOccurs="0"/>
|
275
|
+
<xs:element name="Overlays" type="ns:LatestDropoffOverlayDetail" minOccurs="0" maxOccurs="unbounded">
|
276
|
+
<xs:annotation>
|
277
|
+
<xs:documentation>Specifies the details about the time and reason to</xs:documentation>
|
278
|
+
</xs:annotation>
|
279
|
+
</xs:element>
|
280
|
+
</xs:sequence>
|
281
|
+
</xs:complexType>
|
282
|
+
<xs:simpleType name="LatestDropOffOverlayType">
|
283
|
+
<xs:annotation>
|
284
|
+
<xs:documentation>Specifies the reason for the overlay of the daily last drop off time for a carrier.</xs:documentation>
|
285
|
+
</xs:annotation>
|
286
|
+
<xs:restriction base="xs:string">
|
287
|
+
<xs:enumeration value="DOMESTIC_CANADIAN"/>
|
288
|
+
<xs:enumeration value="EAST_COAST"/>
|
289
|
+
<xs:enumeration value="FEDEX_GROUND"/>
|
290
|
+
<xs:enumeration value="WEST_COAST"/>
|
291
|
+
</xs:restriction>
|
292
|
+
</xs:simpleType>
|
293
|
+
<xs:complexType name="LatestDropoffOverlayDetail">
|
294
|
+
<xs:annotation>
|
295
|
+
<xs:documentation>Specifies the time and reason to overlay the last drop off time for a carrier at a FedEx location.</xs:documentation>
|
296
|
+
</xs:annotation>
|
297
|
+
<xs:sequence>
|
298
|
+
<xs:element name="Type" type="ns:LatestDropOffOverlayType" minOccurs="0"/>
|
299
|
+
<xs:element name="Time" type="xs:time" minOccurs="0"/>
|
300
|
+
</xs:sequence>
|
301
|
+
</xs:complexType>
|
302
|
+
<xs:complexType name="Localization">
|
303
|
+
<xs:annotation>
|
304
|
+
<xs:documentation>Identifies the representation of human-readable text.</xs:documentation>
|
305
|
+
</xs:annotation>
|
306
|
+
<xs:sequence>
|
307
|
+
<xs:element name="LanguageCode" type="xs:string" minOccurs="1">
|
308
|
+
<xs:annotation>
|
309
|
+
<xs:documentation>Two-letter code for language (e.g. EN, FR, etc.)</xs:documentation>
|
310
|
+
</xs:annotation>
|
311
|
+
</xs:element>
|
312
|
+
<xs:element name="LocaleCode" type="xs:string" minOccurs="0">
|
313
|
+
<xs:annotation>
|
314
|
+
<xs:documentation>Two-letter code for the region (e.g. us, ca, etc..).</xs:documentation>
|
315
|
+
</xs:annotation>
|
316
|
+
</xs:element>
|
317
|
+
</xs:sequence>
|
318
|
+
</xs:complexType>
|
319
|
+
<xs:simpleType name="LocationAttributesType">
|
320
|
+
<xs:restriction base="xs:string">
|
321
|
+
<xs:enumeration value="ACCEPTS_CASH"/>
|
322
|
+
<xs:enumeration value="ALREADY_OPEN"/>
|
323
|
+
<xs:enumeration value="COPY_AND_PRINT_SERVICES"/>
|
324
|
+
<xs:enumeration value="DANGEROUS_GOODS_SERVICES"/>
|
325
|
+
<xs:enumeration value="DIRECT_MAIL_SERVICES"/>
|
326
|
+
<xs:enumeration value="EXPRESS_FREIGHT_DROPOFFS"/>
|
327
|
+
<xs:enumeration value="EXPRESS_PARCEL_DROPOFFS"/>
|
328
|
+
<xs:enumeration value="FEDEX_FREIGHT_DROPOFFS"/>
|
329
|
+
<xs:enumeration value="GROUND_DROPOFFS"/>
|
330
|
+
<xs:enumeration value="GROUND_HOME_DELIVERY_DROPOFFS"/>
|
331
|
+
<xs:enumeration value="LOCATION_IS_IN_AIRPORT"/>
|
332
|
+
<xs:enumeration value="NOTARY_SERVICES"/>
|
333
|
+
<xs:enumeration value="OBSERVES_DAY_LIGHT_SAVING_TIMES"/>
|
334
|
+
<xs:enumeration value="OPEN_TWENTY_FOUR_HOURS"/>
|
335
|
+
<xs:enumeration value="PACKAGING_SUPPLIES"/>
|
336
|
+
<xs:enumeration value="PACK_AND_SHIP"/>
|
337
|
+
<xs:enumeration value="PASSPORT_PHOTO_SERVICES"/>
|
338
|
+
<xs:enumeration value="RETURNS_SERVICES"/>
|
339
|
+
<xs:enumeration value="SATURDAY_DROPOFFS"/>
|
340
|
+
<xs:enumeration value="SATURDAY_EXPRESS_HOLD_AT_LOCATION"/>
|
341
|
+
<xs:enumeration value="SIGNS_AND_BANNERS_SERVICE"/>
|
342
|
+
<xs:enumeration value="SONY_PICTURE_STATION"/>
|
343
|
+
<xs:enumeration value="VIDEO_CONFERENCING"/>
|
344
|
+
<xs:enumeration value="WEEKDAY_EXPRESS_HOLD_AT_LOCATION"/>
|
345
|
+
<xs:enumeration value="WEEKDAY_GROUND_HOLD_AT_LOCATION"/>
|
346
|
+
</xs:restriction>
|
347
|
+
</xs:simpleType>
|
348
|
+
<xs:complexType name="LocationContactAndAddress">
|
349
|
+
<xs:sequence>
|
350
|
+
<xs:element name="Contact" type="ns:Contact" minOccurs="0"/>
|
351
|
+
<xs:element name="Address" type="ns:Address" minOccurs="0"/>
|
352
|
+
<xs:element name="AddressAncillaryDetail" type="ns:AddressAncillaryDetail" minOccurs="0"/>
|
353
|
+
</xs:sequence>
|
354
|
+
</xs:complexType>
|
355
|
+
<xs:simpleType name="LocationContentOptionType">
|
356
|
+
<xs:restriction base="xs:string">
|
357
|
+
<xs:enumeration value="HOLIDAYS"/>
|
358
|
+
<xs:enumeration value="LOCATION_DROPOFF_TIMES"/>
|
359
|
+
<xs:enumeration value="MAP_URL"/>
|
360
|
+
</xs:restriction>
|
361
|
+
</xs:simpleType>
|
362
|
+
<xs:complexType name="LocationDetail">
|
363
|
+
<xs:annotation>
|
364
|
+
<xs:documentation>Describes an individual location providing a set of customer service features.</xs:documentation>
|
365
|
+
</xs:annotation>
|
366
|
+
<xs:sequence>
|
367
|
+
<xs:element name="LocationId" type="xs:string" minOccurs="0"/>
|
368
|
+
<xs:element name="StoreNumber" type="xs:int" minOccurs="0"/>
|
369
|
+
<xs:element name="LocationContactAndAddress" type="ns:LocationContactAndAddress" minOccurs="0"/>
|
370
|
+
<xs:element name="SpecialInstructions" type="xs:string" minOccurs="0"/>
|
371
|
+
<xs:element name="GeographicCoordinates" type="xs:string" minOccurs="0"/>
|
372
|
+
<xs:element name="LocationType" type="ns:FedExLocationType" minOccurs="0"/>
|
373
|
+
<xs:element name="Attributes" type="ns:LocationAttributesType" minOccurs="0" maxOccurs="unbounded"/>
|
374
|
+
<xs:element name="AcceptedCurrency" type="xs:string" minOccurs="0"/>
|
375
|
+
<xs:element name="LocationHolidays" type="ns:Holiday" minOccurs="0" maxOccurs="unbounded"/>
|
376
|
+
<xs:element name="MapUrl" type="xs:string" minOccurs="0"/>
|
377
|
+
<xs:element name="EntityId" type="xs:string" minOccurs="0"/>
|
378
|
+
<xs:element name="NormalHours" type="ns:LocationHours" minOccurs="0" maxOccurs="unbounded"/>
|
379
|
+
<xs:element name="ExceptionalHours" type="ns:LocationHours" minOccurs="0" maxOccurs="unbounded"/>
|
380
|
+
<xs:element name="HoursForEffectiveDate" type="ns:LocationHours" minOccurs="0" maxOccurs="unbounded"/>
|
381
|
+
<xs:element name="CarrierDetails" type="ns:CarrierDetail" minOccurs="0" maxOccurs="unbounded"/>
|
382
|
+
</xs:sequence>
|
383
|
+
</xs:complexType>
|
384
|
+
<xs:complexType name="LocationHours">
|
385
|
+
<xs:annotation>
|
386
|
+
<xs:documentation>Specifies the location hours for a location.</xs:documentation>
|
387
|
+
</xs:annotation>
|
388
|
+
<xs:sequence>
|
389
|
+
<xs:element name="DayofWeek" type="ns:DayOfWeekType" minOccurs="0"/>
|
390
|
+
<xs:element name="OperationalHours" type="ns:OperationalHoursType" minOccurs="0"/>
|
391
|
+
<xs:element name="Hours" type="ns:TimeRange" minOccurs="0" maxOccurs="unbounded"/>
|
392
|
+
</xs:sequence>
|
393
|
+
</xs:complexType>
|
394
|
+
<xs:simpleType name="LocationSearchFilterType">
|
395
|
+
<xs:annotation>
|
396
|
+
<xs:documentation>Specifies the crieteria used to filter the location search results.</xs:documentation>
|
397
|
+
</xs:annotation>
|
398
|
+
<xs:restriction base="xs:string">
|
399
|
+
<xs:enumeration value="EXCLUDE_LOCATIONS_OUTSIDE_STATE_OR_PROVINCE"/>
|
400
|
+
</xs:restriction>
|
401
|
+
</xs:simpleType>
|
402
|
+
<xs:simpleType name="LocationSortCriteriaType">
|
403
|
+
<xs:annotation>
|
404
|
+
<xs:documentation>Specifies the criterion to be used to sort the location details.</xs:documentation>
|
405
|
+
</xs:annotation>
|
406
|
+
<xs:restriction base="xs:string">
|
407
|
+
<xs:enumeration value="DISTANCE"/>
|
408
|
+
<xs:enumeration value="LATEST_EXPRESS_DROPOFF_TIME"/>
|
409
|
+
<xs:enumeration value="LATEST_GROUND_DROPOFF_TIME"/>
|
410
|
+
<xs:enumeration value="LOCATION_TYPE"/>
|
411
|
+
</xs:restriction>
|
412
|
+
</xs:simpleType>
|
413
|
+
<xs:complexType name="LocationSortDetail">
|
414
|
+
<xs:annotation>
|
415
|
+
<xs:documentation>Specifies the criterion and order to be used to sort the location details.</xs:documentation>
|
416
|
+
</xs:annotation>
|
417
|
+
<xs:sequence>
|
418
|
+
<xs:element name="Criterion" type="ns:LocationSortCriteriaType" minOccurs="0">
|
419
|
+
<xs:annotation>
|
420
|
+
<xs:documentation>Specifies the criterion to be used to sort the location details.</xs:documentation>
|
421
|
+
</xs:annotation>
|
422
|
+
</xs:element>
|
423
|
+
<xs:element name="Order" type="ns:LocationSortOrderType" minOccurs="0">
|
424
|
+
<xs:annotation>
|
425
|
+
<xs:documentation>Specifies sort order of the location details.</xs:documentation>
|
426
|
+
</xs:annotation>
|
427
|
+
</xs:element>
|
428
|
+
</xs:sequence>
|
429
|
+
</xs:complexType>
|
430
|
+
<xs:simpleType name="LocationSortOrderType">
|
431
|
+
<xs:annotation>
|
432
|
+
<xs:documentation>Specifies sort order of the location details.</xs:documentation>
|
433
|
+
</xs:annotation>
|
434
|
+
<xs:restriction base="xs:string">
|
435
|
+
<xs:enumeration value="HIGHEST_TO_LOWEST"/>
|
436
|
+
<xs:enumeration value="LOWEST_TO_HIGHEST"/>
|
437
|
+
</xs:restriction>
|
438
|
+
</xs:simpleType>
|
439
|
+
<xs:simpleType name="LocationsSearchCriteriaType">
|
440
|
+
<xs:annotation>
|
441
|
+
<xs:documentation>Specifies the criteria types that may be used to search for FedEx locations.</xs:documentation>
|
442
|
+
</xs:annotation>
|
443
|
+
<xs:restriction base="xs:string">
|
444
|
+
<xs:enumeration value="ADDRESS"/>
|
445
|
+
<xs:enumeration value="GEOGRAPHIC_COORDINATES"/>
|
446
|
+
<xs:enumeration value="PHONE_NUMBER"/>
|
447
|
+
</xs:restriction>
|
448
|
+
</xs:simpleType>
|
449
|
+
<xs:simpleType name="MultipleMatchesActionType">
|
450
|
+
<xs:restriction base="xs:string">
|
451
|
+
<xs:enumeration value="RETURN_ALL"/>
|
452
|
+
<xs:enumeration value="RETURN_ERROR"/>
|
453
|
+
<xs:enumeration value="RETURN_FIRST"/>
|
454
|
+
</xs:restriction>
|
455
|
+
</xs:simpleType>
|
456
|
+
<xs:complexType name="Notification">
|
457
|
+
<xs:annotation>
|
458
|
+
<xs:documentation>The descriptive data regarding the result of the submitted transaction.</xs:documentation>
|
459
|
+
</xs:annotation>
|
460
|
+
<xs:sequence>
|
461
|
+
<xs:element name="Severity" type="ns:NotificationSeverityType" minOccurs="0">
|
462
|
+
<xs:annotation>
|
463
|
+
<xs:documentation>The severity of this notification. This can indicate success or failure or some other information about the request. The values that can be returned are SUCCESS - Your transaction succeeded with no other applicable information. NOTE - Additional information that may be of interest to you about your transaction. WARNING - Additional information that you need to know about your transaction that you may need to take action on. ERROR - Information about an error that occurred while processing your transaction. FAILURE - FedEx was unable to process your transaction at this time due to a system failure. Please try again later</xs:documentation>
|
464
|
+
</xs:annotation>
|
465
|
+
</xs:element>
|
466
|
+
<xs:element name="Source" type="xs:string" minOccurs="0">
|
467
|
+
<xs:annotation>
|
468
|
+
<xs:documentation>Indicates the source of this notification. Combined with the Code it uniquely identifies this notification</xs:documentation>
|
469
|
+
</xs:annotation>
|
470
|
+
</xs:element>
|
471
|
+
<xs:element name="Code" type="xs:string" minOccurs="0">
|
472
|
+
<xs:annotation>
|
473
|
+
<xs:documentation>A code that represents this notification. Combined with the Source it uniquely identifies this notification.</xs:documentation>
|
474
|
+
</xs:annotation>
|
475
|
+
</xs:element>
|
476
|
+
<xs:element name="Message" type="xs:string" minOccurs="0">
|
477
|
+
<xs:annotation>
|
478
|
+
<xs:documentation>Human-readable text that explains this notification.</xs:documentation>
|
479
|
+
</xs:annotation>
|
480
|
+
</xs:element>
|
481
|
+
<xs:element name="LocalizedMessage" type="xs:string" minOccurs="0">
|
482
|
+
<xs:annotation>
|
483
|
+
<xs:documentation>The translated message. The language and locale specified in the ClientDetail. Localization are used to determine the representation. Currently only supported in a TrackReply.</xs:documentation>
|
484
|
+
</xs:annotation>
|
485
|
+
</xs:element>
|
486
|
+
<xs:element name="MessageParameters" type="ns:NotificationParameter" minOccurs="0" maxOccurs="unbounded">
|
487
|
+
<xs:annotation>
|
488
|
+
<xs:documentation>A collection of name/value pairs that provide specific data to help the client determine the nature of an error (or warning, etc.) witout having to parse the message string.</xs:documentation>
|
489
|
+
</xs:annotation>
|
490
|
+
</xs:element>
|
491
|
+
</xs:sequence>
|
492
|
+
</xs:complexType>
|
493
|
+
<xs:complexType name="NotificationParameter">
|
494
|
+
<xs:sequence>
|
495
|
+
<xs:element name="Id" type="xs:string" minOccurs="0">
|
496
|
+
<xs:annotation>
|
497
|
+
<xs:documentation>Identifies the type of data contained in Value (e.g. SERVICE_TYPE, PACKAGE_SEQUENCE, etc..).</xs:documentation>
|
498
|
+
</xs:annotation>
|
499
|
+
</xs:element>
|
500
|
+
<xs:element name="Value" type="xs:string" minOccurs="0">
|
501
|
+
<xs:annotation>
|
502
|
+
<xs:documentation>The value of the parameter (e.g. PRIORITY_OVERNIGHT, 2, etc..).</xs:documentation>
|
503
|
+
</xs:annotation>
|
504
|
+
</xs:element>
|
505
|
+
</xs:sequence>
|
506
|
+
</xs:complexType>
|
507
|
+
<xs:simpleType name="NotificationSeverityType">
|
508
|
+
<xs:restriction base="xs:string">
|
509
|
+
<xs:enumeration value="ERROR"/>
|
510
|
+
<xs:enumeration value="FAILURE"/>
|
511
|
+
<xs:enumeration value="NOTE"/>
|
512
|
+
<xs:enumeration value="SUCCESS"/>
|
513
|
+
<xs:enumeration value="WARNING"/>
|
514
|
+
</xs:restriction>
|
515
|
+
</xs:simpleType>
|
516
|
+
<xs:simpleType name="OperationalHoursType">
|
517
|
+
<xs:restriction base="xs:string">
|
518
|
+
<xs:enumeration value="CLOSED_ALL_DAY"/>
|
519
|
+
<xs:enumeration value="OPEN_ALL_DAY"/>
|
520
|
+
<xs:enumeration value="OPEN_BY_HOURS"/>
|
521
|
+
</xs:restriction>
|
522
|
+
</xs:simpleType>
|
523
|
+
<xs:complexType name="SearchLocationConstraints">
|
524
|
+
<xs:annotation>
|
525
|
+
<xs:documentation>Specifies additional constraints on the attributes of the locations being searched.</xs:documentation>
|
526
|
+
</xs:annotation>
|
527
|
+
<xs:sequence>
|
528
|
+
<xs:element name="RadiusDistance" type="ns:Distance" minOccurs="0">
|
529
|
+
<xs:annotation>
|
530
|
+
<xs:documentation>Specifies value and units of the radius around the address to search for FedEx locations.</xs:documentation>
|
531
|
+
</xs:annotation>
|
532
|
+
</xs:element>
|
533
|
+
<xs:element name="ExpressDropOffTimeNeeded" type="xs:time" minOccurs="0">
|
534
|
+
<xs:annotation>
|
535
|
+
<xs:documentation>The latest time at which the customer can drop off a package for being shipped using an express service.</xs:documentation>
|
536
|
+
</xs:annotation>
|
537
|
+
</xs:element>
|
538
|
+
<xs:element name="ResultsFilters" type="ns:LocationSearchFilterType" minOccurs="0" maxOccurs="unbounded">
|
539
|
+
<xs:annotation>
|
540
|
+
<xs:documentation>Specifies the criteria used to filter the results of locations search.</xs:documentation>
|
541
|
+
</xs:annotation>
|
542
|
+
</xs:element>
|
543
|
+
<xs:element name="SupportedRedirectToHoldServices" type="ns:SupportedRedirectToHoldServiceType" minOccurs="0" maxOccurs="unbounded">
|
544
|
+
<xs:annotation>
|
545
|
+
<xs:documentation>Specifies the types of services supported by a FedEx location for redirect to hold.</xs:documentation>
|
546
|
+
</xs:annotation>
|
547
|
+
</xs:element>
|
548
|
+
<xs:element name="RequiredLocationAttributes" type="ns:LocationAttributesType" minOccurs="0" maxOccurs="unbounded"/>
|
549
|
+
<xs:element name="ResultsToSkip" type="xs:nonNegativeInteger" minOccurs="0"/>
|
550
|
+
<xs:element name="ResultsRequested" type="xs:nonNegativeInteger" minOccurs="0"/>
|
551
|
+
<xs:element name="LocationContentOptions" type="ns:LocationContentOptionType" minOccurs="0" maxOccurs="unbounded"/>
|
552
|
+
<xs:element name="LocationTypesToInclude" type="ns:FedExLocationType" minOccurs="0" maxOccurs="unbounded"/>
|
553
|
+
</xs:sequence>
|
554
|
+
</xs:complexType>
|
555
|
+
<xs:complexType name="SearchLocationsReply">
|
556
|
+
<xs:sequence>
|
557
|
+
<xs:element name="HighestSeverity" type="ns:NotificationSeverityType" minOccurs="1"/>
|
558
|
+
<xs:element name="Notifications" type="ns:Notification" minOccurs="1" maxOccurs="unbounded"/>
|
559
|
+
<xs:element name="TransactionDetail" type="ns:TransactionDetail" minOccurs="0"/>
|
560
|
+
<xs:element name="Version" type="ns:VersionId" minOccurs="1"/>
|
561
|
+
<xs:element name="TotalResultsAvailable" type="xs:nonNegativeInteger" minOccurs="0">
|
562
|
+
<xs:annotation>
|
563
|
+
<xs:documentation>Specifies total number of location results that are available.</xs:documentation>
|
564
|
+
</xs:annotation>
|
565
|
+
</xs:element>
|
566
|
+
<xs:element name="ResultsReturned" type="xs:nonNegativeInteger" minOccurs="0">
|
567
|
+
<xs:annotation>
|
568
|
+
<xs:documentation>Specifies the number of location results returned in this reply.</xs:documentation>
|
569
|
+
</xs:annotation>
|
570
|
+
</xs:element>
|
571
|
+
<xs:element name="FormattedAddress" type="ns:Address" minOccurs="0">
|
572
|
+
<xs:annotation>
|
573
|
+
<xs:documentation>Specifies the address formatted to have correct postal code per USPS standards.</xs:documentation>
|
574
|
+
</xs:annotation>
|
575
|
+
</xs:element>
|
576
|
+
<xs:element name="AddressToLocationRelationships" type="ns:AddressToLocationRelationshipDetail" minOccurs="0" maxOccurs="unbounded">
|
577
|
+
<xs:annotation>
|
578
|
+
<xs:documentation>The details about the relationship between the address requested and the locations returned.</xs:documentation>
|
579
|
+
</xs:annotation>
|
580
|
+
</xs:element>
|
581
|
+
</xs:sequence>
|
582
|
+
</xs:complexType>
|
583
|
+
<xs:complexType name="SearchLocationsRequest">
|
584
|
+
<xs:sequence>
|
585
|
+
<xs:element name="WebAuthenticationDetail" type="ns:WebAuthenticationDetail" minOccurs="1">
|
586
|
+
<xs:annotation>
|
587
|
+
<xs:documentation>Descriptive data to be used in authentication of the sender's identity (and right to use FedEx web services).</xs:documentation>
|
588
|
+
</xs:annotation>
|
589
|
+
</xs:element>
|
590
|
+
<xs:element name="ClientDetail" type="ns:ClientDetail" minOccurs="1"/>
|
591
|
+
<xs:element name="TransactionDetail" type="ns:TransactionDetail" minOccurs="0"/>
|
592
|
+
<xs:element name="Version" type="ns:VersionId" minOccurs="1"/>
|
593
|
+
<xs:element name="EffectiveDate" type="xs:date" minOccurs="0"/>
|
594
|
+
<xs:element name="LocationsSearchCriterion" type="ns:LocationsSearchCriteriaType" minOccurs="0">
|
595
|
+
<xs:annotation>
|
596
|
+
<xs:documentation>Specifies the criterion that may be used to search for FedEx locations.</xs:documentation>
|
597
|
+
</xs:annotation>
|
598
|
+
</xs:element>
|
599
|
+
<xs:element name="Address" type="ns:Address" minOccurs="0"/>
|
600
|
+
<xs:element name="PhoneNumber" type="xs:string" minOccurs="0"/>
|
601
|
+
<xs:element name="GeographicCoordinates" type="xs:string" minOccurs="0"/>
|
602
|
+
<xs:element name="MultipleMatchesAction" type="ns:MultipleMatchesActionType" minOccurs="0">
|
603
|
+
<xs:annotation>
|
604
|
+
<xs:documentation>Specifies the criterion to be used to return location results when there are mutiple matches.</xs:documentation>
|
605
|
+
</xs:annotation>
|
606
|
+
</xs:element>
|
607
|
+
<xs:element name="SortDetail" type="ns:LocationSortDetail" minOccurs="0">
|
608
|
+
<xs:annotation>
|
609
|
+
<xs:documentation>Specifies the details on how the location search results be sorted in the reply.</xs:documentation>
|
610
|
+
</xs:annotation>
|
611
|
+
</xs:element>
|
612
|
+
<xs:element name="Constraints" type="ns:SearchLocationConstraints" minOccurs="0">
|
613
|
+
<xs:annotation>
|
614
|
+
<xs:documentation>Contraints to be applied to location attributes.</xs:documentation>
|
615
|
+
</xs:annotation>
|
616
|
+
</xs:element>
|
617
|
+
</xs:sequence>
|
618
|
+
</xs:complexType>
|
619
|
+
<xs:simpleType name="ShippingActionType">
|
620
|
+
<xs:restriction base="xs:string">
|
621
|
+
<xs:enumeration value="DELIVERIES"/>
|
622
|
+
<xs:enumeration value="PICKUPS"/>
|
623
|
+
</xs:restriction>
|
624
|
+
</xs:simpleType>
|
625
|
+
<xs:complexType name="ShippingHoliday">
|
626
|
+
<xs:sequence>
|
627
|
+
<xs:element name="Holiday" type="ns:Holiday" minOccurs="0"/>
|
628
|
+
<xs:element name="UnavailableActions" type="ns:ShippingActionType" minOccurs="0" maxOccurs="unbounded"/>
|
629
|
+
</xs:sequence>
|
630
|
+
</xs:complexType>
|
631
|
+
<xs:simpleType name="SupportedRedirectToHoldServiceType">
|
632
|
+
<xs:annotation>
|
633
|
+
<xs:documentation>Specifies the types of services supported by a FedEx location for redirect to hold.</xs:documentation>
|
634
|
+
</xs:annotation>
|
635
|
+
<xs:restriction base="xs:string">
|
636
|
+
<xs:enumeration value="FEDEX_EXPRESS"/>
|
637
|
+
<xs:enumeration value="FEDEX_GROUND"/>
|
638
|
+
<xs:enumeration value="FEDEX_GROUND_HOME_DELIVERY"/>
|
639
|
+
</xs:restriction>
|
640
|
+
</xs:simpleType>
|
641
|
+
<xs:complexType name="TimeRange">
|
642
|
+
<xs:sequence>
|
643
|
+
<xs:element name="Begins" type="xs:time" minOccurs="0"/>
|
644
|
+
<xs:element name="Ends" type="xs:time" minOccurs="0"/>
|
645
|
+
</xs:sequence>
|
646
|
+
</xs:complexType>
|
647
|
+
<xs:complexType name="TransactionDetail">
|
648
|
+
<xs:sequence>
|
649
|
+
<xs:element name="CustomerTransactionId" type="xs:string" minOccurs="0">
|
650
|
+
<xs:annotation>
|
651
|
+
<xs:documentation>Free form text to be echoed back in the reply. Used to match requests and replies.</xs:documentation>
|
652
|
+
</xs:annotation>
|
653
|
+
</xs:element>
|
654
|
+
<xs:element name="Localization" type="ns:Localization" minOccurs="0">
|
655
|
+
<xs:annotation>
|
656
|
+
<xs:documentation>Governs data payload language/translations (contrasted with ClientDetail.localization, which governs Notification.localizedMessage language selection).</xs:documentation>
|
657
|
+
</xs:annotation>
|
658
|
+
</xs:element>
|
659
|
+
</xs:sequence>
|
660
|
+
</xs:complexType>
|
661
|
+
<xs:complexType name="WebAuthenticationDetail">
|
662
|
+
<xs:annotation>
|
663
|
+
<xs:documentation>Used in authentication of the sender's identity.</xs:documentation>
|
664
|
+
</xs:annotation>
|
665
|
+
<xs:sequence>
|
666
|
+
<xs:element name="UserCredential" type="ns:WebAuthenticationCredential" minOccurs="1">
|
667
|
+
<xs:annotation>
|
668
|
+
<xs:documentation>Credential used to authenticate a specific software application. This value is provided by FedEx after registration.</xs:documentation>
|
669
|
+
</xs:annotation>
|
670
|
+
</xs:element>
|
671
|
+
</xs:sequence>
|
672
|
+
</xs:complexType>
|
673
|
+
<xs:complexType name="WebAuthenticationCredential">
|
674
|
+
<xs:annotation>
|
675
|
+
<xs:documentation>Two part authentication string used for the sender's identity</xs:documentation>
|
676
|
+
</xs:annotation>
|
677
|
+
<xs:sequence>
|
678
|
+
<xs:element name="Key" type="xs:string" minOccurs="1">
|
679
|
+
<xs:annotation>
|
680
|
+
<xs:documentation>Identifying part of authentication credential. This value is provided by FedEx after registration</xs:documentation>
|
681
|
+
</xs:annotation>
|
682
|
+
</xs:element>
|
683
|
+
<xs:element name="Password" type="xs:string" minOccurs="1">
|
684
|
+
<xs:annotation>
|
685
|
+
<xs:documentation>Secret part of authentication key. This value is provided by FedEx after registration.</xs:documentation>
|
686
|
+
</xs:annotation>
|
687
|
+
</xs:element>
|
688
|
+
</xs:sequence>
|
689
|
+
</xs:complexType>
|
690
|
+
<xs:complexType name="VersionId">
|
691
|
+
<xs:annotation>
|
692
|
+
<xs:documentation>Identifies the version/level of a service operation expected by a caller (in each request) and performed by the callee (in each reply).</xs:documentation>
|
693
|
+
</xs:annotation>
|
694
|
+
<xs:sequence>
|
695
|
+
<xs:element name="ServiceId" type="xs:string" fixed="gsai" minOccurs="1">
|
696
|
+
<xs:annotation>
|
697
|
+
<xs:documentation>Identifies a system or sub-system which performs an operation.</xs:documentation>
|
698
|
+
</xs:annotation>
|
699
|
+
</xs:element>
|
700
|
+
<xs:element name="Major" type="xs:int" fixed="1" minOccurs="1">
|
701
|
+
<xs:annotation>
|
702
|
+
<xs:documentation>Identifies the service business level.</xs:documentation>
|
703
|
+
</xs:annotation>
|
704
|
+
</xs:element>
|
705
|
+
<xs:element name="Intermediate" type="xs:int" fixed="0" minOccurs="1">
|
706
|
+
<xs:annotation>
|
707
|
+
<xs:documentation>Identifies the service interface level.</xs:documentation>
|
708
|
+
</xs:annotation>
|
709
|
+
</xs:element>
|
710
|
+
<xs:element name="Minor" type="xs:int" fixed="0" minOccurs="1">
|
711
|
+
<xs:annotation>
|
712
|
+
<xs:documentation>Identifies the service code level.</xs:documentation>
|
713
|
+
</xs:annotation>
|
714
|
+
</xs:element>
|
715
|
+
</xs:sequence>
|
716
|
+
</xs:complexType>
|
717
|
+
</xs:schema>
|
718
|
+
</types>
|
719
|
+
<message name="SearchLocationsRequest">
|
720
|
+
<part name="SearchLocationsRequest" element="ns:SearchLocationsRequest"/>
|
721
|
+
</message>
|
722
|
+
<message name="SearchLocationsReply">
|
723
|
+
<part name="SearchLocationsReply" element="ns:SearchLocationsReply"/>
|
724
|
+
</message>
|
725
|
+
<portType name="GlobalShipAddressPortType">
|
726
|
+
<operation name="searchLocations" parameterOrder="SearchLocationsRequest">
|
727
|
+
<input message="ns:SearchLocationsRequest"/>
|
728
|
+
<output message="ns:SearchLocationsReply"/>
|
729
|
+
</operation>
|
730
|
+
</portType>
|
731
|
+
<binding name="GlobalShipAddressServiceSoapBinding" type="ns:GlobalShipAddressPortType">
|
732
|
+
<s1:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
|
733
|
+
<operation name="searchLocations">
|
734
|
+
<s1:operation soapAction="searchLocations" style="document"/>
|
735
|
+
<input>
|
736
|
+
<s1:body use="literal"/>
|
737
|
+
</input>
|
738
|
+
<output>
|
739
|
+
<s1:body use="literal"/>
|
740
|
+
</output>
|
741
|
+
</operation>
|
742
|
+
</binding>
|
743
|
+
<service name="GlobalShipAddressService">
|
744
|
+
<port name="GlobalShipAddressServicePort" binding="ns:GlobalShipAddressServiceSoapBinding">
|
745
|
+
<s1:address location="https://wsbeta.fedex.com:443/web-services/globalshipaddress"/>
|
746
|
+
</port>
|
747
|
+
</service>
|
748
|
+
</definitions>
|