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,533 +1,536 @@
1
1
  require 'xsd/qname'
2
2
 
3
- # {http://WS.G4SI.COM/}PriceEstimateResponse
4
- # baseCharges - SOAP::SOAPDouble
5
- # fuelSurCharge - SOAP::SOAPDouble
6
- # additionalWeightCharge - SOAP::SOAPDouble
7
- # schedulePickupCharges - SOAP::SOAPDouble
8
- # saturdayPickupCharges - SOAP::SOAPDouble
9
- # adultSignatureCharges - SOAP::SOAPDouble
10
- # directSignatureCharges - SOAP::SOAPDouble
11
- # errorCode - SOAP::SOAPString
12
- # errorDescription - SOAP::SOAPString
13
- # innerException - SOAP::SOAPString
14
- class PriceEstimateResponse
15
- attr_accessor :baseCharges
16
- attr_accessor :fuelSurCharge
17
- attr_accessor :additionalWeightCharge
18
- attr_accessor :schedulePickupCharges
19
- attr_accessor :saturdayPickupCharges
20
- attr_accessor :adultSignatureCharges
21
- attr_accessor :directSignatureCharges
22
- attr_accessor :errorCode
23
- attr_accessor :errorDescription
24
- attr_accessor :innerException
25
-
26
- def initialize(baseCharges = nil, fuelSurCharge = nil, additionalWeightCharge = nil, schedulePickupCharges = nil, saturdayPickupCharges = nil, adultSignatureCharges = nil, directSignatureCharges = nil, errorCode = nil, errorDescription = nil, innerException = nil)
27
- @baseCharges = baseCharges
28
- @fuelSurCharge = fuelSurCharge
29
- @additionalWeightCharge = additionalWeightCharge
30
- @schedulePickupCharges = schedulePickupCharges
31
- @saturdayPickupCharges = saturdayPickupCharges
32
- @adultSignatureCharges = adultSignatureCharges
33
- @directSignatureCharges = directSignatureCharges
34
- @errorCode = errorCode
35
- @errorDescription = errorDescription
36
- @innerException = innerException
3
+
4
+ #module DefaultMappingRegistry
5
+ # {http://WS.G4SI.COM/}PriceEstimateResponse
6
+ # baseCharges - SOAP::SOAPDouble
7
+ # fuelSurCharge - SOAP::SOAPDouble
8
+ # additionalWeightCharge - SOAP::SOAPDouble
9
+ # schedulePickupCharges - SOAP::SOAPDouble
10
+ # saturdayPickupCharges - SOAP::SOAPDouble
11
+ # adultSignatureCharges - SOAP::SOAPDouble
12
+ # directSignatureCharges - SOAP::SOAPDouble
13
+ # errorCode - SOAP::SOAPString
14
+ # errorDescription - SOAP::SOAPString
15
+ # innerException - SOAP::SOAPString
16
+ class PriceEstimateResponse
17
+ attr_accessor :baseCharges
18
+ attr_accessor :fuelSurCharge
19
+ attr_accessor :additionalWeightCharge
20
+ attr_accessor :schedulePickupCharges
21
+ attr_accessor :saturdayPickupCharges
22
+ attr_accessor :adultSignatureCharges
23
+ attr_accessor :directSignatureCharges
24
+ attr_accessor :errorCode
25
+ attr_accessor :errorDescription
26
+ attr_accessor :innerException
27
+
28
+ def initialize(baseCharges = nil, fuelSurCharge = nil, additionalWeightCharge = nil, schedulePickupCharges = nil, saturdayPickupCharges = nil, adultSignatureCharges = nil, directSignatureCharges = nil, errorCode = nil, errorDescription = nil, innerException = nil)
29
+ @baseCharges = baseCharges
30
+ @fuelSurCharge = fuelSurCharge
31
+ @additionalWeightCharge = additionalWeightCharge
32
+ @schedulePickupCharges = schedulePickupCharges
33
+ @saturdayPickupCharges = saturdayPickupCharges
34
+ @adultSignatureCharges = adultSignatureCharges
35
+ @directSignatureCharges = directSignatureCharges
36
+ @errorCode = errorCode
37
+ @errorDescription = errorDescription
38
+ @innerException = innerException
39
+ end
37
40
  end
38
- end
39
-
40
- # {http://WS.G4SI.COM/}G4SIAuthentication
41
- # username - SOAP::SOAPString
42
- # password - SOAP::SOAPString
43
- # accessKey - SOAP::SOAPString
44
- class G4SIAuthentication
45
- attr_accessor :username
46
- attr_accessor :password
47
- attr_accessor :accessKey
48
-
49
- def initialize(username = nil, password = nil, accessKey = nil)
50
- @username = username
51
- @password = password
52
- @accessKey = accessKey
41
+
42
+ # {http://WS.G4SI.COM/}G4SIAuthentication
43
+ # username - SOAP::SOAPString
44
+ # password - SOAP::SOAPString
45
+ # accessKey - SOAP::SOAPString
46
+ class G4SIAuthentication
47
+ attr_accessor :username
48
+ attr_accessor :password
49
+ attr_accessor :accessKey
50
+
51
+ def initialize(username = nil, password = nil, accessKey = nil)
52
+ @username = username
53
+ @password = password
54
+ @accessKey = accessKey
55
+ end
53
56
  end
54
- end
55
-
56
- # {http://WS.G4SI.COM/}ShipmentRequest
57
- # commodityCollection - ArrayOfCommodityList
58
- # carrierName - SOAP::SOAPString
59
- # shipmentDate - SOAP::SOAPDateTime
60
- # billFreightTo - SOAP::SOAPString
61
- # serviceLevelName - SOAP::SOAPString
62
- # packageTypeName - SOAP::SOAPString
63
- # declaredWeight - SOAP::SOAPDouble
64
- # declareValue - SOAP::SOAPDouble
65
- # weightType - SOAP::SOAPString
66
- # description - SOAP::SOAPString
67
- # dimensions - SOAP::SOAPString
68
- # dimensionUnitType - SOAP::SOAPString
69
- # thermalPrinter - SOAP::SOAPBoolean
70
- # sEDNumber - SOAP::SOAPString
71
- # dutiesPayorType - SOAP::SOAPString
72
- # recipientAddress - Address
73
- # saveNewRecipientAddress - SOAP::SOAPBoolean
74
- # shipperAddress - Address
75
- # cODAmount - SOAP::SOAPDouble
76
- # holdAtLocation - SOAP::SOAPBoolean
77
- # schedulePickup - SOAP::SOAPBoolean
78
- # schedulePickupLocation - SchedulePickup
79
- # cODInfo - COD
80
- # holdAtLocationInfo - HoldAtLocation
81
- # purchaseOrderNumber - SOAP::SOAPString
82
- # salesOrderNumber - SOAP::SOAPString
83
- # brokerInfo - BrokerInfo
84
- # recipientShipNotification - SOAP::SOAPBoolean
85
- # receiveAlerts - SOAP::SOAPBoolean
86
- # saturdayDelivery - SOAP::SOAPBoolean
87
- # saturdayPickup - SOAP::SOAPBoolean
88
- # residential - SOAP::SOAPBoolean
89
- # signatureOption - SOAP::SOAPString
90
- # recipientAlertEmail - SOAP::SOAPString
91
- # recipientDeliveryNotification - SOAP::SOAPBoolean
92
- # recipientExceptionNotification - SOAP::SOAPBoolean
93
- # shipperShipNotification - SOAP::SOAPBoolean
94
- # shipperDeliveryNotification - SOAP::SOAPBoolean
95
- # shipperExceptionNotification - SOAP::SOAPBoolean
96
- # restrictedWordsCompliance - SOAP::SOAPBoolean
97
- # trackingNumber - SOAP::SOAPString
98
- class ShipmentRequest
99
- attr_accessor :commodityCollection
100
- attr_accessor :carrierName
101
- attr_accessor :shipmentDate
102
- attr_accessor :billFreightTo
103
- attr_accessor :serviceLevelName
104
- attr_accessor :packageTypeName
105
- attr_accessor :declaredWeight
106
- attr_accessor :declareValue
107
- attr_accessor :weightType
108
- attr_accessor :description
109
- attr_accessor :dimensions
110
- attr_accessor :dimensionUnitType
111
- attr_accessor :thermalPrinter
112
- attr_accessor :sEDNumber
113
- attr_accessor :dutiesPayorType
114
- attr_accessor :recipientAddress
115
- attr_accessor :saveNewRecipientAddress
116
- attr_accessor :shipperAddress
117
- attr_accessor :cODAmount
118
- attr_accessor :holdAtLocation
119
- attr_accessor :schedulePickup
120
- attr_accessor :schedulePickupLocation
121
- attr_accessor :cODInfo
122
- attr_accessor :holdAtLocationInfo
123
- attr_accessor :purchaseOrderNumber
124
- attr_accessor :salesOrderNumber
125
- attr_accessor :brokerInfo
126
- attr_accessor :recipientShipNotification
127
- attr_accessor :receiveAlerts
128
- attr_accessor :saturdayDelivery
129
- attr_accessor :saturdayPickup
130
- attr_accessor :residential
131
- attr_accessor :signatureOption
132
- attr_accessor :recipientAlertEmail
133
- attr_accessor :recipientDeliveryNotification
134
- attr_accessor :recipientExceptionNotification
135
- attr_accessor :shipperShipNotification
136
- attr_accessor :shipperDeliveryNotification
137
- attr_accessor :shipperExceptionNotification
138
- attr_accessor :restrictedWordsCompliance
139
- attr_accessor :trackingNumber
140
-
141
- 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)
142
- @commodityCollection = commodityCollection
143
- @carrierName = carrierName
144
- @shipmentDate = shipmentDate
145
- @billFreightTo = billFreightTo
146
- @serviceLevelName = serviceLevelName
147
- @packageTypeName = packageTypeName
148
- @declaredWeight = declaredWeight
149
- @declareValue = declareValue
150
- @weightType = weightType
151
- @description = description
152
- @dimensions = dimensions
153
- @dimensionUnitType = dimensionUnitType
154
- @thermalPrinter = thermalPrinter
155
- @sEDNumber = sEDNumber
156
- @dutiesPayorType = dutiesPayorType
157
- @recipientAddress = recipientAddress
158
- @saveNewRecipientAddress = saveNewRecipientAddress
159
- @shipperAddress = shipperAddress
160
- @cODAmount = cODAmount
161
- @holdAtLocation = holdAtLocation
162
- @schedulePickup = schedulePickup
163
- @schedulePickupLocation = schedulePickupLocation
164
- @cODInfo = cODInfo
165
- @holdAtLocationInfo = holdAtLocationInfo
166
- @purchaseOrderNumber = purchaseOrderNumber
167
- @salesOrderNumber = salesOrderNumber
168
- @brokerInfo = brokerInfo
169
- @recipientShipNotification = recipientShipNotification
170
- @receiveAlerts = receiveAlerts
171
- @saturdayDelivery = saturdayDelivery
172
- @saturdayPickup = saturdayPickup
173
- @residential = residential
174
- @signatureOption = signatureOption
175
- @recipientAlertEmail = recipientAlertEmail
176
- @recipientDeliveryNotification = recipientDeliveryNotification
177
- @recipientExceptionNotification = recipientExceptionNotification
178
- @shipperShipNotification = shipperShipNotification
179
- @shipperDeliveryNotification = shipperDeliveryNotification
180
- @shipperExceptionNotification = shipperExceptionNotification
181
- @restrictedWordsCompliance = restrictedWordsCompliance
182
- @trackingNumber = trackingNumber
57
+
58
+ # {http://WS.G4SI.COM/}ShipmentRequest
59
+ # commodityCollection - ArrayOfCommodityList
60
+ # carrierName - SOAP::SOAPString
61
+ # shipmentDate - SOAP::SOAPDateTime
62
+ # billFreightTo - SOAP::SOAPString
63
+ # serviceLevelName - SOAP::SOAPString
64
+ # packageTypeName - SOAP::SOAPString
65
+ # declaredWeight - SOAP::SOAPDouble
66
+ # declareValue - SOAP::SOAPDouble
67
+ # weightType - SOAP::SOAPString
68
+ # description - SOAP::SOAPString
69
+ # dimensions - SOAP::SOAPString
70
+ # dimensionUnitType - SOAP::SOAPString
71
+ # thermalPrinter - SOAP::SOAPBoolean
72
+ # sEDNumber - SOAP::SOAPString
73
+ # dutiesPayorType - SOAP::SOAPString
74
+ # recipientAddress - Address
75
+ # saveNewRecipientAddress - SOAP::SOAPBoolean
76
+ # shipperAddress - Address
77
+ # cODAmount - SOAP::SOAPDouble
78
+ # holdAtLocation - SOAP::SOAPBoolean
79
+ # schedulePickup - SOAP::SOAPBoolean
80
+ # schedulePickupLocation - SchedulePickup
81
+ # cODInfo - COD
82
+ # holdAtLocationInfo - HoldAtLocation
83
+ # purchaseOrderNumber - SOAP::SOAPString
84
+ # salesOrderNumber - SOAP::SOAPString
85
+ # brokerInfo - BrokerInfo
86
+ # recipientShipNotification - SOAP::SOAPBoolean
87
+ # receiveAlerts - SOAP::SOAPBoolean
88
+ # saturdayDelivery - SOAP::SOAPBoolean
89
+ # saturdayPickup - SOAP::SOAPBoolean
90
+ # residential - SOAP::SOAPBoolean
91
+ # signatureOption - SOAP::SOAPString
92
+ # recipientAlertEmail - SOAP::SOAPString
93
+ # recipientDeliveryNotification - SOAP::SOAPBoolean
94
+ # recipientExceptionNotification - SOAP::SOAPBoolean
95
+ # shipperShipNotification - SOAP::SOAPBoolean
96
+ # shipperDeliveryNotification - SOAP::SOAPBoolean
97
+ # shipperExceptionNotification - SOAP::SOAPBoolean
98
+ # restrictedWordsCompliance - SOAP::SOAPBoolean
99
+ # trackingNumber - SOAP::SOAPString
100
+ class ShipmentRequest
101
+ attr_accessor :commodityCollection
102
+ attr_accessor :carrierName
103
+ attr_accessor :shipmentDate
104
+ attr_accessor :billFreightTo
105
+ attr_accessor :serviceLevelName
106
+ attr_accessor :packageTypeName
107
+ attr_accessor :declaredWeight
108
+ attr_accessor :declareValue
109
+ attr_accessor :weightType
110
+ attr_accessor :description
111
+ attr_accessor :dimensions
112
+ attr_accessor :dimensionUnitType
113
+ attr_accessor :thermalPrinter
114
+ attr_accessor :sEDNumber
115
+ attr_accessor :dutiesPayorType
116
+ attr_accessor :recipientAddress
117
+ attr_accessor :saveNewRecipientAddress
118
+ attr_accessor :shipperAddress
119
+ attr_accessor :cODAmount
120
+ attr_accessor :holdAtLocation
121
+ attr_accessor :schedulePickup
122
+ attr_accessor :schedulePickupLocation
123
+ attr_accessor :cODInfo
124
+ attr_accessor :holdAtLocationInfo
125
+ attr_accessor :purchaseOrderNumber
126
+ attr_accessor :salesOrderNumber
127
+ attr_accessor :brokerInfo
128
+ attr_accessor :recipientShipNotification
129
+ attr_accessor :receiveAlerts
130
+ attr_accessor :saturdayDelivery
131
+ attr_accessor :saturdayPickup
132
+ attr_accessor :residential
133
+ attr_accessor :signatureOption
134
+ attr_accessor :recipientAlertEmail
135
+ attr_accessor :recipientDeliveryNotification
136
+ attr_accessor :recipientExceptionNotification
137
+ attr_accessor :shipperShipNotification
138
+ attr_accessor :shipperDeliveryNotification
139
+ attr_accessor :shipperExceptionNotification
140
+ attr_accessor :restrictedWordsCompliance
141
+ attr_accessor :trackingNumber
142
+
143
+ 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)
144
+ @commodityCollection = commodityCollection
145
+ @carrierName = carrierName
146
+ @shipmentDate = shipmentDate
147
+ @billFreightTo = billFreightTo
148
+ @serviceLevelName = serviceLevelName
149
+ @packageTypeName = packageTypeName
150
+ @declaredWeight = declaredWeight
151
+ @declareValue = declareValue
152
+ @weightType = weightType
153
+ @description = description
154
+ @dimensions = dimensions
155
+ @dimensionUnitType = dimensionUnitType
156
+ @thermalPrinter = thermalPrinter
157
+ @sEDNumber = sEDNumber
158
+ @dutiesPayorType = dutiesPayorType
159
+ @recipientAddress = recipientAddress
160
+ @saveNewRecipientAddress = saveNewRecipientAddress
161
+ @shipperAddress = shipperAddress
162
+ @cODAmount = cODAmount
163
+ @holdAtLocation = holdAtLocation
164
+ @schedulePickup = schedulePickup
165
+ @schedulePickupLocation = schedulePickupLocation
166
+ @cODInfo = cODInfo
167
+ @holdAtLocationInfo = holdAtLocationInfo
168
+ @purchaseOrderNumber = purchaseOrderNumber
169
+ @salesOrderNumber = salesOrderNumber
170
+ @brokerInfo = brokerInfo
171
+ @recipientShipNotification = recipientShipNotification
172
+ @receiveAlerts = receiveAlerts
173
+ @saturdayDelivery = saturdayDelivery
174
+ @saturdayPickup = saturdayPickup
175
+ @residential = residential
176
+ @signatureOption = signatureOption
177
+ @recipientAlertEmail = recipientAlertEmail
178
+ @recipientDeliveryNotification = recipientDeliveryNotification
179
+ @recipientExceptionNotification = recipientExceptionNotification
180
+ @shipperShipNotification = shipperShipNotification
181
+ @shipperDeliveryNotification = shipperDeliveryNotification
182
+ @shipperExceptionNotification = shipperExceptionNotification
183
+ @restrictedWordsCompliance = restrictedWordsCompliance
184
+ @trackingNumber = trackingNumber
185
+ end
183
186
  end
184
- end
185
-
186
- # {http://WS.G4SI.COM/}ArrayOfCommodityList
187
- class ArrayOfCommodityList < ::Array
188
- end
189
-
190
- # {http://WS.G4SI.COM/}CommodityList
191
- # commodityDescription - SOAP::SOAPString
192
- # harmonizedCode - SOAP::SOAPString
193
- # commodityQuantity - SOAP::SOAPDouble
194
- # measurement - SOAP::SOAPString
195
- # customValue - SOAP::SOAPDouble
196
- # commodityWeight - SOAP::SOAPDouble
197
- # codeCountryOfManufacture - SOAP::SOAPString
198
- # nameOnLabel - SOAP::SOAPString
199
- class CommodityList
200
- attr_accessor :commodityDescription
201
- attr_accessor :harmonizedCode
202
- attr_accessor :commodityQuantity
203
- attr_accessor :measurement
204
- attr_accessor :customValue
205
- attr_accessor :commodityWeight
206
- attr_accessor :codeCountryOfManufacture
207
- attr_accessor :nameOnLabel
208
-
209
- def initialize(commodityDescription = nil, harmonizedCode = nil, commodityQuantity = nil, measurement = nil, customValue = nil, commodityWeight = nil, codeCountryOfManufacture = nil, nameOnLabel = nil)
210
- @commodityDescription = commodityDescription
211
- @harmonizedCode = harmonizedCode
212
- @commodityQuantity = commodityQuantity
213
- @measurement = measurement
214
- @customValue = customValue
215
- @commodityWeight = commodityWeight
216
- @codeCountryOfManufacture = codeCountryOfManufacture
217
- @nameOnLabel = nameOnLabel
187
+
188
+ # {http://WS.G4SI.COM/}ArrayOfCommodityList
189
+ class ArrayOfCommodityList < ::Array
218
190
  end
219
- end
220
-
221
- # {http://WS.G4SI.COM/}Address
222
- # name - SOAP::SOAPString
223
- # company - SOAP::SOAPString
224
- # address1 - SOAP::SOAPString
225
- # address2 - SOAP::SOAPString
226
- # city - SOAP::SOAPString
227
- # state - SOAP::SOAPString
228
- # countryCode - SOAP::SOAPString
229
- # zip - SOAP::SOAPString
230
- # phone - SOAP::SOAPString
231
- # email - SOAP::SOAPString
232
- class Address
233
- attr_accessor :name
234
- attr_accessor :company
235
- attr_accessor :address1
236
- attr_accessor :address2
237
- attr_accessor :city
238
- attr_accessor :state
239
- attr_accessor :countryCode
240
- attr_accessor :zip
241
- attr_accessor :phone
242
- attr_accessor :email
243
-
244
- def initialize(name = nil, company = nil, address1 = nil, address2 = nil, city = nil, state = nil, countryCode = nil, zip = nil, phone = nil, email = nil)
245
- @name = name
246
- @company = company
247
- @address1 = address1
248
- @address2 = address2
249
- @city = city
250
- @state = state
251
- @countryCode = countryCode
252
- @zip = zip
253
- @phone = phone
254
- @email = email
191
+
192
+ # {http://WS.G4SI.COM/}CommodityList
193
+ # commodityDescription - SOAP::SOAPString
194
+ # harmonizedCode - SOAP::SOAPString
195
+ # commodityQuantity - SOAP::SOAPDouble
196
+ # measurement - SOAP::SOAPString
197
+ # customValue - SOAP::SOAPDouble
198
+ # commodityWeight - SOAP::SOAPDouble
199
+ # codeCountryOfManufacture - SOAP::SOAPString
200
+ # nameOnLabel - SOAP::SOAPString
201
+ class CommodityList
202
+ attr_accessor :commodityDescription
203
+ attr_accessor :harmonizedCode
204
+ attr_accessor :commodityQuantity
205
+ attr_accessor :measurement
206
+ attr_accessor :customValue
207
+ attr_accessor :commodityWeight
208
+ attr_accessor :codeCountryOfManufacture
209
+ attr_accessor :nameOnLabel
210
+
211
+ def initialize(commodityDescription = nil, harmonizedCode = nil, commodityQuantity = nil, measurement = nil, customValue = nil, commodityWeight = nil, codeCountryOfManufacture = nil, nameOnLabel = nil)
212
+ @commodityDescription = commodityDescription
213
+ @harmonizedCode = harmonizedCode
214
+ @commodityQuantity = commodityQuantity
215
+ @measurement = measurement
216
+ @customValue = customValue
217
+ @commodityWeight = commodityWeight
218
+ @codeCountryOfManufacture = codeCountryOfManufacture
219
+ @nameOnLabel = nameOnLabel
220
+ end
221
+ end
222
+
223
+ # {http://WS.G4SI.COM/}Address
224
+ # name - SOAP::SOAPString
225
+ # company - SOAP::SOAPString
226
+ # address1 - SOAP::SOAPString
227
+ # address2 - SOAP::SOAPString
228
+ # city - SOAP::SOAPString
229
+ # state - SOAP::SOAPString
230
+ # countryCode - SOAP::SOAPString
231
+ # zip - SOAP::SOAPString
232
+ # phone - SOAP::SOAPString
233
+ # email - SOAP::SOAPString
234
+ class Address
235
+ attr_accessor :name
236
+ attr_accessor :company
237
+ attr_accessor :address1
238
+ attr_accessor :address2
239
+ attr_accessor :city
240
+ attr_accessor :state
241
+ attr_accessor :countryCode
242
+ attr_accessor :zip
243
+ attr_accessor :phone
244
+ attr_accessor :email
245
+
246
+ def initialize(name = nil, company = nil, address1 = nil, address2 = nil, city = nil, state = nil, countryCode = nil, zip = nil, phone = nil, email = nil)
247
+ @name = name
248
+ @company = company
249
+ @address1 = address1
250
+ @address2 = address2
251
+ @city = city
252
+ @state = state
253
+ @countryCode = countryCode
254
+ @zip = zip
255
+ @phone = phone
256
+ @email = email
257
+ end
255
258
  end
256
- end
257
-
258
- # {http://WS.G4SI.COM/}SchedulePickup
259
- # contactName - SOAP::SOAPString
260
- # companyName - SOAP::SOAPString
261
- # packageLatestAvailableTime - SOAP::SOAPString
262
- # readyTime - SOAP::SOAPString
263
- # suiteNumber - SOAP::SOAPString
264
- # floorID - SOAP::SOAPString
265
- # differentPickupLocation - SOAP::SOAPBoolean
266
- # packageLocation - SOAP::SOAPString
267
- # address1 - SOAP::SOAPString
268
- # address2 - SOAP::SOAPString
269
- # city - SOAP::SOAPString
270
- # state - SOAP::SOAPString
271
- # countryCode - SOAP::SOAPString
272
- # zip - SOAP::SOAPString
273
- # phone - SOAP::SOAPString
274
- # phoneExtn - SOAP::SOAPString
275
- # pickupDate - SOAP::SOAPDateTime
276
- class SchedulePickup
277
- attr_accessor :contactName
278
- attr_accessor :companyName
279
- attr_accessor :packageLatestAvailableTime
280
- attr_accessor :readyTime
281
- attr_accessor :suiteNumber
282
- attr_accessor :floorID
283
- attr_accessor :differentPickupLocation
284
- attr_accessor :packageLocation
285
- attr_accessor :address1
286
- attr_accessor :address2
287
- attr_accessor :city
288
- attr_accessor :state
289
- attr_accessor :countryCode
290
- attr_accessor :zip
291
- attr_accessor :phone
292
- attr_accessor :phoneExtn
293
- attr_accessor :pickupDate
294
-
295
- 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)
296
- @contactName = contactName
297
- @companyName = companyName
298
- @packageLatestAvailableTime = packageLatestAvailableTime
299
- @readyTime = readyTime
300
- @suiteNumber = suiteNumber
301
- @floorID = floorID
302
- @differentPickupLocation = differentPickupLocation
303
- @packageLocation = packageLocation
304
- @address1 = address1
305
- @address2 = address2
306
- @city = city
307
- @state = state
308
- @countryCode = countryCode
309
- @zip = zip
310
- @phone = phone
311
- @phoneExtn = phoneExtn
312
- @pickupDate = pickupDate
259
+
260
+ # {http://WS.G4SI.COM/}SchedulePickup
261
+ # contactName - SOAP::SOAPString
262
+ # companyName - SOAP::SOAPString
263
+ # packageLatestAvailableTime - SOAP::SOAPString
264
+ # readyTime - SOAP::SOAPString
265
+ # suiteNumber - SOAP::SOAPString
266
+ # floorID - SOAP::SOAPString
267
+ # differentPickupLocation - SOAP::SOAPBoolean
268
+ # packageLocation - SOAP::SOAPString
269
+ # address1 - SOAP::SOAPString
270
+ # address2 - SOAP::SOAPString
271
+ # city - SOAP::SOAPString
272
+ # state - SOAP::SOAPString
273
+ # countryCode - SOAP::SOAPString
274
+ # zip - SOAP::SOAPString
275
+ # phone - SOAP::SOAPString
276
+ # phoneExtn - SOAP::SOAPString
277
+ # pickupDate - SOAP::SOAPDateTime
278
+ class SchedulePickup
279
+ attr_accessor :contactName
280
+ attr_accessor :companyName
281
+ attr_accessor :packageLatestAvailableTime
282
+ attr_accessor :readyTime
283
+ attr_accessor :suiteNumber
284
+ attr_accessor :floorID
285
+ attr_accessor :differentPickupLocation
286
+ attr_accessor :packageLocation
287
+ attr_accessor :address1
288
+ attr_accessor :address2
289
+ attr_accessor :city
290
+ attr_accessor :state
291
+ attr_accessor :countryCode
292
+ attr_accessor :zip
293
+ attr_accessor :phone
294
+ attr_accessor :phoneExtn
295
+ attr_accessor :pickupDate
296
+
297
+ 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)
298
+ @contactName = contactName
299
+ @companyName = companyName
300
+ @packageLatestAvailableTime = packageLatestAvailableTime
301
+ @readyTime = readyTime
302
+ @suiteNumber = suiteNumber
303
+ @floorID = floorID
304
+ @differentPickupLocation = differentPickupLocation
305
+ @packageLocation = packageLocation
306
+ @address1 = address1
307
+ @address2 = address2
308
+ @city = city
309
+ @state = state
310
+ @countryCode = countryCode
311
+ @zip = zip
312
+ @phone = phone
313
+ @phoneExtn = phoneExtn
314
+ @pickupDate = pickupDate
315
+ end
313
316
  end
314
- end
315
-
316
- # {http://WS.G4SI.COM/}COD
317
- # collectType - SOAP::SOAPString
318
- # name - SOAP::SOAPString
319
- # company - SOAP::SOAPString
320
- # country - SOAP::SOAPString
321
- # address - SOAP::SOAPString
322
- # city - SOAP::SOAPString
323
- # state - SOAP::SOAPString
324
- # countryCode - SOAP::SOAPString
325
- # zip - SOAP::SOAPString
326
- # phone - SOAP::SOAPString
327
- class COD
328
- attr_accessor :collectType
329
- attr_accessor :name
330
- attr_accessor :company
331
- attr_accessor :country
332
- attr_accessor :address
333
- attr_accessor :city
334
- attr_accessor :state
335
- attr_accessor :countryCode
336
- attr_accessor :zip
337
- attr_accessor :phone
338
-
339
- def initialize(collectType = nil, name = nil, company = nil, country = nil, address = nil, city = nil, state = nil, countryCode = nil, zip = nil, phone = nil)
340
- @collectType = collectType
341
- @name = name
342
- @company = company
343
- @country = country
344
- @address = address
345
- @city = city
346
- @state = state
347
- @countryCode = countryCode
348
- @zip = zip
349
- @phone = phone
317
+
318
+ # {http://WS.G4SI.COM/}COD
319
+ # collectType - SOAP::SOAPString
320
+ # name - SOAP::SOAPString
321
+ # company - SOAP::SOAPString
322
+ # country - SOAP::SOAPString
323
+ # address - SOAP::SOAPString
324
+ # city - SOAP::SOAPString
325
+ # state - SOAP::SOAPString
326
+ # countryCode - SOAP::SOAPString
327
+ # zip - SOAP::SOAPString
328
+ # phone - SOAP::SOAPString
329
+ class COD
330
+ attr_accessor :collectType
331
+ attr_accessor :name
332
+ attr_accessor :company
333
+ attr_accessor :country
334
+ attr_accessor :address
335
+ attr_accessor :city
336
+ attr_accessor :state
337
+ attr_accessor :countryCode
338
+ attr_accessor :zip
339
+ attr_accessor :phone
340
+
341
+ def initialize(collectType = nil, name = nil, company = nil, country = nil, address = nil, city = nil, state = nil, countryCode = nil, zip = nil, phone = nil)
342
+ @collectType = collectType
343
+ @name = name
344
+ @company = company
345
+ @country = country
346
+ @address = address
347
+ @city = city
348
+ @state = state
349
+ @countryCode = countryCode
350
+ @zip = zip
351
+ @phone = phone
352
+ end
350
353
  end
351
- end
352
-
353
- # {http://WS.G4SI.COM/}HoldAtLocation
354
- # name - SOAP::SOAPString
355
- # company - SOAP::SOAPString
356
- # address - SOAP::SOAPString
357
- # city - SOAP::SOAPString
358
- # state - SOAP::SOAPString
359
- # countryCode - SOAP::SOAPString
360
- # zip - SOAP::SOAPString
361
- # phone - SOAP::SOAPString
362
- # phoneExtn - SOAP::SOAPString
363
- class HoldAtLocation
364
- attr_accessor :name
365
- attr_accessor :company
366
- attr_accessor :address
367
- attr_accessor :city
368
- attr_accessor :state
369
- attr_accessor :countryCode
370
- attr_accessor :zip
371
- attr_accessor :phone
372
- attr_accessor :phoneExtn
373
-
374
- def initialize(name = nil, company = nil, address = nil, city = nil, state = nil, countryCode = nil, zip = nil, phone = nil, phoneExtn = nil)
375
- @name = name
376
- @company = company
377
- @address = address
378
- @city = city
379
- @state = state
380
- @countryCode = countryCode
381
- @zip = zip
382
- @phone = phone
383
- @phoneExtn = phoneExtn
354
+
355
+ # {http://WS.G4SI.COM/}HoldAtLocation
356
+ # name - SOAP::SOAPString
357
+ # company - SOAP::SOAPString
358
+ # address - SOAP::SOAPString
359
+ # city - SOAP::SOAPString
360
+ # state - SOAP::SOAPString
361
+ # countryCode - SOAP::SOAPString
362
+ # zip - SOAP::SOAPString
363
+ # phone - SOAP::SOAPString
364
+ # phoneExtn - SOAP::SOAPString
365
+ class HoldAtLocation
366
+ attr_accessor :name
367
+ attr_accessor :company
368
+ attr_accessor :address
369
+ attr_accessor :city
370
+ attr_accessor :state
371
+ attr_accessor :countryCode
372
+ attr_accessor :zip
373
+ attr_accessor :phone
374
+ attr_accessor :phoneExtn
375
+
376
+ def initialize(name = nil, company = nil, address = nil, city = nil, state = nil, countryCode = nil, zip = nil, phone = nil, phoneExtn = nil)
377
+ @name = name
378
+ @company = company
379
+ @address = address
380
+ @city = city
381
+ @state = state
382
+ @countryCode = countryCode
383
+ @zip = zip
384
+ @phone = phone
385
+ @phoneExtn = phoneExtn
386
+ end
384
387
  end
385
- end
386
-
387
- # {http://WS.G4SI.COM/}BrokerInfo
388
- # brokerName - SOAP::SOAPString
389
- # brokerTIN - SOAP::SOAPString
390
- # brokerCompany - SOAP::SOAPString
391
- # brokerAddress - SOAP::SOAPString
392
- # brokerAddress1 - SOAP::SOAPString
393
- # brokerAddress2 - SOAP::SOAPString
394
- # brokerCity - SOAP::SOAPString
395
- # brokerState - SOAP::SOAPString
396
- # brokerCountryCode - SOAP::SOAPString
397
- # brokerZip - SOAP::SOAPString
398
- # brokerPhone - SOAP::SOAPString
399
- # brokerEmail - SOAP::SOAPString
400
- class BrokerInfo
401
- attr_accessor :brokerName
402
- attr_accessor :brokerTIN
403
- attr_accessor :brokerCompany
404
- attr_accessor :brokerAddress
405
- attr_accessor :brokerAddress1
406
- attr_accessor :brokerAddress2
407
- attr_accessor :brokerCity
408
- attr_accessor :brokerState
409
- attr_accessor :brokerCountryCode
410
- attr_accessor :brokerZip
411
- attr_accessor :brokerPhone
412
- attr_accessor :brokerEmail
413
-
414
- 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)
415
- @brokerName = brokerName
416
- @brokerTIN = brokerTIN
417
- @brokerCompany = brokerCompany
418
- @brokerAddress = brokerAddress
419
- @brokerAddress1 = brokerAddress1
420
- @brokerAddress2 = brokerAddress2
421
- @brokerCity = brokerCity
422
- @brokerState = brokerState
423
- @brokerCountryCode = brokerCountryCode
424
- @brokerZip = brokerZip
425
- @brokerPhone = brokerPhone
426
- @brokerEmail = brokerEmail
388
+
389
+ # {http://WS.G4SI.COM/}BrokerInfo
390
+ # brokerName - SOAP::SOAPString
391
+ # brokerTIN - SOAP::SOAPString
392
+ # brokerCompany - SOAP::SOAPString
393
+ # brokerAddress - SOAP::SOAPString
394
+ # brokerAddress1 - SOAP::SOAPString
395
+ # brokerAddress2 - SOAP::SOAPString
396
+ # brokerCity - SOAP::SOAPString
397
+ # brokerState - SOAP::SOAPString
398
+ # brokerCountryCode - SOAP::SOAPString
399
+ # brokerZip - SOAP::SOAPString
400
+ # brokerPhone - SOAP::SOAPString
401
+ # brokerEmail - SOAP::SOAPString
402
+ class BrokerInfo
403
+ attr_accessor :brokerName
404
+ attr_accessor :brokerTIN
405
+ attr_accessor :brokerCompany
406
+ attr_accessor :brokerAddress
407
+ attr_accessor :brokerAddress1
408
+ attr_accessor :brokerAddress2
409
+ attr_accessor :brokerCity
410
+ attr_accessor :brokerState
411
+ attr_accessor :brokerCountryCode
412
+ attr_accessor :brokerZip
413
+ attr_accessor :brokerPhone
414
+ attr_accessor :brokerEmail
415
+
416
+ 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)
417
+ @brokerName = brokerName
418
+ @brokerTIN = brokerTIN
419
+ @brokerCompany = brokerCompany
420
+ @brokerAddress = brokerAddress
421
+ @brokerAddress1 = brokerAddress1
422
+ @brokerAddress2 = brokerAddress2
423
+ @brokerCity = brokerCity
424
+ @brokerState = brokerState
425
+ @brokerCountryCode = brokerCountryCode
426
+ @brokerZip = brokerZip
427
+ @brokerPhone = brokerPhone
428
+ @brokerEmail = brokerEmail
429
+ end
427
430
  end
428
- end
429
-
430
- # {http://WS.G4SI.COM/}ShipmentResponse
431
- # shipmentTrackingNumber - SOAP::SOAPString
432
- # shipmentLabel - SOAP::SOAPString
433
- # status - SOAP::SOAPBoolean
434
- # shipmentResponseErrorCode - SOAP::SOAPString
435
- # shipmentResponseError - SOAP::SOAPString
436
- class ShipmentResponse
437
- attr_accessor :shipmentTrackingNumber
438
- attr_accessor :shipmentLabel
439
- attr_accessor :status
440
- attr_accessor :shipmentResponseErrorCode
441
- attr_accessor :shipmentResponseError
442
-
443
- def initialize(shipmentTrackingNumber = nil, shipmentLabel = nil, status = nil, shipmentResponseErrorCode = nil, shipmentResponseError = nil)
444
- @shipmentTrackingNumber = shipmentTrackingNumber
445
- @shipmentLabel = shipmentLabel
446
- @status = status
447
- @shipmentResponseErrorCode = shipmentResponseErrorCode
448
- @shipmentResponseError = shipmentResponseError
431
+
432
+ # {http://WS.G4SI.COM/}ShipmentResponse
433
+ # shipmentTrackingNumber - SOAP::SOAPString
434
+ # shipmentLabel - SOAP::SOAPString
435
+ # status - SOAP::SOAPBoolean
436
+ # shipmentResponseErrorCode - SOAP::SOAPString
437
+ # shipmentResponseError - SOAP::SOAPString
438
+ class ShipmentResponse
439
+ attr_accessor :shipmentTrackingNumber
440
+ attr_accessor :shipmentLabel
441
+ attr_accessor :status
442
+ attr_accessor :shipmentResponseErrorCode
443
+ attr_accessor :shipmentResponseError
444
+
445
+ def initialize(shipmentTrackingNumber = nil, shipmentLabel = nil, status = nil, shipmentResponseErrorCode = nil, shipmentResponseError = nil)
446
+ @shipmentTrackingNumber = shipmentTrackingNumber
447
+ @shipmentLabel = shipmentLabel
448
+ @status = status
449
+ @shipmentResponseErrorCode = shipmentResponseErrorCode
450
+ @shipmentResponseError = shipmentResponseError
451
+ end
449
452
  end
450
- end
451
-
452
- # {http://WS.G4SI.COM/}ShipmentVoidResponse
453
- # status - SOAP::SOAPBoolean
454
- # errorDescription - SOAP::SOAPString
455
- # errorCode - SOAP::SOAPString
456
- # additionalInfo - SOAP::SOAPString
457
- class ShipmentVoidResponse
458
- attr_accessor :status
459
- attr_accessor :errorDescription
460
- attr_accessor :errorCode
461
- attr_accessor :additionalInfo
462
-
463
- def initialize(status = nil, errorDescription = nil, errorCode = nil, additionalInfo = nil)
464
- @status = status
465
- @errorDescription = errorDescription
466
- @errorCode = errorCode
467
- @additionalInfo = additionalInfo
453
+
454
+ # {http://WS.G4SI.COM/}ShipmentVoidResponse
455
+ # status - SOAP::SOAPBoolean
456
+ # errorDescription - SOAP::SOAPString
457
+ # errorCode - SOAP::SOAPString
458
+ # additionalInfo - SOAP::SOAPString
459
+ class ShipmentVoidResponse
460
+ attr_accessor :status
461
+ attr_accessor :errorDescription
462
+ attr_accessor :errorCode
463
+ attr_accessor :additionalInfo
464
+
465
+ def initialize(status = nil, errorDescription = nil, errorCode = nil, additionalInfo = nil)
466
+ @status = status
467
+ @errorDescription = errorDescription
468
+ @errorCode = errorCode
469
+ @additionalInfo = additionalInfo
470
+ end
468
471
  end
469
- end
470
-
471
- # {http://WS.G4SI.COM/}ShipmentVoidRequest
472
- # trackingNumber - SOAP::SOAPString
473
- # carrierName - SOAP::SOAPString
474
- # shipmentDate - SOAP::SOAPDateTime
475
- class ShipmentVoidRequest
476
- attr_accessor :trackingNumber
477
- attr_accessor :carrierName
478
- attr_accessor :shipmentDate
479
-
480
- def initialize(trackingNumber = nil, carrierName = nil, shipmentDate = nil)
481
- @trackingNumber = trackingNumber
482
- @carrierName = carrierName
483
- @shipmentDate = shipmentDate
472
+
473
+ # {http://WS.G4SI.COM/}ShipmentVoidRequest
474
+ # trackingNumber - SOAP::SOAPString
475
+ # carrierName - SOAP::SOAPString
476
+ # shipmentDate - SOAP::SOAPDateTime
477
+ class ShipmentVoidRequest
478
+ attr_accessor :trackingNumber
479
+ attr_accessor :carrierName
480
+ attr_accessor :shipmentDate
481
+
482
+ def initialize(trackingNumber = nil, carrierName = nil, shipmentDate = nil)
483
+ @trackingNumber = trackingNumber
484
+ @carrierName = carrierName
485
+ @shipmentDate = shipmentDate
486
+ end
484
487
  end
485
- end
486
488
 
487
- # {http://WS.G4SI.COM/}CalculateEstimatedPrice
488
- class CalculateEstimatedPrice
489
- def initialize
489
+ # {http://WS.G4SI.COM/}CalculateEstimatedPrice
490
+ class CalculateEstimatedPrice
491
+ def initialize
492
+ end
490
493
  end
491
- end
492
494
 
493
- # {http://WS.G4SI.COM/}CalculateEstimatedPriceResponse
494
- # calculateEstimatedPriceResult - PriceEstimateResponse
495
- class CalculateEstimatedPriceResponse
496
- attr_accessor :calculateEstimatedPriceResult
495
+ # {http://WS.G4SI.COM/}CalculateEstimatedPriceResponse
496
+ # calculateEstimatedPriceResult - PriceEstimateResponse
497
+ class CalculateEstimatedPriceResponse
498
+ attr_accessor :calculateEstimatedPriceResult
497
499
 
498
- def initialize(calculateEstimatedPriceResult = nil)
499
- @calculateEstimatedPriceResult = calculateEstimatedPriceResult
500
+ def initialize(calculateEstimatedPriceResult = nil)
501
+ @calculateEstimatedPriceResult = calculateEstimatedPriceResult
502
+ end
500
503
  end
501
- end
502
504
 
503
- # {http://WS.G4SI.COM/}CreateShipment
504
- class CreateShipment
505
- def initialize
505
+ # {http://WS.G4SI.COM/}CreateShipment
506
+ class CreateShipment
507
+ def initialize
508
+ end
506
509
  end
507
- end
508
510
 
509
- # {http://WS.G4SI.COM/}CreateShipmentResponse
510
- # createShipmentResult - ShipmentResponse
511
- class CreateShipmentResponse
512
- attr_accessor :createShipmentResult
511
+ # {http://WS.G4SI.COM/}CreateShipmentResponse
512
+ # createShipmentResult - ShipmentResponse
513
+ class CreateShipmentResponse
514
+ attr_accessor :createShipmentResult
513
515
 
514
- def initialize(createShipmentResult = nil)
515
- @createShipmentResult = createShipmentResult
516
+ def initialize(createShipmentResult = nil)
517
+ @createShipmentResult = createShipmentResult
518
+ end
516
519
  end
517
- end
518
520
 
519
- # {http://WS.G4SI.COM/}VoidShipment
520
- class VoidShipment
521
- def initialize
521
+ # {http://WS.G4SI.COM/}VoidShipment
522
+ class VoidShipment
523
+ def initialize
524
+ end
522
525
  end
523
- end
524
526
 
525
- # {http://WS.G4SI.COM/}VoidShipmentResponse
526
- # voidShipmentResult - ShipmentVoidResponse
527
- class VoidShipmentResponse
528
- attr_accessor :voidShipmentResult
527
+ # {http://WS.G4SI.COM/}VoidShipmentResponse
528
+ # voidShipmentResult - ShipmentVoidResponse
529
+ class VoidShipmentResponse
530
+ attr_accessor :voidShipmentResult
529
531
 
530
- def initialize(voidShipmentResult = nil)
531
- @voidShipmentResult = voidShipmentResult
532
+ def initialize(voidShipmentResult = nil)
533
+ @voidShipmentResult = voidShipmentResult
534
+ end
532
535
  end
533
- end
536
+ #end