g4s_client 0.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/.DS_Store +0 -0
- data/.gitignore +1 -0
- data/Gemfile +4 -0
- data/README +0 -0
- data/Rakefile +2 -0
- data/g4s_client.gemspec +36 -0
- data/lib/g4s/g4s.rb +29 -0
- data/lib/g4s/shipping/IPSShippingClient.rb +89 -0
- data/lib/g4s/shipping/default.rb +533 -0
- data/lib/g4s/shipping/defaultDriver.rb +63 -0
- data/lib/g4s/shipping/defaultMappingRegistry.rb +581 -0
- data/lib/g4s/tracking/IPSTrackingClient.rb +137 -0
- data/lib/g4s/tracking/default.rb +831 -0
- data/lib/g4s/tracking/defaultDriver.rb +79 -0
- data/lib/g4s/tracking/defaultMappingRegistry.rb +872 -0
- data/lib/g4s/utilities/IPSUtilitiesClient.rb +545 -0
- data/lib/g4s/utilities/default.rb +517 -0
- data/lib/g4s/utilities/defaultDriver.rb +215 -0
- data/lib/g4s/utilities/defaultMappingRegistry.rb +510 -0
- data/lib/g4s/version.rb +3 -0
- data/notes.txt +18 -0
- metadata +87 -0
@@ -0,0 +1,545 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
require 'defaultDriver.rb'
|
3
|
+
|
4
|
+
endpoint_url = ARGV.shift
|
5
|
+
obj = IPSUtilitiesSoap.new(endpoint_url)
|
6
|
+
|
7
|
+
# run ruby with -d to see SOAP wiredumps.
|
8
|
+
obj.wiredump_dev = STDERR if $DEBUG
|
9
|
+
|
10
|
+
# SYNOPSIS
|
11
|
+
# GenerateAccessKey(parameters)
|
12
|
+
#
|
13
|
+
# ARGS
|
14
|
+
# parameters GenerateAccessKey - {http://tempuri.org/}GenerateAccessKey
|
15
|
+
#
|
16
|
+
# RETURNS
|
17
|
+
# parameters GenerateAccessKeyResponse - {http://tempuri.org/}GenerateAccessKeyResponse
|
18
|
+
#
|
19
|
+
parameters = nil
|
20
|
+
puts obj.generateAccessKey(parameters)
|
21
|
+
|
22
|
+
# SYNOPSIS
|
23
|
+
# GetNewManifestNumber(parameters)
|
24
|
+
#
|
25
|
+
# ARGS
|
26
|
+
# parameters GetNewManifestNumber - {http://tempuri.org/}GetNewManifestNumber
|
27
|
+
#
|
28
|
+
# RETURNS
|
29
|
+
# parameters GetNewManifestNumberResponse - {http://tempuri.org/}GetNewManifestNumberResponse
|
30
|
+
#
|
31
|
+
parameters = nil
|
32
|
+
puts obj.getNewManifestNumber(parameters)
|
33
|
+
|
34
|
+
# SYNOPSIS
|
35
|
+
# GetReferenceNumber(parameters)
|
36
|
+
#
|
37
|
+
# ARGS
|
38
|
+
# parameters GetReferenceNumber - {http://tempuri.org/}GetReferenceNumber
|
39
|
+
#
|
40
|
+
# RETURNS
|
41
|
+
# parameters GetReferenceNumberResponse - {http://tempuri.org/}GetReferenceNumberResponse
|
42
|
+
#
|
43
|
+
parameters = nil
|
44
|
+
puts obj.getReferenceNumber(parameters)
|
45
|
+
|
46
|
+
# SYNOPSIS
|
47
|
+
# GetG4SIPickupLocationList(parameters)
|
48
|
+
#
|
49
|
+
# ARGS
|
50
|
+
# parameters GetG4SIPickupLocationList - {http://tempuri.org/}GetG4SIPickupLocationList
|
51
|
+
#
|
52
|
+
# RETURNS
|
53
|
+
# parameters GetG4SIPickupLocationListResponse - {http://tempuri.org/}GetG4SIPickupLocationListResponse
|
54
|
+
#
|
55
|
+
parameters = nil
|
56
|
+
puts obj.getG4SIPickupLocationList(parameters)
|
57
|
+
|
58
|
+
# SYNOPSIS
|
59
|
+
# GetG4SICODCollectTypeList(parameters)
|
60
|
+
#
|
61
|
+
# ARGS
|
62
|
+
# parameters GetG4SICODCollectTypeList - {http://tempuri.org/}GetG4SICODCollectTypeList
|
63
|
+
#
|
64
|
+
# RETURNS
|
65
|
+
# parameters GetG4SICODCollectTypeListResponse - {http://tempuri.org/}GetG4SICODCollectTypeListResponse
|
66
|
+
#
|
67
|
+
parameters = nil
|
68
|
+
puts obj.getG4SICODCollectTypeList(parameters)
|
69
|
+
|
70
|
+
# SYNOPSIS
|
71
|
+
# GetG4SICurrencies(parameters)
|
72
|
+
#
|
73
|
+
# ARGS
|
74
|
+
# parameters GetG4SICurrencies - {http://tempuri.org/}GetG4SICurrencies
|
75
|
+
#
|
76
|
+
# RETURNS
|
77
|
+
# parameters GetG4SICurrenciesResponse - {http://tempuri.org/}GetG4SICurrenciesResponse
|
78
|
+
#
|
79
|
+
parameters = nil
|
80
|
+
puts obj.getG4SICurrencies(parameters)
|
81
|
+
|
82
|
+
# SYNOPSIS
|
83
|
+
# CompressedBytesToString(parameters)
|
84
|
+
#
|
85
|
+
# ARGS
|
86
|
+
# parameters CompressedBytesToString - {http://tempuri.org/}CompressedBytesToString
|
87
|
+
#
|
88
|
+
# RETURNS
|
89
|
+
# parameters CompressedBytesToStringResponse - {http://tempuri.org/}CompressedBytesToStringResponse
|
90
|
+
#
|
91
|
+
parameters = nil
|
92
|
+
puts obj.compressedBytesToString(parameters)
|
93
|
+
|
94
|
+
# SYNOPSIS
|
95
|
+
# StringToCompressedBytes(parameters)
|
96
|
+
#
|
97
|
+
# ARGS
|
98
|
+
# parameters StringToCompressedBytes - {http://tempuri.org/}StringToCompressedBytes
|
99
|
+
#
|
100
|
+
# RETURNS
|
101
|
+
# parameters StringToCompressedBytesResponse - {http://tempuri.org/}StringToCompressedBytesResponse
|
102
|
+
#
|
103
|
+
parameters = nil
|
104
|
+
puts obj.stringToCompressedBytes(parameters)
|
105
|
+
|
106
|
+
# SYNOPSIS
|
107
|
+
# Login(parameters)
|
108
|
+
#
|
109
|
+
# ARGS
|
110
|
+
# parameters Login - {http://tempuri.org/}Login
|
111
|
+
#
|
112
|
+
# RETURNS
|
113
|
+
# parameters LoginResponse - {http://tempuri.org/}LoginResponse
|
114
|
+
#
|
115
|
+
parameters = nil
|
116
|
+
puts obj.login(parameters)
|
117
|
+
|
118
|
+
# SYNOPSIS
|
119
|
+
# GetAllCountries(parameters)
|
120
|
+
#
|
121
|
+
# ARGS
|
122
|
+
# parameters GetAllCountries - {http://tempuri.org/}GetAllCountries
|
123
|
+
#
|
124
|
+
# RETURNS
|
125
|
+
# parameters GetAllCountriesResponse - {http://tempuri.org/}GetAllCountriesResponse
|
126
|
+
#
|
127
|
+
parameters = nil
|
128
|
+
puts obj.getAllCountries(parameters)
|
129
|
+
|
130
|
+
# SYNOPSIS
|
131
|
+
# GetServiceLevelsByZip(parameters)
|
132
|
+
#
|
133
|
+
# ARGS
|
134
|
+
# parameters GetServiceLevelsByZip - {http://tempuri.org/}GetServiceLevelsByZip
|
135
|
+
#
|
136
|
+
# RETURNS
|
137
|
+
# parameters GetServiceLevelsByZipResponse - {http://tempuri.org/}GetServiceLevelsByZipResponse
|
138
|
+
#
|
139
|
+
parameters = nil
|
140
|
+
puts obj.getServiceLevelsByZip(parameters)
|
141
|
+
|
142
|
+
# SYNOPSIS
|
143
|
+
# GetSrvcLvls(parameters)
|
144
|
+
#
|
145
|
+
# ARGS
|
146
|
+
# parameters GetSrvcLvls - {http://tempuri.org/}GetSrvcLvls
|
147
|
+
#
|
148
|
+
# RETURNS
|
149
|
+
# parameters GetSrvcLvlsResponse - {http://tempuri.org/}GetSrvcLvlsResponse
|
150
|
+
#
|
151
|
+
parameters = nil
|
152
|
+
puts obj.getSrvcLvls(parameters)
|
153
|
+
|
154
|
+
# SYNOPSIS
|
155
|
+
# GetSrvcLvlByShipersCountryAndZip(parameters)
|
156
|
+
#
|
157
|
+
# ARGS
|
158
|
+
# parameters GetSrvcLvlByShipersCountryAndZip - {http://tempuri.org/}GetSrvcLvlByShipersCountryAndZip
|
159
|
+
#
|
160
|
+
# RETURNS
|
161
|
+
# parameters GetSrvcLvlByShipersCountryAndZipResponse - {http://tempuri.org/}GetSrvcLvlByShipersCountryAndZipResponse
|
162
|
+
#
|
163
|
+
parameters = nil
|
164
|
+
puts obj.getSrvcLvlByShipersCountryAndZip(parameters)
|
165
|
+
|
166
|
+
# SYNOPSIS
|
167
|
+
# GetCarriersList(parameters)
|
168
|
+
#
|
169
|
+
# ARGS
|
170
|
+
# parameters GetCarriersList - {http://tempuri.org/}GetCarriersList
|
171
|
+
#
|
172
|
+
# RETURNS
|
173
|
+
# parameters GetCarriersListResponse - {http://tempuri.org/}GetCarriersListResponse
|
174
|
+
#
|
175
|
+
parameters = nil
|
176
|
+
puts obj.getCarriersList(parameters)
|
177
|
+
|
178
|
+
# SYNOPSIS
|
179
|
+
# GetPackageTypes(parameters)
|
180
|
+
#
|
181
|
+
# ARGS
|
182
|
+
# parameters GetPackageTypes - {http://tempuri.org/}GetPackageTypes
|
183
|
+
#
|
184
|
+
# RETURNS
|
185
|
+
# parameters GetPackageTypesResponse - {http://tempuri.org/}GetPackageTypesResponse
|
186
|
+
#
|
187
|
+
parameters = nil
|
188
|
+
puts obj.getPackageTypes(parameters)
|
189
|
+
|
190
|
+
# SYNOPSIS
|
191
|
+
# GetStatesByCountry(parameters)
|
192
|
+
#
|
193
|
+
# ARGS
|
194
|
+
# parameters GetStatesByCountry - {http://tempuri.org/}GetStatesByCountry
|
195
|
+
#
|
196
|
+
# RETURNS
|
197
|
+
# parameters GetStatesByCountryResponse - {http://tempuri.org/}GetStatesByCountryResponse
|
198
|
+
#
|
199
|
+
parameters = nil
|
200
|
+
puts obj.getStatesByCountry(parameters)
|
201
|
+
|
202
|
+
# SYNOPSIS
|
203
|
+
# GetDimensions(parameters)
|
204
|
+
#
|
205
|
+
# ARGS
|
206
|
+
# parameters GetDimensions - {http://tempuri.org/}GetDimensions
|
207
|
+
#
|
208
|
+
# RETURNS
|
209
|
+
# parameters GetDimensionsResponse - {http://tempuri.org/}GetDimensionsResponse
|
210
|
+
#
|
211
|
+
parameters = nil
|
212
|
+
puts obj.getDimensions(parameters)
|
213
|
+
|
214
|
+
# SYNOPSIS
|
215
|
+
# GetHarmonizedCodes_CountryFrom(parameters)
|
216
|
+
#
|
217
|
+
# ARGS
|
218
|
+
# parameters GetHarmonizedCodes_CountryFrom - {http://tempuri.org/}GetHarmonizedCodes_CountryFrom
|
219
|
+
#
|
220
|
+
# RETURNS
|
221
|
+
# parameters GetHarmonizedCodes_CountryFromResponse - {http://tempuri.org/}GetHarmonizedCodes_CountryFromResponse
|
222
|
+
#
|
223
|
+
parameters = nil
|
224
|
+
puts obj.getHarmonizedCodes_CountryFrom(parameters)
|
225
|
+
|
226
|
+
# SYNOPSIS
|
227
|
+
# GetHarmonizedCodes_CountryFrom_CountryTo(parameters)
|
228
|
+
#
|
229
|
+
# ARGS
|
230
|
+
# parameters GetHarmonizedCodes_CountryFrom_CountryTo - {http://tempuri.org/}GetHarmonizedCodes_CountryFrom_CountryTo
|
231
|
+
#
|
232
|
+
# RETURNS
|
233
|
+
# parameters GetHarmonizedCodes_CountryFrom_CountryToResponse - {http://tempuri.org/}GetHarmonizedCodes_CountryFrom_CountryToResponse
|
234
|
+
#
|
235
|
+
parameters = nil
|
236
|
+
puts obj.getHarmonizedCodes_CountryFrom_CountryTo(parameters)
|
237
|
+
|
238
|
+
# SYNOPSIS
|
239
|
+
# GetCommodityMeasurmentsPerCarrier(parameters)
|
240
|
+
#
|
241
|
+
# ARGS
|
242
|
+
# parameters GetCommodityMeasurmentsPerCarrier - {http://tempuri.org/}GetCommodityMeasurmentsPerCarrier
|
243
|
+
#
|
244
|
+
# RETURNS
|
245
|
+
# parameters GetCommodityMeasurmentsPerCarrierResponse - {http://tempuri.org/}GetCommodityMeasurmentsPerCarrierResponse
|
246
|
+
#
|
247
|
+
parameters = nil
|
248
|
+
puts obj.getCommodityMeasurmentsPerCarrier(parameters)
|
249
|
+
|
250
|
+
# SYNOPSIS
|
251
|
+
# GetCarrierAcctInfo(parameters)
|
252
|
+
#
|
253
|
+
# ARGS
|
254
|
+
# parameters GetCarrierAcctInfo - {http://tempuri.org/}GetCarrierAcctInfo
|
255
|
+
#
|
256
|
+
# RETURNS
|
257
|
+
# parameters GetCarrierAcctInfoResponse - {http://tempuri.org/}GetCarrierAcctInfoResponse
|
258
|
+
#
|
259
|
+
parameters = nil
|
260
|
+
puts obj.getCarrierAcctInfo(parameters)
|
261
|
+
|
262
|
+
# SYNOPSIS
|
263
|
+
# GetUserInfo(parameters)
|
264
|
+
#
|
265
|
+
# ARGS
|
266
|
+
# parameters GetUserInfo - {http://tempuri.org/}GetUserInfo
|
267
|
+
#
|
268
|
+
# RETURNS
|
269
|
+
# parameters GetUserInfoResponse - {http://tempuri.org/}GetUserInfoResponse
|
270
|
+
#
|
271
|
+
parameters = nil
|
272
|
+
puts obj.getUserInfo(parameters)
|
273
|
+
|
274
|
+
|
275
|
+
endpoint_url = ARGV.shift
|
276
|
+
obj = IPSUtilitiesSoap.new(endpoint_url)
|
277
|
+
|
278
|
+
# run ruby with -d to see SOAP wiredumps.
|
279
|
+
obj.wiredump_dev = STDERR if $DEBUG
|
280
|
+
|
281
|
+
# SYNOPSIS
|
282
|
+
# GenerateAccessKey(parameters)
|
283
|
+
#
|
284
|
+
# ARGS
|
285
|
+
# parameters GenerateAccessKey - {http://tempuri.org/}GenerateAccessKey
|
286
|
+
#
|
287
|
+
# RETURNS
|
288
|
+
# parameters GenerateAccessKeyResponse - {http://tempuri.org/}GenerateAccessKeyResponse
|
289
|
+
#
|
290
|
+
parameters = nil
|
291
|
+
puts obj.generateAccessKey(parameters)
|
292
|
+
|
293
|
+
# SYNOPSIS
|
294
|
+
# GetNewManifestNumber(parameters)
|
295
|
+
#
|
296
|
+
# ARGS
|
297
|
+
# parameters GetNewManifestNumber - {http://tempuri.org/}GetNewManifestNumber
|
298
|
+
#
|
299
|
+
# RETURNS
|
300
|
+
# parameters GetNewManifestNumberResponse - {http://tempuri.org/}GetNewManifestNumberResponse
|
301
|
+
#
|
302
|
+
parameters = nil
|
303
|
+
puts obj.getNewManifestNumber(parameters)
|
304
|
+
|
305
|
+
# SYNOPSIS
|
306
|
+
# GetReferenceNumber(parameters)
|
307
|
+
#
|
308
|
+
# ARGS
|
309
|
+
# parameters GetReferenceNumber - {http://tempuri.org/}GetReferenceNumber
|
310
|
+
#
|
311
|
+
# RETURNS
|
312
|
+
# parameters GetReferenceNumberResponse - {http://tempuri.org/}GetReferenceNumberResponse
|
313
|
+
#
|
314
|
+
parameters = nil
|
315
|
+
puts obj.getReferenceNumber(parameters)
|
316
|
+
|
317
|
+
# SYNOPSIS
|
318
|
+
# GetG4SIPickupLocationList(parameters)
|
319
|
+
#
|
320
|
+
# ARGS
|
321
|
+
# parameters GetG4SIPickupLocationList - {http://tempuri.org/}GetG4SIPickupLocationList
|
322
|
+
#
|
323
|
+
# RETURNS
|
324
|
+
# parameters GetG4SIPickupLocationListResponse - {http://tempuri.org/}GetG4SIPickupLocationListResponse
|
325
|
+
#
|
326
|
+
parameters = nil
|
327
|
+
puts obj.getG4SIPickupLocationList(parameters)
|
328
|
+
|
329
|
+
# SYNOPSIS
|
330
|
+
# GetG4SICODCollectTypeList(parameters)
|
331
|
+
#
|
332
|
+
# ARGS
|
333
|
+
# parameters GetG4SICODCollectTypeList - {http://tempuri.org/}GetG4SICODCollectTypeList
|
334
|
+
#
|
335
|
+
# RETURNS
|
336
|
+
# parameters GetG4SICODCollectTypeListResponse - {http://tempuri.org/}GetG4SICODCollectTypeListResponse
|
337
|
+
#
|
338
|
+
parameters = nil
|
339
|
+
puts obj.getG4SICODCollectTypeList(parameters)
|
340
|
+
|
341
|
+
# SYNOPSIS
|
342
|
+
# GetG4SICurrencies(parameters)
|
343
|
+
#
|
344
|
+
# ARGS
|
345
|
+
# parameters GetG4SICurrencies - {http://tempuri.org/}GetG4SICurrencies
|
346
|
+
#
|
347
|
+
# RETURNS
|
348
|
+
# parameters GetG4SICurrenciesResponse - {http://tempuri.org/}GetG4SICurrenciesResponse
|
349
|
+
#
|
350
|
+
parameters = nil
|
351
|
+
puts obj.getG4SICurrencies(parameters)
|
352
|
+
|
353
|
+
# SYNOPSIS
|
354
|
+
# CompressedBytesToString(parameters)
|
355
|
+
#
|
356
|
+
# ARGS
|
357
|
+
# parameters CompressedBytesToString - {http://tempuri.org/}CompressedBytesToString
|
358
|
+
#
|
359
|
+
# RETURNS
|
360
|
+
# parameters CompressedBytesToStringResponse - {http://tempuri.org/}CompressedBytesToStringResponse
|
361
|
+
#
|
362
|
+
parameters = nil
|
363
|
+
puts obj.compressedBytesToString(parameters)
|
364
|
+
|
365
|
+
# SYNOPSIS
|
366
|
+
# StringToCompressedBytes(parameters)
|
367
|
+
#
|
368
|
+
# ARGS
|
369
|
+
# parameters StringToCompressedBytes - {http://tempuri.org/}StringToCompressedBytes
|
370
|
+
#
|
371
|
+
# RETURNS
|
372
|
+
# parameters StringToCompressedBytesResponse - {http://tempuri.org/}StringToCompressedBytesResponse
|
373
|
+
#
|
374
|
+
parameters = nil
|
375
|
+
puts obj.stringToCompressedBytes(parameters)
|
376
|
+
|
377
|
+
# SYNOPSIS
|
378
|
+
# Login(parameters)
|
379
|
+
#
|
380
|
+
# ARGS
|
381
|
+
# parameters Login - {http://tempuri.org/}Login
|
382
|
+
#
|
383
|
+
# RETURNS
|
384
|
+
# parameters LoginResponse - {http://tempuri.org/}LoginResponse
|
385
|
+
#
|
386
|
+
parameters = nil
|
387
|
+
puts obj.login(parameters)
|
388
|
+
|
389
|
+
# SYNOPSIS
|
390
|
+
# GetAllCountries(parameters)
|
391
|
+
#
|
392
|
+
# ARGS
|
393
|
+
# parameters GetAllCountries - {http://tempuri.org/}GetAllCountries
|
394
|
+
#
|
395
|
+
# RETURNS
|
396
|
+
# parameters GetAllCountriesResponse - {http://tempuri.org/}GetAllCountriesResponse
|
397
|
+
#
|
398
|
+
parameters = nil
|
399
|
+
puts obj.getAllCountries(parameters)
|
400
|
+
|
401
|
+
# SYNOPSIS
|
402
|
+
# GetServiceLevelsByZip(parameters)
|
403
|
+
#
|
404
|
+
# ARGS
|
405
|
+
# parameters GetServiceLevelsByZip - {http://tempuri.org/}GetServiceLevelsByZip
|
406
|
+
#
|
407
|
+
# RETURNS
|
408
|
+
# parameters GetServiceLevelsByZipResponse - {http://tempuri.org/}GetServiceLevelsByZipResponse
|
409
|
+
#
|
410
|
+
parameters = nil
|
411
|
+
puts obj.getServiceLevelsByZip(parameters)
|
412
|
+
|
413
|
+
# SYNOPSIS
|
414
|
+
# GetSrvcLvls(parameters)
|
415
|
+
#
|
416
|
+
# ARGS
|
417
|
+
# parameters GetSrvcLvls - {http://tempuri.org/}GetSrvcLvls
|
418
|
+
#
|
419
|
+
# RETURNS
|
420
|
+
# parameters GetSrvcLvlsResponse - {http://tempuri.org/}GetSrvcLvlsResponse
|
421
|
+
#
|
422
|
+
parameters = nil
|
423
|
+
puts obj.getSrvcLvls(parameters)
|
424
|
+
|
425
|
+
# SYNOPSIS
|
426
|
+
# GetSrvcLvlByShipersCountryAndZip(parameters)
|
427
|
+
#
|
428
|
+
# ARGS
|
429
|
+
# parameters GetSrvcLvlByShipersCountryAndZip - {http://tempuri.org/}GetSrvcLvlByShipersCountryAndZip
|
430
|
+
#
|
431
|
+
# RETURNS
|
432
|
+
# parameters GetSrvcLvlByShipersCountryAndZipResponse - {http://tempuri.org/}GetSrvcLvlByShipersCountryAndZipResponse
|
433
|
+
#
|
434
|
+
parameters = nil
|
435
|
+
puts obj.getSrvcLvlByShipersCountryAndZip(parameters)
|
436
|
+
|
437
|
+
# SYNOPSIS
|
438
|
+
# GetCarriersList(parameters)
|
439
|
+
#
|
440
|
+
# ARGS
|
441
|
+
# parameters GetCarriersList - {http://tempuri.org/}GetCarriersList
|
442
|
+
#
|
443
|
+
# RETURNS
|
444
|
+
# parameters GetCarriersListResponse - {http://tempuri.org/}GetCarriersListResponse
|
445
|
+
#
|
446
|
+
parameters = nil
|
447
|
+
puts obj.getCarriersList(parameters)
|
448
|
+
|
449
|
+
# SYNOPSIS
|
450
|
+
# GetPackageTypes(parameters)
|
451
|
+
#
|
452
|
+
# ARGS
|
453
|
+
# parameters GetPackageTypes - {http://tempuri.org/}GetPackageTypes
|
454
|
+
#
|
455
|
+
# RETURNS
|
456
|
+
# parameters GetPackageTypesResponse - {http://tempuri.org/}GetPackageTypesResponse
|
457
|
+
#
|
458
|
+
parameters = nil
|
459
|
+
puts obj.getPackageTypes(parameters)
|
460
|
+
|
461
|
+
# SYNOPSIS
|
462
|
+
# GetStatesByCountry(parameters)
|
463
|
+
#
|
464
|
+
# ARGS
|
465
|
+
# parameters GetStatesByCountry - {http://tempuri.org/}GetStatesByCountry
|
466
|
+
#
|
467
|
+
# RETURNS
|
468
|
+
# parameters GetStatesByCountryResponse - {http://tempuri.org/}GetStatesByCountryResponse
|
469
|
+
#
|
470
|
+
parameters = nil
|
471
|
+
puts obj.getStatesByCountry(parameters)
|
472
|
+
|
473
|
+
# SYNOPSIS
|
474
|
+
# GetDimensions(parameters)
|
475
|
+
#
|
476
|
+
# ARGS
|
477
|
+
# parameters GetDimensions - {http://tempuri.org/}GetDimensions
|
478
|
+
#
|
479
|
+
# RETURNS
|
480
|
+
# parameters GetDimensionsResponse - {http://tempuri.org/}GetDimensionsResponse
|
481
|
+
#
|
482
|
+
parameters = nil
|
483
|
+
puts obj.getDimensions(parameters)
|
484
|
+
|
485
|
+
# SYNOPSIS
|
486
|
+
# GetHarmonizedCodes_CountryFrom(parameters)
|
487
|
+
#
|
488
|
+
# ARGS
|
489
|
+
# parameters GetHarmonizedCodes_CountryFrom - {http://tempuri.org/}GetHarmonizedCodes_CountryFrom
|
490
|
+
#
|
491
|
+
# RETURNS
|
492
|
+
# parameters GetHarmonizedCodes_CountryFromResponse - {http://tempuri.org/}GetHarmonizedCodes_CountryFromResponse
|
493
|
+
#
|
494
|
+
parameters = nil
|
495
|
+
puts obj.getHarmonizedCodes_CountryFrom(parameters)
|
496
|
+
|
497
|
+
# SYNOPSIS
|
498
|
+
# GetHarmonizedCodes_CountryFrom_CountryTo(parameters)
|
499
|
+
#
|
500
|
+
# ARGS
|
501
|
+
# parameters GetHarmonizedCodes_CountryFrom_CountryTo - {http://tempuri.org/}GetHarmonizedCodes_CountryFrom_CountryTo
|
502
|
+
#
|
503
|
+
# RETURNS
|
504
|
+
# parameters GetHarmonizedCodes_CountryFrom_CountryToResponse - {http://tempuri.org/}GetHarmonizedCodes_CountryFrom_CountryToResponse
|
505
|
+
#
|
506
|
+
parameters = nil
|
507
|
+
puts obj.getHarmonizedCodes_CountryFrom_CountryTo(parameters)
|
508
|
+
|
509
|
+
# SYNOPSIS
|
510
|
+
# GetCommodityMeasurmentsPerCarrier(parameters)
|
511
|
+
#
|
512
|
+
# ARGS
|
513
|
+
# parameters GetCommodityMeasurmentsPerCarrier - {http://tempuri.org/}GetCommodityMeasurmentsPerCarrier
|
514
|
+
#
|
515
|
+
# RETURNS
|
516
|
+
# parameters GetCommodityMeasurmentsPerCarrierResponse - {http://tempuri.org/}GetCommodityMeasurmentsPerCarrierResponse
|
517
|
+
#
|
518
|
+
parameters = nil
|
519
|
+
puts obj.getCommodityMeasurmentsPerCarrier(parameters)
|
520
|
+
|
521
|
+
# SYNOPSIS
|
522
|
+
# GetCarrierAcctInfo(parameters)
|
523
|
+
#
|
524
|
+
# ARGS
|
525
|
+
# parameters GetCarrierAcctInfo - {http://tempuri.org/}GetCarrierAcctInfo
|
526
|
+
#
|
527
|
+
# RETURNS
|
528
|
+
# parameters GetCarrierAcctInfoResponse - {http://tempuri.org/}GetCarrierAcctInfoResponse
|
529
|
+
#
|
530
|
+
parameters = nil
|
531
|
+
puts obj.getCarrierAcctInfo(parameters)
|
532
|
+
|
533
|
+
# SYNOPSIS
|
534
|
+
# GetUserInfo(parameters)
|
535
|
+
#
|
536
|
+
# ARGS
|
537
|
+
# parameters GetUserInfo - {http://tempuri.org/}GetUserInfo
|
538
|
+
#
|
539
|
+
# RETURNS
|
540
|
+
# parameters GetUserInfoResponse - {http://tempuri.org/}GetUserInfoResponse
|
541
|
+
#
|
542
|
+
parameters = nil
|
543
|
+
puts obj.getUserInfo(parameters)
|
544
|
+
|
545
|
+
|