g4s_client 0.1.2 → 0.1.4

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.
@@ -1,831 +1,836 @@
1
+ #puts "REQUIRING: #{Dir[__FILE__]}"
2
+
1
3
  require 'xsd/qname'
2
4
 
3
- # {http://tempuri.org/}ShipmentTrackingResponse
4
- # trackingResponse - TrackingResponse
5
- # trackingResponseErrorCode - SOAP::SOAPString
6
- # trackingResponseError - SOAP::SOAPString
7
- class ShipmentTrackingResponse
8
- attr_accessor :trackingResponse
9
- attr_accessor :trackingResponseErrorCode
10
- attr_accessor :trackingResponseError
11
-
12
- def initialize(trackingResponse = nil, trackingResponseErrorCode = nil, trackingResponseError = nil)
13
- @trackingResponse = trackingResponse
14
- @trackingResponseErrorCode = trackingResponseErrorCode
15
- @trackingResponseError = trackingResponseError
16
- end
17
- end
18
-
19
- # {http://tempuri.org/}ShipmentRequest
20
- # commodityCollection - ArrayOfCommodityList
21
- # carrierName - SOAP::SOAPString
22
- # shipmentDate - SOAP::SOAPDateTime
23
- # billFreightTo - SOAP::SOAPString
24
- # serviceLevelName - SOAP::SOAPString
25
- # packageTypeName - SOAP::SOAPString
26
- # declaredWeight - SOAP::SOAPDouble
27
- # declareValue - SOAP::SOAPDouble
28
- # weightType - SOAP::SOAPString
29
- # description - SOAP::SOAPString
30
- # dimensions - SOAP::SOAPString
31
- # dimensionUnitType - SOAP::SOAPString
32
- # thermalPrinter - SOAP::SOAPBoolean
33
- # sEDNumber - SOAP::SOAPString
34
- # dutiesPayorType - SOAP::SOAPString
35
- # recipientAddress - Address
36
- # saveNewRecipientAddress - SOAP::SOAPBoolean
37
- # shipperAddress - Address
38
- # cODAmount - SOAP::SOAPDouble
39
- # holdAtLocation - SOAP::SOAPBoolean
40
- # schedulePickup - SOAP::SOAPBoolean
41
- # schedulePickupLocation - SchedulePickup
42
- # cODInfo - COD
43
- # holdAtLocationInfo - HoldAtLocation
44
- # purchaseOrderNumber - SOAP::SOAPString
45
- # salesOrderNumber - SOAP::SOAPString
46
- # brokerInfo - BrokerInfo
47
- # recipientShipNotification - SOAP::SOAPBoolean
48
- # receiveAlerts - SOAP::SOAPBoolean
49
- # saturdayDelivery - SOAP::SOAPBoolean
50
- # saturdayPickup - SOAP::SOAPBoolean
51
- # residential - SOAP::SOAPBoolean
52
- # signatureOption - SOAP::SOAPString
53
- # recipientAlertEmail - SOAP::SOAPString
54
- # recipientDeliveryNotification - SOAP::SOAPBoolean
55
- # recipientExceptionNotification - SOAP::SOAPBoolean
56
- # shipperShipNotification - SOAP::SOAPBoolean
57
- # shipperDeliveryNotification - SOAP::SOAPBoolean
58
- # shipperExceptionNotification - SOAP::SOAPBoolean
59
- # restrictedWordsCompliance - SOAP::SOAPBoolean
60
- # trackingNumber - SOAP::SOAPString
61
- class ShipmentRequest
62
- attr_accessor :commodityCollection
63
- attr_accessor :carrierName
64
- attr_accessor :shipmentDate
65
- attr_accessor :billFreightTo
66
- attr_accessor :serviceLevelName
67
- attr_accessor :packageTypeName
68
- attr_accessor :declaredWeight
69
- attr_accessor :declareValue
70
- attr_accessor :weightType
71
- attr_accessor :description
72
- attr_accessor :dimensions
73
- attr_accessor :dimensionUnitType
74
- attr_accessor :thermalPrinter
75
- attr_accessor :sEDNumber
76
- attr_accessor :dutiesPayorType
77
- attr_accessor :recipientAddress
78
- attr_accessor :saveNewRecipientAddress
79
- attr_accessor :shipperAddress
80
- attr_accessor :cODAmount
81
- attr_accessor :holdAtLocation
82
- attr_accessor :schedulePickup
83
- attr_accessor :schedulePickupLocation
84
- attr_accessor :cODInfo
85
- attr_accessor :holdAtLocationInfo
86
- attr_accessor :purchaseOrderNumber
87
- attr_accessor :salesOrderNumber
88
- attr_accessor :brokerInfo
89
- attr_accessor :recipientShipNotification
90
- attr_accessor :receiveAlerts
91
- attr_accessor :saturdayDelivery
92
- attr_accessor :saturdayPickup
93
- attr_accessor :residential
94
- attr_accessor :signatureOption
95
- attr_accessor :recipientAlertEmail
96
- attr_accessor :recipientDeliveryNotification
97
- attr_accessor :recipientExceptionNotification
98
- attr_accessor :shipperShipNotification
99
- attr_accessor :shipperDeliveryNotification
100
- attr_accessor :shipperExceptionNotification
101
- attr_accessor :restrictedWordsCompliance
102
- attr_accessor :trackingNumber
103
-
104
- def initialize(commodityCollection = nil, carrierName = nil, shipmentDate = nil, billFreightTo = nil, serviceLevelName = nil, packageTypeName = nil, declaredWeight = nil, declareValue = nil, weightType = nil, description = nil, dimensions = nil, dimensionUnitType = nil, thermalPrinter = nil, sEDNumber = nil, dutiesPayorType = nil, recipientAddress = nil, saveNewRecipientAddress = nil, shipperAddress = nil, cODAmount = nil, holdAtLocation = nil, schedulePickup = nil, schedulePickupLocation = nil, cODInfo = nil, holdAtLocationInfo = nil, purchaseOrderNumber = nil, salesOrderNumber = nil, brokerInfo = nil, recipientShipNotification = nil, receiveAlerts = nil, saturdayDelivery = nil, saturdayPickup = nil, residential = nil, signatureOption = nil, recipientAlertEmail = nil, recipientDeliveryNotification = nil, recipientExceptionNotification = nil, shipperShipNotification = nil, shipperDeliveryNotification = nil, shipperExceptionNotification = nil, restrictedWordsCompliance = nil, trackingNumber = nil)
105
- @commodityCollection = commodityCollection
106
- @carrierName = carrierName
107
- @shipmentDate = shipmentDate
108
- @billFreightTo = billFreightTo
109
- @serviceLevelName = serviceLevelName
110
- @packageTypeName = packageTypeName
111
- @declaredWeight = declaredWeight
112
- @declareValue = declareValue
113
- @weightType = weightType
114
- @description = description
115
- @dimensions = dimensions
116
- @dimensionUnitType = dimensionUnitType
117
- @thermalPrinter = thermalPrinter
118
- @sEDNumber = sEDNumber
119
- @dutiesPayorType = dutiesPayorType
120
- @recipientAddress = recipientAddress
121
- @saveNewRecipientAddress = saveNewRecipientAddress
122
- @shipperAddress = shipperAddress
123
- @cODAmount = cODAmount
124
- @holdAtLocation = holdAtLocation
125
- @schedulePickup = schedulePickup
126
- @schedulePickupLocation = schedulePickupLocation
127
- @cODInfo = cODInfo
128
- @holdAtLocationInfo = holdAtLocationInfo
129
- @purchaseOrderNumber = purchaseOrderNumber
130
- @salesOrderNumber = salesOrderNumber
131
- @brokerInfo = brokerInfo
132
- @recipientShipNotification = recipientShipNotification
133
- @receiveAlerts = receiveAlerts
134
- @saturdayDelivery = saturdayDelivery
135
- @saturdayPickup = saturdayPickup
136
- @residential = residential
137
- @signatureOption = signatureOption
138
- @recipientAlertEmail = recipientAlertEmail
139
- @recipientDeliveryNotification = recipientDeliveryNotification
140
- @recipientExceptionNotification = recipientExceptionNotification
141
- @shipperShipNotification = shipperShipNotification
142
- @shipperDeliveryNotification = shipperDeliveryNotification
143
- @shipperExceptionNotification = shipperExceptionNotification
144
- @restrictedWordsCompliance = restrictedWordsCompliance
145
- @trackingNumber = trackingNumber
146
- end
147
- end
148
-
149
- # {http://tempuri.org/}TrackingResponse
150
- # commodityCollection - ArrayOfCommodityList
151
- # carrierName - SOAP::SOAPString
152
- # shipmentDate - SOAP::SOAPDateTime
153
- # billFreightTo - SOAP::SOAPString
154
- # serviceLevelName - SOAP::SOAPString
155
- # packageTypeName - SOAP::SOAPString
156
- # declaredWeight - SOAP::SOAPDouble
157
- # declareValue - SOAP::SOAPDouble
158
- # weightType - SOAP::SOAPString
159
- # description - SOAP::SOAPString
160
- # dimensions - SOAP::SOAPString
161
- # dimensionUnitType - SOAP::SOAPString
162
- # thermalPrinter - SOAP::SOAPBoolean
163
- # sEDNumber - SOAP::SOAPString
164
- # dutiesPayorType - SOAP::SOAPString
165
- # recipientAddress - Address
166
- # saveNewRecipientAddress - SOAP::SOAPBoolean
167
- # shipperAddress - Address
168
- # cODAmount - SOAP::SOAPDouble
169
- # holdAtLocation - SOAP::SOAPBoolean
170
- # schedulePickup - SOAP::SOAPBoolean
171
- # schedulePickupLocation - SchedulePickup
172
- # cODInfo - COD
173
- # holdAtLocationInfo - HoldAtLocation
174
- # purchaseOrderNumber - SOAP::SOAPString
175
- # salesOrderNumber - SOAP::SOAPString
176
- # brokerInfo - BrokerInfo
177
- # recipientShipNotification - SOAP::SOAPBoolean
178
- # receiveAlerts - SOAP::SOAPBoolean
179
- # saturdayDelivery - SOAP::SOAPBoolean
180
- # saturdayPickup - SOAP::SOAPBoolean
181
- # residential - SOAP::SOAPBoolean
182
- # signatureOption - SOAP::SOAPString
183
- # recipientAlertEmail - SOAP::SOAPString
184
- # recipientDeliveryNotification - SOAP::SOAPBoolean
185
- # recipientExceptionNotification - SOAP::SOAPBoolean
186
- # shipperShipNotification - SOAP::SOAPBoolean
187
- # shipperDeliveryNotification - SOAP::SOAPBoolean
188
- # shipperExceptionNotification - SOAP::SOAPBoolean
189
- # restrictedWordsCompliance - SOAP::SOAPBoolean
190
- # trackingNumber - SOAP::SOAPString
191
- class TrackingResponse < ShipmentRequest
192
- attr_accessor :commodityCollection
193
- attr_accessor :carrierName
194
- attr_accessor :shipmentDate
195
- attr_accessor :billFreightTo
196
- attr_accessor :serviceLevelName
197
- attr_accessor :packageTypeName
198
- attr_accessor :declaredWeight
199
- attr_accessor :declareValue
200
- attr_accessor :weightType
201
- attr_accessor :description
202
- attr_accessor :dimensions
203
- attr_accessor :dimensionUnitType
204
- attr_accessor :thermalPrinter
205
- attr_accessor :sEDNumber
206
- attr_accessor :dutiesPayorType
207
- attr_accessor :recipientAddress
208
- attr_accessor :saveNewRecipientAddress
209
- attr_accessor :shipperAddress
210
- attr_accessor :cODAmount
211
- attr_accessor :holdAtLocation
212
- attr_accessor :schedulePickup
213
- attr_accessor :schedulePickupLocation
214
- attr_accessor :cODInfo
215
- attr_accessor :holdAtLocationInfo
216
- attr_accessor :purchaseOrderNumber
217
- attr_accessor :salesOrderNumber
218
- attr_accessor :brokerInfo
219
- attr_accessor :recipientShipNotification
220
- attr_accessor :receiveAlerts
221
- attr_accessor :saturdayDelivery
222
- attr_accessor :saturdayPickup
223
- attr_accessor :residential
224
- attr_accessor :signatureOption
225
- attr_accessor :recipientAlertEmail
226
- attr_accessor :recipientDeliveryNotification
227
- attr_accessor :recipientExceptionNotification
228
- attr_accessor :shipperShipNotification
229
- attr_accessor :shipperDeliveryNotification
230
- attr_accessor :shipperExceptionNotification
231
- attr_accessor :restrictedWordsCompliance
232
- attr_accessor :trackingNumber
233
-
234
- def initialize(commodityCollection = nil, carrierName = nil, shipmentDate = nil, billFreightTo = nil, serviceLevelName = nil, packageTypeName = nil, declaredWeight = nil, declareValue = nil, weightType = nil, description = nil, dimensions = nil, dimensionUnitType = nil, thermalPrinter = nil, sEDNumber = nil, dutiesPayorType = nil, recipientAddress = nil, saveNewRecipientAddress = nil, shipperAddress = nil, cODAmount = nil, holdAtLocation = nil, schedulePickup = nil, schedulePickupLocation = nil, cODInfo = nil, holdAtLocationInfo = nil, purchaseOrderNumber = nil, salesOrderNumber = nil, brokerInfo = nil, recipientShipNotification = nil, receiveAlerts = nil, saturdayDelivery = nil, saturdayPickup = nil, residential = nil, signatureOption = nil, recipientAlertEmail = nil, recipientDeliveryNotification = nil, recipientExceptionNotification = nil, shipperShipNotification = nil, shipperDeliveryNotification = nil, shipperExceptionNotification = nil, restrictedWordsCompliance = nil, trackingNumber = nil)
235
- @commodityCollection = commodityCollection
236
- @carrierName = carrierName
237
- @shipmentDate = shipmentDate
238
- @billFreightTo = billFreightTo
239
- @serviceLevelName = serviceLevelName
240
- @packageTypeName = packageTypeName
241
- @declaredWeight = declaredWeight
242
- @declareValue = declareValue
243
- @weightType = weightType
244
- @description = description
245
- @dimensions = dimensions
246
- @dimensionUnitType = dimensionUnitType
247
- @thermalPrinter = thermalPrinter
248
- @sEDNumber = sEDNumber
249
- @dutiesPayorType = dutiesPayorType
250
- @recipientAddress = recipientAddress
251
- @saveNewRecipientAddress = saveNewRecipientAddress
252
- @shipperAddress = shipperAddress
253
- @cODAmount = cODAmount
254
- @holdAtLocation = holdAtLocation
255
- @schedulePickup = schedulePickup
256
- @schedulePickupLocation = schedulePickupLocation
257
- @cODInfo = cODInfo
258
- @holdAtLocationInfo = holdAtLocationInfo
259
- @purchaseOrderNumber = purchaseOrderNumber
260
- @salesOrderNumber = salesOrderNumber
261
- @brokerInfo = brokerInfo
262
- @recipientShipNotification = recipientShipNotification
263
- @receiveAlerts = receiveAlerts
264
- @saturdayDelivery = saturdayDelivery
265
- @saturdayPickup = saturdayPickup
266
- @residential = residential
267
- @signatureOption = signatureOption
268
- @recipientAlertEmail = recipientAlertEmail
269
- @recipientDeliveryNotification = recipientDeliveryNotification
270
- @recipientExceptionNotification = recipientExceptionNotification
271
- @shipperShipNotification = shipperShipNotification
272
- @shipperDeliveryNotification = shipperDeliveryNotification
273
- @shipperExceptionNotification = shipperExceptionNotification
274
- @restrictedWordsCompliance = restrictedWordsCompliance
275
- @trackingNumber = trackingNumber
276
- end
277
- end
278
-
279
- # {http://tempuri.org/}ArrayOfCommodityList
280
- class ArrayOfCommodityList < ::Array
281
- end
282
-
283
- # {http://tempuri.org/}CommodityList
284
- # commodityDescription - SOAP::SOAPString
285
- # harmonizedCode - SOAP::SOAPString
286
- # commodityQuantity - SOAP::SOAPDouble
287
- # measurement - SOAP::SOAPString
288
- # customValue - SOAP::SOAPDouble
289
- # commodityWeight - SOAP::SOAPDouble
290
- # codeCountryOfManufacture - SOAP::SOAPString
291
- # nameOnLabel - SOAP::SOAPString
292
- class CommodityList
293
- attr_accessor :commodityDescription
294
- attr_accessor :harmonizedCode
295
- attr_accessor :commodityQuantity
296
- attr_accessor :measurement
297
- attr_accessor :customValue
298
- attr_accessor :commodityWeight
299
- attr_accessor :codeCountryOfManufacture
300
- attr_accessor :nameOnLabel
301
-
302
- def initialize(commodityDescription = nil, harmonizedCode = nil, commodityQuantity = nil, measurement = nil, customValue = nil, commodityWeight = nil, codeCountryOfManufacture = nil, nameOnLabel = nil)
303
- @commodityDescription = commodityDescription
304
- @harmonizedCode = harmonizedCode
305
- @commodityQuantity = commodityQuantity
306
- @measurement = measurement
307
- @customValue = customValue
308
- @commodityWeight = commodityWeight
309
- @codeCountryOfManufacture = codeCountryOfManufacture
310
- @nameOnLabel = nameOnLabel
311
- end
312
- end
313
-
314
- # {http://tempuri.org/}Address
315
- # name - SOAP::SOAPString
316
- # company - SOAP::SOAPString
317
- # address1 - SOAP::SOAPString
318
- # address2 - SOAP::SOAPString
319
- # city - SOAP::SOAPString
320
- # state - SOAP::SOAPString
321
- # countryCode - SOAP::SOAPString
322
- # zip - SOAP::SOAPString
323
- # phone - SOAP::SOAPString
324
- # email - SOAP::SOAPString
325
- class Address
326
- attr_accessor :name
327
- attr_accessor :company
328
- attr_accessor :address1
329
- attr_accessor :address2
330
- attr_accessor :city
331
- attr_accessor :state
332
- attr_accessor :countryCode
333
- attr_accessor :zip
334
- attr_accessor :phone
335
- attr_accessor :email
336
-
337
- def initialize(name = nil, company = nil, address1 = nil, address2 = nil, city = nil, state = nil, countryCode = nil, zip = nil, phone = nil, email = nil)
338
- @name = name
339
- @company = company
340
- @address1 = address1
341
- @address2 = address2
342
- @city = city
343
- @state = state
344
- @countryCode = countryCode
345
- @zip = zip
346
- @phone = phone
347
- @email = email
348
- end
349
- end
350
-
351
- # {http://tempuri.org/}SchedulePickup
352
- # contactName - SOAP::SOAPString
353
- # companyName - SOAP::SOAPString
354
- # packageLatestAvailableTime - SOAP::SOAPString
355
- # readyTime - SOAP::SOAPString
356
- # suiteNumber - SOAP::SOAPString
357
- # floorID - SOAP::SOAPString
358
- # differentPickupLocation - SOAP::SOAPBoolean
359
- # packageLocation - SOAP::SOAPString
360
- # address1 - SOAP::SOAPString
361
- # address2 - SOAP::SOAPString
362
- # city - SOAP::SOAPString
363
- # state - SOAP::SOAPString
364
- # countryCode - SOAP::SOAPString
365
- # zip - SOAP::SOAPString
366
- # phone - SOAP::SOAPString
367
- # phoneExtn - SOAP::SOAPString
368
- # pickupDate - SOAP::SOAPDateTime
369
- class SchedulePickup
370
- attr_accessor :contactName
371
- attr_accessor :companyName
372
- attr_accessor :packageLatestAvailableTime
373
- attr_accessor :readyTime
374
- attr_accessor :suiteNumber
375
- attr_accessor :floorID
376
- attr_accessor :differentPickupLocation
377
- attr_accessor :packageLocation
378
- attr_accessor :address1
379
- attr_accessor :address2
380
- attr_accessor :city
381
- attr_accessor :state
382
- attr_accessor :countryCode
383
- attr_accessor :zip
384
- attr_accessor :phone
385
- attr_accessor :phoneExtn
386
- attr_accessor :pickupDate
387
-
388
- def initialize(contactName = nil, companyName = nil, packageLatestAvailableTime = nil, readyTime = nil, suiteNumber = nil, floorID = nil, differentPickupLocation = nil, packageLocation = nil, address1 = nil, address2 = nil, city = nil, state = nil, countryCode = nil, zip = nil, phone = nil, phoneExtn = nil, pickupDate = nil)
389
- @contactName = contactName
390
- @companyName = companyName
391
- @packageLatestAvailableTime = packageLatestAvailableTime
392
- @readyTime = readyTime
393
- @suiteNumber = suiteNumber
394
- @floorID = floorID
395
- @differentPickupLocation = differentPickupLocation
396
- @packageLocation = packageLocation
397
- @address1 = address1
398
- @address2 = address2
399
- @city = city
400
- @state = state
401
- @countryCode = countryCode
402
- @zip = zip
403
- @phone = phone
404
- @phoneExtn = phoneExtn
405
- @pickupDate = pickupDate
406
- end
407
- end
408
-
409
- # {http://tempuri.org/}COD
410
- # collectType - SOAP::SOAPString
411
- # name - SOAP::SOAPString
412
- # company - SOAP::SOAPString
413
- # country - SOAP::SOAPString
414
- # address - SOAP::SOAPString
415
- # city - SOAP::SOAPString
416
- # state - SOAP::SOAPString
417
- # countryCode - SOAP::SOAPString
418
- # zip - SOAP::SOAPString
419
- # phone - SOAP::SOAPString
420
- class COD
421
- attr_accessor :collectType
422
- attr_accessor :name
423
- attr_accessor :company
424
- attr_accessor :country
425
- attr_accessor :address
426
- attr_accessor :city
427
- attr_accessor :state
428
- attr_accessor :countryCode
429
- attr_accessor :zip
430
- attr_accessor :phone
431
-
432
- def initialize(collectType = nil, name = nil, company = nil, country = nil, address = nil, city = nil, state = nil, countryCode = nil, zip = nil, phone = nil)
433
- @collectType = collectType
434
- @name = name
435
- @company = company
436
- @country = country
437
- @address = address
438
- @city = city
439
- @state = state
440
- @countryCode = countryCode
441
- @zip = zip
442
- @phone = phone
443
- end
444
- end
445
-
446
- # {http://tempuri.org/}HoldAtLocation
447
- # name - SOAP::SOAPString
448
- # company - SOAP::SOAPString
449
- # address - SOAP::SOAPString
450
- # city - SOAP::SOAPString
451
- # state - SOAP::SOAPString
452
- # countryCode - SOAP::SOAPString
453
- # zip - SOAP::SOAPString
454
- # phone - SOAP::SOAPString
455
- # phoneExtn - SOAP::SOAPString
456
- class HoldAtLocation
457
- attr_accessor :name
458
- attr_accessor :company
459
- attr_accessor :address
460
- attr_accessor :city
461
- attr_accessor :state
462
- attr_accessor :countryCode
463
- attr_accessor :zip
464
- attr_accessor :phone
465
- attr_accessor :phoneExtn
466
-
467
- def initialize(name = nil, company = nil, address = nil, city = nil, state = nil, countryCode = nil, zip = nil, phone = nil, phoneExtn = nil)
468
- @name = name
469
- @company = company
470
- @address = address
471
- @city = city
472
- @state = state
473
- @countryCode = countryCode
474
- @zip = zip
475
- @phone = phone
476
- @phoneExtn = phoneExtn
477
- end
478
- end
479
-
480
- # {http://tempuri.org/}BrokerInfo
481
- # brokerName - SOAP::SOAPString
482
- # brokerTIN - SOAP::SOAPString
483
- # brokerCompany - SOAP::SOAPString
484
- # brokerAddress - SOAP::SOAPString
485
- # brokerAddress1 - SOAP::SOAPString
486
- # brokerAddress2 - SOAP::SOAPString
487
- # brokerCity - SOAP::SOAPString
488
- # brokerState - SOAP::SOAPString
489
- # brokerCountryCode - SOAP::SOAPString
490
- # brokerZip - SOAP::SOAPString
491
- # brokerPhone - SOAP::SOAPString
492
- # brokerEmail - SOAP::SOAPString
493
- class BrokerInfo
494
- attr_accessor :brokerName
495
- attr_accessor :brokerTIN
496
- attr_accessor :brokerCompany
497
- attr_accessor :brokerAddress
498
- attr_accessor :brokerAddress1
499
- attr_accessor :brokerAddress2
500
- attr_accessor :brokerCity
501
- attr_accessor :brokerState
502
- attr_accessor :brokerCountryCode
503
- attr_accessor :brokerZip
504
- attr_accessor :brokerPhone
505
- attr_accessor :brokerEmail
506
-
507
- def initialize(brokerName = nil, brokerTIN = nil, brokerCompany = nil, brokerAddress = nil, brokerAddress1 = nil, brokerAddress2 = nil, brokerCity = nil, brokerState = nil, brokerCountryCode = nil, brokerZip = nil, brokerPhone = nil, brokerEmail = nil)
508
- @brokerName = brokerName
509
- @brokerTIN = brokerTIN
510
- @brokerCompany = brokerCompany
511
- @brokerAddress = brokerAddress
512
- @brokerAddress1 = brokerAddress1
513
- @brokerAddress2 = brokerAddress2
514
- @brokerCity = brokerCity
515
- @brokerState = brokerState
516
- @brokerCountryCode = brokerCountryCode
517
- @brokerZip = brokerZip
518
- @brokerPhone = brokerPhone
519
- @brokerEmail = brokerEmail
520
- end
521
- end
522
-
523
- # {http://tempuri.org/}G4SIAuthentication
524
- # username - SOAP::SOAPString
525
- # password - SOAP::SOAPString
526
- # accessKey - SOAP::SOAPString
527
- class G4SIAuthentication
528
- attr_accessor :username
529
- attr_accessor :password
530
- attr_accessor :accessKey
531
-
532
- def initialize(username = nil, password = nil, accessKey = nil)
533
- @username = username
534
- @password = password
535
- @accessKey = accessKey
536
- end
537
- end
538
-
539
- # {http://tempuri.org/}ShipmentTrackingRequest
540
- # trackingNumber - SOAP::SOAPString
541
- class ShipmentTrackingRequest
542
- attr_accessor :trackingNumber
543
-
544
- def initialize(trackingNumber = nil)
545
- @trackingNumber = trackingNumber
546
- end
547
- end
548
-
549
- # {http://tempuri.org/}TrackShipmentListResponse
550
- # shipmentListResultCollection - ArrayOfTrackShipmentListResult
551
- # errors - IPSErrors
552
- class TrackShipmentListResponse
553
- attr_accessor :shipmentListResultCollection
554
- attr_accessor :errors
555
-
556
- def initialize(shipmentListResultCollection = nil, errors = nil)
557
- @shipmentListResultCollection = shipmentListResultCollection
558
- @errors = errors
559
- end
560
- end
561
-
562
- # {http://tempuri.org/}ArrayOfTrackShipmentListResult
563
- class ArrayOfTrackShipmentListResult < ::Array
564
- end
565
-
566
- # {http://tempuri.org/}TrackShipmentListResult
567
- # trackingNumber - SOAP::SOAPString
568
- # shipmentDate - SOAP::SOAPDateTime
569
- # deliveredDate - SOAP::SOAPDateTime
570
- # recipientName - SOAP::SOAPString
571
- # recipientCompany - SOAP::SOAPString
572
- # declaredValue - SOAP::SOAPDouble
573
- # currencyCode - SOAP::SOAPString
574
- # weight - SOAP::SOAPString
575
- # referenceNumber - SOAP::SOAPString
576
- # carrierName - SOAP::SOAPString
577
- class TrackShipmentListResult
578
- attr_accessor :trackingNumber
579
- attr_accessor :shipmentDate
580
- attr_accessor :deliveredDate
581
- attr_accessor :recipientName
582
- attr_accessor :recipientCompany
583
- attr_accessor :declaredValue
584
- attr_accessor :currencyCode
585
- attr_accessor :weight
586
- attr_accessor :referenceNumber
587
- attr_accessor :carrierName
588
-
589
- def initialize(trackingNumber = nil, shipmentDate = nil, deliveredDate = nil, recipientName = nil, recipientCompany = nil, declaredValue = nil, currencyCode = nil, weight = nil, referenceNumber = nil, carrierName = nil)
590
- @trackingNumber = trackingNumber
591
- @shipmentDate = shipmentDate
592
- @deliveredDate = deliveredDate
593
- @recipientName = recipientName
594
- @recipientCompany = recipientCompany
595
- @declaredValue = declaredValue
596
- @currencyCode = currencyCode
597
- @weight = weight
598
- @referenceNumber = referenceNumber
599
- @carrierName = carrierName
600
- end
601
- end
602
-
603
- # {http://tempuri.org/}IPSErrors
604
- # errorCode - SOAP::SOAPString
605
- # errorDescription - SOAP::SOAPString
606
- # status - SOAP::SOAPBoolean
607
- # innerException - SOAP::SOAPString
608
- class IPSErrors
609
- attr_accessor :errorCode
610
- attr_accessor :errorDescription
611
- attr_accessor :status
612
- attr_accessor :innerException
613
-
614
- def initialize(errorCode = nil, errorDescription = nil, status = nil, innerException = nil)
615
- @errorCode = errorCode
616
- @errorDescription = errorDescription
617
- @status = status
618
- @innerException = innerException
619
- end
620
- end
621
-
622
- # {http://tempuri.org/}ShipmentTrackingRequestAdvanced
623
- # fromDate - SOAP::SOAPDateTime
624
- # toDate - SOAP::SOAPDateTime
625
- # carriers - SOAP::SOAPString
626
- # shipmentExceptions - SOAP::SOAPString
627
- # shipmentCarrierStatus - SOAP::SOAPString
628
- # criteriaValue - SOAP::SOAPString
629
- # criteriaType - CriteriaList
630
- class ShipmentTrackingRequestAdvanced
631
- attr_accessor :fromDate
632
- attr_accessor :toDate
633
- attr_accessor :carriers
634
- attr_accessor :shipmentExceptions
635
- attr_accessor :shipmentCarrierStatus
636
- attr_accessor :criteriaValue
637
- attr_accessor :criteriaType
638
-
639
- def initialize(fromDate = nil, toDate = nil, carriers = nil, shipmentExceptions = nil, shipmentCarrierStatus = nil, criteriaValue = nil, criteriaType = nil)
640
- @fromDate = fromDate
641
- @toDate = toDate
642
- @carriers = carriers
643
- @shipmentExceptions = shipmentExceptions
644
- @shipmentCarrierStatus = shipmentCarrierStatus
645
- @criteriaValue = criteriaValue
646
- @criteriaType = criteriaType
647
- end
648
- end
649
-
650
- # {http://tempuri.org/}IPSResponse
651
- # result - ArrayOfAnyType
652
- # errors - IPSErrors
653
- class IPSResponse
654
- attr_accessor :result
655
- attr_accessor :errors
656
-
657
- def initialize(result = nil, errors = nil)
658
- @result = result
659
- @errors = errors
660
- end
661
- end
662
-
663
- # {http://tempuri.org/}ShipmentStatusListResponse
664
- # result - ArrayOfAnyType
665
- # errors - IPSErrors
666
- class ShipmentStatusListResponse < IPSResponse
667
- attr_accessor :result
668
- attr_accessor :errors
669
-
670
- def initialize(result = nil, errors = nil)
671
- @result = result
672
- @errors = errors
673
- end
674
- end
675
-
676
- # {http://tempuri.org/}ShipmentExceptionsListResponse
677
- # result - ArrayOfAnyType
678
- # errors - IPSErrors
679
- class ShipmentExceptionsListResponse < IPSResponse
680
- attr_accessor :result
681
- attr_accessor :errors
682
-
683
- def initialize(result = nil, errors = nil)
684
- @result = result
685
- @errors = errors
686
- end
687
- end
688
-
689
- # {http://tempuri.org/}ArrayOfAnyType
690
- class ArrayOfAnyType < ::Array
691
- end
692
-
693
- # {http://tempuri.org/}GeneralListForTracking
694
- # description - SOAP::SOAPString
695
- class GeneralListForTracking
696
- attr_accessor :description
697
-
698
- def initialize(description = nil)
699
- @description = description
700
- end
701
- end
702
-
703
- # {http://tempuri.org/}ShipmentTrackingStatusResponse
704
- # shipmentTrackingStatusList - ArrayOfAnyType
705
- # errors - IPSErrors
706
- class ShipmentTrackingStatusResponse
707
- attr_accessor :shipmentTrackingStatusList
708
- attr_accessor :errors
709
-
710
- def initialize(shipmentTrackingStatusList = nil, errors = nil)
711
- @shipmentTrackingStatusList = shipmentTrackingStatusList
712
- @errors = errors
713
- end
714
- end
715
-
716
- # {http://tempuri.org/}ShipmentTrackingStatus
717
- # statusDescription - SOAP::SOAPString
718
- # statusDate - SOAP::SOAPDateTime
719
- # statusCity - SOAP::SOAPString
720
- # statusState - SOAP::SOAPString
721
- # statusCountry - SOAP::SOAPString
722
- class ShipmentTrackingStatus
723
- attr_accessor :statusDescription
724
- attr_accessor :statusDate
725
- attr_accessor :statusCity
726
- attr_accessor :statusState
727
- attr_accessor :statusCountry
728
-
729
- def initialize(statusDescription = nil, statusDate = nil, statusCity = nil, statusState = nil, statusCountry = nil)
730
- @statusDescription = statusDescription
731
- @statusDate = statusDate
732
- @statusCity = statusCity
733
- @statusState = statusState
734
- @statusCountry = statusCountry
735
- end
736
- end
737
-
738
- # {http://tempuri.org/}CriteriaList
739
- class CriteriaList < ::String
740
- AccountNumber = CriteriaList.new("AccountNumber")
741
- CarrierAccount = CriteriaList.new("CarrierAccount")
742
- InvoiceNumber = CriteriaList.new("InvoiceNumber")
743
- PurchaseOrder = CriteriaList.new("PurchaseOrder")
744
- RecipientAddress = CriteriaList.new("RecipientAddress")
745
- RecipientCompany = CriteriaList.new("RecipientCompany")
746
- RecipientName = CriteriaList.new("RecipientName")
747
- ReferenceNumber = CriteriaList.new("ReferenceNumber")
748
- SalesOrder = CriteriaList.new("SalesOrder")
749
- SignatureName = CriteriaList.new("SignatureName")
750
- TrackingNumber = CriteriaList.new("TrackingNumber")
751
- end
752
-
753
- # {http://tempuri.org/}GetShipmentInfoByTrackingNumber
754
- class GetShipmentInfoByTrackingNumber
755
- def initialize
5
+
6
+ #module DefaultMappingRegistry
7
+ # {http://tempuri.org/}ShipmentTrackingResponse
8
+ # trackingResponse - TrackingResponse
9
+ # trackingResponseErrorCode - SOAP::SOAPString
10
+ # trackingResponseError - SOAP::SOAPString
11
+ class ShipmentTrackingResponse
12
+ attr_accessor :trackingResponse
13
+ attr_accessor :trackingResponseErrorCode
14
+ attr_accessor :trackingResponseError
15
+
16
+ def initialize(trackingResponse = nil, trackingResponseErrorCode = nil, trackingResponseError = nil)
17
+ @trackingResponse = trackingResponse
18
+ @trackingResponseErrorCode = trackingResponseErrorCode
19
+ @trackingResponseError = trackingResponseError
20
+ end
21
+ end
22
+
23
+ # {http://tempuri.org/}ShipmentRequest
24
+ # commodityCollection - ArrayOfCommodityList
25
+ # carrierName - SOAP::SOAPString
26
+ # shipmentDate - SOAP::SOAPDateTime
27
+ # billFreightTo - SOAP::SOAPString
28
+ # serviceLevelName - SOAP::SOAPString
29
+ # packageTypeName - SOAP::SOAPString
30
+ # declaredWeight - SOAP::SOAPDouble
31
+ # declareValue - SOAP::SOAPDouble
32
+ # weightType - SOAP::SOAPString
33
+ # description - SOAP::SOAPString
34
+ # dimensions - SOAP::SOAPString
35
+ # dimensionUnitType - SOAP::SOAPString
36
+ # thermalPrinter - SOAP::SOAPBoolean
37
+ # sEDNumber - SOAP::SOAPString
38
+ # dutiesPayorType - SOAP::SOAPString
39
+ # recipientAddress - Address
40
+ # saveNewRecipientAddress - SOAP::SOAPBoolean
41
+ # shipperAddress - Address
42
+ # cODAmount - SOAP::SOAPDouble
43
+ # holdAtLocation - SOAP::SOAPBoolean
44
+ # schedulePickup - SOAP::SOAPBoolean
45
+ # schedulePickupLocation - SchedulePickup
46
+ # cODInfo - COD
47
+ # holdAtLocationInfo - HoldAtLocation
48
+ # purchaseOrderNumber - SOAP::SOAPString
49
+ # salesOrderNumber - SOAP::SOAPString
50
+ # brokerInfo - BrokerInfo
51
+ # recipientShipNotification - SOAP::SOAPBoolean
52
+ # receiveAlerts - SOAP::SOAPBoolean
53
+ # saturdayDelivery - SOAP::SOAPBoolean
54
+ # saturdayPickup - SOAP::SOAPBoolean
55
+ # residential - SOAP::SOAPBoolean
56
+ # signatureOption - SOAP::SOAPString
57
+ # recipientAlertEmail - SOAP::SOAPString
58
+ # recipientDeliveryNotification - SOAP::SOAPBoolean
59
+ # recipientExceptionNotification - SOAP::SOAPBoolean
60
+ # shipperShipNotification - SOAP::SOAPBoolean
61
+ # shipperDeliveryNotification - SOAP::SOAPBoolean
62
+ # shipperExceptionNotification - SOAP::SOAPBoolean
63
+ # restrictedWordsCompliance - SOAP::SOAPBoolean
64
+ # trackingNumber - SOAP::SOAPString
65
+ class ShipmentRequest
66
+ attr_accessor :commodityCollection
67
+ attr_accessor :carrierName
68
+ attr_accessor :shipmentDate
69
+ attr_accessor :billFreightTo
70
+ attr_accessor :serviceLevelName
71
+ attr_accessor :packageTypeName
72
+ attr_accessor :declaredWeight
73
+ attr_accessor :declareValue
74
+ attr_accessor :weightType
75
+ attr_accessor :description
76
+ attr_accessor :dimensions
77
+ attr_accessor :dimensionUnitType
78
+ attr_accessor :thermalPrinter
79
+ attr_accessor :sEDNumber
80
+ attr_accessor :dutiesPayorType
81
+ attr_accessor :recipientAddress
82
+ attr_accessor :saveNewRecipientAddress
83
+ attr_accessor :shipperAddress
84
+ attr_accessor :cODAmount
85
+ attr_accessor :holdAtLocation
86
+ attr_accessor :schedulePickup
87
+ attr_accessor :schedulePickupLocation
88
+ attr_accessor :cODInfo
89
+ attr_accessor :holdAtLocationInfo
90
+ attr_accessor :purchaseOrderNumber
91
+ attr_accessor :salesOrderNumber
92
+ attr_accessor :brokerInfo
93
+ attr_accessor :recipientShipNotification
94
+ attr_accessor :receiveAlerts
95
+ attr_accessor :saturdayDelivery
96
+ attr_accessor :saturdayPickup
97
+ attr_accessor :residential
98
+ attr_accessor :signatureOption
99
+ attr_accessor :recipientAlertEmail
100
+ attr_accessor :recipientDeliveryNotification
101
+ attr_accessor :recipientExceptionNotification
102
+ attr_accessor :shipperShipNotification
103
+ attr_accessor :shipperDeliveryNotification
104
+ attr_accessor :shipperExceptionNotification
105
+ attr_accessor :restrictedWordsCompliance
106
+ attr_accessor :trackingNumber
107
+
108
+ def initialize(commodityCollection = nil, carrierName = nil, shipmentDate = nil, billFreightTo = nil, serviceLevelName = nil, packageTypeName = nil, declaredWeight = nil, declareValue = nil, weightType = nil, description = nil, dimensions = nil, dimensionUnitType = nil, thermalPrinter = nil, sEDNumber = nil, dutiesPayorType = nil, recipientAddress = nil, saveNewRecipientAddress = nil, shipperAddress = nil, cODAmount = nil, holdAtLocation = nil, schedulePickup = nil, schedulePickupLocation = nil, cODInfo = nil, holdAtLocationInfo = nil, purchaseOrderNumber = nil, salesOrderNumber = nil, brokerInfo = nil, recipientShipNotification = nil, receiveAlerts = nil, saturdayDelivery = nil, saturdayPickup = nil, residential = nil, signatureOption = nil, recipientAlertEmail = nil, recipientDeliveryNotification = nil, recipientExceptionNotification = nil, shipperShipNotification = nil, shipperDeliveryNotification = nil, shipperExceptionNotification = nil, restrictedWordsCompliance = nil, trackingNumber = nil)
109
+ @commodityCollection = commodityCollection
110
+ @carrierName = carrierName
111
+ @shipmentDate = shipmentDate
112
+ @billFreightTo = billFreightTo
113
+ @serviceLevelName = serviceLevelName
114
+ @packageTypeName = packageTypeName
115
+ @declaredWeight = declaredWeight
116
+ @declareValue = declareValue
117
+ @weightType = weightType
118
+ @description = description
119
+ @dimensions = dimensions
120
+ @dimensionUnitType = dimensionUnitType
121
+ @thermalPrinter = thermalPrinter
122
+ @sEDNumber = sEDNumber
123
+ @dutiesPayorType = dutiesPayorType
124
+ @recipientAddress = recipientAddress
125
+ @saveNewRecipientAddress = saveNewRecipientAddress
126
+ @shipperAddress = shipperAddress
127
+ @cODAmount = cODAmount
128
+ @holdAtLocation = holdAtLocation
129
+ @schedulePickup = schedulePickup
130
+ @schedulePickupLocation = schedulePickupLocation
131
+ @cODInfo = cODInfo
132
+ @holdAtLocationInfo = holdAtLocationInfo
133
+ @purchaseOrderNumber = purchaseOrderNumber
134
+ @salesOrderNumber = salesOrderNumber
135
+ @brokerInfo = brokerInfo
136
+ @recipientShipNotification = recipientShipNotification
137
+ @receiveAlerts = receiveAlerts
138
+ @saturdayDelivery = saturdayDelivery
139
+ @saturdayPickup = saturdayPickup
140
+ @residential = residential
141
+ @signatureOption = signatureOption
142
+ @recipientAlertEmail = recipientAlertEmail
143
+ @recipientDeliveryNotification = recipientDeliveryNotification
144
+ @recipientExceptionNotification = recipientExceptionNotification
145
+ @shipperShipNotification = shipperShipNotification
146
+ @shipperDeliveryNotification = shipperDeliveryNotification
147
+ @shipperExceptionNotification = shipperExceptionNotification
148
+ @restrictedWordsCompliance = restrictedWordsCompliance
149
+ @trackingNumber = trackingNumber
150
+ end
756
151
  end
757
- end
758
152
 
759
- # {http://tempuri.org/}GetShipmentInfoByTrackingNumberResponse
760
- # getShipmentInfoByTrackingNumberResult - ShipmentTrackingResponse
761
- class GetShipmentInfoByTrackingNumberResponse
762
- attr_accessor :getShipmentInfoByTrackingNumberResult
763
-
764
- def initialize(getShipmentInfoByTrackingNumberResult = nil)
765
- @getShipmentInfoByTrackingNumberResult = getShipmentInfoByTrackingNumberResult
153
+ # {http://tempuri.org/}TrackingResponse
154
+ # commodityCollection - ArrayOfCommodityList
155
+ # carrierName - SOAP::SOAPString
156
+ # shipmentDate - SOAP::SOAPDateTime
157
+ # billFreightTo - SOAP::SOAPString
158
+ # serviceLevelName - SOAP::SOAPString
159
+ # packageTypeName - SOAP::SOAPString
160
+ # declaredWeight - SOAP::SOAPDouble
161
+ # declareValue - SOAP::SOAPDouble
162
+ # weightType - SOAP::SOAPString
163
+ # description - SOAP::SOAPString
164
+ # dimensions - SOAP::SOAPString
165
+ # dimensionUnitType - SOAP::SOAPString
166
+ # thermalPrinter - SOAP::SOAPBoolean
167
+ # sEDNumber - SOAP::SOAPString
168
+ # dutiesPayorType - SOAP::SOAPString
169
+ # recipientAddress - Address
170
+ # saveNewRecipientAddress - SOAP::SOAPBoolean
171
+ # shipperAddress - Address
172
+ # cODAmount - SOAP::SOAPDouble
173
+ # holdAtLocation - SOAP::SOAPBoolean
174
+ # schedulePickup - SOAP::SOAPBoolean
175
+ # schedulePickupLocation - SchedulePickup
176
+ # cODInfo - COD
177
+ # holdAtLocationInfo - HoldAtLocation
178
+ # purchaseOrderNumber - SOAP::SOAPString
179
+ # salesOrderNumber - SOAP::SOAPString
180
+ # brokerInfo - BrokerInfo
181
+ # recipientShipNotification - SOAP::SOAPBoolean
182
+ # receiveAlerts - SOAP::SOAPBoolean
183
+ # saturdayDelivery - SOAP::SOAPBoolean
184
+ # saturdayPickup - SOAP::SOAPBoolean
185
+ # residential - SOAP::SOAPBoolean
186
+ # signatureOption - SOAP::SOAPString
187
+ # recipientAlertEmail - SOAP::SOAPString
188
+ # recipientDeliveryNotification - SOAP::SOAPBoolean
189
+ # recipientExceptionNotification - SOAP::SOAPBoolean
190
+ # shipperShipNotification - SOAP::SOAPBoolean
191
+ # shipperDeliveryNotification - SOAP::SOAPBoolean
192
+ # shipperExceptionNotification - SOAP::SOAPBoolean
193
+ # restrictedWordsCompliance - SOAP::SOAPBoolean
194
+ # trackingNumber - SOAP::SOAPString
195
+ class TrackingResponse < ShipmentRequest
196
+ attr_accessor :commodityCollection
197
+ attr_accessor :carrierName
198
+ attr_accessor :shipmentDate
199
+ attr_accessor :billFreightTo
200
+ attr_accessor :serviceLevelName
201
+ attr_accessor :packageTypeName
202
+ attr_accessor :declaredWeight
203
+ attr_accessor :declareValue
204
+ attr_accessor :weightType
205
+ attr_accessor :description
206
+ attr_accessor :dimensions
207
+ attr_accessor :dimensionUnitType
208
+ attr_accessor :thermalPrinter
209
+ attr_accessor :sEDNumber
210
+ attr_accessor :dutiesPayorType
211
+ attr_accessor :recipientAddress
212
+ attr_accessor :saveNewRecipientAddress
213
+ attr_accessor :shipperAddress
214
+ attr_accessor :cODAmount
215
+ attr_accessor :holdAtLocation
216
+ attr_accessor :schedulePickup
217
+ attr_accessor :schedulePickupLocation
218
+ attr_accessor :cODInfo
219
+ attr_accessor :holdAtLocationInfo
220
+ attr_accessor :purchaseOrderNumber
221
+ attr_accessor :salesOrderNumber
222
+ attr_accessor :brokerInfo
223
+ attr_accessor :recipientShipNotification
224
+ attr_accessor :receiveAlerts
225
+ attr_accessor :saturdayDelivery
226
+ attr_accessor :saturdayPickup
227
+ attr_accessor :residential
228
+ attr_accessor :signatureOption
229
+ attr_accessor :recipientAlertEmail
230
+ attr_accessor :recipientDeliveryNotification
231
+ attr_accessor :recipientExceptionNotification
232
+ attr_accessor :shipperShipNotification
233
+ attr_accessor :shipperDeliveryNotification
234
+ attr_accessor :shipperExceptionNotification
235
+ attr_accessor :restrictedWordsCompliance
236
+ attr_accessor :trackingNumber
237
+
238
+ def initialize(commodityCollection = nil, carrierName = nil, shipmentDate = nil, billFreightTo = nil, serviceLevelName = nil, packageTypeName = nil, declaredWeight = nil, declareValue = nil, weightType = nil, description = nil, dimensions = nil, dimensionUnitType = nil, thermalPrinter = nil, sEDNumber = nil, dutiesPayorType = nil, recipientAddress = nil, saveNewRecipientAddress = nil, shipperAddress = nil, cODAmount = nil, holdAtLocation = nil, schedulePickup = nil, schedulePickupLocation = nil, cODInfo = nil, holdAtLocationInfo = nil, purchaseOrderNumber = nil, salesOrderNumber = nil, brokerInfo = nil, recipientShipNotification = nil, receiveAlerts = nil, saturdayDelivery = nil, saturdayPickup = nil, residential = nil, signatureOption = nil, recipientAlertEmail = nil, recipientDeliveryNotification = nil, recipientExceptionNotification = nil, shipperShipNotification = nil, shipperDeliveryNotification = nil, shipperExceptionNotification = nil, restrictedWordsCompliance = nil, trackingNumber = nil)
239
+ @commodityCollection = commodityCollection
240
+ @carrierName = carrierName
241
+ @shipmentDate = shipmentDate
242
+ @billFreightTo = billFreightTo
243
+ @serviceLevelName = serviceLevelName
244
+ @packageTypeName = packageTypeName
245
+ @declaredWeight = declaredWeight
246
+ @declareValue = declareValue
247
+ @weightType = weightType
248
+ @description = description
249
+ @dimensions = dimensions
250
+ @dimensionUnitType = dimensionUnitType
251
+ @thermalPrinter = thermalPrinter
252
+ @sEDNumber = sEDNumber
253
+ @dutiesPayorType = dutiesPayorType
254
+ @recipientAddress = recipientAddress
255
+ @saveNewRecipientAddress = saveNewRecipientAddress
256
+ @shipperAddress = shipperAddress
257
+ @cODAmount = cODAmount
258
+ @holdAtLocation = holdAtLocation
259
+ @schedulePickup = schedulePickup
260
+ @schedulePickupLocation = schedulePickupLocation
261
+ @cODInfo = cODInfo
262
+ @holdAtLocationInfo = holdAtLocationInfo
263
+ @purchaseOrderNumber = purchaseOrderNumber
264
+ @salesOrderNumber = salesOrderNumber
265
+ @brokerInfo = brokerInfo
266
+ @recipientShipNotification = recipientShipNotification
267
+ @receiveAlerts = receiveAlerts
268
+ @saturdayDelivery = saturdayDelivery
269
+ @saturdayPickup = saturdayPickup
270
+ @residential = residential
271
+ @signatureOption = signatureOption
272
+ @recipientAlertEmail = recipientAlertEmail
273
+ @recipientDeliveryNotification = recipientDeliveryNotification
274
+ @recipientExceptionNotification = recipientExceptionNotification
275
+ @shipperShipNotification = shipperShipNotification
276
+ @shipperDeliveryNotification = shipperDeliveryNotification
277
+ @shipperExceptionNotification = shipperExceptionNotification
278
+ @restrictedWordsCompliance = restrictedWordsCompliance
279
+ @trackingNumber = trackingNumber
280
+ end
766
281
  end
767
- end
768
282
 
769
- # {http://tempuri.org/}GetShipmentTrackingList
770
- class GetShipmentTrackingList
771
- def initialize
283
+ # {http://tempuri.org/}ArrayOfCommodityList
284
+ class ArrayOfCommodityList < ::Array
772
285
  end
773
- end
774
286
 
775
- # {http://tempuri.org/}GetShipmentTrackingListResponse
776
- # getShipmentTrackingListResult - TrackShipmentListResponse
777
- class GetShipmentTrackingListResponse
778
- attr_accessor :getShipmentTrackingListResult
287
+ # {http://tempuri.org/}CommodityList
288
+ # commodityDescription - SOAP::SOAPString
289
+ # harmonizedCode - SOAP::SOAPString
290
+ # commodityQuantity - SOAP::SOAPDouble
291
+ # measurement - SOAP::SOAPString
292
+ # customValue - SOAP::SOAPDouble
293
+ # commodityWeight - SOAP::SOAPDouble
294
+ # codeCountryOfManufacture - SOAP::SOAPString
295
+ # nameOnLabel - SOAP::SOAPString
296
+ class CommodityList
297
+ attr_accessor :commodityDescription
298
+ attr_accessor :harmonizedCode
299
+ attr_accessor :commodityQuantity
300
+ attr_accessor :measurement
301
+ attr_accessor :customValue
302
+ attr_accessor :commodityWeight
303
+ attr_accessor :codeCountryOfManufacture
304
+ attr_accessor :nameOnLabel
305
+
306
+ def initialize(commodityDescription = nil, harmonizedCode = nil, commodityQuantity = nil, measurement = nil, customValue = nil, commodityWeight = nil, codeCountryOfManufacture = nil, nameOnLabel = nil)
307
+ @commodityDescription = commodityDescription
308
+ @harmonizedCode = harmonizedCode
309
+ @commodityQuantity = commodityQuantity
310
+ @measurement = measurement
311
+ @customValue = customValue
312
+ @commodityWeight = commodityWeight
313
+ @codeCountryOfManufacture = codeCountryOfManufacture
314
+ @nameOnLabel = nameOnLabel
315
+ end
316
+ end
779
317
 
780
- def initialize(getShipmentTrackingListResult = nil)
781
- @getShipmentTrackingListResult = getShipmentTrackingListResult
318
+ # {http://tempuri.org/}Address
319
+ # name - SOAP::SOAPString
320
+ # company - SOAP::SOAPString
321
+ # address1 - SOAP::SOAPString
322
+ # address2 - SOAP::SOAPString
323
+ # city - SOAP::SOAPString
324
+ # state - SOAP::SOAPString
325
+ # countryCode - SOAP::SOAPString
326
+ # zip - SOAP::SOAPString
327
+ # phone - SOAP::SOAPString
328
+ # email - SOAP::SOAPString
329
+ class Address
330
+ attr_accessor :name
331
+ attr_accessor :company
332
+ attr_accessor :address1
333
+ attr_accessor :address2
334
+ attr_accessor :city
335
+ attr_accessor :state
336
+ attr_accessor :countryCode
337
+ attr_accessor :zip
338
+ attr_accessor :phone
339
+ attr_accessor :email
340
+
341
+ def initialize(name = nil, company = nil, address1 = nil, address2 = nil, city = nil, state = nil, countryCode = nil, zip = nil, phone = nil, email = nil)
342
+ @name = name
343
+ @company = company
344
+ @address1 = address1
345
+ @address2 = address2
346
+ @city = city
347
+ @state = state
348
+ @countryCode = countryCode
349
+ @zip = zip
350
+ @phone = phone
351
+ @email = email
352
+ end
782
353
  end
783
- end
784
354
 
785
- # {http://tempuri.org/}GetShipmentStatusListForSearchRequest
786
- class GetShipmentStatusListForSearchRequest
787
- def initialize
355
+ # {http://tempuri.org/}SchedulePickup
356
+ # contactName - SOAP::SOAPString
357
+ # companyName - SOAP::SOAPString
358
+ # packageLatestAvailableTime - SOAP::SOAPString
359
+ # readyTime - SOAP::SOAPString
360
+ # suiteNumber - SOAP::SOAPString
361
+ # floorID - SOAP::SOAPString
362
+ # differentPickupLocation - SOAP::SOAPBoolean
363
+ # packageLocation - SOAP::SOAPString
364
+ # address1 - SOAP::SOAPString
365
+ # address2 - SOAP::SOAPString
366
+ # city - SOAP::SOAPString
367
+ # state - SOAP::SOAPString
368
+ # countryCode - SOAP::SOAPString
369
+ # zip - SOAP::SOAPString
370
+ # phone - SOAP::SOAPString
371
+ # phoneExtn - SOAP::SOAPString
372
+ # pickupDate - SOAP::SOAPDateTime
373
+ class SchedulePickup
374
+ attr_accessor :contactName
375
+ attr_accessor :companyName
376
+ attr_accessor :packageLatestAvailableTime
377
+ attr_accessor :readyTime
378
+ attr_accessor :suiteNumber
379
+ attr_accessor :floorID
380
+ attr_accessor :differentPickupLocation
381
+ attr_accessor :packageLocation
382
+ attr_accessor :address1
383
+ attr_accessor :address2
384
+ attr_accessor :city
385
+ attr_accessor :state
386
+ attr_accessor :countryCode
387
+ attr_accessor :zip
388
+ attr_accessor :phone
389
+ attr_accessor :phoneExtn
390
+ attr_accessor :pickupDate
391
+
392
+ def initialize(contactName = nil, companyName = nil, packageLatestAvailableTime = nil, readyTime = nil, suiteNumber = nil, floorID = nil, differentPickupLocation = nil, packageLocation = nil, address1 = nil, address2 = nil, city = nil, state = nil, countryCode = nil, zip = nil, phone = nil, phoneExtn = nil, pickupDate = nil)
393
+ @contactName = contactName
394
+ @companyName = companyName
395
+ @packageLatestAvailableTime = packageLatestAvailableTime
396
+ @readyTime = readyTime
397
+ @suiteNumber = suiteNumber
398
+ @floorID = floorID
399
+ @differentPickupLocation = differentPickupLocation
400
+ @packageLocation = packageLocation
401
+ @address1 = address1
402
+ @address2 = address2
403
+ @city = city
404
+ @state = state
405
+ @countryCode = countryCode
406
+ @zip = zip
407
+ @phone = phone
408
+ @phoneExtn = phoneExtn
409
+ @pickupDate = pickupDate
410
+ end
788
411
  end
789
- end
790
412
 
791
- # {http://tempuri.org/}GetShipmentStatusListForSearchRequestResponse
792
- # getShipmentStatusListForSearchRequestResult - ShipmentStatusListResponse
793
- class GetShipmentStatusListForSearchRequestResponse
794
- attr_accessor :getShipmentStatusListForSearchRequestResult
413
+ # {http://tempuri.org/}COD
414
+ # collectType - SOAP::SOAPString
415
+ # name - SOAP::SOAPString
416
+ # company - SOAP::SOAPString
417
+ # country - SOAP::SOAPString
418
+ # address - SOAP::SOAPString
419
+ # city - SOAP::SOAPString
420
+ # state - SOAP::SOAPString
421
+ # countryCode - SOAP::SOAPString
422
+ # zip - SOAP::SOAPString
423
+ # phone - SOAP::SOAPString
424
+ class COD
425
+ attr_accessor :collectType
426
+ attr_accessor :name
427
+ attr_accessor :company
428
+ attr_accessor :country
429
+ attr_accessor :address
430
+ attr_accessor :city
431
+ attr_accessor :state
432
+ attr_accessor :countryCode
433
+ attr_accessor :zip
434
+ attr_accessor :phone
435
+
436
+ def initialize(collectType = nil, name = nil, company = nil, country = nil, address = nil, city = nil, state = nil, countryCode = nil, zip = nil, phone = nil)
437
+ @collectType = collectType
438
+ @name = name
439
+ @company = company
440
+ @country = country
441
+ @address = address
442
+ @city = city
443
+ @state = state
444
+ @countryCode = countryCode
445
+ @zip = zip
446
+ @phone = phone
447
+ end
448
+ end
795
449
 
796
- def initialize(getShipmentStatusListForSearchRequestResult = nil)
797
- @getShipmentStatusListForSearchRequestResult = getShipmentStatusListForSearchRequestResult
450
+ # {http://tempuri.org/}HoldAtLocation
451
+ # name - SOAP::SOAPString
452
+ # company - SOAP::SOAPString
453
+ # address - SOAP::SOAPString
454
+ # city - SOAP::SOAPString
455
+ # state - SOAP::SOAPString
456
+ # countryCode - SOAP::SOAPString
457
+ # zip - SOAP::SOAPString
458
+ # phone - SOAP::SOAPString
459
+ # phoneExtn - SOAP::SOAPString
460
+ class HoldAtLocation
461
+ attr_accessor :name
462
+ attr_accessor :company
463
+ attr_accessor :address
464
+ attr_accessor :city
465
+ attr_accessor :state
466
+ attr_accessor :countryCode
467
+ attr_accessor :zip
468
+ attr_accessor :phone
469
+ attr_accessor :phoneExtn
470
+
471
+ def initialize(name = nil, company = nil, address = nil, city = nil, state = nil, countryCode = nil, zip = nil, phone = nil, phoneExtn = nil)
472
+ @name = name
473
+ @company = company
474
+ @address = address
475
+ @city = city
476
+ @state = state
477
+ @countryCode = countryCode
478
+ @zip = zip
479
+ @phone = phone
480
+ @phoneExtn = phoneExtn
481
+ end
798
482
  end
799
- end
800
483
 
801
- # {http://tempuri.org/}GetShipmentExceptionsForSearchRequest
802
- class GetShipmentExceptionsForSearchRequest
803
- def initialize
804
- end
805
- end
484
+ # {http://tempuri.org/}BrokerInfo
485
+ # brokerName - SOAP::SOAPString
486
+ # brokerTIN - SOAP::SOAPString
487
+ # brokerCompany - SOAP::SOAPString
488
+ # brokerAddress - SOAP::SOAPString
489
+ # brokerAddress1 - SOAP::SOAPString
490
+ # brokerAddress2 - SOAP::SOAPString
491
+ # brokerCity - SOAP::SOAPString
492
+ # brokerState - SOAP::SOAPString
493
+ # brokerCountryCode - SOAP::SOAPString
494
+ # brokerZip - SOAP::SOAPString
495
+ # brokerPhone - SOAP::SOAPString
496
+ # brokerEmail - SOAP::SOAPString
497
+ class BrokerInfo
498
+ attr_accessor :brokerName
499
+ attr_accessor :brokerTIN
500
+ attr_accessor :brokerCompany
501
+ attr_accessor :brokerAddress
502
+ attr_accessor :brokerAddress1
503
+ attr_accessor :brokerAddress2
504
+ attr_accessor :brokerCity
505
+ attr_accessor :brokerState
506
+ attr_accessor :brokerCountryCode
507
+ attr_accessor :brokerZip
508
+ attr_accessor :brokerPhone
509
+ attr_accessor :brokerEmail
510
+
511
+ def initialize(brokerName = nil, brokerTIN = nil, brokerCompany = nil, brokerAddress = nil, brokerAddress1 = nil, brokerAddress2 = nil, brokerCity = nil, brokerState = nil, brokerCountryCode = nil, brokerZip = nil, brokerPhone = nil, brokerEmail = nil)
512
+ @brokerName = brokerName
513
+ @brokerTIN = brokerTIN
514
+ @brokerCompany = brokerCompany
515
+ @brokerAddress = brokerAddress
516
+ @brokerAddress1 = brokerAddress1
517
+ @brokerAddress2 = brokerAddress2
518
+ @brokerCity = brokerCity
519
+ @brokerState = brokerState
520
+ @brokerCountryCode = brokerCountryCode
521
+ @brokerZip = brokerZip
522
+ @brokerPhone = brokerPhone
523
+ @brokerEmail = brokerEmail
524
+ end
525
+ end
806
526
 
807
- # {http://tempuri.org/}GetShipmentExceptionsForSearchRequestResponse
808
- # getShipmentExceptionsForSearchRequestResult - ShipmentExceptionsListResponse
809
- class GetShipmentExceptionsForSearchRequestResponse
810
- attr_accessor :getShipmentExceptionsForSearchRequestResult
527
+ # {http://tempuri.org/}G4SIAuthentication
528
+ # username - SOAP::SOAPString
529
+ # password - SOAP::SOAPString
530
+ # accessKey - SOAP::SOAPString
531
+ class G4SIAuthentication
532
+ attr_accessor :username
533
+ attr_accessor :password
534
+ attr_accessor :accessKey
535
+
536
+ def initialize(username = nil, password = nil, accessKey = nil)
537
+ @username = username
538
+ @password = password
539
+ @accessKey = accessKey
540
+ end
541
+ end
542
+
543
+ # {http://tempuri.org/}ShipmentTrackingRequest
544
+ # trackingNumber - SOAP::SOAPString
545
+ class ShipmentTrackingRequest
546
+ attr_accessor :trackingNumber
547
+
548
+ def initialize(trackingNumber = nil)
549
+ @trackingNumber = trackingNumber
550
+ end
551
+ end
552
+
553
+ # {http://tempuri.org/}TrackShipmentListResponse
554
+ # shipmentListResultCollection - ArrayOfTrackShipmentListResult
555
+ # errors - IPSErrors
556
+ class TrackShipmentListResponse
557
+ attr_accessor :shipmentListResultCollection
558
+ attr_accessor :errors
559
+
560
+ def initialize(shipmentListResultCollection = nil, errors = nil)
561
+ @shipmentListResultCollection = shipmentListResultCollection
562
+ @errors = errors
563
+ end
564
+ end
565
+
566
+ # {http://tempuri.org/}ArrayOfTrackShipmentListResult
567
+ class ArrayOfTrackShipmentListResult < ::Array
568
+ end
811
569
 
812
- def initialize(getShipmentExceptionsForSearchRequestResult = nil)
813
- @getShipmentExceptionsForSearchRequestResult = getShipmentExceptionsForSearchRequestResult
570
+ # {http://tempuri.org/}TrackShipmentListResult
571
+ # trackingNumber - SOAP::SOAPString
572
+ # shipmentDate - SOAP::SOAPDateTime
573
+ # deliveredDate - SOAP::SOAPDateTime
574
+ # recipientName - SOAP::SOAPString
575
+ # recipientCompany - SOAP::SOAPString
576
+ # declaredValue - SOAP::SOAPDouble
577
+ # currencyCode - SOAP::SOAPString
578
+ # weight - SOAP::SOAPString
579
+ # referenceNumber - SOAP::SOAPString
580
+ # carrierName - SOAP::SOAPString
581
+ class TrackShipmentListResult
582
+ attr_accessor :trackingNumber
583
+ attr_accessor :shipmentDate
584
+ attr_accessor :deliveredDate
585
+ attr_accessor :recipientName
586
+ attr_accessor :recipientCompany
587
+ attr_accessor :declaredValue
588
+ attr_accessor :currencyCode
589
+ attr_accessor :weight
590
+ attr_accessor :referenceNumber
591
+ attr_accessor :carrierName
592
+
593
+ def initialize(trackingNumber = nil, shipmentDate = nil, deliveredDate = nil, recipientName = nil, recipientCompany = nil, declaredValue = nil, currencyCode = nil, weight = nil, referenceNumber = nil, carrierName = nil)
594
+ @trackingNumber = trackingNumber
595
+ @shipmentDate = shipmentDate
596
+ @deliveredDate = deliveredDate
597
+ @recipientName = recipientName
598
+ @recipientCompany = recipientCompany
599
+ @declaredValue = declaredValue
600
+ @currencyCode = currencyCode
601
+ @weight = weight
602
+ @referenceNumber = referenceNumber
603
+ @carrierName = carrierName
604
+ end
814
605
  end
815
- end
816
-
817
- # {http://tempuri.org/}GetShipmentStatus
818
- class GetShipmentStatus
819
- def initialize
606
+
607
+ # {http://tempuri.org/}IPSErrors
608
+ # errorCode - SOAP::SOAPString
609
+ # errorDescription - SOAP::SOAPString
610
+ # status - SOAP::SOAPBoolean
611
+ # innerException - SOAP::SOAPString
612
+ class IPSErrors
613
+ attr_accessor :errorCode
614
+ attr_accessor :errorDescription
615
+ attr_accessor :status
616
+ attr_accessor :innerException
617
+
618
+ def initialize(errorCode = nil, errorDescription = nil, status = nil, innerException = nil)
619
+ @errorCode = errorCode
620
+ @errorDescription = errorDescription
621
+ @status = status
622
+ @innerException = innerException
623
+ end
624
+ end
625
+
626
+ # {http://tempuri.org/}ShipmentTrackingRequestAdvanced
627
+ # fromDate - SOAP::SOAPDateTime
628
+ # toDate - SOAP::SOAPDateTime
629
+ # carriers - SOAP::SOAPString
630
+ # shipmentExceptions - SOAP::SOAPString
631
+ # shipmentCarrierStatus - SOAP::SOAPString
632
+ # criteriaValue - SOAP::SOAPString
633
+ # criteriaType - CriteriaList
634
+ class ShipmentTrackingRequestAdvanced
635
+ attr_accessor :fromDate
636
+ attr_accessor :toDate
637
+ attr_accessor :carriers
638
+ attr_accessor :shipmentExceptions
639
+ attr_accessor :shipmentCarrierStatus
640
+ attr_accessor :criteriaValue
641
+ attr_accessor :criteriaType
642
+
643
+ def initialize(fromDate = nil, toDate = nil, carriers = nil, shipmentExceptions = nil, shipmentCarrierStatus = nil, criteriaValue = nil, criteriaType = nil)
644
+ @fromDate = fromDate
645
+ @toDate = toDate
646
+ @carriers = carriers
647
+ @shipmentExceptions = shipmentExceptions
648
+ @shipmentCarrierStatus = shipmentCarrierStatus
649
+ @criteriaValue = criteriaValue
650
+ @criteriaType = criteriaType
651
+ end
652
+ end
653
+
654
+ # {http://tempuri.org/}IPSResponse
655
+ # result - ArrayOfAnyType
656
+ # errors - IPSErrors
657
+ class IPSResponse
658
+ attr_accessor :result
659
+ attr_accessor :errors
660
+
661
+ def initialize(result = nil, errors = nil)
662
+ @result = result
663
+ @errors = errors
664
+ end
665
+ end
666
+
667
+ # {http://tempuri.org/}ShipmentStatusListResponse
668
+ # result - ArrayOfAnyType
669
+ # errors - IPSErrors
670
+ class ShipmentStatusListResponse < IPSResponse
671
+ attr_accessor :result
672
+ attr_accessor :errors
673
+
674
+ def initialize(result = nil, errors = nil)
675
+ @result = result
676
+ @errors = errors
677
+ end
678
+ end
679
+
680
+ # {http://tempuri.org/}ShipmentExceptionsListResponse
681
+ # result - ArrayOfAnyType
682
+ # errors - IPSErrors
683
+ class ShipmentExceptionsListResponse < IPSResponse
684
+ attr_accessor :result
685
+ attr_accessor :errors
686
+
687
+ def initialize(result = nil, errors = nil)
688
+ @result = result
689
+ @errors = errors
690
+ end
691
+ end
692
+
693
+ # {http://tempuri.org/}ArrayOfAnyType
694
+ class ArrayOfAnyType < ::Array
695
+ end
696
+
697
+ # {http://tempuri.org/}GeneralListForTracking
698
+ # description - SOAP::SOAPString
699
+ class GeneralListForTracking
700
+ attr_accessor :description
701
+
702
+ def initialize(description = nil)
703
+ @description = description
704
+ end
705
+ end
706
+
707
+ # {http://tempuri.org/}ShipmentTrackingStatusResponse
708
+ # shipmentTrackingStatusList - ArrayOfAnyType
709
+ # errors - IPSErrors
710
+ class ShipmentTrackingStatusResponse
711
+ attr_accessor :shipmentTrackingStatusList
712
+ attr_accessor :errors
713
+
714
+ def initialize(shipmentTrackingStatusList = nil, errors = nil)
715
+ @shipmentTrackingStatusList = shipmentTrackingStatusList
716
+ @errors = errors
717
+ end
718
+ end
719
+
720
+ # {http://tempuri.org/}ShipmentTrackingStatus
721
+ # statusDescription - SOAP::SOAPString
722
+ # statusDate - SOAP::SOAPDateTime
723
+ # statusCity - SOAP::SOAPString
724
+ # statusState - SOAP::SOAPString
725
+ # statusCountry - SOAP::SOAPString
726
+ class ShipmentTrackingStatus
727
+ attr_accessor :statusDescription
728
+ attr_accessor :statusDate
729
+ attr_accessor :statusCity
730
+ attr_accessor :statusState
731
+ attr_accessor :statusCountry
732
+
733
+ def initialize(statusDescription = nil, statusDate = nil, statusCity = nil, statusState = nil, statusCountry = nil)
734
+ @statusDescription = statusDescription
735
+ @statusDate = statusDate
736
+ @statusCity = statusCity
737
+ @statusState = statusState
738
+ @statusCountry = statusCountry
739
+ end
740
+ end
741
+
742
+ # {http://tempuri.org/}CriteriaList
743
+ class CriteriaList < ::String
744
+ AccountNumber = CriteriaList.new("AccountNumber")
745
+ CarrierAccount = CriteriaList.new("CarrierAccount")
746
+ InvoiceNumber = CriteriaList.new("InvoiceNumber")
747
+ PurchaseOrder = CriteriaList.new("PurchaseOrder")
748
+ RecipientAddress = CriteriaList.new("RecipientAddress")
749
+ RecipientCompany = CriteriaList.new("RecipientCompany")
750
+ RecipientName = CriteriaList.new("RecipientName")
751
+ ReferenceNumber = CriteriaList.new("ReferenceNumber")
752
+ SalesOrder = CriteriaList.new("SalesOrder")
753
+ SignatureName = CriteriaList.new("SignatureName")
754
+ TrackingNumber = CriteriaList.new("TrackingNumber")
755
+ end
756
+
757
+ # {http://tempuri.org/}GetShipmentInfoByTrackingNumber
758
+ class GetShipmentInfoByTrackingNumber
759
+ def initialize
760
+ end
761
+ end
762
+
763
+ # {http://tempuri.org/}GetShipmentInfoByTrackingNumberResponse
764
+ # getShipmentInfoByTrackingNumberResult - ShipmentTrackingResponse
765
+ class GetShipmentInfoByTrackingNumberResponse
766
+ attr_accessor :getShipmentInfoByTrackingNumberResult
767
+
768
+ def initialize(getShipmentInfoByTrackingNumberResult = nil)
769
+ @getShipmentInfoByTrackingNumberResult = getShipmentInfoByTrackingNumberResult
770
+ end
771
+ end
772
+
773
+ # {http://tempuri.org/}GetShipmentTrackingList
774
+ class GetShipmentTrackingList
775
+ def initialize
776
+ end
777
+ end
778
+
779
+ # {http://tempuri.org/}GetShipmentTrackingListResponse
780
+ # getShipmentTrackingListResult - TrackShipmentListResponse
781
+ class GetShipmentTrackingListResponse
782
+ attr_accessor :getShipmentTrackingListResult
783
+
784
+ def initialize(getShipmentTrackingListResult = nil)
785
+ @getShipmentTrackingListResult = getShipmentTrackingListResult
786
+ end
787
+ end
788
+
789
+ # {http://tempuri.org/}GetShipmentStatusListForSearchRequest
790
+ class GetShipmentStatusListForSearchRequest
791
+ def initialize
792
+ end
793
+ end
794
+
795
+ # {http://tempuri.org/}GetShipmentStatusListForSearchRequestResponse
796
+ # getShipmentStatusListForSearchRequestResult - ShipmentStatusListResponse
797
+ class GetShipmentStatusListForSearchRequestResponse
798
+ attr_accessor :getShipmentStatusListForSearchRequestResult
799
+
800
+ def initialize(getShipmentStatusListForSearchRequestResult = nil)
801
+ @getShipmentStatusListForSearchRequestResult = getShipmentStatusListForSearchRequestResult
802
+ end
803
+ end
804
+
805
+ # {http://tempuri.org/}GetShipmentExceptionsForSearchRequest
806
+ class GetShipmentExceptionsForSearchRequest
807
+ def initialize
808
+ end
809
+ end
810
+
811
+ # {http://tempuri.org/}GetShipmentExceptionsForSearchRequestResponse
812
+ # getShipmentExceptionsForSearchRequestResult - ShipmentExceptionsListResponse
813
+ class GetShipmentExceptionsForSearchRequestResponse
814
+ attr_accessor :getShipmentExceptionsForSearchRequestResult
815
+
816
+ def initialize(getShipmentExceptionsForSearchRequestResult = nil)
817
+ @getShipmentExceptionsForSearchRequestResult = getShipmentExceptionsForSearchRequestResult
818
+ end
819
+ end
820
+
821
+ # {http://tempuri.org/}GetShipmentStatus
822
+ class GetShipmentStatus
823
+ def initialize
824
+ end
820
825
  end
821
- end
822
826
 
823
- # {http://tempuri.org/}GetShipmentStatusResponse
824
- # getShipmentStatusResult - ShipmentTrackingStatusResponse
825
- class GetShipmentStatusResponse
826
- attr_accessor :getShipmentStatusResult
827
+ # {http://tempuri.org/}GetShipmentStatusResponse
828
+ # getShipmentStatusResult - ShipmentTrackingStatusResponse
829
+ class GetShipmentStatusResponse
830
+ attr_accessor :getShipmentStatusResult
827
831
 
828
- def initialize(getShipmentStatusResult = nil)
829
- @getShipmentStatusResult = getShipmentStatusResult
832
+ def initialize(getShipmentStatusResult = nil)
833
+ @getShipmentStatusResult = getShipmentStatusResult
834
+ end
830
835
  end
831
- end
836
+ #end