channel_advisor 0.0.8
Sign up to get free protection for your applications and to get access to all the features.
- data/README +46 -0
- data/lib/channel_advisor/admin_service/client.rb +63 -0
- data/lib/channel_advisor/admin_service/mapping_registry.rb +206 -0
- data/lib/channel_advisor/admin_service/types.rb +175 -0
- data/lib/channel_advisor/admin_service.rb +14 -0
- data/lib/channel_advisor/auth_handler.rb +21 -0
- data/lib/channel_advisor/cart_service/client.rb +79 -0
- data/lib/channel_advisor/cart_service/mapping_registry.rb +344 -0
- data/lib/channel_advisor/cart_service/types.rb +386 -0
- data/lib/channel_advisor/cart_service.rb +14 -0
- data/lib/channel_advisor/errors.rb +13 -0
- data/lib/channel_advisor/inventory_service/client.rb +223 -0
- data/lib/channel_advisor/inventory_service/mapping_registry.rb +1765 -0
- data/lib/channel_advisor/inventory_service/types.rb +1708 -0
- data/lib/channel_advisor/inventory_service.rb +14 -0
- data/lib/channel_advisor/listing_service/client.rb +55 -0
- data/lib/channel_advisor/listing_service/mapping_registry.rb +153 -0
- data/lib/channel_advisor/listing_service/types.rb +125 -0
- data/lib/channel_advisor/listing_service.rb +14 -0
- data/lib/channel_advisor/marketplace_ad_service/client.rb +71 -0
- data/lib/channel_advisor/marketplace_ad_service/mapping_registry.rb +334 -0
- data/lib/channel_advisor/marketplace_ad_service/types.rb +317 -0
- data/lib/channel_advisor/marketplace_ad_service.rb +14 -0
- data/lib/channel_advisor/message_code.rb +30 -0
- data/lib/channel_advisor/order_service/client.rb +111 -0
- data/lib/channel_advisor/order_service/mapping_registry.rb +1696 -0
- data/lib/channel_advisor/order_service/types.rb +1781 -0
- data/lib/channel_advisor/order_service.rb +14 -0
- data/lib/channel_advisor/service_proxy.rb +62 -0
- data/lib/channel_advisor/shared_requires.rb +11 -0
- data/lib/channel_advisor/shipping_service/client.rb +79 -0
- data/lib/channel_advisor/shipping_service/mapping_registry.rb +500 -0
- data/lib/channel_advisor/shipping_service/types.rb +431 -0
- data/lib/channel_advisor/shipping_service.rb +14 -0
- data/lib/channel_advisor/store_service/client.rb +55 -0
- data/lib/channel_advisor/store_service/mapping_registry.rb +250 -0
- data/lib/channel_advisor/store_service/types.rb +180 -0
- data/lib/channel_advisor/store_service.rb +14 -0
- data/lib/channel_advisor/tax_service/client.rb +55 -0
- data/lib/channel_advisor/tax_service/mapping_registry.rb +233 -0
- data/lib/channel_advisor/tax_service/types.rb +221 -0
- data/lib/channel_advisor/tax_service.rb +14 -0
- data/lib/channel_advisor.rb +4 -0
- data/spec/integration/inventory_sync_spec.rb +55 -0
- data/spec/lib/channel_advisor/admin_service_spec.rb +12 -0
- data/spec/lib/channel_advisor/auth_handler_spec.rb +46 -0
- data/spec/lib/channel_advisor/cart_service_spec.rb +12 -0
- data/spec/lib/channel_advisor/errors_spec.rb +23 -0
- data/spec/lib/channel_advisor/inventory_service_spec.rb +12 -0
- data/spec/lib/channel_advisor/marketplace_ad_service_spec.rb +12 -0
- data/spec/lib/channel_advisor/message_code_spec.rb +40 -0
- data/spec/lib/channel_advisor/order_service_spec.rb +12 -0
- data/spec/lib/channel_advisor/service_proxy_spec.rb +130 -0
- data/spec/lib/channel_advisor/shipping_service_spec.rb +12 -0
- data/spec/lib/channel_advisor/store_service_spec.rb +12 -0
- data/spec/lib/channel_advisor/tax_service_spec.rb +12 -0
- data/spec/spec.opts +2 -0
- data/spec/spec_helper.rb +4 -0
- metadata +170 -0
@@ -0,0 +1,1708 @@
|
|
1
|
+
module ChannelAdvisor; module InventoryServiceSOAP
|
2
|
+
|
3
|
+
|
4
|
+
# {http://api.channeladvisor.com/webservices/}APIResultOfBoolean
|
5
|
+
# status - ChannelAdvisor::InventoryServiceSOAP::ResultStatus
|
6
|
+
# messageCode - SOAP::SOAPInt
|
7
|
+
# message - SOAP::SOAPString
|
8
|
+
# data - SOAP::SOAPString
|
9
|
+
# resultData - SOAP::SOAPBoolean
|
10
|
+
class APIResultOfBoolean
|
11
|
+
attr_accessor :status
|
12
|
+
attr_accessor :messageCode
|
13
|
+
attr_accessor :message
|
14
|
+
attr_accessor :data
|
15
|
+
attr_accessor :resultData
|
16
|
+
|
17
|
+
def initialize(status = nil, messageCode = nil, message = nil, data = nil, resultData = nil)
|
18
|
+
@status = status
|
19
|
+
@messageCode = messageCode
|
20
|
+
@message = message
|
21
|
+
@data = data
|
22
|
+
@resultData = resultData
|
23
|
+
end
|
24
|
+
end
|
25
|
+
|
26
|
+
# {http://api.channeladvisor.com/webservices/}APICredentials
|
27
|
+
# developerKey - SOAP::SOAPString
|
28
|
+
# password - SOAP::SOAPString
|
29
|
+
class APICredentials
|
30
|
+
attr_accessor :developerKey
|
31
|
+
attr_accessor :password
|
32
|
+
|
33
|
+
def initialize(developerKey = nil, password = nil)
|
34
|
+
@developerKey = developerKey
|
35
|
+
@password = password
|
36
|
+
end
|
37
|
+
end
|
38
|
+
|
39
|
+
# {http://api.channeladvisor.com/webservices/}ArrayOfString
|
40
|
+
class ArrayOfString < ::Array
|
41
|
+
end
|
42
|
+
|
43
|
+
# {http://api.channeladvisor.com/webservices/}APIResultOfArrayOfDoesSkuExistResponse
|
44
|
+
# status - ChannelAdvisor::InventoryServiceSOAP::ResultStatus
|
45
|
+
# messageCode - SOAP::SOAPInt
|
46
|
+
# message - SOAP::SOAPString
|
47
|
+
# data - SOAP::SOAPString
|
48
|
+
# resultData - ChannelAdvisor::InventoryServiceSOAP::ArrayOfDoesSkuExistResponse
|
49
|
+
class APIResultOfArrayOfDoesSkuExistResponse
|
50
|
+
attr_accessor :status
|
51
|
+
attr_accessor :messageCode
|
52
|
+
attr_accessor :message
|
53
|
+
attr_accessor :data
|
54
|
+
attr_accessor :resultData
|
55
|
+
|
56
|
+
def initialize(status = nil, messageCode = nil, message = nil, data = nil, resultData = nil)
|
57
|
+
@status = status
|
58
|
+
@messageCode = messageCode
|
59
|
+
@message = message
|
60
|
+
@data = data
|
61
|
+
@resultData = resultData
|
62
|
+
end
|
63
|
+
end
|
64
|
+
|
65
|
+
# {http://api.channeladvisor.com/webservices/}ArrayOfDoesSkuExistResponse
|
66
|
+
class ArrayOfDoesSkuExistResponse < ::Array
|
67
|
+
end
|
68
|
+
|
69
|
+
# {http://api.channeladvisor.com/webservices/}DoesSkuExistResponse
|
70
|
+
# sku - SOAP::SOAPString
|
71
|
+
# result - SOAP::SOAPBoolean
|
72
|
+
# errorMessage - SOAP::SOAPString
|
73
|
+
class DoesSkuExistResponse
|
74
|
+
attr_accessor :sku
|
75
|
+
attr_accessor :result
|
76
|
+
attr_accessor :errorMessage
|
77
|
+
|
78
|
+
def initialize(sku = nil, result = nil, errorMessage = nil)
|
79
|
+
@sku = sku
|
80
|
+
@result = result
|
81
|
+
@errorMessage = errorMessage
|
82
|
+
end
|
83
|
+
end
|
84
|
+
|
85
|
+
# {http://api.channeladvisor.com/webservices/}APIResultOfArrayOfInventoryItemResponse
|
86
|
+
# status - ChannelAdvisor::InventoryServiceSOAP::ResultStatus
|
87
|
+
# messageCode - SOAP::SOAPInt
|
88
|
+
# message - SOAP::SOAPString
|
89
|
+
# data - SOAP::SOAPString
|
90
|
+
# resultData - ChannelAdvisor::InventoryServiceSOAP::ArrayOfInventoryItemResponse
|
91
|
+
class APIResultOfArrayOfInventoryItemResponse
|
92
|
+
attr_accessor :status
|
93
|
+
attr_accessor :messageCode
|
94
|
+
attr_accessor :message
|
95
|
+
attr_accessor :data
|
96
|
+
attr_accessor :resultData
|
97
|
+
|
98
|
+
def initialize(status = nil, messageCode = nil, message = nil, data = nil, resultData = nil)
|
99
|
+
@status = status
|
100
|
+
@messageCode = messageCode
|
101
|
+
@message = message
|
102
|
+
@data = data
|
103
|
+
@resultData = resultData
|
104
|
+
end
|
105
|
+
end
|
106
|
+
|
107
|
+
# {http://api.channeladvisor.com/webservices/}ArrayOfInventoryItemResponse
|
108
|
+
class ArrayOfInventoryItemResponse < ::Array
|
109
|
+
end
|
110
|
+
|
111
|
+
# {http://api.channeladvisor.com/webservices/}InventoryItemResponse
|
112
|
+
# sku - SOAP::SOAPString
|
113
|
+
# title - SOAP::SOAPString
|
114
|
+
# subtitle - SOAP::SOAPString
|
115
|
+
# shortDescription - SOAP::SOAPString
|
116
|
+
# description - SOAP::SOAPString
|
117
|
+
# weight - SOAP::SOAPDouble
|
118
|
+
# supplierCode - SOAP::SOAPString
|
119
|
+
# warehouseLocation - SOAP::SOAPString
|
120
|
+
# taxProductCode - SOAP::SOAPString
|
121
|
+
# flagStyle - ChannelAdvisor::InventoryServiceSOAP::FlagType
|
122
|
+
# flagDescription - SOAP::SOAPString
|
123
|
+
# isBlocked - SOAP::SOAPBoolean
|
124
|
+
# blockComment - SOAP::SOAPString
|
125
|
+
# aSIN - SOAP::SOAPString
|
126
|
+
# iSBN - SOAP::SOAPString
|
127
|
+
# uPC - SOAP::SOAPString
|
128
|
+
# mPN - SOAP::SOAPString
|
129
|
+
# eAN - SOAP::SOAPString
|
130
|
+
# quantityInfo - ChannelAdvisor::InventoryServiceSOAP::QuantityInfoResponse
|
131
|
+
# priceInfo - ChannelAdvisor::InventoryServiceSOAP::PriceInfo
|
132
|
+
# classificationInfo - ChannelAdvisor::InventoryServiceSOAP::ClassificationInfo
|
133
|
+
# variationInfo - ChannelAdvisor::InventoryServiceSOAP::VariationInfo
|
134
|
+
# storeInfo - ChannelAdvisor::InventoryServiceSOAP::StoreInfo
|
135
|
+
# imageList - ChannelAdvisor::InventoryServiceSOAP::ArrayOfImageInfoResponse
|
136
|
+
# shippingInfo - ChannelAdvisor::InventoryServiceSOAP::ShippingInfo
|
137
|
+
# metaDescription - SOAP::SOAPString
|
138
|
+
class InventoryItemResponse
|
139
|
+
attr_accessor :sku
|
140
|
+
attr_accessor :title
|
141
|
+
attr_accessor :subtitle
|
142
|
+
attr_accessor :shortDescription
|
143
|
+
attr_accessor :description
|
144
|
+
attr_accessor :weight
|
145
|
+
attr_accessor :supplierCode
|
146
|
+
attr_accessor :warehouseLocation
|
147
|
+
attr_accessor :taxProductCode
|
148
|
+
attr_accessor :flagStyle
|
149
|
+
attr_accessor :flagDescription
|
150
|
+
attr_accessor :isBlocked
|
151
|
+
attr_accessor :blockComment
|
152
|
+
attr_accessor :aSIN
|
153
|
+
attr_accessor :iSBN
|
154
|
+
attr_accessor :uPC
|
155
|
+
attr_accessor :mPN
|
156
|
+
attr_accessor :eAN
|
157
|
+
attr_accessor :quantityInfo
|
158
|
+
attr_accessor :priceInfo
|
159
|
+
attr_accessor :classificationInfo
|
160
|
+
attr_accessor :variationInfo
|
161
|
+
attr_accessor :storeInfo
|
162
|
+
attr_accessor :imageList
|
163
|
+
attr_accessor :shippingInfo
|
164
|
+
attr_accessor :metaDescription
|
165
|
+
|
166
|
+
def initialize(sku = nil, title = nil, subtitle = nil, shortDescription = nil, description = nil, weight = nil, supplierCode = nil, warehouseLocation = nil, taxProductCode = nil, flagStyle = nil, flagDescription = nil, isBlocked = nil, blockComment = nil, aSIN = nil, iSBN = nil, uPC = nil, mPN = nil, eAN = nil, quantityInfo = nil, priceInfo = nil, classificationInfo = nil, variationInfo = nil, storeInfo = nil, imageList = nil, shippingInfo = nil, metaDescription = nil)
|
167
|
+
@sku = sku
|
168
|
+
@title = title
|
169
|
+
@subtitle = subtitle
|
170
|
+
@shortDescription = shortDescription
|
171
|
+
@description = description
|
172
|
+
@weight = weight
|
173
|
+
@supplierCode = supplierCode
|
174
|
+
@warehouseLocation = warehouseLocation
|
175
|
+
@taxProductCode = taxProductCode
|
176
|
+
@flagStyle = flagStyle
|
177
|
+
@flagDescription = flagDescription
|
178
|
+
@isBlocked = isBlocked
|
179
|
+
@blockComment = blockComment
|
180
|
+
@aSIN = aSIN
|
181
|
+
@iSBN = iSBN
|
182
|
+
@uPC = uPC
|
183
|
+
@mPN = mPN
|
184
|
+
@eAN = eAN
|
185
|
+
@quantityInfo = quantityInfo
|
186
|
+
@priceInfo = priceInfo
|
187
|
+
@classificationInfo = classificationInfo
|
188
|
+
@variationInfo = variationInfo
|
189
|
+
@storeInfo = storeInfo
|
190
|
+
@imageList = imageList
|
191
|
+
@shippingInfo = shippingInfo
|
192
|
+
@metaDescription = metaDescription
|
193
|
+
end
|
194
|
+
end
|
195
|
+
|
196
|
+
# {http://api.channeladvisor.com/webservices/}QuantityInfoResponse
|
197
|
+
# total - SOAP::SOAPInt
|
198
|
+
# available - SOAP::SOAPInt
|
199
|
+
# open - SOAP::SOAPInt
|
200
|
+
# pendingCheckout - SOAP::SOAPInt
|
201
|
+
# pendingPayment - SOAP::SOAPInt
|
202
|
+
# pendingShipment - SOAP::SOAPInt
|
203
|
+
# isScheduled - SOAP::SOAPBoolean
|
204
|
+
# openPooled - SOAP::SOAPInt
|
205
|
+
# pendingCheckoutPooled - SOAP::SOAPInt
|
206
|
+
# pendingPaymentPooled - SOAP::SOAPInt
|
207
|
+
# pendingShipmentPooled - SOAP::SOAPInt
|
208
|
+
# totalPooled - SOAP::SOAPInt
|
209
|
+
class QuantityInfoResponse
|
210
|
+
attr_accessor :total
|
211
|
+
attr_accessor :available
|
212
|
+
attr_accessor :open
|
213
|
+
attr_accessor :pendingCheckout
|
214
|
+
attr_accessor :pendingPayment
|
215
|
+
attr_accessor :pendingShipment
|
216
|
+
attr_accessor :isScheduled
|
217
|
+
attr_accessor :openPooled
|
218
|
+
attr_accessor :pendingCheckoutPooled
|
219
|
+
attr_accessor :pendingPaymentPooled
|
220
|
+
attr_accessor :pendingShipmentPooled
|
221
|
+
attr_accessor :totalPooled
|
222
|
+
|
223
|
+
def initialize(total = nil, available = nil, open = nil, pendingCheckout = nil, pendingPayment = nil, pendingShipment = nil, isScheduled = nil, openPooled = nil, pendingCheckoutPooled = nil, pendingPaymentPooled = nil, pendingShipmentPooled = nil, totalPooled = nil)
|
224
|
+
@total = total
|
225
|
+
@available = available
|
226
|
+
@open = open
|
227
|
+
@pendingCheckout = pendingCheckout
|
228
|
+
@pendingPayment = pendingPayment
|
229
|
+
@pendingShipment = pendingShipment
|
230
|
+
@isScheduled = isScheduled
|
231
|
+
@openPooled = openPooled
|
232
|
+
@pendingCheckoutPooled = pendingCheckoutPooled
|
233
|
+
@pendingPaymentPooled = pendingPaymentPooled
|
234
|
+
@pendingShipmentPooled = pendingShipmentPooled
|
235
|
+
@totalPooled = totalPooled
|
236
|
+
end
|
237
|
+
end
|
238
|
+
|
239
|
+
# {http://api.channeladvisor.com/webservices/}PriceInfo
|
240
|
+
# cost - SOAP::SOAPDecimal
|
241
|
+
# retailPrice - SOAP::SOAPDecimal
|
242
|
+
# startingPrice - SOAP::SOAPDecimal
|
243
|
+
# reservePrice - SOAP::SOAPDecimal
|
244
|
+
# takeItPrice - SOAP::SOAPDecimal
|
245
|
+
# secondChanceOfferPrice - SOAP::SOAPDecimal
|
246
|
+
# storePrice - SOAP::SOAPDecimal
|
247
|
+
class PriceInfo
|
248
|
+
attr_accessor :cost
|
249
|
+
attr_accessor :retailPrice
|
250
|
+
attr_accessor :startingPrice
|
251
|
+
attr_accessor :reservePrice
|
252
|
+
attr_accessor :takeItPrice
|
253
|
+
attr_accessor :secondChanceOfferPrice
|
254
|
+
attr_accessor :storePrice
|
255
|
+
|
256
|
+
def initialize(cost = nil, retailPrice = nil, startingPrice = nil, reservePrice = nil, takeItPrice = nil, secondChanceOfferPrice = nil, storePrice = nil)
|
257
|
+
@cost = cost
|
258
|
+
@retailPrice = retailPrice
|
259
|
+
@startingPrice = startingPrice
|
260
|
+
@reservePrice = reservePrice
|
261
|
+
@takeItPrice = takeItPrice
|
262
|
+
@secondChanceOfferPrice = secondChanceOfferPrice
|
263
|
+
@storePrice = storePrice
|
264
|
+
end
|
265
|
+
end
|
266
|
+
|
267
|
+
# {http://api.channeladvisor.com/webservices/}ClassificationInfo
|
268
|
+
# name - SOAP::SOAPString
|
269
|
+
# attributeList - ChannelAdvisor::InventoryServiceSOAP::ArrayOfClassificationAttributeInfo
|
270
|
+
class ClassificationInfo
|
271
|
+
attr_accessor :name
|
272
|
+
attr_accessor :attributeList
|
273
|
+
|
274
|
+
def initialize(name = nil, attributeList = nil)
|
275
|
+
@name = name
|
276
|
+
@attributeList = attributeList
|
277
|
+
end
|
278
|
+
end
|
279
|
+
|
280
|
+
# {http://api.channeladvisor.com/webservices/}ArrayOfClassificationAttributeInfo
|
281
|
+
class ArrayOfClassificationAttributeInfo < ::Array
|
282
|
+
end
|
283
|
+
|
284
|
+
# {http://api.channeladvisor.com/webservices/}ClassificationAttributeInfo
|
285
|
+
# name - SOAP::SOAPString
|
286
|
+
# value - SOAP::SOAPString
|
287
|
+
class ClassificationAttributeInfo
|
288
|
+
attr_accessor :name
|
289
|
+
attr_accessor :value
|
290
|
+
|
291
|
+
def initialize(name = nil, value = nil)
|
292
|
+
@name = name
|
293
|
+
@value = value
|
294
|
+
end
|
295
|
+
end
|
296
|
+
|
297
|
+
# {http://api.channeladvisor.com/webservices/}VariationInfo
|
298
|
+
# isInRelationship - SOAP::SOAPBoolean
|
299
|
+
# relationshipName - SOAP::SOAPString
|
300
|
+
# isParent - SOAP::SOAPBoolean
|
301
|
+
# parentSku - SOAP::SOAPString
|
302
|
+
class VariationInfo
|
303
|
+
attr_accessor :isInRelationship
|
304
|
+
attr_accessor :relationshipName
|
305
|
+
attr_accessor :isParent
|
306
|
+
attr_accessor :parentSku
|
307
|
+
|
308
|
+
def initialize(isInRelationship = nil, relationshipName = nil, isParent = nil, parentSku = nil)
|
309
|
+
@isInRelationship = isInRelationship
|
310
|
+
@relationshipName = relationshipName
|
311
|
+
@isParent = isParent
|
312
|
+
@parentSku = parentSku
|
313
|
+
end
|
314
|
+
end
|
315
|
+
|
316
|
+
# {http://api.channeladvisor.com/webservices/}StoreInfo
|
317
|
+
# displayInStore - SOAP::SOAPBoolean
|
318
|
+
# title - SOAP::SOAPString
|
319
|
+
# description - SOAP::SOAPString
|
320
|
+
# categoryID - SOAP::SOAPInt
|
321
|
+
class StoreInfo
|
322
|
+
attr_accessor :displayInStore
|
323
|
+
attr_accessor :title
|
324
|
+
attr_accessor :description
|
325
|
+
attr_accessor :categoryID
|
326
|
+
|
327
|
+
def initialize(displayInStore = nil, title = nil, description = nil, categoryID = nil)
|
328
|
+
@displayInStore = displayInStore
|
329
|
+
@title = title
|
330
|
+
@description = description
|
331
|
+
@categoryID = categoryID
|
332
|
+
end
|
333
|
+
end
|
334
|
+
|
335
|
+
# {http://api.channeladvisor.com/webservices/}ArrayOfImageInfoResponse
|
336
|
+
class ArrayOfImageInfoResponse < ::Array
|
337
|
+
end
|
338
|
+
|
339
|
+
# {http://api.channeladvisor.com/webservices/}ImageInfoResponse
|
340
|
+
# placementName - SOAP::SOAPString
|
341
|
+
# folderName - SOAP::SOAPString
|
342
|
+
# url - SOAP::SOAPString
|
343
|
+
# imageThumbList - ChannelAdvisor::InventoryServiceSOAP::ArrayOfImageThumbInfo
|
344
|
+
class ImageInfoResponse
|
345
|
+
attr_accessor :placementName
|
346
|
+
attr_accessor :folderName
|
347
|
+
attr_accessor :url
|
348
|
+
attr_accessor :imageThumbList
|
349
|
+
|
350
|
+
def initialize(placementName = nil, folderName = nil, url = nil, imageThumbList = nil)
|
351
|
+
@placementName = placementName
|
352
|
+
@folderName = folderName
|
353
|
+
@url = url
|
354
|
+
@imageThumbList = imageThumbList
|
355
|
+
end
|
356
|
+
end
|
357
|
+
|
358
|
+
# {http://api.channeladvisor.com/webservices/}ArrayOfImageThumbInfo
|
359
|
+
class ArrayOfImageThumbInfo < ::Array
|
360
|
+
end
|
361
|
+
|
362
|
+
# {http://api.channeladvisor.com/webservices/}ImageThumbInfo
|
363
|
+
# typeName - SOAP::SOAPString
|
364
|
+
# url - SOAP::SOAPString
|
365
|
+
class ImageThumbInfo
|
366
|
+
attr_accessor :typeName
|
367
|
+
attr_accessor :url
|
368
|
+
|
369
|
+
def initialize(typeName = nil, url = nil)
|
370
|
+
@typeName = typeName
|
371
|
+
@url = url
|
372
|
+
end
|
373
|
+
end
|
374
|
+
|
375
|
+
# {http://api.channeladvisor.com/webservices/}ShippingInfo
|
376
|
+
# distributionCenterCode - SOAP::SOAPString
|
377
|
+
# shippingRateList - ChannelAdvisor::InventoryServiceSOAP::ArrayOfShippingRateInfo
|
378
|
+
class ShippingInfo
|
379
|
+
attr_accessor :distributionCenterCode
|
380
|
+
attr_accessor :shippingRateList
|
381
|
+
|
382
|
+
def initialize(distributionCenterCode = nil, shippingRateList = nil)
|
383
|
+
@distributionCenterCode = distributionCenterCode
|
384
|
+
@shippingRateList = shippingRateList
|
385
|
+
end
|
386
|
+
end
|
387
|
+
|
388
|
+
# {http://api.channeladvisor.com/webservices/}ArrayOfShippingRateInfo
|
389
|
+
class ArrayOfShippingRateInfo < ::Array
|
390
|
+
end
|
391
|
+
|
392
|
+
# {http://api.channeladvisor.com/webservices/}ShippingRateInfo
|
393
|
+
# destinationZoneName - SOAP::SOAPString
|
394
|
+
# carrierCode - SOAP::SOAPString
|
395
|
+
# classCode - SOAP::SOAPString
|
396
|
+
# firstItemRate - SOAP::SOAPDecimal
|
397
|
+
# additionalItemRate - SOAP::SOAPDecimal
|
398
|
+
# firstItemHandlingRate - SOAP::SOAPDecimal
|
399
|
+
# additionalItemHandlingRate - SOAP::SOAPDecimal
|
400
|
+
# freeShippingIfBuyItNow - SOAP::SOAPBoolean
|
401
|
+
# firstItemRateAttribute - ChannelAdvisor::InventoryServiceSOAP::ShippingRateAttribute
|
402
|
+
# firstItemHandlingRateAttribute - ChannelAdvisor::InventoryServiceSOAP::HandlingRateAttribute
|
403
|
+
# additionalItemRateAttribute - ChannelAdvisor::InventoryServiceSOAP::ShippingRateAttribute
|
404
|
+
# additionalItemHandlingRateAttribute - ChannelAdvisor::InventoryServiceSOAP::HandlingRateAttribute
|
405
|
+
class ShippingRateInfo
|
406
|
+
attr_accessor :destinationZoneName
|
407
|
+
attr_accessor :carrierCode
|
408
|
+
attr_accessor :classCode
|
409
|
+
attr_accessor :firstItemRate
|
410
|
+
attr_accessor :additionalItemRate
|
411
|
+
attr_accessor :firstItemHandlingRate
|
412
|
+
attr_accessor :additionalItemHandlingRate
|
413
|
+
attr_accessor :freeShippingIfBuyItNow
|
414
|
+
attr_accessor :firstItemRateAttribute
|
415
|
+
attr_accessor :firstItemHandlingRateAttribute
|
416
|
+
attr_accessor :additionalItemRateAttribute
|
417
|
+
attr_accessor :additionalItemHandlingRateAttribute
|
418
|
+
|
419
|
+
def initialize(destinationZoneName = nil, carrierCode = nil, classCode = nil, firstItemRate = nil, additionalItemRate = nil, firstItemHandlingRate = nil, additionalItemHandlingRate = nil, freeShippingIfBuyItNow = nil, firstItemRateAttribute = nil, firstItemHandlingRateAttribute = nil, additionalItemRateAttribute = nil, additionalItemHandlingRateAttribute = nil)
|
420
|
+
@destinationZoneName = destinationZoneName
|
421
|
+
@carrierCode = carrierCode
|
422
|
+
@classCode = classCode
|
423
|
+
@firstItemRate = firstItemRate
|
424
|
+
@additionalItemRate = additionalItemRate
|
425
|
+
@firstItemHandlingRate = firstItemHandlingRate
|
426
|
+
@additionalItemHandlingRate = additionalItemHandlingRate
|
427
|
+
@freeShippingIfBuyItNow = freeShippingIfBuyItNow
|
428
|
+
@firstItemRateAttribute = firstItemRateAttribute
|
429
|
+
@firstItemHandlingRateAttribute = firstItemHandlingRateAttribute
|
430
|
+
@additionalItemRateAttribute = additionalItemRateAttribute
|
431
|
+
@additionalItemHandlingRateAttribute = additionalItemHandlingRateAttribute
|
432
|
+
end
|
433
|
+
end
|
434
|
+
|
435
|
+
# {http://api.channeladvisor.com/webservices/}InventoryItemCriteria
|
436
|
+
# dateRangeField - ChannelAdvisor::InventoryServiceSOAP::InventoryItemDateRangeField
|
437
|
+
# dateRangeStartGMT - SOAP::SOAPDateTime
|
438
|
+
# dateRangeEndGMT - SOAP::SOAPDateTime
|
439
|
+
# partialSku - SOAP::SOAPString
|
440
|
+
# skuStartsWith - SOAP::SOAPString
|
441
|
+
# skuEndsWith - SOAP::SOAPString
|
442
|
+
# classificationName - SOAP::SOAPString
|
443
|
+
# labelName - SOAP::SOAPString
|
444
|
+
# quantityCheckField - ChannelAdvisor::InventoryServiceSOAP::InventoryItemQuantityField
|
445
|
+
# quantityCheckType - ChannelAdvisor::InventoryServiceSOAP::NumericFilterType
|
446
|
+
# quantityCheckValue - SOAP::SOAPInt
|
447
|
+
# pageNumber - SOAP::SOAPInt
|
448
|
+
# pageSize - SOAP::SOAPInt
|
449
|
+
class InventoryItemCriteria
|
450
|
+
attr_accessor :dateRangeField
|
451
|
+
attr_accessor :dateRangeStartGMT
|
452
|
+
attr_accessor :dateRangeEndGMT
|
453
|
+
attr_accessor :partialSku
|
454
|
+
attr_accessor :skuStartsWith
|
455
|
+
attr_accessor :skuEndsWith
|
456
|
+
attr_accessor :classificationName
|
457
|
+
attr_accessor :labelName
|
458
|
+
attr_accessor :quantityCheckField
|
459
|
+
attr_accessor :quantityCheckType
|
460
|
+
attr_accessor :quantityCheckValue
|
461
|
+
attr_accessor :pageNumber
|
462
|
+
attr_accessor :pageSize
|
463
|
+
|
464
|
+
def initialize(dateRangeField = nil, dateRangeStartGMT = nil, dateRangeEndGMT = nil, partialSku = nil, skuStartsWith = nil, skuEndsWith = nil, classificationName = nil, labelName = nil, quantityCheckField = nil, quantityCheckType = nil, quantityCheckValue = nil, pageNumber = nil, pageSize = nil)
|
465
|
+
@dateRangeField = dateRangeField
|
466
|
+
@dateRangeStartGMT = dateRangeStartGMT
|
467
|
+
@dateRangeEndGMT = dateRangeEndGMT
|
468
|
+
@partialSku = partialSku
|
469
|
+
@skuStartsWith = skuStartsWith
|
470
|
+
@skuEndsWith = skuEndsWith
|
471
|
+
@classificationName = classificationName
|
472
|
+
@labelName = labelName
|
473
|
+
@quantityCheckField = quantityCheckField
|
474
|
+
@quantityCheckType = quantityCheckType
|
475
|
+
@quantityCheckValue = quantityCheckValue
|
476
|
+
@pageNumber = pageNumber
|
477
|
+
@pageSize = pageSize
|
478
|
+
end
|
479
|
+
end
|
480
|
+
|
481
|
+
# {http://api.channeladvisor.com/webservices/}InventoryItemDetailLevel
|
482
|
+
# includeQuantityInfo - SOAP::SOAPBoolean
|
483
|
+
# includePriceInfo - SOAP::SOAPBoolean
|
484
|
+
# includeClassificationInfo - SOAP::SOAPBoolean
|
485
|
+
class InventoryItemDetailLevel
|
486
|
+
attr_accessor :includeQuantityInfo
|
487
|
+
attr_accessor :includePriceInfo
|
488
|
+
attr_accessor :includeClassificationInfo
|
489
|
+
|
490
|
+
def initialize(includeQuantityInfo = nil, includePriceInfo = nil, includeClassificationInfo = nil)
|
491
|
+
@includeQuantityInfo = includeQuantityInfo
|
492
|
+
@includePriceInfo = includePriceInfo
|
493
|
+
@includeClassificationInfo = includeClassificationInfo
|
494
|
+
end
|
495
|
+
end
|
496
|
+
|
497
|
+
# {http://api.channeladvisor.com/webservices/}APIResultOfArrayOfString
|
498
|
+
# status - ChannelAdvisor::InventoryServiceSOAP::ResultStatus
|
499
|
+
# messageCode - SOAP::SOAPInt
|
500
|
+
# message - SOAP::SOAPString
|
501
|
+
# data - SOAP::SOAPString
|
502
|
+
# resultData - ChannelAdvisor::InventoryServiceSOAP::ArrayOfString
|
503
|
+
class APIResultOfArrayOfString
|
504
|
+
attr_accessor :status
|
505
|
+
attr_accessor :messageCode
|
506
|
+
attr_accessor :message
|
507
|
+
attr_accessor :data
|
508
|
+
attr_accessor :resultData
|
509
|
+
|
510
|
+
def initialize(status = nil, messageCode = nil, message = nil, data = nil, resultData = nil)
|
511
|
+
@status = status
|
512
|
+
@messageCode = messageCode
|
513
|
+
@message = message
|
514
|
+
@data = data
|
515
|
+
@resultData = resultData
|
516
|
+
end
|
517
|
+
end
|
518
|
+
|
519
|
+
# {http://api.channeladvisor.com/webservices/}APIResultOfArrayOfShippingRateInfo
|
520
|
+
# status - ChannelAdvisor::InventoryServiceSOAP::ResultStatus
|
521
|
+
# messageCode - SOAP::SOAPInt
|
522
|
+
# message - SOAP::SOAPString
|
523
|
+
# data - SOAP::SOAPString
|
524
|
+
# resultData - ChannelAdvisor::InventoryServiceSOAP::ArrayOfShippingRateInfo
|
525
|
+
class APIResultOfArrayOfShippingRateInfo
|
526
|
+
attr_accessor :status
|
527
|
+
attr_accessor :messageCode
|
528
|
+
attr_accessor :message
|
529
|
+
attr_accessor :data
|
530
|
+
attr_accessor :resultData
|
531
|
+
|
532
|
+
def initialize(status = nil, messageCode = nil, message = nil, data = nil, resultData = nil)
|
533
|
+
@status = status
|
534
|
+
@messageCode = messageCode
|
535
|
+
@message = message
|
536
|
+
@data = data
|
537
|
+
@resultData = resultData
|
538
|
+
end
|
539
|
+
end
|
540
|
+
|
541
|
+
# {http://api.channeladvisor.com/webservices/}APIResultOfQuantityInfoResponse
|
542
|
+
# status - ChannelAdvisor::InventoryServiceSOAP::ResultStatus
|
543
|
+
# messageCode - SOAP::SOAPInt
|
544
|
+
# message - SOAP::SOAPString
|
545
|
+
# data - SOAP::SOAPString
|
546
|
+
# resultData - ChannelAdvisor::InventoryServiceSOAP::QuantityInfoResponse
|
547
|
+
class APIResultOfQuantityInfoResponse
|
548
|
+
attr_accessor :status
|
549
|
+
attr_accessor :messageCode
|
550
|
+
attr_accessor :message
|
551
|
+
attr_accessor :data
|
552
|
+
attr_accessor :resultData
|
553
|
+
|
554
|
+
def initialize(status = nil, messageCode = nil, message = nil, data = nil, resultData = nil)
|
555
|
+
@status = status
|
556
|
+
@messageCode = messageCode
|
557
|
+
@message = message
|
558
|
+
@data = data
|
559
|
+
@resultData = resultData
|
560
|
+
end
|
561
|
+
end
|
562
|
+
|
563
|
+
# {http://api.channeladvisor.com/webservices/}APIResultOfArrayOfClassificationConfigurationInformation
|
564
|
+
# status - ChannelAdvisor::InventoryServiceSOAP::ResultStatus
|
565
|
+
# messageCode - SOAP::SOAPInt
|
566
|
+
# message - SOAP::SOAPString
|
567
|
+
# data - SOAP::SOAPString
|
568
|
+
# resultData - ChannelAdvisor::InventoryServiceSOAP::ArrayOfClassificationConfigurationInformation
|
569
|
+
class APIResultOfArrayOfClassificationConfigurationInformation
|
570
|
+
attr_accessor :status
|
571
|
+
attr_accessor :messageCode
|
572
|
+
attr_accessor :message
|
573
|
+
attr_accessor :data
|
574
|
+
attr_accessor :resultData
|
575
|
+
|
576
|
+
def initialize(status = nil, messageCode = nil, message = nil, data = nil, resultData = nil)
|
577
|
+
@status = status
|
578
|
+
@messageCode = messageCode
|
579
|
+
@message = message
|
580
|
+
@data = data
|
581
|
+
@resultData = resultData
|
582
|
+
end
|
583
|
+
end
|
584
|
+
|
585
|
+
# {http://api.channeladvisor.com/webservices/}ArrayOfClassificationConfigurationInformation
|
586
|
+
class ArrayOfClassificationConfigurationInformation < ::Array
|
587
|
+
end
|
588
|
+
|
589
|
+
# {http://api.channeladvisor.com/webservices/}ClassificationConfigurationInformation
|
590
|
+
# name - SOAP::SOAPString
|
591
|
+
# classificationConfigurationInformationAttributeArray - ChannelAdvisor::InventoryServiceSOAP::ArrayOfClassificationConfigurationInformationAttribute
|
592
|
+
class ClassificationConfigurationInformation
|
593
|
+
attr_accessor :name
|
594
|
+
attr_accessor :classificationConfigurationInformationAttributeArray
|
595
|
+
|
596
|
+
def initialize(name = nil, classificationConfigurationInformationAttributeArray = nil)
|
597
|
+
@name = name
|
598
|
+
@classificationConfigurationInformationAttributeArray = classificationConfigurationInformationAttributeArray
|
599
|
+
end
|
600
|
+
end
|
601
|
+
|
602
|
+
# {http://api.channeladvisor.com/webservices/}ArrayOfClassificationConfigurationInformationAttribute
|
603
|
+
class ArrayOfClassificationConfigurationInformationAttribute < ::Array
|
604
|
+
end
|
605
|
+
|
606
|
+
# {http://api.channeladvisor.com/webservices/}ClassificationConfigurationInformationAttribute
|
607
|
+
# name - SOAP::SOAPString
|
608
|
+
# defaultValue - SOAP::SOAPString
|
609
|
+
# listOfChoices - SOAP::SOAPString
|
610
|
+
class ClassificationConfigurationInformationAttribute
|
611
|
+
attr_accessor :name
|
612
|
+
attr_accessor :defaultValue
|
613
|
+
attr_accessor :listOfChoices
|
614
|
+
|
615
|
+
def initialize(name = nil, defaultValue = nil, listOfChoices = nil)
|
616
|
+
@name = name
|
617
|
+
@defaultValue = defaultValue
|
618
|
+
@listOfChoices = listOfChoices
|
619
|
+
end
|
620
|
+
end
|
621
|
+
|
622
|
+
# {http://api.channeladvisor.com/webservices/}APIResultOfArrayOfClassificationAttributeInfo
|
623
|
+
# status - ChannelAdvisor::InventoryServiceSOAP::ResultStatus
|
624
|
+
# messageCode - SOAP::SOAPInt
|
625
|
+
# message - SOAP::SOAPString
|
626
|
+
# data - SOAP::SOAPString
|
627
|
+
# resultData - ChannelAdvisor::InventoryServiceSOAP::ArrayOfClassificationAttributeInfo
|
628
|
+
class APIResultOfArrayOfClassificationAttributeInfo
|
629
|
+
attr_accessor :status
|
630
|
+
attr_accessor :messageCode
|
631
|
+
attr_accessor :message
|
632
|
+
attr_accessor :data
|
633
|
+
attr_accessor :resultData
|
634
|
+
|
635
|
+
def initialize(status = nil, messageCode = nil, message = nil, data = nil, resultData = nil)
|
636
|
+
@status = status
|
637
|
+
@messageCode = messageCode
|
638
|
+
@message = message
|
639
|
+
@data = data
|
640
|
+
@resultData = resultData
|
641
|
+
end
|
642
|
+
end
|
643
|
+
|
644
|
+
# {http://api.channeladvisor.com/webservices/}APIResultOfVariationInfo
|
645
|
+
# status - ChannelAdvisor::InventoryServiceSOAP::ResultStatus
|
646
|
+
# messageCode - SOAP::SOAPInt
|
647
|
+
# message - SOAP::SOAPString
|
648
|
+
# data - SOAP::SOAPString
|
649
|
+
# resultData - ChannelAdvisor::InventoryServiceSOAP::VariationInfo
|
650
|
+
class APIResultOfVariationInfo
|
651
|
+
attr_accessor :status
|
652
|
+
attr_accessor :messageCode
|
653
|
+
attr_accessor :message
|
654
|
+
attr_accessor :data
|
655
|
+
attr_accessor :resultData
|
656
|
+
|
657
|
+
def initialize(status = nil, messageCode = nil, message = nil, data = nil, resultData = nil)
|
658
|
+
@status = status
|
659
|
+
@messageCode = messageCode
|
660
|
+
@message = message
|
661
|
+
@data = data
|
662
|
+
@resultData = resultData
|
663
|
+
end
|
664
|
+
end
|
665
|
+
|
666
|
+
# {http://api.channeladvisor.com/webservices/}APIResultOfStoreInfo
|
667
|
+
# status - ChannelAdvisor::InventoryServiceSOAP::ResultStatus
|
668
|
+
# messageCode - SOAP::SOAPInt
|
669
|
+
# message - SOAP::SOAPString
|
670
|
+
# data - SOAP::SOAPString
|
671
|
+
# resultData - ChannelAdvisor::InventoryServiceSOAP::StoreInfo
|
672
|
+
class APIResultOfStoreInfo
|
673
|
+
attr_accessor :status
|
674
|
+
attr_accessor :messageCode
|
675
|
+
attr_accessor :message
|
676
|
+
attr_accessor :data
|
677
|
+
attr_accessor :resultData
|
678
|
+
|
679
|
+
def initialize(status = nil, messageCode = nil, message = nil, data = nil, resultData = nil)
|
680
|
+
@status = status
|
681
|
+
@messageCode = messageCode
|
682
|
+
@message = message
|
683
|
+
@data = data
|
684
|
+
@resultData = resultData
|
685
|
+
end
|
686
|
+
end
|
687
|
+
|
688
|
+
# {http://api.channeladvisor.com/webservices/}APIResultOfArrayOfImageInfoResponse
|
689
|
+
# status - ChannelAdvisor::InventoryServiceSOAP::ResultStatus
|
690
|
+
# messageCode - SOAP::SOAPInt
|
691
|
+
# message - SOAP::SOAPString
|
692
|
+
# data - SOAP::SOAPString
|
693
|
+
# resultData - ChannelAdvisor::InventoryServiceSOAP::ArrayOfImageInfoResponse
|
694
|
+
class APIResultOfArrayOfImageInfoResponse
|
695
|
+
attr_accessor :status
|
696
|
+
attr_accessor :messageCode
|
697
|
+
attr_accessor :message
|
698
|
+
attr_accessor :data
|
699
|
+
attr_accessor :resultData
|
700
|
+
|
701
|
+
def initialize(status = nil, messageCode = nil, message = nil, data = nil, resultData = nil)
|
702
|
+
@status = status
|
703
|
+
@messageCode = messageCode
|
704
|
+
@message = message
|
705
|
+
@data = data
|
706
|
+
@resultData = resultData
|
707
|
+
end
|
708
|
+
end
|
709
|
+
|
710
|
+
# {http://api.channeladvisor.com/webservices/}APIResultOfInt32
|
711
|
+
# status - ChannelAdvisor::InventoryServiceSOAP::ResultStatus
|
712
|
+
# messageCode - SOAP::SOAPInt
|
713
|
+
# message - SOAP::SOAPString
|
714
|
+
# data - SOAP::SOAPString
|
715
|
+
# resultData - SOAP::SOAPInt
|
716
|
+
class APIResultOfInt32
|
717
|
+
attr_accessor :status
|
718
|
+
attr_accessor :messageCode
|
719
|
+
attr_accessor :message
|
720
|
+
attr_accessor :data
|
721
|
+
attr_accessor :resultData
|
722
|
+
|
723
|
+
def initialize(status = nil, messageCode = nil, message = nil, data = nil, resultData = nil)
|
724
|
+
@status = status
|
725
|
+
@messageCode = messageCode
|
726
|
+
@message = message
|
727
|
+
@data = data
|
728
|
+
@resultData = resultData
|
729
|
+
end
|
730
|
+
end
|
731
|
+
|
732
|
+
# {http://api.channeladvisor.com/webservices/}APIResultOfArrayOfInventoryQuantityResponse
|
733
|
+
# status - ChannelAdvisor::InventoryServiceSOAP::ResultStatus
|
734
|
+
# messageCode - SOAP::SOAPInt
|
735
|
+
# message - SOAP::SOAPString
|
736
|
+
# data - SOAP::SOAPString
|
737
|
+
# resultData - ChannelAdvisor::InventoryServiceSOAP::ArrayOfInventoryQuantityResponse
|
738
|
+
class APIResultOfArrayOfInventoryQuantityResponse
|
739
|
+
attr_accessor :status
|
740
|
+
attr_accessor :messageCode
|
741
|
+
attr_accessor :message
|
742
|
+
attr_accessor :data
|
743
|
+
attr_accessor :resultData
|
744
|
+
|
745
|
+
def initialize(status = nil, messageCode = nil, message = nil, data = nil, resultData = nil)
|
746
|
+
@status = status
|
747
|
+
@messageCode = messageCode
|
748
|
+
@message = message
|
749
|
+
@data = data
|
750
|
+
@resultData = resultData
|
751
|
+
end
|
752
|
+
end
|
753
|
+
|
754
|
+
# {http://api.channeladvisor.com/webservices/}ArrayOfInventoryQuantityResponse
|
755
|
+
class ArrayOfInventoryQuantityResponse < ::Array
|
756
|
+
end
|
757
|
+
|
758
|
+
# {http://api.channeladvisor.com/webservices/}InventoryQuantityResponse
|
759
|
+
# sKU - SOAP::SOAPString
|
760
|
+
# quantity - SOAP::SOAPInt
|
761
|
+
# messageCode - ChannelAdvisor::InventoryServiceSOAP::ErrorCode
|
762
|
+
# message - SOAP::SOAPString
|
763
|
+
class InventoryQuantityResponse
|
764
|
+
attr_accessor :sKU
|
765
|
+
attr_accessor :quantity
|
766
|
+
attr_accessor :messageCode
|
767
|
+
attr_accessor :message
|
768
|
+
|
769
|
+
def initialize(sKU = nil, quantity = nil, messageCode = nil, message = nil)
|
770
|
+
@sKU = sKU
|
771
|
+
@quantity = quantity
|
772
|
+
@messageCode = messageCode
|
773
|
+
@message = message
|
774
|
+
end
|
775
|
+
end
|
776
|
+
|
777
|
+
# {http://api.channeladvisor.com/webservices/}InventoryItemSubmit
|
778
|
+
# sku - SOAP::SOAPString
|
779
|
+
# title - SOAP::SOAPString
|
780
|
+
# subtitle - SOAP::SOAPString
|
781
|
+
# shortDescription - SOAP::SOAPString
|
782
|
+
# description - SOAP::SOAPString
|
783
|
+
# weight - SOAP::SOAPDouble
|
784
|
+
# supplierCode - SOAP::SOAPString
|
785
|
+
# warehouseLocation - SOAP::SOAPString
|
786
|
+
# taxProductCode - SOAP::SOAPString
|
787
|
+
# flagStyle - ChannelAdvisor::InventoryServiceSOAP::FlagType
|
788
|
+
# flagDescription - SOAP::SOAPString
|
789
|
+
# isBlocked - SOAP::SOAPBoolean
|
790
|
+
# blockComment - SOAP::SOAPString
|
791
|
+
# aSIN - SOAP::SOAPString
|
792
|
+
# iSBN - SOAP::SOAPString
|
793
|
+
# uPC - SOAP::SOAPString
|
794
|
+
# mPN - SOAP::SOAPString
|
795
|
+
# eAN - SOAP::SOAPString
|
796
|
+
# quantityInfo - ChannelAdvisor::InventoryServiceSOAP::QuantityInfoSubmit
|
797
|
+
# priceInfo - ChannelAdvisor::InventoryServiceSOAP::PriceInfo
|
798
|
+
# classificationInfo - ChannelAdvisor::InventoryServiceSOAP::ClassificationInfo
|
799
|
+
# variationInfo - ChannelAdvisor::InventoryServiceSOAP::VariationInfo
|
800
|
+
# storeInfo - ChannelAdvisor::InventoryServiceSOAP::StoreInfo
|
801
|
+
# imageList - ChannelAdvisor::InventoryServiceSOAP::ArrayOfImageInfoSubmit
|
802
|
+
# shippingInfo - ChannelAdvisor::InventoryServiceSOAP::ShippingInfo
|
803
|
+
# labelList - ChannelAdvisor::InventoryServiceSOAP::ArrayOfString
|
804
|
+
# metaDescription - SOAP::SOAPString
|
805
|
+
class InventoryItemSubmit
|
806
|
+
attr_accessor :sku
|
807
|
+
attr_accessor :title
|
808
|
+
attr_accessor :subtitle
|
809
|
+
attr_accessor :shortDescription
|
810
|
+
attr_accessor :description
|
811
|
+
attr_accessor :weight
|
812
|
+
attr_accessor :supplierCode
|
813
|
+
attr_accessor :warehouseLocation
|
814
|
+
attr_accessor :taxProductCode
|
815
|
+
attr_accessor :flagStyle
|
816
|
+
attr_accessor :flagDescription
|
817
|
+
attr_accessor :isBlocked
|
818
|
+
attr_accessor :blockComment
|
819
|
+
attr_accessor :aSIN
|
820
|
+
attr_accessor :iSBN
|
821
|
+
attr_accessor :uPC
|
822
|
+
attr_accessor :mPN
|
823
|
+
attr_accessor :eAN
|
824
|
+
attr_accessor :quantityInfo
|
825
|
+
attr_accessor :priceInfo
|
826
|
+
attr_accessor :classificationInfo
|
827
|
+
attr_accessor :variationInfo
|
828
|
+
attr_accessor :storeInfo
|
829
|
+
attr_accessor :imageList
|
830
|
+
attr_accessor :shippingInfo
|
831
|
+
attr_accessor :labelList
|
832
|
+
attr_accessor :metaDescription
|
833
|
+
|
834
|
+
def initialize(sku = nil, title = nil, subtitle = nil, shortDescription = nil, description = nil, weight = nil, supplierCode = nil, warehouseLocation = nil, taxProductCode = nil, flagStyle = nil, flagDescription = nil, isBlocked = nil, blockComment = nil, aSIN = nil, iSBN = nil, uPC = nil, mPN = nil, eAN = nil, quantityInfo = nil, priceInfo = nil, classificationInfo = nil, variationInfo = nil, storeInfo = nil, imageList = nil, shippingInfo = nil, labelList = nil, metaDescription = nil)
|
835
|
+
@sku = sku
|
836
|
+
@title = title
|
837
|
+
@subtitle = subtitle
|
838
|
+
@shortDescription = shortDescription
|
839
|
+
@description = description
|
840
|
+
@weight = weight
|
841
|
+
@supplierCode = supplierCode
|
842
|
+
@warehouseLocation = warehouseLocation
|
843
|
+
@taxProductCode = taxProductCode
|
844
|
+
@flagStyle = flagStyle
|
845
|
+
@flagDescription = flagDescription
|
846
|
+
@isBlocked = isBlocked
|
847
|
+
@blockComment = blockComment
|
848
|
+
@aSIN = aSIN
|
849
|
+
@iSBN = iSBN
|
850
|
+
@uPC = uPC
|
851
|
+
@mPN = mPN
|
852
|
+
@eAN = eAN
|
853
|
+
@quantityInfo = quantityInfo
|
854
|
+
@priceInfo = priceInfo
|
855
|
+
@classificationInfo = classificationInfo
|
856
|
+
@variationInfo = variationInfo
|
857
|
+
@storeInfo = storeInfo
|
858
|
+
@imageList = imageList
|
859
|
+
@shippingInfo = shippingInfo
|
860
|
+
@labelList = labelList
|
861
|
+
@metaDescription = metaDescription
|
862
|
+
end
|
863
|
+
end
|
864
|
+
|
865
|
+
# {http://api.channeladvisor.com/webservices/}QuantityInfoSubmit
|
866
|
+
# updateType - ChannelAdvisor::InventoryServiceSOAP::InventoryQuantityUpdateType
|
867
|
+
# total - SOAP::SOAPInt
|
868
|
+
class QuantityInfoSubmit
|
869
|
+
attr_accessor :updateType
|
870
|
+
attr_accessor :total
|
871
|
+
|
872
|
+
def initialize(updateType = nil, total = nil)
|
873
|
+
@updateType = updateType
|
874
|
+
@total = total
|
875
|
+
end
|
876
|
+
end
|
877
|
+
|
878
|
+
# {http://api.channeladvisor.com/webservices/}ArrayOfImageInfoSubmit
|
879
|
+
class ArrayOfImageInfoSubmit < ::Array
|
880
|
+
end
|
881
|
+
|
882
|
+
# {http://api.channeladvisor.com/webservices/}ImageInfoSubmit
|
883
|
+
# placementName - SOAP::SOAPString
|
884
|
+
# folderName - SOAP::SOAPString
|
885
|
+
# filenameOrUrl - SOAP::SOAPString
|
886
|
+
class ImageInfoSubmit
|
887
|
+
attr_accessor :placementName
|
888
|
+
attr_accessor :folderName
|
889
|
+
attr_accessor :filenameOrUrl
|
890
|
+
|
891
|
+
def initialize(placementName = nil, folderName = nil, filenameOrUrl = nil)
|
892
|
+
@placementName = placementName
|
893
|
+
@folderName = folderName
|
894
|
+
@filenameOrUrl = filenameOrUrl
|
895
|
+
end
|
896
|
+
end
|
897
|
+
|
898
|
+
# {http://api.channeladvisor.com/webservices/}ArrayOfInventoryItemSubmit
|
899
|
+
class ArrayOfInventoryItemSubmit < ::Array
|
900
|
+
end
|
901
|
+
|
902
|
+
# {http://api.channeladvisor.com/webservices/}APIResultOfArrayOfSynchInventoryItemResponse
|
903
|
+
# status - ChannelAdvisor::InventoryServiceSOAP::ResultStatus
|
904
|
+
# messageCode - SOAP::SOAPInt
|
905
|
+
# message - SOAP::SOAPString
|
906
|
+
# data - SOAP::SOAPString
|
907
|
+
# resultData - ChannelAdvisor::InventoryServiceSOAP::ArrayOfSynchInventoryItemResponse
|
908
|
+
class APIResultOfArrayOfSynchInventoryItemResponse
|
909
|
+
attr_accessor :status
|
910
|
+
attr_accessor :messageCode
|
911
|
+
attr_accessor :message
|
912
|
+
attr_accessor :data
|
913
|
+
attr_accessor :resultData
|
914
|
+
|
915
|
+
def initialize(status = nil, messageCode = nil, message = nil, data = nil, resultData = nil)
|
916
|
+
@status = status
|
917
|
+
@messageCode = messageCode
|
918
|
+
@message = message
|
919
|
+
@data = data
|
920
|
+
@resultData = resultData
|
921
|
+
end
|
922
|
+
end
|
923
|
+
|
924
|
+
# {http://api.channeladvisor.com/webservices/}ArrayOfSynchInventoryItemResponse
|
925
|
+
class ArrayOfSynchInventoryItemResponse < ::Array
|
926
|
+
end
|
927
|
+
|
928
|
+
# {http://api.channeladvisor.com/webservices/}SynchInventoryItemResponse
|
929
|
+
# sku - SOAP::SOAPString
|
930
|
+
# result - SOAP::SOAPBoolean
|
931
|
+
# errorMessage - SOAP::SOAPString
|
932
|
+
class SynchInventoryItemResponse
|
933
|
+
attr_accessor :sku
|
934
|
+
attr_accessor :result
|
935
|
+
attr_accessor :errorMessage
|
936
|
+
|
937
|
+
def initialize(sku = nil, result = nil, errorMessage = nil)
|
938
|
+
@sku = sku
|
939
|
+
@result = result
|
940
|
+
@errorMessage = errorMessage
|
941
|
+
end
|
942
|
+
end
|
943
|
+
|
944
|
+
# {http://api.channeladvisor.com/webservices/}InventoryItemQuantityAndPrice
|
945
|
+
# sku - SOAP::SOAPString
|
946
|
+
# quantityInfo - ChannelAdvisor::InventoryServiceSOAP::QuantityInfoSubmit
|
947
|
+
# priceInfo - ChannelAdvisor::InventoryServiceSOAP::PriceInfo
|
948
|
+
class InventoryItemQuantityAndPrice
|
949
|
+
attr_accessor :sku
|
950
|
+
attr_accessor :quantityInfo
|
951
|
+
attr_accessor :priceInfo
|
952
|
+
|
953
|
+
def initialize(sku = nil, quantityInfo = nil, priceInfo = nil)
|
954
|
+
@sku = sku
|
955
|
+
@quantityInfo = quantityInfo
|
956
|
+
@priceInfo = priceInfo
|
957
|
+
end
|
958
|
+
end
|
959
|
+
|
960
|
+
# {http://api.channeladvisor.com/webservices/}ArrayOfInventoryItemQuantityAndPrice
|
961
|
+
class ArrayOfInventoryItemQuantityAndPrice < ::Array
|
962
|
+
end
|
963
|
+
|
964
|
+
# {http://api.channeladvisor.com/webservices/}APIResultOfArrayOfUpdateInventoryItemResponse
|
965
|
+
# status - ChannelAdvisor::InventoryServiceSOAP::ResultStatus
|
966
|
+
# messageCode - SOAP::SOAPInt
|
967
|
+
# message - SOAP::SOAPString
|
968
|
+
# data - SOAP::SOAPString
|
969
|
+
# resultData - ChannelAdvisor::InventoryServiceSOAP::ArrayOfUpdateInventoryItemResponse
|
970
|
+
class APIResultOfArrayOfUpdateInventoryItemResponse
|
971
|
+
attr_accessor :status
|
972
|
+
attr_accessor :messageCode
|
973
|
+
attr_accessor :message
|
974
|
+
attr_accessor :data
|
975
|
+
attr_accessor :resultData
|
976
|
+
|
977
|
+
def initialize(status = nil, messageCode = nil, message = nil, data = nil, resultData = nil)
|
978
|
+
@status = status
|
979
|
+
@messageCode = messageCode
|
980
|
+
@message = message
|
981
|
+
@data = data
|
982
|
+
@resultData = resultData
|
983
|
+
end
|
984
|
+
end
|
985
|
+
|
986
|
+
# {http://api.channeladvisor.com/webservices/}ArrayOfUpdateInventoryItemResponse
|
987
|
+
class ArrayOfUpdateInventoryItemResponse < ::Array
|
988
|
+
end
|
989
|
+
|
990
|
+
# {http://api.channeladvisor.com/webservices/}UpdateInventoryItemResponse
|
991
|
+
# sku - SOAP::SOAPString
|
992
|
+
# result - SOAP::SOAPBoolean
|
993
|
+
# errorMessage - SOAP::SOAPString
|
994
|
+
class UpdateInventoryItemResponse
|
995
|
+
attr_accessor :sku
|
996
|
+
attr_accessor :result
|
997
|
+
attr_accessor :errorMessage
|
998
|
+
|
999
|
+
def initialize(sku = nil, result = nil, errorMessage = nil)
|
1000
|
+
@sku = sku
|
1001
|
+
@result = result
|
1002
|
+
@errorMessage = errorMessage
|
1003
|
+
end
|
1004
|
+
end
|
1005
|
+
|
1006
|
+
# {http://api.channeladvisor.com/webservices/}APIResultOfString
|
1007
|
+
# status - ChannelAdvisor::InventoryServiceSOAP::ResultStatus
|
1008
|
+
# messageCode - SOAP::SOAPInt
|
1009
|
+
# message - SOAP::SOAPString
|
1010
|
+
# data - SOAP::SOAPString
|
1011
|
+
# resultData - SOAP::SOAPString
|
1012
|
+
class APIResultOfString
|
1013
|
+
attr_accessor :status
|
1014
|
+
attr_accessor :messageCode
|
1015
|
+
attr_accessor :message
|
1016
|
+
attr_accessor :data
|
1017
|
+
attr_accessor :resultData
|
1018
|
+
|
1019
|
+
def initialize(status = nil, messageCode = nil, message = nil, data = nil, resultData = nil)
|
1020
|
+
@status = status
|
1021
|
+
@messageCode = messageCode
|
1022
|
+
@message = message
|
1023
|
+
@data = data
|
1024
|
+
@resultData = resultData
|
1025
|
+
end
|
1026
|
+
end
|
1027
|
+
|
1028
|
+
# {http://api.channeladvisor.com/webservices/}ResultStatus
|
1029
|
+
class ResultStatus < ::String
|
1030
|
+
Failure = ResultStatus.new("Failure")
|
1031
|
+
Success = ResultStatus.new("Success")
|
1032
|
+
end
|
1033
|
+
|
1034
|
+
# {http://api.channeladvisor.com/webservices/}FlagType
|
1035
|
+
class FlagType < ::String
|
1036
|
+
BlueFlag = FlagType.new("BlueFlag")
|
1037
|
+
ExclamationPoint = FlagType.new("ExclamationPoint")
|
1038
|
+
GreenFlag = FlagType.new("GreenFlag")
|
1039
|
+
ItemCopied = FlagType.new("ItemCopied")
|
1040
|
+
NoFlag = FlagType.new("NoFlag")
|
1041
|
+
NotAvailable = FlagType.new("NotAvailable")
|
1042
|
+
Price = FlagType.new("Price")
|
1043
|
+
QuestionMark = FlagType.new("QuestionMark")
|
1044
|
+
RedFlag = FlagType.new("RedFlag")
|
1045
|
+
YellowFlag = FlagType.new("YellowFlag")
|
1046
|
+
end
|
1047
|
+
|
1048
|
+
# {http://api.channeladvisor.com/webservices/}ShippingRateAttribute
|
1049
|
+
class ShippingRateAttribute < ::String
|
1050
|
+
NotAvailable = ShippingRateAttribute.new("NotAvailable")
|
1051
|
+
Price = ShippingRateAttribute.new("Price")
|
1052
|
+
TBD = ShippingRateAttribute.new("TBD")
|
1053
|
+
end
|
1054
|
+
|
1055
|
+
# {http://api.channeladvisor.com/webservices/}HandlingRateAttribute
|
1056
|
+
class HandlingRateAttribute < ::String
|
1057
|
+
NotAvailable = HandlingRateAttribute.new("NotAvailable")
|
1058
|
+
Price = HandlingRateAttribute.new("Price")
|
1059
|
+
end
|
1060
|
+
|
1061
|
+
# {http://api.channeladvisor.com/webservices/}InventoryItemDateRangeField
|
1062
|
+
class InventoryItemDateRangeField < ::String
|
1063
|
+
CreateDate = InventoryItemDateRangeField.new("CreateDate")
|
1064
|
+
LastUpdateDate = InventoryItemDateRangeField.new("LastUpdateDate")
|
1065
|
+
QtyLastModifiedDate = InventoryItemDateRangeField.new("QtyLastModifiedDate")
|
1066
|
+
end
|
1067
|
+
|
1068
|
+
# {http://api.channeladvisor.com/webservices/}InventoryItemQuantityField
|
1069
|
+
class InventoryItemQuantityField < ::String
|
1070
|
+
Available = InventoryItemQuantityField.new("Available")
|
1071
|
+
Open = InventoryItemQuantityField.new("Open")
|
1072
|
+
PendingCheckout = InventoryItemQuantityField.new("PendingCheckout")
|
1073
|
+
PendingPayment = InventoryItemQuantityField.new("PendingPayment")
|
1074
|
+
PendingShipment = InventoryItemQuantityField.new("PendingShipment")
|
1075
|
+
Total = InventoryItemQuantityField.new("Total")
|
1076
|
+
end
|
1077
|
+
|
1078
|
+
# {http://api.channeladvisor.com/webservices/}NumericFilterType
|
1079
|
+
class NumericFilterType < ::String
|
1080
|
+
EqualTo = NumericFilterType.new("EqualTo")
|
1081
|
+
GreaterThan = NumericFilterType.new("GreaterThan")
|
1082
|
+
GreaterThanOrEqualTo = NumericFilterType.new("GreaterThanOrEqualTo")
|
1083
|
+
LessThan = NumericFilterType.new("LessThan")
|
1084
|
+
LessThanOrEqualTo = NumericFilterType.new("LessThanOrEqualTo")
|
1085
|
+
end
|
1086
|
+
|
1087
|
+
# {http://api.channeladvisor.com/webservices/}InventoryItemSortField
|
1088
|
+
class InventoryItemSortField < ::String
|
1089
|
+
Sku = InventoryItemSortField.new("Sku")
|
1090
|
+
Title = InventoryItemSortField.new("Title")
|
1091
|
+
end
|
1092
|
+
|
1093
|
+
# {http://api.channeladvisor.com/webservices/}SortDirection
|
1094
|
+
class SortDirection < ::String
|
1095
|
+
Ascending = SortDirection.new("Ascending")
|
1096
|
+
Descending = SortDirection.new("Descending")
|
1097
|
+
end
|
1098
|
+
|
1099
|
+
# {http://api.channeladvisor.com/webservices/}ErrorCode
|
1100
|
+
class ErrorCode < ::String
|
1101
|
+
AccountIDIsBlank = ErrorCode.new("AccountIDIsBlank")
|
1102
|
+
AccountIDIsNull = ErrorCode.new("AccountIDIsNull")
|
1103
|
+
AccountIDNotExists = ErrorCode.new("AccountIDNotExists")
|
1104
|
+
CartIDNull = ErrorCode.new("CartIDNull")
|
1105
|
+
CartNotFound = ErrorCode.new("CartNotFound")
|
1106
|
+
DataIntegrityViolation = ErrorCode.new("DataIntegrityViolation")
|
1107
|
+
EMailAddressBadFormat = ErrorCode.new("EMailAddressBadFormat")
|
1108
|
+
EmptyCartSubmit = ErrorCode.new("EmptyCartSubmit")
|
1109
|
+
ErrorInvoiceCreation = ErrorCode.new("ErrorInvoiceCreation")
|
1110
|
+
Error_AuctionWinnerValidation = ErrorCode.new("Error_AuctionWinnerValidation")
|
1111
|
+
Error_NotValidCartID = ErrorCode.new("Error_NotValidCartID")
|
1112
|
+
Error_PromotionNotFound = ErrorCode.new("Error_PromotionNotFound")
|
1113
|
+
Error_SKUDuplicated = ErrorCode.new("Error_SKUDuplicated")
|
1114
|
+
Error_SavingBillingData = ErrorCode.new("Error_SavingBillingData")
|
1115
|
+
Error_SavingOrderShippingData = ErrorCode.new("Error_SavingOrderShippingData")
|
1116
|
+
FetchFilterInfoNull = ErrorCode.new("FetchFilterInfoNull")
|
1117
|
+
InvalidArguments = ErrorCode.new("InvalidArguments")
|
1118
|
+
InvalidCartID = ErrorCode.new("InvalidCartID")
|
1119
|
+
InvalidSaleSource = ErrorCode.new("InvalidSaleSource")
|
1120
|
+
Invalid_AddressLength = ErrorCode.new("Invalid_AddressLength")
|
1121
|
+
Invalid_CCLast4 = ErrorCode.new("Invalid_CCLast4")
|
1122
|
+
Invalid_CarrierClassData = ErrorCode.new("Invalid_CarrierClassData")
|
1123
|
+
Invalid_CityLength = ErrorCode.new("Invalid_CityLength")
|
1124
|
+
Invalid_CompanyNameLength = ErrorCode.new("Invalid_CompanyNameLength")
|
1125
|
+
Invalid_CountryLength = ErrorCode.new("Invalid_CountryLength")
|
1126
|
+
Invalid_CustomFieldValue = ErrorCode.new("Invalid_CustomFieldValue")
|
1127
|
+
Invalid_FirstNameLength = ErrorCode.new("Invalid_FirstNameLength")
|
1128
|
+
Invalid_JobTitleLength = ErrorCode.new("Invalid_JobTitleLength")
|
1129
|
+
Invalid_LastNameLength = ErrorCode.new("Invalid_LastNameLength")
|
1130
|
+
Invalid_OrderId = ErrorCode.new("Invalid_OrderId")
|
1131
|
+
Invalid_OrderNumberLength = ErrorCode.new("Invalid_OrderNumberLength")
|
1132
|
+
Invalid_OrderStatus = ErrorCode.new("Invalid_OrderStatus")
|
1133
|
+
Invalid_PhoneLength = ErrorCode.new("Invalid_PhoneLength")
|
1134
|
+
Invalid_PostalCodeLength = ErrorCode.new("Invalid_PostalCodeLength")
|
1135
|
+
Invalid_ShippingInstructionsLgth = ErrorCode.new("Invalid_ShippingInstructionsLgth")
|
1136
|
+
Invalid_SuffixLength = ErrorCode.new("Invalid_SuffixLength")
|
1137
|
+
Invalid_TitleLength = ErrorCode.new("Invalid_TitleLength")
|
1138
|
+
Invalid_TrackingNumberLgth = ErrorCode.new("Invalid_TrackingNumberLgth")
|
1139
|
+
LineItemIDNotFound = ErrorCode.new("LineItemIDNotFound")
|
1140
|
+
LineItemOrSKUEmpty = ErrorCode.new("LineItemOrSKUEmpty")
|
1141
|
+
MissingEmailAddress = ErrorCode.new("MissingEmailAddress")
|
1142
|
+
MultiplePromoCodesSpecified = ErrorCode.new("MultiplePromoCodesSpecified")
|
1143
|
+
NegativeQuantity = ErrorCode.new("NegativeQuantity")
|
1144
|
+
OrderCollectionNull = ErrorCode.new("OrderCollectionNull")
|
1145
|
+
OrderIdIsNullOrEmpty = ErrorCode.new("OrderIdIsNullOrEmpty")
|
1146
|
+
PromoAmountOutOfRange = ErrorCode.new("PromoAmountOutOfRange")
|
1147
|
+
QuantityNotEnough = ErrorCode.new("QuantityNotEnough")
|
1148
|
+
RoverRegionNotFound = ErrorCode.new("RoverRegionNotFound")
|
1149
|
+
SKUNotFound = ErrorCode.new("SKUNotFound")
|
1150
|
+
ShippingCostNegative = ErrorCode.new("ShippingCostNegative")
|
1151
|
+
SkuIsBlank = ErrorCode.new("SkuIsBlank")
|
1152
|
+
SkuIsNull = ErrorCode.new("SkuIsNull")
|
1153
|
+
Success = ErrorCode.new("Success")
|
1154
|
+
TooManyGiftWrapAmounts = ErrorCode.new("TooManyGiftWrapAmounts")
|
1155
|
+
TooManyInsuranceAmounts = ErrorCode.new("TooManyInsuranceAmounts")
|
1156
|
+
TooManySKUsRequested = ErrorCode.new("TooManySKUsRequested")
|
1157
|
+
TooManyShippingAmounts = ErrorCode.new("TooManyShippingAmounts")
|
1158
|
+
TooManyTaxAmounts = ErrorCode.new("TooManyTaxAmounts")
|
1159
|
+
TooManyVATGiftWrapAmounts = ErrorCode.new("TooManyVATGiftWrapAmounts")
|
1160
|
+
TooManyVATShippingAmounts = ErrorCode.new("TooManyVATShippingAmounts")
|
1161
|
+
Unexpected = ErrorCode.new("Unexpected")
|
1162
|
+
VATRangeOutOfRange = ErrorCode.new("VATRangeOutOfRange")
|
1163
|
+
WrongAccountSettings = ErrorCode.new("WrongAccountSettings")
|
1164
|
+
WrongCountryInfo = ErrorCode.new("WrongCountryInfo")
|
1165
|
+
WrongStateInfo = ErrorCode.new("WrongStateInfo")
|
1166
|
+
ZeroQuantity = ErrorCode.new("ZeroQuantity")
|
1167
|
+
end
|
1168
|
+
|
1169
|
+
# {http://api.channeladvisor.com/webservices/}InventoryQuantityUpdateType
|
1170
|
+
class InventoryQuantityUpdateType < ::String
|
1171
|
+
Absolute = InventoryQuantityUpdateType.new("Absolute")
|
1172
|
+
Available = InventoryQuantityUpdateType.new("Available")
|
1173
|
+
InStock = InventoryQuantityUpdateType.new("InStock")
|
1174
|
+
Relative = InventoryQuantityUpdateType.new("Relative")
|
1175
|
+
UnShipped = InventoryQuantityUpdateType.new("UnShipped")
|
1176
|
+
end
|
1177
|
+
|
1178
|
+
# {http://api.channeladvisor.com/webservices/}DoesSkuExist
|
1179
|
+
# accountID - SOAP::SOAPString
|
1180
|
+
# sku - SOAP::SOAPString
|
1181
|
+
class DoesSkuExist
|
1182
|
+
attr_accessor :accountID
|
1183
|
+
attr_accessor :sku
|
1184
|
+
|
1185
|
+
def initialize(accountID = nil, sku = nil)
|
1186
|
+
@accountID = accountID
|
1187
|
+
@sku = sku
|
1188
|
+
end
|
1189
|
+
end
|
1190
|
+
|
1191
|
+
# {http://api.channeladvisor.com/webservices/}DoesSkuExistList
|
1192
|
+
# accountID - SOAP::SOAPString
|
1193
|
+
# skuList - ChannelAdvisor::InventoryServiceSOAP::ArrayOfString
|
1194
|
+
class DoesSkuExistList
|
1195
|
+
attr_accessor :accountID
|
1196
|
+
attr_accessor :skuList
|
1197
|
+
|
1198
|
+
def initialize(accountID = nil, skuList = nil)
|
1199
|
+
@accountID = accountID
|
1200
|
+
@skuList = skuList
|
1201
|
+
end
|
1202
|
+
end
|
1203
|
+
|
1204
|
+
# {http://api.channeladvisor.com/webservices/}DoesSkuExistListResponse
|
1205
|
+
# doesSkuExistListResult - ChannelAdvisor::InventoryServiceSOAP::APIResultOfArrayOfDoesSkuExistResponse
|
1206
|
+
class DoesSkuExistListResponse
|
1207
|
+
attr_accessor :doesSkuExistListResult
|
1208
|
+
|
1209
|
+
def initialize(doesSkuExistListResult = nil)
|
1210
|
+
@doesSkuExistListResult = doesSkuExistListResult
|
1211
|
+
end
|
1212
|
+
end
|
1213
|
+
|
1214
|
+
# {http://api.channeladvisor.com/webservices/}GetInventoryItemList
|
1215
|
+
# accountID - SOAP::SOAPString
|
1216
|
+
# skuList - ChannelAdvisor::InventoryServiceSOAP::ArrayOfString
|
1217
|
+
class GetInventoryItemList
|
1218
|
+
attr_accessor :accountID
|
1219
|
+
attr_accessor :skuList
|
1220
|
+
|
1221
|
+
def initialize(accountID = nil, skuList = nil)
|
1222
|
+
@accountID = accountID
|
1223
|
+
@skuList = skuList
|
1224
|
+
end
|
1225
|
+
end
|
1226
|
+
|
1227
|
+
# {http://api.channeladvisor.com/webservices/}GetInventoryItemListResponse
|
1228
|
+
# getInventoryItemListResult - ChannelAdvisor::InventoryServiceSOAP::APIResultOfArrayOfInventoryItemResponse
|
1229
|
+
class GetInventoryItemListResponse
|
1230
|
+
attr_accessor :getInventoryItemListResult
|
1231
|
+
|
1232
|
+
def initialize(getInventoryItemListResult = nil)
|
1233
|
+
@getInventoryItemListResult = getInventoryItemListResult
|
1234
|
+
end
|
1235
|
+
end
|
1236
|
+
|
1237
|
+
# {http://api.channeladvisor.com/webservices/}GetInventoryItemListWithFullDetail
|
1238
|
+
# accountID - SOAP::SOAPString
|
1239
|
+
# skuList - ChannelAdvisor::InventoryServiceSOAP::ArrayOfString
|
1240
|
+
class GetInventoryItemListWithFullDetail
|
1241
|
+
attr_accessor :accountID
|
1242
|
+
attr_accessor :skuList
|
1243
|
+
|
1244
|
+
def initialize(accountID = nil, skuList = nil)
|
1245
|
+
@accountID = accountID
|
1246
|
+
@skuList = skuList
|
1247
|
+
end
|
1248
|
+
end
|
1249
|
+
|
1250
|
+
# {http://api.channeladvisor.com/webservices/}GetInventoryItemListWithFullDetailResponse
|
1251
|
+
# getInventoryItemListWithFullDetailResult - ChannelAdvisor::InventoryServiceSOAP::APIResultOfArrayOfInventoryItemResponse
|
1252
|
+
class GetInventoryItemListWithFullDetailResponse
|
1253
|
+
attr_accessor :getInventoryItemListWithFullDetailResult
|
1254
|
+
|
1255
|
+
def initialize(getInventoryItemListWithFullDetailResult = nil)
|
1256
|
+
@getInventoryItemListWithFullDetailResult = getInventoryItemListWithFullDetailResult
|
1257
|
+
end
|
1258
|
+
end
|
1259
|
+
|
1260
|
+
# {http://api.channeladvisor.com/webservices/}GetFilteredInventoryItemList
|
1261
|
+
# accountID - SOAP::SOAPString
|
1262
|
+
# itemCriteria - ChannelAdvisor::InventoryServiceSOAP::InventoryItemCriteria
|
1263
|
+
# detailLevel - ChannelAdvisor::InventoryServiceSOAP::InventoryItemDetailLevel
|
1264
|
+
# sortField - ChannelAdvisor::InventoryServiceSOAP::InventoryItemSortField
|
1265
|
+
# sortDirection - ChannelAdvisor::InventoryServiceSOAP::SortDirection
|
1266
|
+
class GetFilteredInventoryItemList
|
1267
|
+
attr_accessor :accountID
|
1268
|
+
attr_accessor :itemCriteria
|
1269
|
+
attr_accessor :detailLevel
|
1270
|
+
attr_accessor :sortField
|
1271
|
+
attr_accessor :sortDirection
|
1272
|
+
|
1273
|
+
def initialize(accountID = nil, itemCriteria = nil, detailLevel = nil, sortField = nil, sortDirection = nil)
|
1274
|
+
@accountID = accountID
|
1275
|
+
@itemCriteria = itemCriteria
|
1276
|
+
@detailLevel = detailLevel
|
1277
|
+
@sortField = sortField
|
1278
|
+
@sortDirection = sortDirection
|
1279
|
+
end
|
1280
|
+
end
|
1281
|
+
|
1282
|
+
# {http://api.channeladvisor.com/webservices/}GetFilteredInventoryItemListResponse
|
1283
|
+
# getFilteredInventoryItemListResult - ChannelAdvisor::InventoryServiceSOAP::APIResultOfArrayOfInventoryItemResponse
|
1284
|
+
class GetFilteredInventoryItemListResponse
|
1285
|
+
attr_accessor :getFilteredInventoryItemListResult
|
1286
|
+
|
1287
|
+
def initialize(getFilteredInventoryItemListResult = nil)
|
1288
|
+
@getFilteredInventoryItemListResult = getFilteredInventoryItemListResult
|
1289
|
+
end
|
1290
|
+
end
|
1291
|
+
|
1292
|
+
# {http://api.channeladvisor.com/webservices/}GetFilteredSkuList
|
1293
|
+
# accountID - SOAP::SOAPString
|
1294
|
+
# itemCriteria - ChannelAdvisor::InventoryServiceSOAP::InventoryItemCriteria
|
1295
|
+
# sortField - ChannelAdvisor::InventoryServiceSOAP::InventoryItemSortField
|
1296
|
+
# sortDirection - ChannelAdvisor::InventoryServiceSOAP::SortDirection
|
1297
|
+
class GetFilteredSkuList
|
1298
|
+
attr_accessor :accountID
|
1299
|
+
attr_accessor :itemCriteria
|
1300
|
+
attr_accessor :sortField
|
1301
|
+
attr_accessor :sortDirection
|
1302
|
+
|
1303
|
+
def initialize(accountID = nil, itemCriteria = nil, sortField = nil, sortDirection = nil)
|
1304
|
+
@accountID = accountID
|
1305
|
+
@itemCriteria = itemCriteria
|
1306
|
+
@sortField = sortField
|
1307
|
+
@sortDirection = sortDirection
|
1308
|
+
end
|
1309
|
+
end
|
1310
|
+
|
1311
|
+
# {http://api.channeladvisor.com/webservices/}GetFilteredSkuListResponse
|
1312
|
+
# getFilteredSkuListResult - ChannelAdvisor::InventoryServiceSOAP::APIResultOfArrayOfString
|
1313
|
+
class GetFilteredSkuListResponse
|
1314
|
+
attr_accessor :getFilteredSkuListResult
|
1315
|
+
|
1316
|
+
def initialize(getFilteredSkuListResult = nil)
|
1317
|
+
@getFilteredSkuListResult = getFilteredSkuListResult
|
1318
|
+
end
|
1319
|
+
end
|
1320
|
+
|
1321
|
+
# {http://api.channeladvisor.com/webservices/}GetInventoryItemShippingInfo
|
1322
|
+
# accountID - SOAP::SOAPString
|
1323
|
+
# sku - SOAP::SOAPString
|
1324
|
+
class GetInventoryItemShippingInfo
|
1325
|
+
attr_accessor :accountID
|
1326
|
+
attr_accessor :sku
|
1327
|
+
|
1328
|
+
def initialize(accountID = nil, sku = nil)
|
1329
|
+
@accountID = accountID
|
1330
|
+
@sku = sku
|
1331
|
+
end
|
1332
|
+
end
|
1333
|
+
|
1334
|
+
# {http://api.channeladvisor.com/webservices/}GetInventoryItemShippingInfoResponse
|
1335
|
+
# getInventoryItemShippingInfoResult - ChannelAdvisor::InventoryServiceSOAP::APIResultOfArrayOfShippingRateInfo
|
1336
|
+
class GetInventoryItemShippingInfoResponse
|
1337
|
+
attr_accessor :getInventoryItemShippingInfoResult
|
1338
|
+
|
1339
|
+
def initialize(getInventoryItemShippingInfoResult = nil)
|
1340
|
+
@getInventoryItemShippingInfoResult = getInventoryItemShippingInfoResult
|
1341
|
+
end
|
1342
|
+
end
|
1343
|
+
|
1344
|
+
# {http://api.channeladvisor.com/webservices/}GetInventoryItemQuantityInfo
|
1345
|
+
# accountID - SOAP::SOAPString
|
1346
|
+
# sku - SOAP::SOAPString
|
1347
|
+
class GetInventoryItemQuantityInfo
|
1348
|
+
attr_accessor :accountID
|
1349
|
+
attr_accessor :sku
|
1350
|
+
|
1351
|
+
def initialize(accountID = nil, sku = nil)
|
1352
|
+
@accountID = accountID
|
1353
|
+
@sku = sku
|
1354
|
+
end
|
1355
|
+
end
|
1356
|
+
|
1357
|
+
# {http://api.channeladvisor.com/webservices/}GetInventoryItemQuantityInfoResponse
|
1358
|
+
# getInventoryItemQuantityInfoResult - ChannelAdvisor::InventoryServiceSOAP::APIResultOfQuantityInfoResponse
|
1359
|
+
class GetInventoryItemQuantityInfoResponse
|
1360
|
+
attr_accessor :getInventoryItemQuantityInfoResult
|
1361
|
+
|
1362
|
+
def initialize(getInventoryItemQuantityInfoResult = nil)
|
1363
|
+
@getInventoryItemQuantityInfoResult = getInventoryItemQuantityInfoResult
|
1364
|
+
end
|
1365
|
+
end
|
1366
|
+
|
1367
|
+
# {http://api.channeladvisor.com/webservices/}GetClassificationConfigurationInformation
|
1368
|
+
# accountID - SOAP::SOAPString
|
1369
|
+
class GetClassificationConfigurationInformation
|
1370
|
+
attr_accessor :accountID
|
1371
|
+
|
1372
|
+
def initialize(accountID = nil)
|
1373
|
+
@accountID = accountID
|
1374
|
+
end
|
1375
|
+
end
|
1376
|
+
|
1377
|
+
# {http://api.channeladvisor.com/webservices/}GetClassificationConfigurationInformationResponse
|
1378
|
+
# getClassificationConfigurationInformationResult - ChannelAdvisor::InventoryServiceSOAP::APIResultOfArrayOfClassificationConfigurationInformation
|
1379
|
+
class GetClassificationConfigurationInformationResponse
|
1380
|
+
attr_accessor :getClassificationConfigurationInformationResult
|
1381
|
+
|
1382
|
+
def initialize(getClassificationConfigurationInformationResult = nil)
|
1383
|
+
@getClassificationConfigurationInformationResult = getClassificationConfigurationInformationResult
|
1384
|
+
end
|
1385
|
+
end
|
1386
|
+
|
1387
|
+
# {http://api.channeladvisor.com/webservices/}GetInventoryItemClassificationAttributeList
|
1388
|
+
# accountID - SOAP::SOAPString
|
1389
|
+
# sku - SOAP::SOAPString
|
1390
|
+
class GetInventoryItemClassificationAttributeList
|
1391
|
+
attr_accessor :accountID
|
1392
|
+
attr_accessor :sku
|
1393
|
+
|
1394
|
+
def initialize(accountID = nil, sku = nil)
|
1395
|
+
@accountID = accountID
|
1396
|
+
@sku = sku
|
1397
|
+
end
|
1398
|
+
end
|
1399
|
+
|
1400
|
+
# {http://api.channeladvisor.com/webservices/}GetInventoryItemClassificationAttributeListResponse
|
1401
|
+
# getInventoryItemClassificationAttributeListResult - ChannelAdvisor::InventoryServiceSOAP::APIResultOfArrayOfClassificationAttributeInfo
|
1402
|
+
class GetInventoryItemClassificationAttributeListResponse
|
1403
|
+
attr_accessor :getInventoryItemClassificationAttributeListResult
|
1404
|
+
|
1405
|
+
def initialize(getInventoryItemClassificationAttributeListResult = nil)
|
1406
|
+
@getInventoryItemClassificationAttributeListResult = getInventoryItemClassificationAttributeListResult
|
1407
|
+
end
|
1408
|
+
end
|
1409
|
+
|
1410
|
+
# {http://api.channeladvisor.com/webservices/}GetInventoryItemVariationInfo
|
1411
|
+
# accountID - SOAP::SOAPString
|
1412
|
+
# sku - SOAP::SOAPString
|
1413
|
+
class GetInventoryItemVariationInfo
|
1414
|
+
attr_accessor :accountID
|
1415
|
+
attr_accessor :sku
|
1416
|
+
|
1417
|
+
def initialize(accountID = nil, sku = nil)
|
1418
|
+
@accountID = accountID
|
1419
|
+
@sku = sku
|
1420
|
+
end
|
1421
|
+
end
|
1422
|
+
|
1423
|
+
# {http://api.channeladvisor.com/webservices/}GetInventoryItemVariationInfoResponse
|
1424
|
+
# getInventoryItemVariationInfoResult - ChannelAdvisor::InventoryServiceSOAP::APIResultOfVariationInfo
|
1425
|
+
class GetInventoryItemVariationInfoResponse
|
1426
|
+
attr_accessor :getInventoryItemVariationInfoResult
|
1427
|
+
|
1428
|
+
def initialize(getInventoryItemVariationInfoResult = nil)
|
1429
|
+
@getInventoryItemVariationInfoResult = getInventoryItemVariationInfoResult
|
1430
|
+
end
|
1431
|
+
end
|
1432
|
+
|
1433
|
+
# {http://api.channeladvisor.com/webservices/}GetInventoryItemStoreInfo
|
1434
|
+
# accountID - SOAP::SOAPString
|
1435
|
+
# sku - SOAP::SOAPString
|
1436
|
+
class GetInventoryItemStoreInfo
|
1437
|
+
attr_accessor :accountID
|
1438
|
+
attr_accessor :sku
|
1439
|
+
|
1440
|
+
def initialize(accountID = nil, sku = nil)
|
1441
|
+
@accountID = accountID
|
1442
|
+
@sku = sku
|
1443
|
+
end
|
1444
|
+
end
|
1445
|
+
|
1446
|
+
# {http://api.channeladvisor.com/webservices/}GetInventoryItemStoreInfoResponse
|
1447
|
+
# getInventoryItemStoreInfoResult - ChannelAdvisor::InventoryServiceSOAP::APIResultOfStoreInfo
|
1448
|
+
class GetInventoryItemStoreInfoResponse
|
1449
|
+
attr_accessor :getInventoryItemStoreInfoResult
|
1450
|
+
|
1451
|
+
def initialize(getInventoryItemStoreInfoResult = nil)
|
1452
|
+
@getInventoryItemStoreInfoResult = getInventoryItemStoreInfoResult
|
1453
|
+
end
|
1454
|
+
end
|
1455
|
+
|
1456
|
+
# {http://api.channeladvisor.com/webservices/}GetInventoryItemImageList
|
1457
|
+
# accountID - SOAP::SOAPString
|
1458
|
+
# sku - SOAP::SOAPString
|
1459
|
+
class GetInventoryItemImageList
|
1460
|
+
attr_accessor :accountID
|
1461
|
+
attr_accessor :sku
|
1462
|
+
|
1463
|
+
def initialize(accountID = nil, sku = nil)
|
1464
|
+
@accountID = accountID
|
1465
|
+
@sku = sku
|
1466
|
+
end
|
1467
|
+
end
|
1468
|
+
|
1469
|
+
# {http://api.channeladvisor.com/webservices/}GetInventoryItemImageListResponse
|
1470
|
+
# getInventoryItemImageListResult - ChannelAdvisor::InventoryServiceSOAP::APIResultOfArrayOfImageInfoResponse
|
1471
|
+
class GetInventoryItemImageListResponse
|
1472
|
+
attr_accessor :getInventoryItemImageListResult
|
1473
|
+
|
1474
|
+
def initialize(getInventoryItemImageListResult = nil)
|
1475
|
+
@getInventoryItemImageListResult = getInventoryItemImageListResult
|
1476
|
+
end
|
1477
|
+
end
|
1478
|
+
|
1479
|
+
# {http://api.channeladvisor.com/webservices/}GetInventoryQuantity
|
1480
|
+
# accountID - SOAP::SOAPString
|
1481
|
+
# sku - SOAP::SOAPString
|
1482
|
+
class GetInventoryQuantity
|
1483
|
+
attr_accessor :accountID
|
1484
|
+
attr_accessor :sku
|
1485
|
+
|
1486
|
+
def initialize(accountID = nil, sku = nil)
|
1487
|
+
@accountID = accountID
|
1488
|
+
@sku = sku
|
1489
|
+
end
|
1490
|
+
end
|
1491
|
+
|
1492
|
+
# {http://api.channeladvisor.com/webservices/}GetInventoryQuantityResponse
|
1493
|
+
# getInventoryQuantityResult - ChannelAdvisor::InventoryServiceSOAP::APIResultOfInt32
|
1494
|
+
class GetInventoryQuantityResponse
|
1495
|
+
attr_accessor :getInventoryQuantityResult
|
1496
|
+
|
1497
|
+
def initialize(getInventoryQuantityResult = nil)
|
1498
|
+
@getInventoryQuantityResult = getInventoryQuantityResult
|
1499
|
+
end
|
1500
|
+
end
|
1501
|
+
|
1502
|
+
# {http://api.channeladvisor.com/webservices/}GetInventoryQuantityList
|
1503
|
+
# accountID - SOAP::SOAPString
|
1504
|
+
# skuList - ChannelAdvisor::InventoryServiceSOAP::ArrayOfString
|
1505
|
+
class GetInventoryQuantityList
|
1506
|
+
attr_accessor :accountID
|
1507
|
+
attr_accessor :skuList
|
1508
|
+
|
1509
|
+
def initialize(accountID = nil, skuList = nil)
|
1510
|
+
@accountID = accountID
|
1511
|
+
@skuList = skuList
|
1512
|
+
end
|
1513
|
+
end
|
1514
|
+
|
1515
|
+
# {http://api.channeladvisor.com/webservices/}GetInventoryQuantityListResponse
|
1516
|
+
# getInventoryQuantityListResult - ChannelAdvisor::InventoryServiceSOAP::APIResultOfArrayOfInventoryQuantityResponse
|
1517
|
+
class GetInventoryQuantityListResponse
|
1518
|
+
attr_accessor :getInventoryQuantityListResult
|
1519
|
+
|
1520
|
+
def initialize(getInventoryQuantityListResult = nil)
|
1521
|
+
@getInventoryQuantityListResult = getInventoryQuantityListResult
|
1522
|
+
end
|
1523
|
+
end
|
1524
|
+
|
1525
|
+
# {http://api.channeladvisor.com/webservices/}DeleteInventoryItem
|
1526
|
+
# accountID - SOAP::SOAPString
|
1527
|
+
# sku - SOAP::SOAPString
|
1528
|
+
class DeleteInventoryItem
|
1529
|
+
attr_accessor :accountID
|
1530
|
+
attr_accessor :sku
|
1531
|
+
|
1532
|
+
def initialize(accountID = nil, sku = nil)
|
1533
|
+
@accountID = accountID
|
1534
|
+
@sku = sku
|
1535
|
+
end
|
1536
|
+
end
|
1537
|
+
|
1538
|
+
# {http://api.channeladvisor.com/webservices/}DeleteInventoryItemResponse
|
1539
|
+
# deleteInventoryItemResult - ChannelAdvisor::InventoryServiceSOAP::APIResultOfBoolean
|
1540
|
+
class DeleteInventoryItemResponse
|
1541
|
+
attr_accessor :deleteInventoryItemResult
|
1542
|
+
|
1543
|
+
def initialize(deleteInventoryItemResult = nil)
|
1544
|
+
@deleteInventoryItemResult = deleteInventoryItemResult
|
1545
|
+
end
|
1546
|
+
end
|
1547
|
+
|
1548
|
+
# {http://api.channeladvisor.com/webservices/}SynchInventoryItem
|
1549
|
+
# accountID - SOAP::SOAPString
|
1550
|
+
# item - ChannelAdvisor::InventoryServiceSOAP::InventoryItemSubmit
|
1551
|
+
class SynchInventoryItem
|
1552
|
+
attr_accessor :accountID
|
1553
|
+
attr_accessor :item
|
1554
|
+
|
1555
|
+
def initialize(accountID = nil, item = nil)
|
1556
|
+
@accountID = accountID
|
1557
|
+
@item = item
|
1558
|
+
end
|
1559
|
+
end
|
1560
|
+
|
1561
|
+
# {http://api.channeladvisor.com/webservices/}SynchInventoryItemList
|
1562
|
+
# accountID - SOAP::SOAPString
|
1563
|
+
# itemList - ChannelAdvisor::InventoryServiceSOAP::ArrayOfInventoryItemSubmit
|
1564
|
+
class SynchInventoryItemList
|
1565
|
+
attr_accessor :accountID
|
1566
|
+
attr_accessor :itemList
|
1567
|
+
|
1568
|
+
def initialize(accountID = nil, itemList = nil)
|
1569
|
+
@accountID = accountID
|
1570
|
+
@itemList = itemList
|
1571
|
+
end
|
1572
|
+
end
|
1573
|
+
|
1574
|
+
# {http://api.channeladvisor.com/webservices/}SynchInventoryItemListResponse
|
1575
|
+
# synchInventoryItemListResult - ChannelAdvisor::InventoryServiceSOAP::APIResultOfArrayOfSynchInventoryItemResponse
|
1576
|
+
class SynchInventoryItemListResponse
|
1577
|
+
attr_accessor :synchInventoryItemListResult
|
1578
|
+
|
1579
|
+
def initialize(synchInventoryItemListResult = nil)
|
1580
|
+
@synchInventoryItemListResult = synchInventoryItemListResult
|
1581
|
+
end
|
1582
|
+
end
|
1583
|
+
|
1584
|
+
# {http://api.channeladvisor.com/webservices/}UpdateInventoryItemQuantityAndPrice
|
1585
|
+
# accountID - SOAP::SOAPString
|
1586
|
+
# itemQuantityAndPrice - ChannelAdvisor::InventoryServiceSOAP::InventoryItemQuantityAndPrice
|
1587
|
+
class UpdateInventoryItemQuantityAndPrice
|
1588
|
+
attr_accessor :accountID
|
1589
|
+
attr_accessor :itemQuantityAndPrice
|
1590
|
+
|
1591
|
+
def initialize(accountID = nil, itemQuantityAndPrice = nil)
|
1592
|
+
@accountID = accountID
|
1593
|
+
@itemQuantityAndPrice = itemQuantityAndPrice
|
1594
|
+
end
|
1595
|
+
end
|
1596
|
+
|
1597
|
+
# {http://api.channeladvisor.com/webservices/}UpdateInventoryItemQuantityAndPriceResponse
|
1598
|
+
# updateInventoryItemQuantityAndPriceResult - ChannelAdvisor::InventoryServiceSOAP::APIResultOfBoolean
|
1599
|
+
class UpdateInventoryItemQuantityAndPriceResponse
|
1600
|
+
attr_accessor :updateInventoryItemQuantityAndPriceResult
|
1601
|
+
|
1602
|
+
def initialize(updateInventoryItemQuantityAndPriceResult = nil)
|
1603
|
+
@updateInventoryItemQuantityAndPriceResult = updateInventoryItemQuantityAndPriceResult
|
1604
|
+
end
|
1605
|
+
end
|
1606
|
+
|
1607
|
+
# {http://api.channeladvisor.com/webservices/}UpdateInventoryItemQuantityAndPriceList
|
1608
|
+
# accountID - SOAP::SOAPString
|
1609
|
+
# itemQuantityAndPriceList - ChannelAdvisor::InventoryServiceSOAP::ArrayOfInventoryItemQuantityAndPrice
|
1610
|
+
class UpdateInventoryItemQuantityAndPriceList
|
1611
|
+
attr_accessor :accountID
|
1612
|
+
attr_accessor :itemQuantityAndPriceList
|
1613
|
+
|
1614
|
+
def initialize(accountID = nil, itemQuantityAndPriceList = nil)
|
1615
|
+
@accountID = accountID
|
1616
|
+
@itemQuantityAndPriceList = itemQuantityAndPriceList
|
1617
|
+
end
|
1618
|
+
end
|
1619
|
+
|
1620
|
+
# {http://api.channeladvisor.com/webservices/}UpdateInventoryItemQuantityAndPriceListResponse
|
1621
|
+
# updateInventoryItemQuantityAndPriceListResult - ChannelAdvisor::InventoryServiceSOAP::APIResultOfArrayOfUpdateInventoryItemResponse
|
1622
|
+
class UpdateInventoryItemQuantityAndPriceListResponse
|
1623
|
+
attr_accessor :updateInventoryItemQuantityAndPriceListResult
|
1624
|
+
|
1625
|
+
def initialize(updateInventoryItemQuantityAndPriceListResult = nil)
|
1626
|
+
@updateInventoryItemQuantityAndPriceListResult = updateInventoryItemQuantityAndPriceListResult
|
1627
|
+
end
|
1628
|
+
end
|
1629
|
+
|
1630
|
+
# {http://api.channeladvisor.com/webservices/}AssignLabelListToInventoryItemList
|
1631
|
+
# accountID - SOAP::SOAPString
|
1632
|
+
# labelList - ChannelAdvisor::InventoryServiceSOAP::ArrayOfString
|
1633
|
+
# createLabelIfNotExist - SOAP::SOAPBoolean
|
1634
|
+
# skuList - ChannelAdvisor::InventoryServiceSOAP::ArrayOfString
|
1635
|
+
# assignReasonDesc - SOAP::SOAPString
|
1636
|
+
class AssignLabelListToInventoryItemList
|
1637
|
+
attr_accessor :accountID
|
1638
|
+
attr_accessor :labelList
|
1639
|
+
attr_accessor :createLabelIfNotExist
|
1640
|
+
attr_accessor :skuList
|
1641
|
+
attr_accessor :assignReasonDesc
|
1642
|
+
|
1643
|
+
def initialize(accountID = nil, labelList = nil, createLabelIfNotExist = nil, skuList = nil, assignReasonDesc = nil)
|
1644
|
+
@accountID = accountID
|
1645
|
+
@labelList = labelList
|
1646
|
+
@createLabelIfNotExist = createLabelIfNotExist
|
1647
|
+
@skuList = skuList
|
1648
|
+
@assignReasonDesc = assignReasonDesc
|
1649
|
+
end
|
1650
|
+
end
|
1651
|
+
|
1652
|
+
# {http://api.channeladvisor.com/webservices/}AssignLabelListToInventoryItemListResponse
|
1653
|
+
# assignLabelListToInventoryItemListResult - ChannelAdvisor::InventoryServiceSOAP::APIResultOfBoolean
|
1654
|
+
class AssignLabelListToInventoryItemListResponse
|
1655
|
+
attr_accessor :assignLabelListToInventoryItemListResult
|
1656
|
+
|
1657
|
+
def initialize(assignLabelListToInventoryItemListResult = nil)
|
1658
|
+
@assignLabelListToInventoryItemListResult = assignLabelListToInventoryItemListResult
|
1659
|
+
end
|
1660
|
+
end
|
1661
|
+
|
1662
|
+
# {http://api.channeladvisor.com/webservices/}RemoveLabelListFromInventoryItemList
|
1663
|
+
# accountID - SOAP::SOAPString
|
1664
|
+
# labelList - ChannelAdvisor::InventoryServiceSOAP::ArrayOfString
|
1665
|
+
# skuList - ChannelAdvisor::InventoryServiceSOAP::ArrayOfString
|
1666
|
+
# removeReasonDesc - SOAP::SOAPString
|
1667
|
+
class RemoveLabelListFromInventoryItemList
|
1668
|
+
attr_accessor :accountID
|
1669
|
+
attr_accessor :labelList
|
1670
|
+
attr_accessor :skuList
|
1671
|
+
attr_accessor :removeReasonDesc
|
1672
|
+
|
1673
|
+
def initialize(accountID = nil, labelList = nil, skuList = nil, removeReasonDesc = nil)
|
1674
|
+
@accountID = accountID
|
1675
|
+
@labelList = labelList
|
1676
|
+
@skuList = skuList
|
1677
|
+
@removeReasonDesc = removeReasonDesc
|
1678
|
+
end
|
1679
|
+
end
|
1680
|
+
|
1681
|
+
# {http://api.channeladvisor.com/webservices/}RemoveLabelListFromInventoryItemListResponse
|
1682
|
+
# removeLabelListFromInventoryItemListResult - ChannelAdvisor::InventoryServiceSOAP::APIResultOfBoolean
|
1683
|
+
class RemoveLabelListFromInventoryItemListResponse
|
1684
|
+
attr_accessor :removeLabelListFromInventoryItemListResult
|
1685
|
+
|
1686
|
+
def initialize(removeLabelListFromInventoryItemListResult = nil)
|
1687
|
+
@removeLabelListFromInventoryItemListResult = removeLabelListFromInventoryItemListResult
|
1688
|
+
end
|
1689
|
+
end
|
1690
|
+
|
1691
|
+
# {http://api.channeladvisor.com/webservices/}Ping
|
1692
|
+
class Ping
|
1693
|
+
def initialize
|
1694
|
+
end
|
1695
|
+
end
|
1696
|
+
|
1697
|
+
# {http://api.channeladvisor.com/webservices/}PingResponse
|
1698
|
+
# pingResult - ChannelAdvisor::InventoryServiceSOAP::APIResultOfString
|
1699
|
+
class PingResponse
|
1700
|
+
attr_accessor :pingResult
|
1701
|
+
|
1702
|
+
def initialize(pingResult = nil)
|
1703
|
+
@pingResult = pingResult
|
1704
|
+
end
|
1705
|
+
end
|
1706
|
+
|
1707
|
+
|
1708
|
+
end; end
|