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,517 @@
|
|
1
|
+
require 'xsd/qname'
|
2
|
+
|
3
|
+
# {http://tempuri.org/}AccessKeyResponse
|
4
|
+
# accessKey - SOAP::SOAPString
|
5
|
+
# errorCode - SOAP::SOAPString
|
6
|
+
# errorMessage - SOAP::SOAPString
|
7
|
+
class AccessKeyResponse
|
8
|
+
attr_accessor :accessKey
|
9
|
+
attr_accessor :errorCode
|
10
|
+
attr_accessor :errorMessage
|
11
|
+
|
12
|
+
def initialize(accessKey = nil, errorCode = nil, errorMessage = nil)
|
13
|
+
@accessKey = accessKey
|
14
|
+
@errorCode = errorCode
|
15
|
+
@errorMessage = errorMessage
|
16
|
+
end
|
17
|
+
end
|
18
|
+
|
19
|
+
# {http://tempuri.org/}AccessKeyRequest
|
20
|
+
# userName - SOAP::SOAPString
|
21
|
+
# password - SOAP::SOAPString
|
22
|
+
# companyZipCode - SOAP::SOAPString
|
23
|
+
# companyCityName - SOAP::SOAPString
|
24
|
+
class AccessKeyRequest
|
25
|
+
attr_accessor :userName
|
26
|
+
attr_accessor :password
|
27
|
+
attr_accessor :companyZipCode
|
28
|
+
attr_accessor :companyCityName
|
29
|
+
|
30
|
+
def initialize(userName = nil, password = nil, companyZipCode = nil, companyCityName = nil)
|
31
|
+
@userName = userName
|
32
|
+
@password = password
|
33
|
+
@companyZipCode = companyZipCode
|
34
|
+
@companyCityName = companyCityName
|
35
|
+
end
|
36
|
+
end
|
37
|
+
|
38
|
+
# {http://tempuri.org/}G4SIAuthentication
|
39
|
+
# username - SOAP::SOAPString
|
40
|
+
# password - SOAP::SOAPString
|
41
|
+
# accessKey - SOAP::SOAPString
|
42
|
+
class G4SIAuthentication
|
43
|
+
attr_accessor :username
|
44
|
+
attr_accessor :password
|
45
|
+
attr_accessor :accessKey
|
46
|
+
|
47
|
+
def initialize(username = nil, password = nil, accessKey = nil)
|
48
|
+
@username = username
|
49
|
+
@password = password
|
50
|
+
@accessKey = accessKey
|
51
|
+
end
|
52
|
+
end
|
53
|
+
|
54
|
+
# {http://tempuri.org/}IPSResponse
|
55
|
+
# result - ArrayOfAnyType
|
56
|
+
# errors - IPSErrors
|
57
|
+
class IPSResponse
|
58
|
+
attr_accessor :result
|
59
|
+
attr_accessor :errors
|
60
|
+
|
61
|
+
def initialize(result = nil, errors = nil)
|
62
|
+
@result = result
|
63
|
+
@errors = errors
|
64
|
+
end
|
65
|
+
end
|
66
|
+
|
67
|
+
# {http://tempuri.org/}ArrayOfAnyType
|
68
|
+
class ArrayOfAnyType < ::Array
|
69
|
+
end
|
70
|
+
|
71
|
+
# {http://tempuri.org/}IPSErrors
|
72
|
+
# errorCode - SOAP::SOAPString
|
73
|
+
# errorDescription - SOAP::SOAPString
|
74
|
+
# status - SOAP::SOAPBoolean
|
75
|
+
# innerException - SOAP::SOAPString
|
76
|
+
class IPSErrors
|
77
|
+
attr_accessor :errorCode
|
78
|
+
attr_accessor :errorDescription
|
79
|
+
attr_accessor :status
|
80
|
+
attr_accessor :innerException
|
81
|
+
|
82
|
+
def initialize(errorCode = nil, errorDescription = nil, status = nil, innerException = nil)
|
83
|
+
@errorCode = errorCode
|
84
|
+
@errorDescription = errorDescription
|
85
|
+
@status = status
|
86
|
+
@innerException = innerException
|
87
|
+
end
|
88
|
+
end
|
89
|
+
|
90
|
+
# {http://tempuri.org/}Countries
|
91
|
+
# countryCode - SOAP::SOAPString
|
92
|
+
# countryName - SOAP::SOAPString
|
93
|
+
class Countries
|
94
|
+
attr_accessor :countryCode
|
95
|
+
attr_accessor :countryName
|
96
|
+
|
97
|
+
def initialize(countryCode = nil, countryName = nil)
|
98
|
+
@countryCode = countryCode
|
99
|
+
@countryName = countryName
|
100
|
+
end
|
101
|
+
end
|
102
|
+
|
103
|
+
# {http://tempuri.org/}GenerateAccessKey
|
104
|
+
class GenerateAccessKey
|
105
|
+
def initialize
|
106
|
+
end
|
107
|
+
end
|
108
|
+
|
109
|
+
# {http://tempuri.org/}GenerateAccessKeyResponse
|
110
|
+
# generateAccessKeyResult - AccessKeyResponse
|
111
|
+
class GenerateAccessKeyResponse
|
112
|
+
attr_accessor :generateAccessKeyResult
|
113
|
+
|
114
|
+
def initialize(generateAccessKeyResult = nil)
|
115
|
+
@generateAccessKeyResult = generateAccessKeyResult
|
116
|
+
end
|
117
|
+
end
|
118
|
+
|
119
|
+
# {http://tempuri.org/}GetNewManifestNumber
|
120
|
+
class GetNewManifestNumber
|
121
|
+
def initialize
|
122
|
+
end
|
123
|
+
end
|
124
|
+
|
125
|
+
# {http://tempuri.org/}GetNewManifestNumberResponse
|
126
|
+
# getNewManifestNumberResult - SOAP::SOAPBase64
|
127
|
+
class GetNewManifestNumberResponse
|
128
|
+
attr_accessor :getNewManifestNumberResult
|
129
|
+
|
130
|
+
def initialize(getNewManifestNumberResult = nil)
|
131
|
+
@getNewManifestNumberResult = getNewManifestNumberResult
|
132
|
+
end
|
133
|
+
end
|
134
|
+
|
135
|
+
# {http://tempuri.org/}GetReferenceNumber
|
136
|
+
# custAcctNumber - SOAP::SOAPBase64
|
137
|
+
# declaredValue - SOAP::SOAPBase64
|
138
|
+
# manifestNumber - SOAP::SOAPBase64
|
139
|
+
class GetReferenceNumber
|
140
|
+
attr_accessor :custAcctNumber
|
141
|
+
attr_accessor :declaredValue
|
142
|
+
attr_accessor :manifestNumber
|
143
|
+
|
144
|
+
def initialize(custAcctNumber = nil, declaredValue = nil, manifestNumber = nil)
|
145
|
+
@custAcctNumber = custAcctNumber
|
146
|
+
@declaredValue = declaredValue
|
147
|
+
@manifestNumber = manifestNumber
|
148
|
+
end
|
149
|
+
end
|
150
|
+
|
151
|
+
# {http://tempuri.org/}GetReferenceNumberResponse
|
152
|
+
# getReferenceNumberResult - SOAP::SOAPBase64
|
153
|
+
class GetReferenceNumberResponse
|
154
|
+
attr_accessor :getReferenceNumberResult
|
155
|
+
|
156
|
+
def initialize(getReferenceNumberResult = nil)
|
157
|
+
@getReferenceNumberResult = getReferenceNumberResult
|
158
|
+
end
|
159
|
+
end
|
160
|
+
|
161
|
+
# {http://tempuri.org/}GetG4SIPickupLocationList
|
162
|
+
class GetG4SIPickupLocationList
|
163
|
+
def initialize
|
164
|
+
end
|
165
|
+
end
|
166
|
+
|
167
|
+
# {http://tempuri.org/}GetG4SIPickupLocationListResponse
|
168
|
+
# getG4SIPickupLocationListResult - SOAP::SOAPBase64
|
169
|
+
class GetG4SIPickupLocationListResponse
|
170
|
+
attr_accessor :getG4SIPickupLocationListResult
|
171
|
+
|
172
|
+
def initialize(getG4SIPickupLocationListResult = nil)
|
173
|
+
@getG4SIPickupLocationListResult = getG4SIPickupLocationListResult
|
174
|
+
end
|
175
|
+
end
|
176
|
+
|
177
|
+
# {http://tempuri.org/}GetG4SICODCollectTypeList
|
178
|
+
class GetG4SICODCollectTypeList
|
179
|
+
def initialize
|
180
|
+
end
|
181
|
+
end
|
182
|
+
|
183
|
+
# {http://tempuri.org/}GetG4SICODCollectTypeListResponse
|
184
|
+
# getG4SICODCollectTypeListResult - SOAP::SOAPBase64
|
185
|
+
class GetG4SICODCollectTypeListResponse
|
186
|
+
attr_accessor :getG4SICODCollectTypeListResult
|
187
|
+
|
188
|
+
def initialize(getG4SICODCollectTypeListResult = nil)
|
189
|
+
@getG4SICODCollectTypeListResult = getG4SICODCollectTypeListResult
|
190
|
+
end
|
191
|
+
end
|
192
|
+
|
193
|
+
# {http://tempuri.org/}GetG4SICurrencies
|
194
|
+
class GetG4SICurrencies
|
195
|
+
def initialize
|
196
|
+
end
|
197
|
+
end
|
198
|
+
|
199
|
+
# {http://tempuri.org/}GetG4SICurrenciesResponse
|
200
|
+
# getG4SICurrenciesResult - SOAP::SOAPBase64
|
201
|
+
class GetG4SICurrenciesResponse
|
202
|
+
attr_accessor :getG4SICurrenciesResult
|
203
|
+
|
204
|
+
def initialize(getG4SICurrenciesResult = nil)
|
205
|
+
@getG4SICurrenciesResult = getG4SICurrenciesResult
|
206
|
+
end
|
207
|
+
end
|
208
|
+
|
209
|
+
# {http://tempuri.org/}CompressedBytesToString
|
210
|
+
# compressedBytes - SOAP::SOAPBase64
|
211
|
+
class CompressedBytesToString
|
212
|
+
attr_accessor :compressedBytes
|
213
|
+
|
214
|
+
def initialize(compressedBytes = nil)
|
215
|
+
@compressedBytes = compressedBytes
|
216
|
+
end
|
217
|
+
end
|
218
|
+
|
219
|
+
# {http://tempuri.org/}CompressedBytesToStringResponse
|
220
|
+
# compressedBytesToStringResult - SOAP::SOAPString
|
221
|
+
class CompressedBytesToStringResponse
|
222
|
+
attr_accessor :compressedBytesToStringResult
|
223
|
+
|
224
|
+
def initialize(compressedBytesToStringResult = nil)
|
225
|
+
@compressedBytesToStringResult = compressedBytesToStringResult
|
226
|
+
end
|
227
|
+
end
|
228
|
+
|
229
|
+
# {http://tempuri.org/}StringToCompressedBytes
|
230
|
+
# inputString - SOAP::SOAPString
|
231
|
+
class StringToCompressedBytes
|
232
|
+
attr_accessor :inputString
|
233
|
+
|
234
|
+
def initialize(inputString = nil)
|
235
|
+
@inputString = inputString
|
236
|
+
end
|
237
|
+
end
|
238
|
+
|
239
|
+
# {http://tempuri.org/}StringToCompressedBytesResponse
|
240
|
+
# stringToCompressedBytesResult - SOAP::SOAPBase64
|
241
|
+
class StringToCompressedBytesResponse
|
242
|
+
attr_accessor :stringToCompressedBytesResult
|
243
|
+
|
244
|
+
def initialize(stringToCompressedBytesResult = nil)
|
245
|
+
@stringToCompressedBytesResult = stringToCompressedBytesResult
|
246
|
+
end
|
247
|
+
end
|
248
|
+
|
249
|
+
# {http://tempuri.org/}Login
|
250
|
+
class Login
|
251
|
+
def initialize
|
252
|
+
end
|
253
|
+
end
|
254
|
+
|
255
|
+
# {http://tempuri.org/}LoginResponse
|
256
|
+
# loginResult - SOAP::SOAPBase64
|
257
|
+
class LoginResponse
|
258
|
+
attr_accessor :loginResult
|
259
|
+
|
260
|
+
def initialize(loginResult = nil)
|
261
|
+
@loginResult = loginResult
|
262
|
+
end
|
263
|
+
end
|
264
|
+
|
265
|
+
# {http://tempuri.org/}GetAllCountries
|
266
|
+
class GetAllCountries
|
267
|
+
def initialize
|
268
|
+
end
|
269
|
+
end
|
270
|
+
|
271
|
+
# {http://tempuri.org/}GetAllCountriesResponse
|
272
|
+
# getAllCountriesResult - IPSResponse
|
273
|
+
class GetAllCountriesResponse
|
274
|
+
attr_accessor :getAllCountriesResult
|
275
|
+
|
276
|
+
def initialize(getAllCountriesResult = nil)
|
277
|
+
@getAllCountriesResult = getAllCountriesResult
|
278
|
+
end
|
279
|
+
end
|
280
|
+
|
281
|
+
# {http://tempuri.org/}GetServiceLevelsByZip
|
282
|
+
# receiverZipCode - SOAP::SOAPBase64
|
283
|
+
# receiverCountryCode - SOAP::SOAPBase64
|
284
|
+
# currency - SOAP::SOAPBase64
|
285
|
+
# originCountryCode - SOAP::SOAPBase64
|
286
|
+
class GetServiceLevelsByZip
|
287
|
+
attr_accessor :receiverZipCode
|
288
|
+
attr_accessor :receiverCountryCode
|
289
|
+
attr_accessor :currency
|
290
|
+
attr_accessor :originCountryCode
|
291
|
+
|
292
|
+
def initialize(receiverZipCode = nil, receiverCountryCode = nil, currency = nil, originCountryCode = nil)
|
293
|
+
@receiverZipCode = receiverZipCode
|
294
|
+
@receiverCountryCode = receiverCountryCode
|
295
|
+
@currency = currency
|
296
|
+
@originCountryCode = originCountryCode
|
297
|
+
end
|
298
|
+
end
|
299
|
+
|
300
|
+
# {http://tempuri.org/}GetServiceLevelsByZipResponse
|
301
|
+
# getServiceLevelsByZipResult - SOAP::SOAPBase64
|
302
|
+
class GetServiceLevelsByZipResponse
|
303
|
+
attr_accessor :getServiceLevelsByZipResult
|
304
|
+
|
305
|
+
def initialize(getServiceLevelsByZipResult = nil)
|
306
|
+
@getServiceLevelsByZipResult = getServiceLevelsByZipResult
|
307
|
+
end
|
308
|
+
end
|
309
|
+
|
310
|
+
# {http://tempuri.org/}GetSrvcLvls
|
311
|
+
class GetSrvcLvls
|
312
|
+
def initialize
|
313
|
+
end
|
314
|
+
end
|
315
|
+
|
316
|
+
# {http://tempuri.org/}GetSrvcLvlsResponse
|
317
|
+
# getSrvcLvlsResult - SOAP::SOAPBase64
|
318
|
+
class GetSrvcLvlsResponse
|
319
|
+
attr_accessor :getSrvcLvlsResult
|
320
|
+
|
321
|
+
def initialize(getSrvcLvlsResult = nil)
|
322
|
+
@getSrvcLvlsResult = getSrvcLvlsResult
|
323
|
+
end
|
324
|
+
end
|
325
|
+
|
326
|
+
# {http://tempuri.org/}GetSrvcLvlByShipersCountryAndZip
|
327
|
+
# countryCode - SOAP::SOAPBase64
|
328
|
+
class GetSrvcLvlByShipersCountryAndZip
|
329
|
+
attr_accessor :countryCode
|
330
|
+
|
331
|
+
def initialize(countryCode = nil)
|
332
|
+
@countryCode = countryCode
|
333
|
+
end
|
334
|
+
end
|
335
|
+
|
336
|
+
# {http://tempuri.org/}GetSrvcLvlByShipersCountryAndZipResponse
|
337
|
+
# getSrvcLvlByShipersCountryAndZipResult - SOAP::SOAPBase64
|
338
|
+
class GetSrvcLvlByShipersCountryAndZipResponse
|
339
|
+
attr_accessor :getSrvcLvlByShipersCountryAndZipResult
|
340
|
+
|
341
|
+
def initialize(getSrvcLvlByShipersCountryAndZipResult = nil)
|
342
|
+
@getSrvcLvlByShipersCountryAndZipResult = getSrvcLvlByShipersCountryAndZipResult
|
343
|
+
end
|
344
|
+
end
|
345
|
+
|
346
|
+
# {http://tempuri.org/}GetCarriersList
|
347
|
+
class GetCarriersList
|
348
|
+
def initialize
|
349
|
+
end
|
350
|
+
end
|
351
|
+
|
352
|
+
# {http://tempuri.org/}GetCarriersListResponse
|
353
|
+
# getCarriersListResult - SOAP::SOAPBase64
|
354
|
+
class GetCarriersListResponse
|
355
|
+
attr_accessor :getCarriersListResult
|
356
|
+
|
357
|
+
def initialize(getCarriersListResult = nil)
|
358
|
+
@getCarriersListResult = getCarriersListResult
|
359
|
+
end
|
360
|
+
end
|
361
|
+
|
362
|
+
# {http://tempuri.org/}GetPackageTypes
|
363
|
+
class GetPackageTypes
|
364
|
+
def initialize
|
365
|
+
end
|
366
|
+
end
|
367
|
+
|
368
|
+
# {http://tempuri.org/}GetPackageTypesResponse
|
369
|
+
# getPackageTypesResult - SOAP::SOAPBase64
|
370
|
+
class GetPackageTypesResponse
|
371
|
+
attr_accessor :getPackageTypesResult
|
372
|
+
|
373
|
+
def initialize(getPackageTypesResult = nil)
|
374
|
+
@getPackageTypesResult = getPackageTypesResult
|
375
|
+
end
|
376
|
+
end
|
377
|
+
|
378
|
+
# {http://tempuri.org/}GetStatesByCountry
|
379
|
+
# countryCode - SOAP::SOAPBase64
|
380
|
+
class GetStatesByCountry
|
381
|
+
attr_accessor :countryCode
|
382
|
+
|
383
|
+
def initialize(countryCode = nil)
|
384
|
+
@countryCode = countryCode
|
385
|
+
end
|
386
|
+
end
|
387
|
+
|
388
|
+
# {http://tempuri.org/}GetStatesByCountryResponse
|
389
|
+
# getStatesByCountryResult - SOAP::SOAPBase64
|
390
|
+
class GetStatesByCountryResponse
|
391
|
+
attr_accessor :getStatesByCountryResult
|
392
|
+
|
393
|
+
def initialize(getStatesByCountryResult = nil)
|
394
|
+
@getStatesByCountryResult = getStatesByCountryResult
|
395
|
+
end
|
396
|
+
end
|
397
|
+
|
398
|
+
# {http://tempuri.org/}GetDimensions
|
399
|
+
class GetDimensions
|
400
|
+
def initialize
|
401
|
+
end
|
402
|
+
end
|
403
|
+
|
404
|
+
# {http://tempuri.org/}GetDimensionsResponse
|
405
|
+
# getDimensionsResult - SOAP::SOAPBase64
|
406
|
+
class GetDimensionsResponse
|
407
|
+
attr_accessor :getDimensionsResult
|
408
|
+
|
409
|
+
def initialize(getDimensionsResult = nil)
|
410
|
+
@getDimensionsResult = getDimensionsResult
|
411
|
+
end
|
412
|
+
end
|
413
|
+
|
414
|
+
# {http://tempuri.org/}GetHarmonizedCodes_CountryFrom
|
415
|
+
# countryCode - SOAP::SOAPBase64
|
416
|
+
class GetHarmonizedCodes_CountryFrom
|
417
|
+
attr_accessor :countryCode
|
418
|
+
|
419
|
+
def initialize(countryCode = nil)
|
420
|
+
@countryCode = countryCode
|
421
|
+
end
|
422
|
+
end
|
423
|
+
|
424
|
+
# {http://tempuri.org/}GetHarmonizedCodes_CountryFromResponse
|
425
|
+
# getHarmonizedCodes_CountryFromResult - SOAP::SOAPBase64
|
426
|
+
class GetHarmonizedCodes_CountryFromResponse
|
427
|
+
attr_accessor :getHarmonizedCodes_CountryFromResult
|
428
|
+
|
429
|
+
def initialize(getHarmonizedCodes_CountryFromResult = nil)
|
430
|
+
@getHarmonizedCodes_CountryFromResult = getHarmonizedCodes_CountryFromResult
|
431
|
+
end
|
432
|
+
end
|
433
|
+
|
434
|
+
# {http://tempuri.org/}GetHarmonizedCodes_CountryFrom_CountryTo
|
435
|
+
# countryFromCode - SOAP::SOAPBase64
|
436
|
+
# countryToCode - SOAP::SOAPBase64
|
437
|
+
class GetHarmonizedCodes_CountryFrom_CountryTo
|
438
|
+
attr_accessor :countryFromCode
|
439
|
+
attr_accessor :countryToCode
|
440
|
+
|
441
|
+
def initialize(countryFromCode = nil, countryToCode = nil)
|
442
|
+
@countryFromCode = countryFromCode
|
443
|
+
@countryToCode = countryToCode
|
444
|
+
end
|
445
|
+
end
|
446
|
+
|
447
|
+
# {http://tempuri.org/}GetHarmonizedCodes_CountryFrom_CountryToResponse
|
448
|
+
# getHarmonizedCodes_CountryFrom_CountryToResult - SOAP::SOAPBase64
|
449
|
+
class GetHarmonizedCodes_CountryFrom_CountryToResponse
|
450
|
+
attr_accessor :getHarmonizedCodes_CountryFrom_CountryToResult
|
451
|
+
|
452
|
+
def initialize(getHarmonizedCodes_CountryFrom_CountryToResult = nil)
|
453
|
+
@getHarmonizedCodes_CountryFrom_CountryToResult = getHarmonizedCodes_CountryFrom_CountryToResult
|
454
|
+
end
|
455
|
+
end
|
456
|
+
|
457
|
+
# {http://tempuri.org/}GetCommodityMeasurmentsPerCarrier
|
458
|
+
# carrierName - SOAP::SOAPString
|
459
|
+
class GetCommodityMeasurmentsPerCarrier
|
460
|
+
attr_accessor :carrierName
|
461
|
+
|
462
|
+
def initialize(carrierName = nil)
|
463
|
+
@carrierName = carrierName
|
464
|
+
end
|
465
|
+
end
|
466
|
+
|
467
|
+
# {http://tempuri.org/}GetCommodityMeasurmentsPerCarrierResponse
|
468
|
+
# getCommodityMeasurmentsPerCarrierResult - SOAP::SOAPBase64
|
469
|
+
class GetCommodityMeasurmentsPerCarrierResponse
|
470
|
+
attr_accessor :getCommodityMeasurmentsPerCarrierResult
|
471
|
+
|
472
|
+
def initialize(getCommodityMeasurmentsPerCarrierResult = nil)
|
473
|
+
@getCommodityMeasurmentsPerCarrierResult = getCommodityMeasurmentsPerCarrierResult
|
474
|
+
end
|
475
|
+
end
|
476
|
+
|
477
|
+
# {http://tempuri.org/}GetCarrierAcctInfo
|
478
|
+
# carrierName - SOAP::SOAPBase64
|
479
|
+
# userInfoXML - SOAP::SOAPBase64
|
480
|
+
# billFreightTo - SOAP::SOAPBase64
|
481
|
+
class GetCarrierAcctInfo
|
482
|
+
attr_accessor :carrierName
|
483
|
+
attr_accessor :userInfoXML
|
484
|
+
attr_accessor :billFreightTo
|
485
|
+
|
486
|
+
def initialize(carrierName = nil, userInfoXML = nil, billFreightTo = nil)
|
487
|
+
@carrierName = carrierName
|
488
|
+
@userInfoXML = userInfoXML
|
489
|
+
@billFreightTo = billFreightTo
|
490
|
+
end
|
491
|
+
end
|
492
|
+
|
493
|
+
# {http://tempuri.org/}GetCarrierAcctInfoResponse
|
494
|
+
# getCarrierAcctInfoResult - SOAP::SOAPBase64
|
495
|
+
class GetCarrierAcctInfoResponse
|
496
|
+
attr_accessor :getCarrierAcctInfoResult
|
497
|
+
|
498
|
+
def initialize(getCarrierAcctInfoResult = nil)
|
499
|
+
@getCarrierAcctInfoResult = getCarrierAcctInfoResult
|
500
|
+
end
|
501
|
+
end
|
502
|
+
|
503
|
+
# {http://tempuri.org/}GetUserInfo
|
504
|
+
class GetUserInfo
|
505
|
+
def initialize
|
506
|
+
end
|
507
|
+
end
|
508
|
+
|
509
|
+
# {http://tempuri.org/}GetUserInfoResponse
|
510
|
+
# getUserInfoResult - SOAP::SOAPBase64
|
511
|
+
class GetUserInfoResponse
|
512
|
+
attr_accessor :getUserInfoResult
|
513
|
+
|
514
|
+
def initialize(getUserInfoResult = nil)
|
515
|
+
@getUserInfoResult = getUserInfoResult
|
516
|
+
end
|
517
|
+
end
|