soap4r-spox 1.6.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (644) hide show
  1. data/COPYING +7 -0
  2. data/GPL +340 -0
  3. data/README.rdoc +35 -0
  4. data/RELEASE_en.html +1900 -0
  5. data/RUBYS +56 -0
  6. data/Rakefile +9 -0
  7. data/bin/wsdl2ruby.rb +137 -0
  8. data/bin/xsd2ruby.rb +90 -0
  9. data/lib/soap/attachment.rb +108 -0
  10. data/lib/soap/attrproxy.rb +34 -0
  11. data/lib/soap/baseData.rb +1094 -0
  12. data/lib/soap/element.rb +277 -0
  13. data/lib/soap/encodingstyle/aspDotNetHandler.rb +207 -0
  14. data/lib/soap/encodingstyle/handler.rb +120 -0
  15. data/lib/soap/encodingstyle/literalHandler.rb +195 -0
  16. data/lib/soap/encodingstyle/soapHandler.rb +559 -0
  17. data/lib/soap/filter.rb +13 -0
  18. data/lib/soap/filter/filterchain.rb +51 -0
  19. data/lib/soap/filter/handler.rb +31 -0
  20. data/lib/soap/filter/streamhandler.rb +29 -0
  21. data/lib/soap/generator.rb +299 -0
  22. data/lib/soap/header/handler.rb +61 -0
  23. data/lib/soap/header/handlerset.rb +70 -0
  24. data/lib/soap/header/mappinghandler.rb +47 -0
  25. data/lib/soap/header/simplehandler.rb +44 -0
  26. data/lib/soap/httpconfigloader.rb +139 -0
  27. data/lib/soap/mapping.rb +12 -0
  28. data/lib/soap/mapping/encodedregistry.rb +537 -0
  29. data/lib/soap/mapping/factory.rb +388 -0
  30. data/lib/soap/mapping/literalregistry.rb +391 -0
  31. data/lib/soap/mapping/mapping.rb +577 -0
  32. data/lib/soap/mapping/registry.rb +295 -0
  33. data/lib/soap/mapping/rubytypeFactory.rb +446 -0
  34. data/lib/soap/mapping/schemadefinition.rb +170 -0
  35. data/lib/soap/mapping/typeMap.rb +105 -0
  36. data/lib/soap/mapping/wsdlencodedregistry.rb +211 -0
  37. data/lib/soap/mapping/wsdlliteralregistry.rb +248 -0
  38. data/lib/soap/marshal.rb +59 -0
  39. data/lib/soap/mimemessage.rb +241 -0
  40. data/lib/soap/nestedexception.rb +42 -0
  41. data/lib/soap/netHttpClient.rb +241 -0
  42. data/lib/soap/ns.rb +34 -0
  43. data/lib/soap/parser.rb +252 -0
  44. data/lib/soap/processor.rb +66 -0
  45. data/lib/soap/property.rb +333 -0
  46. data/lib/soap/proxy.rb +14 -0
  47. data/lib/soap/rpc/cgistub.rb +247 -0
  48. data/lib/soap/rpc/driver.rb +221 -0
  49. data/lib/soap/rpc/element.rb +374 -0
  50. data/lib/soap/rpc/element.rb.orig +374 -0
  51. data/lib/soap/rpc/httpserver.rb +142 -0
  52. data/lib/soap/rpc/methodDef.rb +68 -0
  53. data/lib/soap/rpc/proxy.rb +572 -0
  54. data/lib/soap/rpc/router.rb +662 -0
  55. data/lib/soap/rpc/rpc.rb +25 -0
  56. data/lib/soap/rpc/soaplet.rb +200 -0
  57. data/lib/soap/rpc/standaloneServer.rb +43 -0
  58. data/lib/soap/ruby18ext.rb +13 -0
  59. data/lib/soap/soap.rb +151 -0
  60. data/lib/soap/streamHandler.rb +301 -0
  61. data/lib/soap/wsdlDriver.rb +164 -0
  62. data/lib/wsdl/binding.rb +65 -0
  63. data/lib/wsdl/data.rb +64 -0
  64. data/lib/wsdl/definitions.rb +236 -0
  65. data/lib/wsdl/documentation.rb +32 -0
  66. data/lib/wsdl/import.rb +80 -0
  67. data/lib/wsdl/importer.rb +38 -0
  68. data/lib/wsdl/info.rb +50 -0
  69. data/lib/wsdl/message.rb +54 -0
  70. data/lib/wsdl/operation.rb +151 -0
  71. data/lib/wsdl/operationBinding.rb +240 -0
  72. data/lib/wsdl/param.rb +93 -0
  73. data/lib/wsdl/parser.rb +164 -0
  74. data/lib/wsdl/part.rb +52 -0
  75. data/lib/wsdl/port.rb +66 -0
  76. data/lib/wsdl/portType.rb +75 -0
  77. data/lib/wsdl/service.rb +61 -0
  78. data/lib/wsdl/soap/address.rb +40 -0
  79. data/lib/wsdl/soap/binding.rb +49 -0
  80. data/lib/wsdl/soap/body.rb +58 -0
  81. data/lib/wsdl/soap/cgiStubCreator.rb +92 -0
  82. data/lib/wsdl/soap/classDefCreator.rb +433 -0
  83. data/lib/wsdl/soap/classDefCreatorSupport.rb +240 -0
  84. data/lib/wsdl/soap/classNameCreator.rb +54 -0
  85. data/lib/wsdl/soap/clientSkeltonCreator.rb +104 -0
  86. data/lib/wsdl/soap/complexType.rb +173 -0
  87. data/lib/wsdl/soap/data.rb +42 -0
  88. data/lib/wsdl/soap/definitions.rb +200 -0
  89. data/lib/wsdl/soap/driverCreator.rb +118 -0
  90. data/lib/wsdl/soap/element.rb +33 -0
  91. data/lib/wsdl/soap/encodedMappingRegistryCreator.rb +73 -0
  92. data/lib/wsdl/soap/fault.rb +56 -0
  93. data/lib/wsdl/soap/header.rb +86 -0
  94. data/lib/wsdl/soap/headerfault.rb +56 -0
  95. data/lib/wsdl/soap/literalMappingRegistryCreator.rb +115 -0
  96. data/lib/wsdl/soap/mappingRegistryCreator.rb +58 -0
  97. data/lib/wsdl/soap/mappingRegistryCreatorSupport.rb +376 -0
  98. data/lib/wsdl/soap/methodDefCreator.rb +199 -0
  99. data/lib/wsdl/soap/operation.rb +112 -0
  100. data/lib/wsdl/soap/servantSkeltonCreator.rb +89 -0
  101. data/lib/wsdl/soap/servletStubCreator.rb +104 -0
  102. data/lib/wsdl/soap/standaloneServerStubCreator.rb +100 -0
  103. data/lib/wsdl/soap/wsdl2ruby.rb +217 -0
  104. data/lib/wsdl/types.rb +44 -0
  105. data/lib/wsdl/wsdl.rb +24 -0
  106. data/lib/wsdl/xmlSchema/all.rb +24 -0
  107. data/lib/wsdl/xmlSchema/annotation.rb +34 -0
  108. data/lib/wsdl/xmlSchema/any.rb +61 -0
  109. data/lib/wsdl/xmlSchema/anyAttribute.rb +48 -0
  110. data/lib/wsdl/xmlSchema/attribute.rb +104 -0
  111. data/lib/wsdl/xmlSchema/attributeGroup.rb +68 -0
  112. data/lib/wsdl/xmlSchema/choice.rb +58 -0
  113. data/lib/wsdl/xmlSchema/complexContent.rb +97 -0
  114. data/lib/wsdl/xmlSchema/complexExtension.rb +119 -0
  115. data/lib/wsdl/xmlSchema/complexRestriction.rb +104 -0
  116. data/lib/wsdl/xmlSchema/complexType.rb +193 -0
  117. data/lib/wsdl/xmlSchema/content.rb +95 -0
  118. data/lib/wsdl/xmlSchema/data.rb +116 -0
  119. data/lib/wsdl/xmlSchema/element.rb +153 -0
  120. data/lib/wsdl/xmlSchema/enumeration.rb +36 -0
  121. data/lib/wsdl/xmlSchema/fractiondigits.rb +37 -0
  122. data/lib/wsdl/xmlSchema/group.rb +100 -0
  123. data/lib/wsdl/xmlSchema/import.rb +53 -0
  124. data/lib/wsdl/xmlSchema/importHandler.rb +45 -0
  125. data/lib/wsdl/xmlSchema/importer.rb +102 -0
  126. data/lib/wsdl/xmlSchema/include.rb +48 -0
  127. data/lib/wsdl/xmlSchema/length.rb +37 -0
  128. data/lib/wsdl/xmlSchema/list.rb +48 -0
  129. data/lib/wsdl/xmlSchema/maxexclusive.rb +37 -0
  130. data/lib/wsdl/xmlSchema/maxinclusive.rb +37 -0
  131. data/lib/wsdl/xmlSchema/maxlength.rb +37 -0
  132. data/lib/wsdl/xmlSchema/minexclusive.rb +37 -0
  133. data/lib/wsdl/xmlSchema/mininclusive.rb +37 -0
  134. data/lib/wsdl/xmlSchema/minlength.rb +37 -0
  135. data/lib/wsdl/xmlSchema/parser.rb +167 -0
  136. data/lib/wsdl/xmlSchema/pattern.rb +36 -0
  137. data/lib/wsdl/xmlSchema/ref.rb +33 -0
  138. data/lib/wsdl/xmlSchema/schema.rb +178 -0
  139. data/lib/wsdl/xmlSchema/sequence.rb +54 -0
  140. data/lib/wsdl/xmlSchema/simpleContent.rb +69 -0
  141. data/lib/wsdl/xmlSchema/simpleExtension.rb +62 -0
  142. data/lib/wsdl/xmlSchema/simpleRestriction.rb +132 -0
  143. data/lib/wsdl/xmlSchema/simpleType.rb +87 -0
  144. data/lib/wsdl/xmlSchema/totaldigits.rb +37 -0
  145. data/lib/wsdl/xmlSchema/union.rb +35 -0
  146. data/lib/wsdl/xmlSchema/unique.rb +34 -0
  147. data/lib/wsdl/xmlSchema/whitespace.rb +37 -0
  148. data/lib/wsdl/xmlSchema/xsd2ruby.rb +174 -0
  149. data/lib/xsd/charset.rb +188 -0
  150. data/lib/xsd/codegen.rb +12 -0
  151. data/lib/xsd/codegen/classdef.rb +208 -0
  152. data/lib/xsd/codegen/commentdef.rb +34 -0
  153. data/lib/xsd/codegen/gensupport.rb +273 -0
  154. data/lib/xsd/codegen/methoddef.rb +70 -0
  155. data/lib/xsd/codegen/moduledef.rb +208 -0
  156. data/lib/xsd/datatypes.rb +1466 -0
  157. data/lib/xsd/datatypes1999.rb +20 -0
  158. data/lib/xsd/iconvcharset.rb +33 -0
  159. data/lib/xsd/mapping.rb +68 -0
  160. data/lib/xsd/namedelements.rb +132 -0
  161. data/lib/xsd/ns.rb +182 -0
  162. data/lib/xsd/qname.rb +79 -0
  163. data/lib/xsd/xmlparser.rb +82 -0
  164. data/lib/xsd/xmlparser.rb.orig +76 -0
  165. data/lib/xsd/xmlparser/libxmlparser.rb +119 -0
  166. data/lib/xsd/xmlparser/parser.rb +100 -0
  167. data/lib/xsd/xmlparser/rexmlparser.rb +58 -0
  168. data/lib/xsd/xmlparser/xmlparser.rb +50 -0
  169. data/lib/xsd/xmlparser/xmlscanner.rb +149 -0
  170. data/rubyStyle.css +104 -0
  171. data/sample/attachment/complexmime/EdmService.rb +124 -0
  172. data/sample/attachment/complexmime/README.txt +3 -0
  173. data/sample/attachment/complexmime/client.rb +57 -0
  174. data/sample/attachment/complexmime/drift.cdf +1 -0
  175. data/sample/attachment/complexmime/plaatje.png +1 -0
  176. data/sample/attachment/complexmime/server.rb +68 -0
  177. data/sample/attachment/swa/client.rb +13 -0
  178. data/sample/attachment/swa/server.rb +23 -0
  179. data/sample/basic/apacheClient.rb +92 -0
  180. data/sample/basic/babelfish.rb +16 -0
  181. data/sample/basic/calc/calc.rb +17 -0
  182. data/sample/basic/calc/calc2.rb +29 -0
  183. data/sample/basic/calc/client.rb +26 -0
  184. data/sample/basic/calc/client2.rb +29 -0
  185. data/sample/basic/calc/httpd.rb +20 -0
  186. data/sample/basic/calc/samplehttpd.conf +2 -0
  187. data/sample/basic/calc/server.cgi +15 -0
  188. data/sample/basic/calc/server.fcgi +22 -0
  189. data/sample/basic/calc/server.rb +21 -0
  190. data/sample/basic/calc/server2.rb +24 -0
  191. data/sample/basic/exchange/client.rb +19 -0
  192. data/sample/basic/exchange/exchange.rb +17 -0
  193. data/sample/basic/exchange/httpd.rb +20 -0
  194. data/sample/basic/exchange/samplehttpd.conf +2 -0
  195. data/sample/basic/exchange/server.cgi +14 -0
  196. data/sample/basic/exchange/server.rb +20 -0
  197. data/sample/basic/flickr.rb +26 -0
  198. data/sample/basic/helloworld/client.rb +6 -0
  199. data/sample/basic/helloworld/server.rb +20 -0
  200. data/sample/basic/sampleStruct/client.rb +16 -0
  201. data/sample/basic/sampleStruct/httpd.rb +20 -0
  202. data/sample/basic/sampleStruct/iSampleStruct.rb +22 -0
  203. data/sample/basic/sampleStruct/sampleStruct.rb +13 -0
  204. data/sample/basic/sampleStruct/samplehttpd.conf +2 -0
  205. data/sample/basic/sampleStruct/server.cgi +14 -0
  206. data/sample/basic/sampleStruct/server.rb +20 -0
  207. data/sample/basic/whois.rb +14 -0
  208. data/sample/basic/wsdl_helloworld/README +15 -0
  209. data/sample/basic/wsdl_helloworld/client/default.rb +1 -0
  210. data/sample/basic/wsdl_helloworld/client/defaultDriver.rb +47 -0
  211. data/sample/basic/wsdl_helloworld/client/hws.wsdl +46 -0
  212. data/sample/basic/wsdl_helloworld/client/hwsClient.rb +22 -0
  213. data/sample/basic/wsdl_helloworld/server/hw_s.rb +25 -0
  214. data/sample/basic/wsdl_helloworld/server/hws.wsdl +46 -0
  215. data/sample/basic/yahooNewsSearch.rb +36 -0
  216. data/sample/howto/as_xml/client.rb +22 -0
  217. data/sample/howto/as_xml/server.rb +22 -0
  218. data/sample/howto/base64/client.rb +17 -0
  219. data/sample/howto/base64/server.rb +30 -0
  220. data/sample/howto/custom_ns/client.rb +37 -0
  221. data/sample/howto/custom_ns/server.rb +42 -0
  222. data/sample/howto/documentliteral/README.txt +19 -0
  223. data/sample/howto/documentliteral/client.rb +11 -0
  224. data/sample/howto/documentliteral/echo.wsdl +66 -0
  225. data/sample/howto/documentliteral/servant.rb +11 -0
  226. data/sample/howto/filter/client.rb +42 -0
  227. data/sample/howto/filter/server.rb +67 -0
  228. data/sample/howto/scopesample/client.rb +34 -0
  229. data/sample/howto/scopesample/httpd.rb +22 -0
  230. data/sample/howto/scopesample/samplehttpd.conf +2 -0
  231. data/sample/howto/scopesample/servant.rb +18 -0
  232. data/sample/howto/scopesample/server.cgi +29 -0
  233. data/sample/howto/scopesample/server.rb +20 -0
  234. data/sample/howto/styleuse/client.rb +21 -0
  235. data/sample/howto/styleuse/server.rb +86 -0
  236. data/sample/howto/wsdl_fault/README.txt +11 -0
  237. data/sample/howto/wsdl_fault/fault/AddClient.rb +24 -0
  238. data/sample/howto/wsdl_fault/fault/AddServer.rb +15 -0
  239. data/sample/howto/wsdl_fault/fault/AddServiceImpl.rb +18 -0
  240. data/sample/howto/wsdl_fault/fault/fault.wsdl +79 -0
  241. data/sample/howto/wsdl_fault/multifault/AddClient.rb +28 -0
  242. data/sample/howto/wsdl_fault/multifault/AddServer.rb +15 -0
  243. data/sample/howto/wsdl_fault/multifault/AddServiceImpl.rb +24 -0
  244. data/sample/howto/wsdl_fault/multifault/fault.wsdl +96 -0
  245. data/sample/howto/wsdl_hash/client.rb +11 -0
  246. data/sample/howto/wsdl_hash/hash.wsdl +69 -0
  247. data/sample/howto/wsdl_hash/server.rb +17 -0
  248. data/sample/marshal/customfactory.rb +97 -0
  249. data/sample/marshal/customregistry.rb +17 -0
  250. data/sample/marshal/digraph.rb +43 -0
  251. data/sample/marshal/enum/README.txt +6 -0
  252. data/sample/marshal/enum/enum.xsd +23 -0
  253. data/sample/marshal/enum/enumsample.rb +20 -0
  254. data/sample/marshal/enum/enumsample_mapper.rb +7 -0
  255. data/sample/marshal/enum/enumsample_mapping_registry.rb +23 -0
  256. data/sample/marshal/enum/marshal.rb +9 -0
  257. data/sample/payload/basicauth/client.rb +10 -0
  258. data/sample/payload/basicauth/htpasswd +2 -0
  259. data/sample/payload/basicauth/server.rb +43 -0
  260. data/sample/payload/cookies/calc.rb +52 -0
  261. data/sample/payload/cookies/client.rb +30 -0
  262. data/sample/payload/cookies/filterclient.rb +52 -0
  263. data/sample/payload/cookies/server.rb +24 -0
  264. data/sample/payload/gzipped/client.rb +8 -0
  265. data/sample/payload/gzipped/server.rb +21 -0
  266. data/sample/payload/ssl/files/README +1 -0
  267. data/sample/payload/ssl/files/ca.cert +23 -0
  268. data/sample/payload/ssl/files/client.cert +19 -0
  269. data/sample/payload/ssl/files/client.key +15 -0
  270. data/sample/payload/ssl/files/server.cert +19 -0
  271. data/sample/payload/ssl/files/server.key +15 -0
  272. data/sample/payload/ssl/files/sslclient.properties +5 -0
  273. data/sample/payload/ssl/files/sslclient_require_noserverauth.properties +2 -0
  274. data/sample/payload/ssl/files/sslclient_with_clientauth.properties +9 -0
  275. data/sample/payload/ssl/files/subca.cert +21 -0
  276. data/sample/payload/ssl/sslclient.rb +12 -0
  277. data/sample/payload/ssl/sslclient_require_noserverauth.rb +12 -0
  278. data/sample/payload/ssl/sslclient_with_clientauth.rb +12 -0
  279. data/sample/payload/ssl/sslserver.rb +49 -0
  280. data/sample/payload/ssl/sslserver_noauth.rb +45 -0
  281. data/sample/payload/ssl/sslserver_require_clientauth.rb +50 -0
  282. data/sample/showcase/soap/hippo5tq/hippo5tq.rb +41 -0
  283. data/sample/showcase/soap/hippo5tq/hippo5tq2.rb +99 -0
  284. data/sample/showcase/soap/hippo5tq/hippoClient.rb +106 -0
  285. data/sample/showcase/soap/icd/IICD.rb +17 -0
  286. data/sample/showcase/soap/icd/icd.rb +46 -0
  287. data/sample/showcase/soap/mssoap/README.txt +62 -0
  288. data/sample/showcase/soap/mssoap/client.vba +19 -0
  289. data/sample/showcase/soap/mssoap/stockQuoteService.cgi +44 -0
  290. data/sample/showcase/soap/mssoap/stockQuoteService.rb +9 -0
  291. data/sample/showcase/soap/mssoap/stockQuoteService.wsdl +47 -0
  292. data/sample/showcase/soap/mssoap/stockQuoteServiceClient.rb +26 -0
  293. data/sample/showcase/soap/mssoap/stockQuoteServiceClient.xls +0 -0
  294. data/sample/showcase/soap/mssoap/stockQuoteServicePortTypeDriver.rb +46 -0
  295. data/sample/showcase/soap/netDicV06/INetDicV06.rb +36 -0
  296. data/sample/showcase/soap/netDicV06/netDicV06.rb +16 -0
  297. data/sample/showcase/soap/raa/SOAP__Lite.pl +15 -0
  298. data/sample/showcase/soap/raa/pocketSOAP.js +33 -0
  299. data/sample/showcase/soap/raa2.4/raa.rb +332 -0
  300. data/sample/showcase/soap/raa2.4/raa.wsdl +644 -0
  301. data/sample/showcase/soap/raa2.4/raaDriver.rb +255 -0
  302. data/sample/showcase/soap/raa2.4/raaServiceClient.rb +354 -0
  303. data/sample/showcase/soap/raa2.4/sample.rb +115 -0
  304. data/sample/showcase/soap/rwiki/rwikiClient.rb +29 -0
  305. data/sample/showcase/soap/rwiki/rwikiServer.cgi +44 -0
  306. data/sample/showcase/soap/soapbox/ContactsDataSet.xml +37 -0
  307. data/sample/showcase/soap/soapbox/ExceptionDataSet.xml +23 -0
  308. data/sample/showcase/soap/soapbox/MessageDataSet.xml +8 -0
  309. data/sample/showcase/soap/soapbox/SoapBoxWebService.wsdl +1233 -0
  310. data/sample/showcase/soap/soapbox/SoapBoxWebServiceWithRawXML.wsdl +1226 -0
  311. data/sample/showcase/soap/soapbox/wsdlDriver.rb +23 -0
  312. data/sample/showcase/wsdl/PayPalSvc/client.rb +36 -0
  313. data/sample/showcase/wsdl/amazon/AmazonSearch.rb +3160 -0
  314. data/sample/showcase/wsdl/amazon/AmazonSearchDriver.rb +546 -0
  315. data/sample/showcase/wsdl/amazon/sampleClient.rb +37 -0
  316. data/sample/showcase/wsdl/amazon/wsdlDriver.rb +52 -0
  317. data/sample/showcase/wsdl/amazonEC/client.rb +13 -0
  318. data/sample/showcase/wsdl/eBaySvc/sampleclient.rb +60 -0
  319. data/sample/showcase/wsdl/googleAdwords/CampaignService.wsdl +785 -0
  320. data/sample/showcase/wsdl/googleAdwords/ca.pem +19 -0
  321. data/sample/showcase/wsdl/googleAdwords/client.rb +40 -0
  322. data/sample/showcase/wsdl/googleAdwords/soap/property +1 -0
  323. data/sample/showcase/wsdl/googleSearch/GoogleSearch.rb +97 -0
  324. data/sample/showcase/wsdl/googleSearch/GoogleSearchDriver.rb +102 -0
  325. data/sample/showcase/wsdl/googleSearch/README +6 -0
  326. data/sample/showcase/wsdl/googleSearch/httpd.rb +20 -0
  327. data/sample/showcase/wsdl/googleSearch/sampleClient.rb +56 -0
  328. data/sample/showcase/wsdl/googleSearch/samplehttpd.conf +2 -0
  329. data/sample/showcase/wsdl/googleSearch/sjissearch.sh +3 -0
  330. data/sample/showcase/wsdl/googleSearch/wsdlDriver.rb +29 -0
  331. data/sample/showcase/wsdl/noaa/README.txt +5 -0
  332. data/sample/showcase/wsdl/noaa/client.rb +44 -0
  333. data/sample/showcase/wsdl/noaa/default.rb +46 -0
  334. data/sample/showcase/wsdl/noaa/defaultDriver.rb +66 -0
  335. data/sample/showcase/wsdl/noaa/defaultMappingRegistry.rb +74 -0
  336. data/sample/showcase/wsdl/noaa/ndfdXMLClient.rb +43 -0
  337. data/sample/showcase/wsdl/raa2.4/raa.rb +134 -0
  338. data/sample/showcase/wsdl/raa2.4/raa.wsdl +644 -0
  339. data/sample/showcase/wsdl/raa2.4/wsdlDriver.rb +117 -0
  340. data/sample/showcase/wsdl/rnn/client.rb +59 -0
  341. data/sample/showcase/wsdl/rnn/post.rb +27 -0
  342. data/sample/showcase/wsdl/rnn/rnn-hash.wsdl +282 -0
  343. data/sample/showcase/wsdl/rnn/rnn.wsdl +310 -0
  344. data/sample/showcase/wsdl/rnn/submit.rb +63 -0
  345. data/sample/showcase/wsdl/salesforce/SforceServiceClient.rb +280 -0
  346. data/sample/showcase/wsdl/salesforce/ca.pem +35 -0
  347. data/sample/showcase/wsdl/salesforce/client.rb +156 -0
  348. data/sample/showcase/wsdl/salesforce/default.rb +1740 -0
  349. data/sample/showcase/wsdl/salesforce/defaultDriver.rb +165 -0
  350. data/sample/showcase/wsdl/salesforce/soap/property +1 -0
  351. data/sample/soapheader/authheader/authmgr.rb +41 -0
  352. data/sample/soapheader/authheader/client.rb +40 -0
  353. data/sample/soapheader/authheader/client2.rb +42 -0
  354. data/sample/soapheader/authheader/server.rb +73 -0
  355. data/sample/soapheader/authheader/server2.rb +83 -0
  356. data/sample/soapheader/soapext_basicauth/client.rb +25 -0
  357. data/sample/soapheader/soapext_basicauth/mms_MizGIS.rb +701 -0
  358. data/sample/soapheader/soapext_basicauth/mms_MizGIS.wsdl +1007 -0
  359. data/sample/soapheader/soapext_basicauth/mms_MizGISClient.rb +231 -0
  360. data/sample/soapheader/soapext_basicauth/mms_MizGISDriver.rb +210 -0
  361. data/sample/soapheader/soapext_basicauth/mms_MizGISMappingRegistry.rb +1232 -0
  362. data/setup.rb +1585 -0
  363. data/soap4r-spox.gemspec +12 -0
  364. data/test/16runner.rb +68 -0
  365. data/test/interopR2/README.txt +2 -0
  366. data/test/interopR2/SOAPBuildersInterop_R2.wsdl +461 -0
  367. data/test/interopR2/SOAPBuildersInterop_R2GrB.wsdl +19 -0
  368. data/test/interopR2/base.rb +288 -0
  369. data/test/interopR2/client.NetRemoting.rb +17 -0
  370. data/test/interopR2/client.rb +1234 -0
  371. data/test/interopR2/client4S4C.rb +15 -0
  372. data/test/interopR2/client4S4C2.rb +14 -0
  373. data/test/interopR2/clientASP.NET.rb +17 -0
  374. data/test/interopR2/clientApacheAxis.rb +16 -0
  375. data/test/interopR2/clientApacheSOAP.rb +17 -0
  376. data/test/interopR2/clientBEAWebLogic.rb +17 -0
  377. data/test/interopR2/clientBase.rb +1967 -0
  378. data/test/interopR2/clientCapeConnect.rb +18 -0
  379. data/test/interopR2/clientDelphi.rb +19 -0
  380. data/test/interopR2/clientEasySoap.rb +14 -0
  381. data/test/interopR2/clientFrontier.rb +25 -0
  382. data/test/interopR2/clientGLUE.rb +32 -0
  383. data/test/interopR2/clientHP.rb +13 -0
  384. data/test/interopR2/clientJAX-RPC.rb +19 -0
  385. data/test/interopR2/clientJSOAP.rb +14 -0
  386. data/test/interopR2/clientKafkaXSLT.rb +15 -0
  387. data/test/interopR2/clientMSSOAPToolkit2.0.rb +17 -0
  388. data/test/interopR2/clientMSSOAPToolkit3.0.rb +17 -0
  389. data/test/interopR2/clientNuSOAP.rb +19 -0
  390. data/test/interopR2/clientNuWave.rb +15 -0
  391. data/test/interopR2/clientOpenLink.rb +15 -0
  392. data/test/interopR2/clientOracle.rb +15 -0
  393. data/test/interopR2/clientPEAR.rb +18 -0
  394. data/test/interopR2/clientPhalanx.rb +18 -0
  395. data/test/interopR2/clientSIMACE.rb +18 -0
  396. data/test/interopR2/clientSOAP4R.rb +18 -0
  397. data/test/interopR2/clientSOAP__Lite.rb +14 -0
  398. data/test/interopR2/clientSQLData.rb +18 -0
  399. data/test/interopR2/clientSilverStream.rb +17 -0
  400. data/test/interopR2/clientSpray2001.rb +17 -0
  401. data/test/interopR2/clientSun.rb +19 -0
  402. data/test/interopR2/clientVWOpentalkSoap.rb +19 -0
  403. data/test/interopR2/clientWASP.rb +19 -0
  404. data/test/interopR2/clientWASPC.rb +18 -0
  405. data/test/interopR2/clientWebMethods.rb +15 -0
  406. data/test/interopR2/clientWhiteMesa.rb +28 -0
  407. data/test/interopR2/clientWingfoot.rb +15 -0
  408. data/test/interopR2/clientXMLBus.rb +19 -0
  409. data/test/interopR2/clientXMLRPC-EPI.rb +17 -0
  410. data/test/interopR2/clientXSOAP.rb +14 -0
  411. data/test/interopR2/clientZSI.rb +19 -0
  412. data/test/interopR2/clienteSOAP.rb +18 -0
  413. data/test/interopR2/clientgSOAP.rb +18 -0
  414. data/test/interopR2/clientkSOAP.rb +17 -0
  415. data/test/interopR2/iSimonReg.rb +112 -0
  416. data/test/interopR2/interopResultBase.rb +114 -0
  417. data/test/interopR2/interopService.rb +247 -0
  418. data/test/interopR2/rwikiInteropService.rb +105 -0
  419. data/test/interopR2/server.cgi +270 -0
  420. data/test/interopR2/server.rb +275 -0
  421. data/test/interopR2/simonReg.rb +123 -0
  422. data/test/interopR2/test.sh +49 -0
  423. data/test/interopR4/client.rb +112 -0
  424. data/test/results +4810 -0
  425. data/test/runner.rb +7 -0
  426. data/test/sm11/classDef.rb +156 -0
  427. data/test/sm11/client.rb +542 -0
  428. data/test/sm11/driver.rb +183 -0
  429. data/test/sm11/servant.rb +1067 -0
  430. data/test/sm11/server.rb +25 -0
  431. data/test/soap/asp.net/hello.wsdl +96 -0
  432. data/test/soap/asp.net/test_aspdotnet.rb +123 -0
  433. data/test/soap/auth/htdigest +2 -0
  434. data/test/soap/auth/htpasswd +2 -0
  435. data/test/soap/auth/test_basic.rb +117 -0
  436. data/test/soap/auth/test_digest.rb +118 -0
  437. data/test/soap/calc/calc.rb +17 -0
  438. data/test/soap/calc/calc2.rb +29 -0
  439. data/test/soap/calc/server.cgi +13 -0
  440. data/test/soap/calc/server.rb +17 -0
  441. data/test/soap/calc/server2.rb +20 -0
  442. data/test/soap/calc/test_calc.rb +51 -0
  443. data/test/soap/calc/test_calc2.rb +55 -0
  444. data/test/soap/calc/test_calc_cgi.rb +71 -0
  445. data/test/soap/case/test_mapping.rb +57 -0
  446. data/test/soap/fault/test_customfault.rb +60 -0
  447. data/test/soap/fault/test_fault.rb +46 -0
  448. data/test/soap/fault/test_soaparray.rb +35 -0
  449. data/test/soap/filter/test_filter.rb +146 -0
  450. data/test/soap/header/server.cgi +119 -0
  451. data/test/soap/header/session.pstoredb +0 -0
  452. data/test/soap/header/test_authheader.rb +240 -0
  453. data/test/soap/header/test_authheader_cgi.rb +121 -0
  454. data/test/soap/header/test_simplehandler.rb +116 -0
  455. data/test/soap/helloworld/hw_s.rb +16 -0
  456. data/test/soap/helloworld/test_helloworld.rb +43 -0
  457. data/test/soap/htpasswd +2 -0
  458. data/test/soap/literalArrayMapping/amazonEc.rb +4778 -0
  459. data/test/soap/literalArrayMapping/amazonEcDriver.rb +172 -0
  460. data/test/soap/literalArrayMapping/amazonresponse.xml +100 -0
  461. data/test/soap/literalArrayMapping/test_definedarray.rb +34 -0
  462. data/test/soap/marshal/marshaltestlib.rb +494 -0
  463. data/test/soap/marshal/test_digraph.rb +56 -0
  464. data/test/soap/marshal/test_marshal.rb +26 -0
  465. data/test/soap/marshal/test_struct.rb +47 -0
  466. data/test/soap/ssl/README +1 -0
  467. data/test/soap/ssl/ca.cert +23 -0
  468. data/test/soap/ssl/client.cert +19 -0
  469. data/test/soap/ssl/client.key +15 -0
  470. data/test/soap/ssl/server.cert +19 -0
  471. data/test/soap/ssl/server.key +15 -0
  472. data/test/soap/ssl/sslsvr.rb +57 -0
  473. data/test/soap/ssl/subca.cert +21 -0
  474. data/test/soap/ssl/test_ssl.rb +235 -0
  475. data/test/soap/struct/test_struct.rb +70 -0
  476. data/test/soap/styleuse/client.rb +20 -0
  477. data/test/soap/styleuse/server.rb +86 -0
  478. data/test/soap/swa/test_file.rb +75 -0
  479. data/test/soap/test_basetype.rb +1090 -0
  480. data/test/soap/test_cookie.rb +112 -0
  481. data/test/soap/test_custom_ns.rb +105 -0
  482. data/test/soap/test_custommap.rb +110 -0
  483. data/test/soap/test_empty.rb +105 -0
  484. data/test/soap/test_envelopenamespace.rb +85 -0
  485. data/test/soap/test_extraattr.rb +54 -0
  486. data/test/soap/test_generator.rb +27 -0
  487. data/test/soap/test_httpconfigloader.rb +71 -0
  488. data/test/soap/test_mapping.rb +131 -0
  489. data/test/soap/test_nestedexception.rb +56 -0
  490. data/test/soap/test_nil.rb +57 -0
  491. data/test/soap/test_no_indent.rb +88 -0
  492. data/test/soap/test_property.rb +428 -0
  493. data/test/soap/test_response_as_xml.rb +117 -0
  494. data/test/soap/test_soapelement.rb +138 -0
  495. data/test/soap/test_streamhandler.rb +270 -0
  496. data/test/soap/test_styleuse.rb +326 -0
  497. data/test/soap/wsdlDriver/README.txt +2 -0
  498. data/test/soap/wsdlDriver/calc.wsdl +126 -0
  499. data/test/soap/wsdlDriver/document.wsdl +54 -0
  500. data/test/soap/wsdlDriver/echo_version.rb +29 -0
  501. data/test/soap/wsdlDriver/simpletype.wsdl +63 -0
  502. data/test/soap/wsdlDriver/test_calc.rb +71 -0
  503. data/test/soap/wsdlDriver/test_document.rb +71 -0
  504. data/test/soap/wsdlDriver/test_simpletype.rb +80 -0
  505. data/test/testutil.rb +54 -0
  506. data/test/wsdl/abstract/abstract.wsdl +176 -0
  507. data/test/wsdl/abstract/test_abstract.rb +159 -0
  508. data/test/wsdl/anonymous/expectedClassDef.rb +128 -0
  509. data/test/wsdl/anonymous/expectedDriver.rb +59 -0
  510. data/test/wsdl/anonymous/expectedMappingRegistry.rb +176 -0
  511. data/test/wsdl/anonymous/lp.wsdl +147 -0
  512. data/test/wsdl/anonymous/test_anonymous.rb +130 -0
  513. data/test/wsdl/any/any.wsdl +114 -0
  514. data/test/wsdl/any/expectedDriver.rb +68 -0
  515. data/test/wsdl/any/expectedEcho.rb +57 -0
  516. data/test/wsdl/any/expectedMappingRegistry.rb +63 -0
  517. data/test/wsdl/any/expectedService.rb +69 -0
  518. data/test/wsdl/any/test_any.rb +193 -0
  519. data/test/wsdl/axisArray/axisArray.wsdl +87 -0
  520. data/test/wsdl/axisArray/test_axisarray.rb +124 -0
  521. data/test/wsdl/choice/choice.wsdl +167 -0
  522. data/test/wsdl/choice/test_choice.rb +310 -0
  523. data/test/wsdl/complexcontent/complexContent.wsdl +83 -0
  524. data/test/wsdl/complexcontent/test_echo.rb +90 -0
  525. data/test/wsdl/datetime/DatetimeService.rb +44 -0
  526. data/test/wsdl/datetime/datetime.rb +0 -0
  527. data/test/wsdl/datetime/datetime.wsdl +45 -0
  528. data/test/wsdl/datetime/datetimeServant.rb +22 -0
  529. data/test/wsdl/datetime/test_datetime.rb +86 -0
  530. data/test/wsdl/document/array/double.wsdl +161 -0
  531. data/test/wsdl/document/array/test_array.rb +201 -0
  532. data/test/wsdl/document/document.wsdl +76 -0
  533. data/test/wsdl/document/number.wsdl +54 -0
  534. data/test/wsdl/document/ping_nosoapaction.wsdl +66 -0
  535. data/test/wsdl/document/test_nosoapaction.rb +102 -0
  536. data/test/wsdl/document/test_number.rb +92 -0
  537. data/test/wsdl/document/test_rpc.rb +355 -0
  538. data/test/wsdl/emptycomplextype.wsdl +31 -0
  539. data/test/wsdl/fault/fault.wsdl +79 -0
  540. data/test/wsdl/fault/multifault.wsdl +96 -0
  541. data/test/wsdl/fault/test_fault.rb +119 -0
  542. data/test/wsdl/fault/test_multifault.rb +134 -0
  543. data/test/wsdl/group/expectedClassdef.rb +58 -0
  544. data/test/wsdl/group/expectedDriver.rb +51 -0
  545. data/test/wsdl/group/expectedMappingRegistry.rb +67 -0
  546. data/test/wsdl/group/group.wsdl +88 -0
  547. data/test/wsdl/group/test_rpc.rb +145 -0
  548. data/test/wsdl/list/list.wsdl +93 -0
  549. data/test/wsdl/list/test_list.rb +124 -0
  550. data/test/wsdl/map/map.wsdl +92 -0
  551. data/test/wsdl/map/map.xml +43 -0
  552. data/test/wsdl/map/test_map.rb +99 -0
  553. data/test/wsdl/marshal/Person.rb +1 -0
  554. data/test/wsdl/marshal/person.wsdl +21 -0
  555. data/test/wsdl/marshal/person_org.rb +23 -0
  556. data/test/wsdl/marshal/test_wsdlmarshal.rb +76 -0
  557. data/test/wsdl/multiplefault.wsdl +75 -0
  558. data/test/wsdl/oneway/oneway.wsdl +36 -0
  559. data/test/wsdl/oneway/test_oneway.rb +108 -0
  560. data/test/wsdl/overload/expectedClient.rb +37 -0
  561. data/test/wsdl/overload/expectedDriver.rb +61 -0
  562. data/test/wsdl/overload/expectedServant.rb +35 -0
  563. data/test/wsdl/overload/overload.wsdl +70 -0
  564. data/test/wsdl/overload/test_overload.rb +131 -0
  565. data/test/wsdl/qualified/lp.wsdl +47 -0
  566. data/test/wsdl/qualified/lp.xsd +26 -0
  567. data/test/wsdl/qualified/np.wsdl +51 -0
  568. data/test/wsdl/qualified/test_qualified.rb +137 -0
  569. data/test/wsdl/qualified/test_unqualified.rb +138 -0
  570. data/test/wsdl/raa/RAAService.rb +125 -0
  571. data/test/wsdl/raa/README.txt +8 -0
  572. data/test/wsdl/raa/expectedClassDef.rb +100 -0
  573. data/test/wsdl/raa/expectedDriver.rb +96 -0
  574. data/test/wsdl/raa/expectedMappingRegistry.rb +121 -0
  575. data/test/wsdl/raa/raa.wsdl +264 -0
  576. data/test/wsdl/raa/test_raa.rb +126 -0
  577. data/test/wsdl/ref/expectedDriver.rb +51 -0
  578. data/test/wsdl/ref/expectedProduct.rb +243 -0
  579. data/test/wsdl/ref/product.wsdl +147 -0
  580. data/test/wsdl/ref/test_ref.rb +268 -0
  581. data/test/wsdl/rpc/rpc.wsdl +109 -0
  582. data/test/wsdl/rpc/test-rpc-lit.wsdl +371 -0
  583. data/test/wsdl/rpc/test_rpc.rb +176 -0
  584. data/test/wsdl/rpc/test_rpc_lit.rb +470 -0
  585. data/test/wsdl/simplecontent/simplecontent.wsdl +84 -0
  586. data/test/wsdl/simplecontent/test_simplecontent.rb +102 -0
  587. data/test/wsdl/simpletype/rpc/echo_version.rb +1 -0
  588. data/test/wsdl/simpletype/rpc/echo_versionDriver.rb +10 -0
  589. data/test/wsdl/simpletype/rpc/echo_versionMappingRegistry.rb +4 -0
  590. data/test/wsdl/simpletype/rpc/echo_versionServant.rb +3 -0
  591. data/test/wsdl/simpletype/rpc/echo_version_service.rb +3 -0
  592. data/test/wsdl/simpletype/rpc/echo_version_serviceClient.rb +34 -0
  593. data/test/wsdl/simpletype/rpc/expectedClient.rb +34 -0
  594. data/test/wsdl/simpletype/rpc/expectedDriver.rb +58 -0
  595. data/test/wsdl/simpletype/rpc/expectedEchoVersion.rb +36 -0
  596. data/test/wsdl/simpletype/rpc/expectedMappingRegistry.rb +57 -0
  597. data/test/wsdl/simpletype/rpc/expectedServant.rb +32 -0
  598. data/test/wsdl/simpletype/rpc/expectedService.rb +55 -0
  599. data/test/wsdl/simpletype/rpc/rpc.wsdl +98 -0
  600. data/test/wsdl/simpletype/rpc/test_rpc.rb +52 -0
  601. data/test/wsdl/simpletype/simpletype.wsdl +114 -0
  602. data/test/wsdl/simpletype/test_simpletype.rb +92 -0
  603. data/test/wsdl/soap/soapbodyparts.wsdl +103 -0
  604. data/test/wsdl/soap/test_soapbodyparts.rb +79 -0
  605. data/test/wsdl/soap/wsdl2ruby/echo_version.rb +1 -0
  606. data/test/wsdl/soap/wsdl2ruby/echo_versionDriver.rb +10 -0
  607. data/test/wsdl/soap/wsdl2ruby/echo_versionMappingRegistry.rb +4 -0
  608. data/test/wsdl/soap/wsdl2ruby/echo_versionServant.rb +3 -0
  609. data/test/wsdl/soap/wsdl2ruby/echo_version_service.cgi +3 -0
  610. data/test/wsdl/soap/wsdl2ruby/echo_version_service.rb +7 -0
  611. data/test/wsdl/soap/wsdl2ruby/echo_version_serviceClient.rb +34 -0
  612. data/test/wsdl/soap/wsdl2ruby/expectedClassdef.rb +21 -0
  613. data/test/wsdl/soap/wsdl2ruby/expectedClient.rb +34 -0
  614. data/test/wsdl/soap/wsdl2ruby/expectedDriver.rb +58 -0
  615. data/test/wsdl/soap/wsdl2ruby/expectedMappingRegistry.rb +36 -0
  616. data/test/wsdl/soap/wsdl2ruby/expectedServant.rb +32 -0
  617. data/test/wsdl/soap/wsdl2ruby/expectedService.cgi +48 -0
  618. data/test/wsdl/soap/wsdl2ruby/expectedService.rb +55 -0
  619. data/test/wsdl/soap/wsdl2ruby/rpc.wsdl +80 -0
  620. data/test/wsdl/soap/wsdl2ruby/section/expectedClassdef.rb +37 -0
  621. data/test/wsdl/soap/wsdl2ruby/section/section.xsd +31 -0
  622. data/test/wsdl/soap/wsdl2ruby/section/test_section.rb +53 -0
  623. data/test/wsdl/soap/wsdl2ruby/soapenc/soapenc.wsdl +64 -0
  624. data/test/wsdl/soap/wsdl2ruby/soapenc/test_soapenc.rb +83 -0
  625. data/test/wsdl/soap/wsdl2ruby/test_wsdl2ruby.rb +102 -0
  626. data/test/wsdl/soaptype/soaptype.wsdl +61 -0
  627. data/test/wsdl/soaptype/test_soaptype.rb +178 -0
  628. data/test/wsdl/test_emptycomplextype.rb +21 -0
  629. data/test/wsdl/test_fault.rb +50 -0
  630. data/test/wsdl/test_multiplefault.rb +41 -0
  631. data/test/xsd/codegen/test_classdef.rb +244 -0
  632. data/test/xsd/noencoding.xml +4 -0
  633. data/test/xsd/test_noencoding.rb +32 -0
  634. data/test/xsd/test_ns.rb +41 -0
  635. data/test/xsd/test_xmlschemaparser.rb +22 -0
  636. data/test/xsd/test_xsd.rb +1638 -0
  637. data/test/xsd/xmllang.xml +43 -0
  638. data/test/xsd/xmlschema.xml +12 -0
  639. data/test/xsd/xsd2ruby/expected_mysample.rb +65 -0
  640. data/test/xsd/xsd2ruby/expected_mysample_mapper.rb +11 -0
  641. data/test/xsd/xsd2ruby/expected_mysample_mapping_registry.rb +51 -0
  642. data/test/xsd/xsd2ruby/section.xsd +49 -0
  643. data/test/xsd/xsd2ruby/test_xsd2ruby.rb +90 -0
  644. metadata +689 -0
@@ -0,0 +1,23 @@
1
+ require 'soap/wsdlDriver'
2
+ include SOAP
3
+
4
+ wsdl = ARGV.shift || 'SoapBoxWebServiceWithRawXML.wsdl'
5
+ driver = SOAP::WSDLDriverFactory.new(wsdl).create_rpc_driver
6
+ driver.wiredump_dev = STDOUT
7
+
8
+ =begin
9
+ userinfo = SOAPElement.new(XSD::QName.new('http://www.winfessor.com/SoapBoxWebService/SoapBoxWebService', 'RegisterUser'))
10
+ userinfo.add(SOAPElement.new('username', 'NaHi'))
11
+ userinfo.add(SOAPElement.new('passowrd', 'passwd'))
12
+ userinfo.add(SOAPElement.new('hostname', 'www.example.com'))
13
+
14
+ s = Struct.new(:username, :password, :hostname)
15
+ userinfo = s.new('NaHi', 'nahi', 'jabber.example.com')
16
+
17
+ s = Struct.new(:username, :password)
18
+ userinfo = {:username => 'NaHi', :password => 'nahi'}
19
+ driver.RegisterUser(nil, userinfo)
20
+ =end
21
+
22
+ header = { :SessionID => '12345' }
23
+ driver.RegisterRemoveUser(header, nil)
@@ -0,0 +1,36 @@
1
+ #!/usr/bin/env ruby
2
+ require 'defaultDriver.rb'
3
+ require 'soap/header/simplehandler'
4
+
5
+ class RequesterCredentialsHandler < SOAP::Header::SimpleHandler
6
+ HeaderName = XSD::QName.new('urn:ebay:api:PayPalAPI', 'RequesterCredentials')
7
+ CredentialsName =
8
+ XSD::QName.new('urn:ebay:apis:eBLBaseComponents', 'Credentials')
9
+ UsernameName = XSD::QName.new(nil, 'Username')
10
+ PasswordName = XSD::QName.new(nil, 'Password')
11
+ SubjectName = XSD::QName.new(nil, 'Subject')
12
+
13
+ def initialize(username, password, subject)
14
+ super(HeaderName)
15
+ @username, @password, @subject = username, password, subject
16
+ end
17
+
18
+ def on_simple_outbound
19
+ {CredentialsName => {UsernameName => @username, PasswordName => @password,
20
+ SubjectName => @subject}}
21
+ end
22
+ end
23
+
24
+ endpoint_url = ARGV.shift
25
+ obj = PayPalAPIAAInterface.new(endpoint_url)
26
+ obj.headerhandler << RequesterCredentialsHandler.new('NaHi', 'pass', 'authorizing_account_emailaddress')
27
+ obj.wiredump_dev = STDOUT if $DEBUG
28
+
29
+ obj.test_loopback_response << File.read("response.xml")
30
+ payerInfo = obj.getExpressCheckoutDetails(nil).getExpressCheckoutDetailsResponseDetails.payerInfo
31
+ p payerInfo.payerName.firstName
32
+ p payerInfo.payerBusiness
33
+ exit
34
+
35
+ getTransactionDetailsRequest = nil
36
+ puts obj.getTransactionDetails(getTransactionDetailsRequest)
@@ -0,0 +1,3160 @@
1
+ require 'xsd/qname'
2
+
3
+ # {http://soap.amazon.com}ProductLineArray
4
+ class ProductLineArray < ::Array
5
+ @@schema_type = "ProductLine"
6
+ @@schema_ns = "http://soap.amazon.com"
7
+ end
8
+
9
+ # {http://soap.amazon.com}ProductLine
10
+ class ProductLine
11
+ @@schema_type = "ProductLine"
12
+ @@schema_ns = "http://soap.amazon.com"
13
+ @@schema_element = [["mode", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "Mode")]], ["relevanceRank", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "RelevanceRank")]], ["productInfo", ["ProductInfo", XSD::QName.new("http://soap.amazon.com", "ProductInfo")]]]
14
+
15
+ def Mode
16
+ @mode
17
+ end
18
+
19
+ def Mode=(value)
20
+ @mode = value
21
+ end
22
+
23
+ def RelevanceRank
24
+ @relevanceRank
25
+ end
26
+
27
+ def RelevanceRank=(value)
28
+ @relevanceRank = value
29
+ end
30
+
31
+ def ProductInfo
32
+ @productInfo
33
+ end
34
+
35
+ def ProductInfo=(value)
36
+ @productInfo = value
37
+ end
38
+
39
+ def initialize(mode = nil, relevanceRank = nil, productInfo = nil)
40
+ @mode = mode
41
+ @relevanceRank = relevanceRank
42
+ @productInfo = productInfo
43
+ end
44
+ end
45
+
46
+ # {http://soap.amazon.com}ProductInfo
47
+ class ProductInfo
48
+ @@schema_type = "ProductInfo"
49
+ @@schema_ns = "http://soap.amazon.com"
50
+ @@schema_element = [["totalResults", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "TotalResults")]], ["totalPages", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "TotalPages")]], ["listName", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "ListName")]], ["details", ["DetailsArray", XSD::QName.new("http://soap.amazon.com", "Details")]]]
51
+
52
+ def TotalResults
53
+ @totalResults
54
+ end
55
+
56
+ def TotalResults=(value)
57
+ @totalResults = value
58
+ end
59
+
60
+ def TotalPages
61
+ @totalPages
62
+ end
63
+
64
+ def TotalPages=(value)
65
+ @totalPages = value
66
+ end
67
+
68
+ def ListName
69
+ @listName
70
+ end
71
+
72
+ def ListName=(value)
73
+ @listName = value
74
+ end
75
+
76
+ def Details
77
+ @details
78
+ end
79
+
80
+ def Details=(value)
81
+ @details = value
82
+ end
83
+
84
+ def initialize(totalResults = nil, totalPages = nil, listName = nil, details = nil)
85
+ @totalResults = totalResults
86
+ @totalPages = totalPages
87
+ @listName = listName
88
+ @details = details
89
+ end
90
+ end
91
+
92
+ # {http://soap.amazon.com}DetailsArray
93
+ class DetailsArray < ::Array
94
+ @@schema_type = "Details"
95
+ @@schema_ns = "http://soap.amazon.com"
96
+ end
97
+
98
+ # {http://soap.amazon.com}Details
99
+ class Details
100
+ @@schema_type = "Details"
101
+ @@schema_ns = "http://soap.amazon.com"
102
+ @@schema_element = [["url", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "Url")]], ["asin", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "Asin")]], ["productName", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "ProductName")]], ["catalog", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "Catalog")]], ["keyPhrases", ["KeyPhraseArray", XSD::QName.new("http://soap.amazon.com", "KeyPhrases")]], ["artists", ["ArtistArray", XSD::QName.new("http://soap.amazon.com", "Artists")]], ["authors", ["AuthorArray", XSD::QName.new("http://soap.amazon.com", "Authors")]], ["mpn", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "Mpn")]], ["starring", ["StarringArray", XSD::QName.new("http://soap.amazon.com", "Starring")]], ["directors", ["DirectorArray", XSD::QName.new("http://soap.amazon.com", "Directors")]], ["theatricalReleaseDate", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "TheatricalReleaseDate")]], ["releaseDate", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "ReleaseDate")]], ["manufacturer", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "Manufacturer")]], ["distributor", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "Distributor")]], ["imageUrlSmall", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "ImageUrlSmall")]], ["imageUrlMedium", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "ImageUrlMedium")]], ["imageUrlLarge", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "ImageUrlLarge")]], ["merchantId", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "MerchantId")]], ["minPrice", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "MinPrice")]], ["maxPrice", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "MaxPrice")]], ["minSalePrice", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "MinSalePrice")]], ["maxSalePrice", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "MaxSalePrice")]], ["multiMerchant", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "MultiMerchant")]], ["merchantSku", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "MerchantSku")]], ["listPrice", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "ListPrice")]], ["ourPrice", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "OurPrice")]], ["usedPrice", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "UsedPrice")]], ["refurbishedPrice", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "RefurbishedPrice")]], ["collectiblePrice", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "CollectiblePrice")]], ["thirdPartyNewPrice", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "ThirdPartyNewPrice")]], ["numberOfOfferings", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "NumberOfOfferings")]], ["thirdPartyNewCount", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "ThirdPartyNewCount")]], ["usedCount", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "UsedCount")]], ["collectibleCount", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "CollectibleCount")]], ["refurbishedCount", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "RefurbishedCount")]], ["thirdPartyProductInfo", ["ThirdPartyProductInfo", XSD::QName.new("http://soap.amazon.com", "ThirdPartyProductInfo")]], ["salesRank", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "SalesRank")]], ["browseList", ["BrowseNodeArray", XSD::QName.new("http://soap.amazon.com", "BrowseList")]], ["media", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "Media")]], ["readingLevel", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "ReadingLevel")]], ["numberOfPages", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "NumberOfPages")]], ["numberOfIssues", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "NumberOfIssues")]], ["issuesPerYear", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "IssuesPerYear")]], ["subscriptionLength", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "SubscriptionLength")]], ["deweyNumber", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "DeweyNumber")]], ["runningTime", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "RunningTime")]], ["publisher", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "Publisher")]], ["numMedia", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "NumMedia")]], ["isbn", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "Isbn")]], ["features", ["FeaturesArray", XSD::QName.new("http://soap.amazon.com", "Features")]], ["mpaaRating", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "MpaaRating")]], ["esrbRating", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "EsrbRating")]], ["ageGroup", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "AgeGroup")]], ["availability", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "Availability")]], ["upc", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "Upc")]], ["tracks", ["TrackArray", XSD::QName.new("http://soap.amazon.com", "Tracks")]], ["accessories", ["AccessoryArray", XSD::QName.new("http://soap.amazon.com", "Accessories")]], ["platforms", ["PlatformArray", XSD::QName.new("http://soap.amazon.com", "Platforms")]], ["encoding", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "Encoding")]], ["productDescription", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "ProductDescription")]], ["reviews", ["Reviews", XSD::QName.new("http://soap.amazon.com", "Reviews")]], ["similarProducts", ["SimilarProductsArray", XSD::QName.new("http://soap.amazon.com", "SimilarProducts")]], ["featuredProducts", ["FeaturedProductsArray", XSD::QName.new("http://soap.amazon.com", "FeaturedProducts")]], ["lists", ["ListArray", XSD::QName.new("http://soap.amazon.com", "Lists")]], ["status", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "Status")]], ["variations", ["VariationArray", XSD::QName.new("http://soap.amazon.com", "Variations")]]]
103
+
104
+ def Url
105
+ @url
106
+ end
107
+
108
+ def Url=(value)
109
+ @url = value
110
+ end
111
+
112
+ def Asin
113
+ @asin
114
+ end
115
+
116
+ def Asin=(value)
117
+ @asin = value
118
+ end
119
+
120
+ def ProductName
121
+ @productName
122
+ end
123
+
124
+ def ProductName=(value)
125
+ @productName = value
126
+ end
127
+
128
+ def Catalog
129
+ @catalog
130
+ end
131
+
132
+ def Catalog=(value)
133
+ @catalog = value
134
+ end
135
+
136
+ def KeyPhrases
137
+ @keyPhrases
138
+ end
139
+
140
+ def KeyPhrases=(value)
141
+ @keyPhrases = value
142
+ end
143
+
144
+ def Artists
145
+ @artists
146
+ end
147
+
148
+ def Artists=(value)
149
+ @artists = value
150
+ end
151
+
152
+ def Authors
153
+ @authors
154
+ end
155
+
156
+ def Authors=(value)
157
+ @authors = value
158
+ end
159
+
160
+ def Mpn
161
+ @mpn
162
+ end
163
+
164
+ def Mpn=(value)
165
+ @mpn = value
166
+ end
167
+
168
+ def Starring
169
+ @starring
170
+ end
171
+
172
+ def Starring=(value)
173
+ @starring = value
174
+ end
175
+
176
+ def Directors
177
+ @directors
178
+ end
179
+
180
+ def Directors=(value)
181
+ @directors = value
182
+ end
183
+
184
+ def TheatricalReleaseDate
185
+ @theatricalReleaseDate
186
+ end
187
+
188
+ def TheatricalReleaseDate=(value)
189
+ @theatricalReleaseDate = value
190
+ end
191
+
192
+ def ReleaseDate
193
+ @releaseDate
194
+ end
195
+
196
+ def ReleaseDate=(value)
197
+ @releaseDate = value
198
+ end
199
+
200
+ def Manufacturer
201
+ @manufacturer
202
+ end
203
+
204
+ def Manufacturer=(value)
205
+ @manufacturer = value
206
+ end
207
+
208
+ def Distributor
209
+ @distributor
210
+ end
211
+
212
+ def Distributor=(value)
213
+ @distributor = value
214
+ end
215
+
216
+ def ImageUrlSmall
217
+ @imageUrlSmall
218
+ end
219
+
220
+ def ImageUrlSmall=(value)
221
+ @imageUrlSmall = value
222
+ end
223
+
224
+ def ImageUrlMedium
225
+ @imageUrlMedium
226
+ end
227
+
228
+ def ImageUrlMedium=(value)
229
+ @imageUrlMedium = value
230
+ end
231
+
232
+ def ImageUrlLarge
233
+ @imageUrlLarge
234
+ end
235
+
236
+ def ImageUrlLarge=(value)
237
+ @imageUrlLarge = value
238
+ end
239
+
240
+ def MerchantId
241
+ @merchantId
242
+ end
243
+
244
+ def MerchantId=(value)
245
+ @merchantId = value
246
+ end
247
+
248
+ def MinPrice
249
+ @minPrice
250
+ end
251
+
252
+ def MinPrice=(value)
253
+ @minPrice = value
254
+ end
255
+
256
+ def MaxPrice
257
+ @maxPrice
258
+ end
259
+
260
+ def MaxPrice=(value)
261
+ @maxPrice = value
262
+ end
263
+
264
+ def MinSalePrice
265
+ @minSalePrice
266
+ end
267
+
268
+ def MinSalePrice=(value)
269
+ @minSalePrice = value
270
+ end
271
+
272
+ def MaxSalePrice
273
+ @maxSalePrice
274
+ end
275
+
276
+ def MaxSalePrice=(value)
277
+ @maxSalePrice = value
278
+ end
279
+
280
+ def MultiMerchant
281
+ @multiMerchant
282
+ end
283
+
284
+ def MultiMerchant=(value)
285
+ @multiMerchant = value
286
+ end
287
+
288
+ def MerchantSku
289
+ @merchantSku
290
+ end
291
+
292
+ def MerchantSku=(value)
293
+ @merchantSku = value
294
+ end
295
+
296
+ def ListPrice
297
+ @listPrice
298
+ end
299
+
300
+ def ListPrice=(value)
301
+ @listPrice = value
302
+ end
303
+
304
+ def OurPrice
305
+ @ourPrice
306
+ end
307
+
308
+ def OurPrice=(value)
309
+ @ourPrice = value
310
+ end
311
+
312
+ def UsedPrice
313
+ @usedPrice
314
+ end
315
+
316
+ def UsedPrice=(value)
317
+ @usedPrice = value
318
+ end
319
+
320
+ def RefurbishedPrice
321
+ @refurbishedPrice
322
+ end
323
+
324
+ def RefurbishedPrice=(value)
325
+ @refurbishedPrice = value
326
+ end
327
+
328
+ def CollectiblePrice
329
+ @collectiblePrice
330
+ end
331
+
332
+ def CollectiblePrice=(value)
333
+ @collectiblePrice = value
334
+ end
335
+
336
+ def ThirdPartyNewPrice
337
+ @thirdPartyNewPrice
338
+ end
339
+
340
+ def ThirdPartyNewPrice=(value)
341
+ @thirdPartyNewPrice = value
342
+ end
343
+
344
+ def NumberOfOfferings
345
+ @numberOfOfferings
346
+ end
347
+
348
+ def NumberOfOfferings=(value)
349
+ @numberOfOfferings = value
350
+ end
351
+
352
+ def ThirdPartyNewCount
353
+ @thirdPartyNewCount
354
+ end
355
+
356
+ def ThirdPartyNewCount=(value)
357
+ @thirdPartyNewCount = value
358
+ end
359
+
360
+ def UsedCount
361
+ @usedCount
362
+ end
363
+
364
+ def UsedCount=(value)
365
+ @usedCount = value
366
+ end
367
+
368
+ def CollectibleCount
369
+ @collectibleCount
370
+ end
371
+
372
+ def CollectibleCount=(value)
373
+ @collectibleCount = value
374
+ end
375
+
376
+ def RefurbishedCount
377
+ @refurbishedCount
378
+ end
379
+
380
+ def RefurbishedCount=(value)
381
+ @refurbishedCount = value
382
+ end
383
+
384
+ def ThirdPartyProductInfo
385
+ @thirdPartyProductInfo
386
+ end
387
+
388
+ def ThirdPartyProductInfo=(value)
389
+ @thirdPartyProductInfo = value
390
+ end
391
+
392
+ def SalesRank
393
+ @salesRank
394
+ end
395
+
396
+ def SalesRank=(value)
397
+ @salesRank = value
398
+ end
399
+
400
+ def BrowseList
401
+ @browseList
402
+ end
403
+
404
+ def BrowseList=(value)
405
+ @browseList = value
406
+ end
407
+
408
+ def Media
409
+ @media
410
+ end
411
+
412
+ def Media=(value)
413
+ @media = value
414
+ end
415
+
416
+ def ReadingLevel
417
+ @readingLevel
418
+ end
419
+
420
+ def ReadingLevel=(value)
421
+ @readingLevel = value
422
+ end
423
+
424
+ def NumberOfPages
425
+ @numberOfPages
426
+ end
427
+
428
+ def NumberOfPages=(value)
429
+ @numberOfPages = value
430
+ end
431
+
432
+ def NumberOfIssues
433
+ @numberOfIssues
434
+ end
435
+
436
+ def NumberOfIssues=(value)
437
+ @numberOfIssues = value
438
+ end
439
+
440
+ def IssuesPerYear
441
+ @issuesPerYear
442
+ end
443
+
444
+ def IssuesPerYear=(value)
445
+ @issuesPerYear = value
446
+ end
447
+
448
+ def SubscriptionLength
449
+ @subscriptionLength
450
+ end
451
+
452
+ def SubscriptionLength=(value)
453
+ @subscriptionLength = value
454
+ end
455
+
456
+ def DeweyNumber
457
+ @deweyNumber
458
+ end
459
+
460
+ def DeweyNumber=(value)
461
+ @deweyNumber = value
462
+ end
463
+
464
+ def RunningTime
465
+ @runningTime
466
+ end
467
+
468
+ def RunningTime=(value)
469
+ @runningTime = value
470
+ end
471
+
472
+ def Publisher
473
+ @publisher
474
+ end
475
+
476
+ def Publisher=(value)
477
+ @publisher = value
478
+ end
479
+
480
+ def NumMedia
481
+ @numMedia
482
+ end
483
+
484
+ def NumMedia=(value)
485
+ @numMedia = value
486
+ end
487
+
488
+ def Isbn
489
+ @isbn
490
+ end
491
+
492
+ def Isbn=(value)
493
+ @isbn = value
494
+ end
495
+
496
+ def Features
497
+ @features
498
+ end
499
+
500
+ def Features=(value)
501
+ @features = value
502
+ end
503
+
504
+ def MpaaRating
505
+ @mpaaRating
506
+ end
507
+
508
+ def MpaaRating=(value)
509
+ @mpaaRating = value
510
+ end
511
+
512
+ def EsrbRating
513
+ @esrbRating
514
+ end
515
+
516
+ def EsrbRating=(value)
517
+ @esrbRating = value
518
+ end
519
+
520
+ def AgeGroup
521
+ @ageGroup
522
+ end
523
+
524
+ def AgeGroup=(value)
525
+ @ageGroup = value
526
+ end
527
+
528
+ def Availability
529
+ @availability
530
+ end
531
+
532
+ def Availability=(value)
533
+ @availability = value
534
+ end
535
+
536
+ def Upc
537
+ @upc
538
+ end
539
+
540
+ def Upc=(value)
541
+ @upc = value
542
+ end
543
+
544
+ def Tracks
545
+ @tracks
546
+ end
547
+
548
+ def Tracks=(value)
549
+ @tracks = value
550
+ end
551
+
552
+ def Accessories
553
+ @accessories
554
+ end
555
+
556
+ def Accessories=(value)
557
+ @accessories = value
558
+ end
559
+
560
+ def Platforms
561
+ @platforms
562
+ end
563
+
564
+ def Platforms=(value)
565
+ @platforms = value
566
+ end
567
+
568
+ def Encoding
569
+ @encoding
570
+ end
571
+
572
+ def Encoding=(value)
573
+ @encoding = value
574
+ end
575
+
576
+ def ProductDescription
577
+ @productDescription
578
+ end
579
+
580
+ def ProductDescription=(value)
581
+ @productDescription = value
582
+ end
583
+
584
+ def Reviews
585
+ @reviews
586
+ end
587
+
588
+ def Reviews=(value)
589
+ @reviews = value
590
+ end
591
+
592
+ def SimilarProducts
593
+ @similarProducts
594
+ end
595
+
596
+ def SimilarProducts=(value)
597
+ @similarProducts = value
598
+ end
599
+
600
+ def FeaturedProducts
601
+ @featuredProducts
602
+ end
603
+
604
+ def FeaturedProducts=(value)
605
+ @featuredProducts = value
606
+ end
607
+
608
+ def Lists
609
+ @lists
610
+ end
611
+
612
+ def Lists=(value)
613
+ @lists = value
614
+ end
615
+
616
+ def Status
617
+ @status
618
+ end
619
+
620
+ def Status=(value)
621
+ @status = value
622
+ end
623
+
624
+ def Variations
625
+ @variations
626
+ end
627
+
628
+ def Variations=(value)
629
+ @variations = value
630
+ end
631
+
632
+ def initialize(url = nil, asin = nil, productName = nil, catalog = nil, keyPhrases = nil, artists = nil, authors = nil, mpn = nil, starring = nil, directors = nil, theatricalReleaseDate = nil, releaseDate = nil, manufacturer = nil, distributor = nil, imageUrlSmall = nil, imageUrlMedium = nil, imageUrlLarge = nil, merchantId = nil, minPrice = nil, maxPrice = nil, minSalePrice = nil, maxSalePrice = nil, multiMerchant = nil, merchantSku = nil, listPrice = nil, ourPrice = nil, usedPrice = nil, refurbishedPrice = nil, collectiblePrice = nil, thirdPartyNewPrice = nil, numberOfOfferings = nil, thirdPartyNewCount = nil, usedCount = nil, collectibleCount = nil, refurbishedCount = nil, thirdPartyProductInfo = nil, salesRank = nil, browseList = nil, media = nil, readingLevel = nil, numberOfPages = nil, numberOfIssues = nil, issuesPerYear = nil, subscriptionLength = nil, deweyNumber = nil, runningTime = nil, publisher = nil, numMedia = nil, isbn = nil, features = nil, mpaaRating = nil, esrbRating = nil, ageGroup = nil, availability = nil, upc = nil, tracks = nil, accessories = nil, platforms = nil, encoding = nil, productDescription = nil, reviews = nil, similarProducts = nil, featuredProducts = nil, lists = nil, status = nil, variations = nil)
633
+ @url = url
634
+ @asin = asin
635
+ @productName = productName
636
+ @catalog = catalog
637
+ @keyPhrases = keyPhrases
638
+ @artists = artists
639
+ @authors = authors
640
+ @mpn = mpn
641
+ @starring = starring
642
+ @directors = directors
643
+ @theatricalReleaseDate = theatricalReleaseDate
644
+ @releaseDate = releaseDate
645
+ @manufacturer = manufacturer
646
+ @distributor = distributor
647
+ @imageUrlSmall = imageUrlSmall
648
+ @imageUrlMedium = imageUrlMedium
649
+ @imageUrlLarge = imageUrlLarge
650
+ @merchantId = merchantId
651
+ @minPrice = minPrice
652
+ @maxPrice = maxPrice
653
+ @minSalePrice = minSalePrice
654
+ @maxSalePrice = maxSalePrice
655
+ @multiMerchant = multiMerchant
656
+ @merchantSku = merchantSku
657
+ @listPrice = listPrice
658
+ @ourPrice = ourPrice
659
+ @usedPrice = usedPrice
660
+ @refurbishedPrice = refurbishedPrice
661
+ @collectiblePrice = collectiblePrice
662
+ @thirdPartyNewPrice = thirdPartyNewPrice
663
+ @numberOfOfferings = numberOfOfferings
664
+ @thirdPartyNewCount = thirdPartyNewCount
665
+ @usedCount = usedCount
666
+ @collectibleCount = collectibleCount
667
+ @refurbishedCount = refurbishedCount
668
+ @thirdPartyProductInfo = thirdPartyProductInfo
669
+ @salesRank = salesRank
670
+ @browseList = browseList
671
+ @media = media
672
+ @readingLevel = readingLevel
673
+ @numberOfPages = numberOfPages
674
+ @numberOfIssues = numberOfIssues
675
+ @issuesPerYear = issuesPerYear
676
+ @subscriptionLength = subscriptionLength
677
+ @deweyNumber = deweyNumber
678
+ @runningTime = runningTime
679
+ @publisher = publisher
680
+ @numMedia = numMedia
681
+ @isbn = isbn
682
+ @features = features
683
+ @mpaaRating = mpaaRating
684
+ @esrbRating = esrbRating
685
+ @ageGroup = ageGroup
686
+ @availability = availability
687
+ @upc = upc
688
+ @tracks = tracks
689
+ @accessories = accessories
690
+ @platforms = platforms
691
+ @encoding = encoding
692
+ @productDescription = productDescription
693
+ @reviews = reviews
694
+ @similarProducts = similarProducts
695
+ @featuredProducts = featuredProducts
696
+ @lists = lists
697
+ @status = status
698
+ @variations = variations
699
+ end
700
+ end
701
+
702
+ # {http://soap.amazon.com}KeyPhraseArray
703
+ class KeyPhraseArray < ::Array
704
+ @@schema_type = "KeyPhrase"
705
+ @@schema_ns = "http://soap.amazon.com"
706
+ end
707
+
708
+ # {http://soap.amazon.com}KeyPhrase
709
+ class KeyPhrase
710
+ @@schema_type = "KeyPhrase"
711
+ @@schema_ns = "http://soap.amazon.com"
712
+ @@schema_element = [["keyPhrase", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "KeyPhrase")]], ["type", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "Type")]]]
713
+
714
+ def KeyPhrase
715
+ @keyPhrase
716
+ end
717
+
718
+ def KeyPhrase=(value)
719
+ @keyPhrase = value
720
+ end
721
+
722
+ def Type
723
+ @type
724
+ end
725
+
726
+ def Type=(value)
727
+ @type = value
728
+ end
729
+
730
+ def initialize(keyPhrase = nil, type = nil)
731
+ @keyPhrase = keyPhrase
732
+ @type = type
733
+ end
734
+ end
735
+
736
+ # {http://soap.amazon.com}ArtistArray
737
+ class ArtistArray < ::Array
738
+ @@schema_type = "string"
739
+ @@schema_ns = "http://www.w3.org/2001/XMLSchema"
740
+ end
741
+
742
+ # {http://soap.amazon.com}AuthorArray
743
+ class AuthorArray < ::Array
744
+ @@schema_type = "string"
745
+ @@schema_ns = "http://www.w3.org/2001/XMLSchema"
746
+ end
747
+
748
+ # {http://soap.amazon.com}StarringArray
749
+ class StarringArray < ::Array
750
+ @@schema_type = "string"
751
+ @@schema_ns = "http://www.w3.org/2001/XMLSchema"
752
+ end
753
+
754
+ # {http://soap.amazon.com}DirectorArray
755
+ class DirectorArray < ::Array
756
+ @@schema_type = "string"
757
+ @@schema_ns = "http://www.w3.org/2001/XMLSchema"
758
+ end
759
+
760
+ # {http://soap.amazon.com}BrowseNodeArray
761
+ class BrowseNodeArray < ::Array
762
+ @@schema_type = "BrowseNode"
763
+ @@schema_ns = "http://soap.amazon.com"
764
+ end
765
+
766
+ # {http://soap.amazon.com}BrowseNode
767
+ class BrowseNode
768
+ @@schema_type = "BrowseNode"
769
+ @@schema_ns = "http://soap.amazon.com"
770
+ @@schema_element = [["browseId", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "BrowseId")]], ["browseName", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "BrowseName")]]]
771
+
772
+ def BrowseId
773
+ @browseId
774
+ end
775
+
776
+ def BrowseId=(value)
777
+ @browseId = value
778
+ end
779
+
780
+ def BrowseName
781
+ @browseName
782
+ end
783
+
784
+ def BrowseName=(value)
785
+ @browseName = value
786
+ end
787
+
788
+ def initialize(browseId = nil, browseName = nil)
789
+ @browseId = browseId
790
+ @browseName = browseName
791
+ end
792
+ end
793
+
794
+ # {http://soap.amazon.com}FeaturesArray
795
+ class FeaturesArray < ::Array
796
+ @@schema_type = "string"
797
+ @@schema_ns = "http://www.w3.org/2001/XMLSchema"
798
+ end
799
+
800
+ # {http://soap.amazon.com}TrackArray
801
+ class TrackArray < ::Array
802
+ @@schema_type = "Track"
803
+ @@schema_ns = "http://soap.amazon.com"
804
+ end
805
+
806
+ # {http://soap.amazon.com}Track
807
+ class Track
808
+ @@schema_type = "Track"
809
+ @@schema_ns = "http://soap.amazon.com"
810
+ @@schema_element = [["trackName", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "TrackName")]], ["byArtist", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "ByArtist")]]]
811
+
812
+ def TrackName
813
+ @trackName
814
+ end
815
+
816
+ def TrackName=(value)
817
+ @trackName = value
818
+ end
819
+
820
+ def ByArtist
821
+ @byArtist
822
+ end
823
+
824
+ def ByArtist=(value)
825
+ @byArtist = value
826
+ end
827
+
828
+ def initialize(trackName = nil, byArtist = nil)
829
+ @trackName = trackName
830
+ @byArtist = byArtist
831
+ end
832
+ end
833
+
834
+ # {http://soap.amazon.com}AccessoryArray
835
+ class AccessoryArray < ::Array
836
+ @@schema_type = "string"
837
+ @@schema_ns = "http://www.w3.org/2001/XMLSchema"
838
+ end
839
+
840
+ # {http://soap.amazon.com}PlatformArray
841
+ class PlatformArray < ::Array
842
+ @@schema_type = "string"
843
+ @@schema_ns = "http://www.w3.org/2001/XMLSchema"
844
+ end
845
+
846
+ # {http://soap.amazon.com}Reviews
847
+ class Reviews
848
+ @@schema_type = "Reviews"
849
+ @@schema_ns = "http://soap.amazon.com"
850
+ @@schema_element = [["avgCustomerRating", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "AvgCustomerRating")]], ["totalCustomerReviews", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "TotalCustomerReviews")]], ["customerReviews", ["CustomerReviewArray", XSD::QName.new("http://soap.amazon.com", "CustomerReviews")]]]
851
+
852
+ def AvgCustomerRating
853
+ @avgCustomerRating
854
+ end
855
+
856
+ def AvgCustomerRating=(value)
857
+ @avgCustomerRating = value
858
+ end
859
+
860
+ def TotalCustomerReviews
861
+ @totalCustomerReviews
862
+ end
863
+
864
+ def TotalCustomerReviews=(value)
865
+ @totalCustomerReviews = value
866
+ end
867
+
868
+ def CustomerReviews
869
+ @customerReviews
870
+ end
871
+
872
+ def CustomerReviews=(value)
873
+ @customerReviews = value
874
+ end
875
+
876
+ def initialize(avgCustomerRating = nil, totalCustomerReviews = nil, customerReviews = nil)
877
+ @avgCustomerRating = avgCustomerRating
878
+ @totalCustomerReviews = totalCustomerReviews
879
+ @customerReviews = customerReviews
880
+ end
881
+ end
882
+
883
+ # {http://soap.amazon.com}CustomerReviewArray
884
+ class CustomerReviewArray < ::Array
885
+ @@schema_type = "CustomerReview"
886
+ @@schema_ns = "http://soap.amazon.com"
887
+ end
888
+
889
+ # {http://soap.amazon.com}CustomerReview
890
+ class CustomerReview
891
+ @@schema_type = "CustomerReview"
892
+ @@schema_ns = "http://soap.amazon.com"
893
+ @@schema_element = [["rating", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "Rating")]], ["date", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "Date")]], ["summary", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "Summary")]], ["comment", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "Comment")]]]
894
+
895
+ def Rating
896
+ @rating
897
+ end
898
+
899
+ def Rating=(value)
900
+ @rating = value
901
+ end
902
+
903
+ def Date
904
+ @date
905
+ end
906
+
907
+ def Date=(value)
908
+ @date = value
909
+ end
910
+
911
+ def Summary
912
+ @summary
913
+ end
914
+
915
+ def Summary=(value)
916
+ @summary = value
917
+ end
918
+
919
+ def Comment
920
+ @comment
921
+ end
922
+
923
+ def Comment=(value)
924
+ @comment = value
925
+ end
926
+
927
+ def initialize(rating = nil, date = nil, summary = nil, comment = nil)
928
+ @rating = rating
929
+ @date = date
930
+ @summary = summary
931
+ @comment = comment
932
+ end
933
+ end
934
+
935
+ # {http://soap.amazon.com}SimilarProductsArray
936
+ class SimilarProductsArray < ::Array
937
+ @@schema_type = "string"
938
+ @@schema_ns = "http://www.w3.org/2001/XMLSchema"
939
+ end
940
+
941
+ # {http://soap.amazon.com}FeaturedProductsArray
942
+ class FeaturedProductsArray < ::Array
943
+ @@schema_type = "FeaturedProduct"
944
+ @@schema_ns = "http://soap.amazon.com"
945
+ end
946
+
947
+ # {http://soap.amazon.com}FeaturedProduct
948
+ class FeaturedProduct
949
+ @@schema_type = "FeaturedProduct"
950
+ @@schema_ns = "http://soap.amazon.com"
951
+ @@schema_element = [["asin", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "Asin")]], ["comment", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "Comment")]]]
952
+
953
+ def Asin
954
+ @asin
955
+ end
956
+
957
+ def Asin=(value)
958
+ @asin = value
959
+ end
960
+
961
+ def Comment
962
+ @comment
963
+ end
964
+
965
+ def Comment=(value)
966
+ @comment = value
967
+ end
968
+
969
+ def initialize(asin = nil, comment = nil)
970
+ @asin = asin
971
+ @comment = comment
972
+ end
973
+ end
974
+
975
+ # {http://soap.amazon.com}ListArray
976
+ class ListArray < ::Array
977
+ @@schema_type = "string"
978
+ @@schema_ns = "http://www.w3.org/2001/XMLSchema"
979
+ end
980
+
981
+ # {http://soap.amazon.com}VariationArray
982
+ class VariationArray < ::Array
983
+ @@schema_type = "Variation"
984
+ @@schema_ns = "http://soap.amazon.com"
985
+ end
986
+
987
+ # {http://soap.amazon.com}Variation
988
+ class Variation
989
+ @@schema_type = "Variation"
990
+ @@schema_ns = "http://soap.amazon.com"
991
+ @@schema_element = [["asin", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "Asin")]], ["clothingSize", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "ClothingSize")]], ["clothingColor", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "ClothingColor")]], ["price", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "Price")]], ["salePrice", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "SalePrice")]], ["availability", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "Availability")]], ["multiMerchant", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "MultiMerchant")]], ["merchantSku", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "MerchantSku")]]]
992
+
993
+ def Asin
994
+ @asin
995
+ end
996
+
997
+ def Asin=(value)
998
+ @asin = value
999
+ end
1000
+
1001
+ def ClothingSize
1002
+ @clothingSize
1003
+ end
1004
+
1005
+ def ClothingSize=(value)
1006
+ @clothingSize = value
1007
+ end
1008
+
1009
+ def ClothingColor
1010
+ @clothingColor
1011
+ end
1012
+
1013
+ def ClothingColor=(value)
1014
+ @clothingColor = value
1015
+ end
1016
+
1017
+ def Price
1018
+ @price
1019
+ end
1020
+
1021
+ def Price=(value)
1022
+ @price = value
1023
+ end
1024
+
1025
+ def SalePrice
1026
+ @salePrice
1027
+ end
1028
+
1029
+ def SalePrice=(value)
1030
+ @salePrice = value
1031
+ end
1032
+
1033
+ def Availability
1034
+ @availability
1035
+ end
1036
+
1037
+ def Availability=(value)
1038
+ @availability = value
1039
+ end
1040
+
1041
+ def MultiMerchant
1042
+ @multiMerchant
1043
+ end
1044
+
1045
+ def MultiMerchant=(value)
1046
+ @multiMerchant = value
1047
+ end
1048
+
1049
+ def MerchantSku
1050
+ @merchantSku
1051
+ end
1052
+
1053
+ def MerchantSku=(value)
1054
+ @merchantSku = value
1055
+ end
1056
+
1057
+ def initialize(asin = nil, clothingSize = nil, clothingColor = nil, price = nil, salePrice = nil, availability = nil, multiMerchant = nil, merchantSku = nil)
1058
+ @asin = asin
1059
+ @clothingSize = clothingSize
1060
+ @clothingColor = clothingColor
1061
+ @price = price
1062
+ @salePrice = salePrice
1063
+ @availability = availability
1064
+ @multiMerchant = multiMerchant
1065
+ @merchantSku = merchantSku
1066
+ end
1067
+ end
1068
+
1069
+ # {http://soap.amazon.com}MarketplaceSearch
1070
+ class MarketplaceSearch
1071
+ @@schema_type = "MarketplaceSearch"
1072
+ @@schema_ns = "http://soap.amazon.com"
1073
+ @@schema_element = [["marketplaceSearchDetails", ["MarketplaceSearchDetailsArray", XSD::QName.new("http://soap.amazon.com", "MarketplaceSearchDetails")]]]
1074
+
1075
+ def MarketplaceSearchDetails
1076
+ @marketplaceSearchDetails
1077
+ end
1078
+
1079
+ def MarketplaceSearchDetails=(value)
1080
+ @marketplaceSearchDetails = value
1081
+ end
1082
+
1083
+ def initialize(marketplaceSearchDetails = nil)
1084
+ @marketplaceSearchDetails = marketplaceSearchDetails
1085
+ end
1086
+ end
1087
+
1088
+ # {http://soap.amazon.com}SellerProfile
1089
+ class SellerProfile
1090
+ @@schema_type = "SellerProfile"
1091
+ @@schema_ns = "http://soap.amazon.com"
1092
+ @@schema_element = [["sellerProfileDetails", ["SellerProfileDetailsArray", XSD::QName.new("http://soap.amazon.com", "SellerProfileDetails")]]]
1093
+
1094
+ def SellerProfileDetails
1095
+ @sellerProfileDetails
1096
+ end
1097
+
1098
+ def SellerProfileDetails=(value)
1099
+ @sellerProfileDetails = value
1100
+ end
1101
+
1102
+ def initialize(sellerProfileDetails = nil)
1103
+ @sellerProfileDetails = sellerProfileDetails
1104
+ end
1105
+ end
1106
+
1107
+ # {http://soap.amazon.com}SellerSearch
1108
+ class SellerSearch
1109
+ @@schema_type = "SellerSearch"
1110
+ @@schema_ns = "http://soap.amazon.com"
1111
+ @@schema_element = [["sellerSearchDetails", ["SellerSearchDetailsArray", XSD::QName.new("http://soap.amazon.com", "SellerSearchDetails")]]]
1112
+
1113
+ def SellerSearchDetails
1114
+ @sellerSearchDetails
1115
+ end
1116
+
1117
+ def SellerSearchDetails=(value)
1118
+ @sellerSearchDetails = value
1119
+ end
1120
+
1121
+ def initialize(sellerSearchDetails = nil)
1122
+ @sellerSearchDetails = sellerSearchDetails
1123
+ end
1124
+ end
1125
+
1126
+ # {http://soap.amazon.com}MarketplaceSearchDetails
1127
+ class MarketplaceSearchDetails
1128
+ @@schema_type = "MarketplaceSearchDetails"
1129
+ @@schema_ns = "http://soap.amazon.com"
1130
+ @@schema_element = [["numberOfOpenListings", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "NumberOfOpenListings")]], ["listingProductInfo", ["ListingProductInfo", XSD::QName.new("http://soap.amazon.com", "ListingProductInfo")]]]
1131
+
1132
+ def NumberOfOpenListings
1133
+ @numberOfOpenListings
1134
+ end
1135
+
1136
+ def NumberOfOpenListings=(value)
1137
+ @numberOfOpenListings = value
1138
+ end
1139
+
1140
+ def ListingProductInfo
1141
+ @listingProductInfo
1142
+ end
1143
+
1144
+ def ListingProductInfo=(value)
1145
+ @listingProductInfo = value
1146
+ end
1147
+
1148
+ def initialize(numberOfOpenListings = nil, listingProductInfo = nil)
1149
+ @numberOfOpenListings = numberOfOpenListings
1150
+ @listingProductInfo = listingProductInfo
1151
+ end
1152
+ end
1153
+
1154
+ # {http://soap.amazon.com}MarketplaceSearchDetailsArray
1155
+ class MarketplaceSearchDetailsArray < ::Array
1156
+ @@schema_type = "MarketplaceSearchDetails"
1157
+ @@schema_ns = "http://soap.amazon.com"
1158
+ end
1159
+
1160
+ # {http://soap.amazon.com}SellerProfileDetails
1161
+ class SellerProfileDetails
1162
+ @@schema_type = "SellerProfileDetails"
1163
+ @@schema_ns = "http://soap.amazon.com"
1164
+ @@schema_element = [["sellerNickname", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "SellerNickname")]], ["overallFeedbackRating", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "OverallFeedbackRating")]], ["numberOfFeedback", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "NumberOfFeedback")]], ["numberOfCanceledBids", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "NumberOfCanceledBids")]], ["numberOfCanceledAuctions", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "NumberOfCanceledAuctions")]], ["storeId", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "StoreId")]], ["storeName", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "StoreName")]], ["sellerFeedback", ["SellerFeedback", XSD::QName.new("http://soap.amazon.com", "SellerFeedback")]]]
1165
+
1166
+ def SellerNickname
1167
+ @sellerNickname
1168
+ end
1169
+
1170
+ def SellerNickname=(value)
1171
+ @sellerNickname = value
1172
+ end
1173
+
1174
+ def OverallFeedbackRating
1175
+ @overallFeedbackRating
1176
+ end
1177
+
1178
+ def OverallFeedbackRating=(value)
1179
+ @overallFeedbackRating = value
1180
+ end
1181
+
1182
+ def NumberOfFeedback
1183
+ @numberOfFeedback
1184
+ end
1185
+
1186
+ def NumberOfFeedback=(value)
1187
+ @numberOfFeedback = value
1188
+ end
1189
+
1190
+ def NumberOfCanceledBids
1191
+ @numberOfCanceledBids
1192
+ end
1193
+
1194
+ def NumberOfCanceledBids=(value)
1195
+ @numberOfCanceledBids = value
1196
+ end
1197
+
1198
+ def NumberOfCanceledAuctions
1199
+ @numberOfCanceledAuctions
1200
+ end
1201
+
1202
+ def NumberOfCanceledAuctions=(value)
1203
+ @numberOfCanceledAuctions = value
1204
+ end
1205
+
1206
+ def StoreId
1207
+ @storeId
1208
+ end
1209
+
1210
+ def StoreId=(value)
1211
+ @storeId = value
1212
+ end
1213
+
1214
+ def StoreName
1215
+ @storeName
1216
+ end
1217
+
1218
+ def StoreName=(value)
1219
+ @storeName = value
1220
+ end
1221
+
1222
+ def SellerFeedback
1223
+ @sellerFeedback
1224
+ end
1225
+
1226
+ def SellerFeedback=(value)
1227
+ @sellerFeedback = value
1228
+ end
1229
+
1230
+ def initialize(sellerNickname = nil, overallFeedbackRating = nil, numberOfFeedback = nil, numberOfCanceledBids = nil, numberOfCanceledAuctions = nil, storeId = nil, storeName = nil, sellerFeedback = nil)
1231
+ @sellerNickname = sellerNickname
1232
+ @overallFeedbackRating = overallFeedbackRating
1233
+ @numberOfFeedback = numberOfFeedback
1234
+ @numberOfCanceledBids = numberOfCanceledBids
1235
+ @numberOfCanceledAuctions = numberOfCanceledAuctions
1236
+ @storeId = storeId
1237
+ @storeName = storeName
1238
+ @sellerFeedback = sellerFeedback
1239
+ end
1240
+ end
1241
+
1242
+ # {http://soap.amazon.com}SellerProfileDetailsArray
1243
+ class SellerProfileDetailsArray < ::Array
1244
+ @@schema_type = "SellerProfileDetails"
1245
+ @@schema_ns = "http://soap.amazon.com"
1246
+ end
1247
+
1248
+ # {http://soap.amazon.com}SellerSearchDetails
1249
+ class SellerSearchDetails
1250
+ @@schema_type = "SellerSearchDetails"
1251
+ @@schema_ns = "http://soap.amazon.com"
1252
+ @@schema_element = [["sellerNickname", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "SellerNickname")]], ["storeId", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "StoreId")]], ["storeName", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "StoreName")]], ["numberOfOpenListings", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "NumberOfOpenListings")]], ["listingProductInfo", ["ListingProductInfo", XSD::QName.new("http://soap.amazon.com", "ListingProductInfo")]]]
1253
+
1254
+ def SellerNickname
1255
+ @sellerNickname
1256
+ end
1257
+
1258
+ def SellerNickname=(value)
1259
+ @sellerNickname = value
1260
+ end
1261
+
1262
+ def StoreId
1263
+ @storeId
1264
+ end
1265
+
1266
+ def StoreId=(value)
1267
+ @storeId = value
1268
+ end
1269
+
1270
+ def StoreName
1271
+ @storeName
1272
+ end
1273
+
1274
+ def StoreName=(value)
1275
+ @storeName = value
1276
+ end
1277
+
1278
+ def NumberOfOpenListings
1279
+ @numberOfOpenListings
1280
+ end
1281
+
1282
+ def NumberOfOpenListings=(value)
1283
+ @numberOfOpenListings = value
1284
+ end
1285
+
1286
+ def ListingProductInfo
1287
+ @listingProductInfo
1288
+ end
1289
+
1290
+ def ListingProductInfo=(value)
1291
+ @listingProductInfo = value
1292
+ end
1293
+
1294
+ def initialize(sellerNickname = nil, storeId = nil, storeName = nil, numberOfOpenListings = nil, listingProductInfo = nil)
1295
+ @sellerNickname = sellerNickname
1296
+ @storeId = storeId
1297
+ @storeName = storeName
1298
+ @numberOfOpenListings = numberOfOpenListings
1299
+ @listingProductInfo = listingProductInfo
1300
+ end
1301
+ end
1302
+
1303
+ # {http://soap.amazon.com}SellerSearchDetailsArray
1304
+ class SellerSearchDetailsArray < ::Array
1305
+ @@schema_type = "SellerSearchDetails"
1306
+ @@schema_ns = "http://soap.amazon.com"
1307
+ end
1308
+
1309
+ # {http://soap.amazon.com}ListingProductInfo
1310
+ class ListingProductInfo
1311
+ @@schema_type = "ListingProductInfo"
1312
+ @@schema_ns = "http://soap.amazon.com"
1313
+ @@schema_element = [["listingProductDetails", ["ListingProductDetailsArray", XSD::QName.new("http://soap.amazon.com", "ListingProductDetails")]]]
1314
+
1315
+ def ListingProductDetails
1316
+ @listingProductDetails
1317
+ end
1318
+
1319
+ def ListingProductDetails=(value)
1320
+ @listingProductDetails = value
1321
+ end
1322
+
1323
+ def initialize(listingProductDetails = nil)
1324
+ @listingProductDetails = listingProductDetails
1325
+ end
1326
+ end
1327
+
1328
+ # {http://soap.amazon.com}ListingProductDetailsArray
1329
+ class ListingProductDetailsArray < ::Array
1330
+ @@schema_type = "ListingProductDetails"
1331
+ @@schema_ns = "http://soap.amazon.com"
1332
+ end
1333
+
1334
+ # {http://soap.amazon.com}ListingProductDetails
1335
+ class ListingProductDetails
1336
+ @@schema_type = "ListingProductDetails"
1337
+ @@schema_ns = "http://soap.amazon.com"
1338
+ @@schema_element = [["exchangeId", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "ExchangeId")]], ["listingId", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "ListingId")]], ["exchangeTitle", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "ExchangeTitle")]], ["exchangeDescription", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "ExchangeDescription")]], ["exchangePrice", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "ExchangePrice")]], ["exchangeAsin", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "ExchangeAsin")]], ["exchangeEndDate", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "ExchangeEndDate")]], ["exchangeTinyImage", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "ExchangeTinyImage")]], ["exchangeSellerId", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "ExchangeSellerId")]], ["exchangeSellerNickname", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "ExchangeSellerNickname")]], ["exchangeStartDate", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "ExchangeStartDate")]], ["exchangeStatus", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "ExchangeStatus")]], ["exchangeQuantity", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "ExchangeQuantity")]], ["exchangeQuantityAllocated", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "ExchangeQuantityAllocated")]], ["exchangeFeaturedCategory", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "ExchangeFeaturedCategory")]], ["exchangeCondition", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "ExchangeCondition")]], ["exchangeConditionType", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "ExchangeConditionType")]], ["exchangeAvailability", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "ExchangeAvailability")]], ["exchangeOfferingType", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "ExchangeOfferingType")]], ["exchangeSellerState", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "ExchangeSellerState")]], ["exchangeSellerCountry", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "ExchangeSellerCountry")]], ["exchangeSellerRating", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "ExchangeSellerRating")]]]
1339
+
1340
+ def ExchangeId
1341
+ @exchangeId
1342
+ end
1343
+
1344
+ def ExchangeId=(value)
1345
+ @exchangeId = value
1346
+ end
1347
+
1348
+ def ListingId
1349
+ @listingId
1350
+ end
1351
+
1352
+ def ListingId=(value)
1353
+ @listingId = value
1354
+ end
1355
+
1356
+ def ExchangeTitle
1357
+ @exchangeTitle
1358
+ end
1359
+
1360
+ def ExchangeTitle=(value)
1361
+ @exchangeTitle = value
1362
+ end
1363
+
1364
+ def ExchangeDescription
1365
+ @exchangeDescription
1366
+ end
1367
+
1368
+ def ExchangeDescription=(value)
1369
+ @exchangeDescription = value
1370
+ end
1371
+
1372
+ def ExchangePrice
1373
+ @exchangePrice
1374
+ end
1375
+
1376
+ def ExchangePrice=(value)
1377
+ @exchangePrice = value
1378
+ end
1379
+
1380
+ def ExchangeAsin
1381
+ @exchangeAsin
1382
+ end
1383
+
1384
+ def ExchangeAsin=(value)
1385
+ @exchangeAsin = value
1386
+ end
1387
+
1388
+ def ExchangeEndDate
1389
+ @exchangeEndDate
1390
+ end
1391
+
1392
+ def ExchangeEndDate=(value)
1393
+ @exchangeEndDate = value
1394
+ end
1395
+
1396
+ def ExchangeTinyImage
1397
+ @exchangeTinyImage
1398
+ end
1399
+
1400
+ def ExchangeTinyImage=(value)
1401
+ @exchangeTinyImage = value
1402
+ end
1403
+
1404
+ def ExchangeSellerId
1405
+ @exchangeSellerId
1406
+ end
1407
+
1408
+ def ExchangeSellerId=(value)
1409
+ @exchangeSellerId = value
1410
+ end
1411
+
1412
+ def ExchangeSellerNickname
1413
+ @exchangeSellerNickname
1414
+ end
1415
+
1416
+ def ExchangeSellerNickname=(value)
1417
+ @exchangeSellerNickname = value
1418
+ end
1419
+
1420
+ def ExchangeStartDate
1421
+ @exchangeStartDate
1422
+ end
1423
+
1424
+ def ExchangeStartDate=(value)
1425
+ @exchangeStartDate = value
1426
+ end
1427
+
1428
+ def ExchangeStatus
1429
+ @exchangeStatus
1430
+ end
1431
+
1432
+ def ExchangeStatus=(value)
1433
+ @exchangeStatus = value
1434
+ end
1435
+
1436
+ def ExchangeQuantity
1437
+ @exchangeQuantity
1438
+ end
1439
+
1440
+ def ExchangeQuantity=(value)
1441
+ @exchangeQuantity = value
1442
+ end
1443
+
1444
+ def ExchangeQuantityAllocated
1445
+ @exchangeQuantityAllocated
1446
+ end
1447
+
1448
+ def ExchangeQuantityAllocated=(value)
1449
+ @exchangeQuantityAllocated = value
1450
+ end
1451
+
1452
+ def ExchangeFeaturedCategory
1453
+ @exchangeFeaturedCategory
1454
+ end
1455
+
1456
+ def ExchangeFeaturedCategory=(value)
1457
+ @exchangeFeaturedCategory = value
1458
+ end
1459
+
1460
+ def ExchangeCondition
1461
+ @exchangeCondition
1462
+ end
1463
+
1464
+ def ExchangeCondition=(value)
1465
+ @exchangeCondition = value
1466
+ end
1467
+
1468
+ def ExchangeConditionType
1469
+ @exchangeConditionType
1470
+ end
1471
+
1472
+ def ExchangeConditionType=(value)
1473
+ @exchangeConditionType = value
1474
+ end
1475
+
1476
+ def ExchangeAvailability
1477
+ @exchangeAvailability
1478
+ end
1479
+
1480
+ def ExchangeAvailability=(value)
1481
+ @exchangeAvailability = value
1482
+ end
1483
+
1484
+ def ExchangeOfferingType
1485
+ @exchangeOfferingType
1486
+ end
1487
+
1488
+ def ExchangeOfferingType=(value)
1489
+ @exchangeOfferingType = value
1490
+ end
1491
+
1492
+ def ExchangeSellerState
1493
+ @exchangeSellerState
1494
+ end
1495
+
1496
+ def ExchangeSellerState=(value)
1497
+ @exchangeSellerState = value
1498
+ end
1499
+
1500
+ def ExchangeSellerCountry
1501
+ @exchangeSellerCountry
1502
+ end
1503
+
1504
+ def ExchangeSellerCountry=(value)
1505
+ @exchangeSellerCountry = value
1506
+ end
1507
+
1508
+ def ExchangeSellerRating
1509
+ @exchangeSellerRating
1510
+ end
1511
+
1512
+ def ExchangeSellerRating=(value)
1513
+ @exchangeSellerRating = value
1514
+ end
1515
+
1516
+ def initialize(exchangeId = nil, listingId = nil, exchangeTitle = nil, exchangeDescription = nil, exchangePrice = nil, exchangeAsin = nil, exchangeEndDate = nil, exchangeTinyImage = nil, exchangeSellerId = nil, exchangeSellerNickname = nil, exchangeStartDate = nil, exchangeStatus = nil, exchangeQuantity = nil, exchangeQuantityAllocated = nil, exchangeFeaturedCategory = nil, exchangeCondition = nil, exchangeConditionType = nil, exchangeAvailability = nil, exchangeOfferingType = nil, exchangeSellerState = nil, exchangeSellerCountry = nil, exchangeSellerRating = nil)
1517
+ @exchangeId = exchangeId
1518
+ @listingId = listingId
1519
+ @exchangeTitle = exchangeTitle
1520
+ @exchangeDescription = exchangeDescription
1521
+ @exchangePrice = exchangePrice
1522
+ @exchangeAsin = exchangeAsin
1523
+ @exchangeEndDate = exchangeEndDate
1524
+ @exchangeTinyImage = exchangeTinyImage
1525
+ @exchangeSellerId = exchangeSellerId
1526
+ @exchangeSellerNickname = exchangeSellerNickname
1527
+ @exchangeStartDate = exchangeStartDate
1528
+ @exchangeStatus = exchangeStatus
1529
+ @exchangeQuantity = exchangeQuantity
1530
+ @exchangeQuantityAllocated = exchangeQuantityAllocated
1531
+ @exchangeFeaturedCategory = exchangeFeaturedCategory
1532
+ @exchangeCondition = exchangeCondition
1533
+ @exchangeConditionType = exchangeConditionType
1534
+ @exchangeAvailability = exchangeAvailability
1535
+ @exchangeOfferingType = exchangeOfferingType
1536
+ @exchangeSellerState = exchangeSellerState
1537
+ @exchangeSellerCountry = exchangeSellerCountry
1538
+ @exchangeSellerRating = exchangeSellerRating
1539
+ end
1540
+ end
1541
+
1542
+ # {http://soap.amazon.com}SellerFeedback
1543
+ class SellerFeedback
1544
+ @@schema_type = "SellerFeedback"
1545
+ @@schema_ns = "http://soap.amazon.com"
1546
+ @@schema_element = [["feedback", ["FeedbackArray", XSD::QName.new("http://soap.amazon.com", "Feedback")]]]
1547
+
1548
+ def Feedback
1549
+ @feedback
1550
+ end
1551
+
1552
+ def Feedback=(value)
1553
+ @feedback = value
1554
+ end
1555
+
1556
+ def initialize(feedback = nil)
1557
+ @feedback = feedback
1558
+ end
1559
+ end
1560
+
1561
+ # {http://soap.amazon.com}FeedbackArray
1562
+ class FeedbackArray < ::Array
1563
+ @@schema_type = "Feedback"
1564
+ @@schema_ns = "http://soap.amazon.com"
1565
+ end
1566
+
1567
+ # {http://soap.amazon.com}Feedback
1568
+ class Feedback
1569
+ @@schema_type = "Feedback"
1570
+ @@schema_ns = "http://soap.amazon.com"
1571
+ @@schema_element = [["feedbackRating", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "FeedbackRating")]], ["feedbackComments", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "FeedbackComments")]], ["feedbackDate", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "FeedbackDate")]], ["feedbackRater", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "FeedbackRater")]]]
1572
+
1573
+ def FeedbackRating
1574
+ @feedbackRating
1575
+ end
1576
+
1577
+ def FeedbackRating=(value)
1578
+ @feedbackRating = value
1579
+ end
1580
+
1581
+ def FeedbackComments
1582
+ @feedbackComments
1583
+ end
1584
+
1585
+ def FeedbackComments=(value)
1586
+ @feedbackComments = value
1587
+ end
1588
+
1589
+ def FeedbackDate
1590
+ @feedbackDate
1591
+ end
1592
+
1593
+ def FeedbackDate=(value)
1594
+ @feedbackDate = value
1595
+ end
1596
+
1597
+ def FeedbackRater
1598
+ @feedbackRater
1599
+ end
1600
+
1601
+ def FeedbackRater=(value)
1602
+ @feedbackRater = value
1603
+ end
1604
+
1605
+ def initialize(feedbackRating = nil, feedbackComments = nil, feedbackDate = nil, feedbackRater = nil)
1606
+ @feedbackRating = feedbackRating
1607
+ @feedbackComments = feedbackComments
1608
+ @feedbackDate = feedbackDate
1609
+ @feedbackRater = feedbackRater
1610
+ end
1611
+ end
1612
+
1613
+ # {http://soap.amazon.com}ThirdPartyProductInfo
1614
+ class ThirdPartyProductInfo
1615
+ @@schema_type = "ThirdPartyProductInfo"
1616
+ @@schema_ns = "http://soap.amazon.com"
1617
+ @@schema_element = [["thirdPartyProductDetails", ["ThirdPartyProductDetailsArray", XSD::QName.new("http://soap.amazon.com", "ThirdPartyProductDetails")]]]
1618
+
1619
+ def ThirdPartyProductDetails
1620
+ @thirdPartyProductDetails
1621
+ end
1622
+
1623
+ def ThirdPartyProductDetails=(value)
1624
+ @thirdPartyProductDetails = value
1625
+ end
1626
+
1627
+ def initialize(thirdPartyProductDetails = nil)
1628
+ @thirdPartyProductDetails = thirdPartyProductDetails
1629
+ end
1630
+ end
1631
+
1632
+ # {http://soap.amazon.com}ThirdPartyProductDetailsArray
1633
+ class ThirdPartyProductDetailsArray < ::Array
1634
+ @@schema_type = "ThirdPartyProductDetails"
1635
+ @@schema_ns = "http://soap.amazon.com"
1636
+ end
1637
+
1638
+ # {http://soap.amazon.com}ThirdPartyProductDetails
1639
+ class ThirdPartyProductDetails
1640
+ @@schema_type = "ThirdPartyProductDetails"
1641
+ @@schema_ns = "http://soap.amazon.com"
1642
+ @@schema_element = [["offeringType", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "OfferingType")]], ["sellerId", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "SellerId")]], ["sellerNickname", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "SellerNickname")]], ["exchangeId", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "ExchangeId")]], ["offeringPrice", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "OfferingPrice")]], ["condition", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "Condition")]], ["conditionType", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "ConditionType")]], ["exchangeAvailability", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "ExchangeAvailability")]], ["sellerCountry", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "SellerCountry")]], ["sellerState", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "SellerState")]], ["shipComments", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "ShipComments")]], ["sellerRating", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "SellerRating")]]]
1643
+
1644
+ def OfferingType
1645
+ @offeringType
1646
+ end
1647
+
1648
+ def OfferingType=(value)
1649
+ @offeringType = value
1650
+ end
1651
+
1652
+ def SellerId
1653
+ @sellerId
1654
+ end
1655
+
1656
+ def SellerId=(value)
1657
+ @sellerId = value
1658
+ end
1659
+
1660
+ def SellerNickname
1661
+ @sellerNickname
1662
+ end
1663
+
1664
+ def SellerNickname=(value)
1665
+ @sellerNickname = value
1666
+ end
1667
+
1668
+ def ExchangeId
1669
+ @exchangeId
1670
+ end
1671
+
1672
+ def ExchangeId=(value)
1673
+ @exchangeId = value
1674
+ end
1675
+
1676
+ def OfferingPrice
1677
+ @offeringPrice
1678
+ end
1679
+
1680
+ def OfferingPrice=(value)
1681
+ @offeringPrice = value
1682
+ end
1683
+
1684
+ def Condition
1685
+ @condition
1686
+ end
1687
+
1688
+ def Condition=(value)
1689
+ @condition = value
1690
+ end
1691
+
1692
+ def ConditionType
1693
+ @conditionType
1694
+ end
1695
+
1696
+ def ConditionType=(value)
1697
+ @conditionType = value
1698
+ end
1699
+
1700
+ def ExchangeAvailability
1701
+ @exchangeAvailability
1702
+ end
1703
+
1704
+ def ExchangeAvailability=(value)
1705
+ @exchangeAvailability = value
1706
+ end
1707
+
1708
+ def SellerCountry
1709
+ @sellerCountry
1710
+ end
1711
+
1712
+ def SellerCountry=(value)
1713
+ @sellerCountry = value
1714
+ end
1715
+
1716
+ def SellerState
1717
+ @sellerState
1718
+ end
1719
+
1720
+ def SellerState=(value)
1721
+ @sellerState = value
1722
+ end
1723
+
1724
+ def ShipComments
1725
+ @shipComments
1726
+ end
1727
+
1728
+ def ShipComments=(value)
1729
+ @shipComments = value
1730
+ end
1731
+
1732
+ def SellerRating
1733
+ @sellerRating
1734
+ end
1735
+
1736
+ def SellerRating=(value)
1737
+ @sellerRating = value
1738
+ end
1739
+
1740
+ def initialize(offeringType = nil, sellerId = nil, sellerNickname = nil, exchangeId = nil, offeringPrice = nil, condition = nil, conditionType = nil, exchangeAvailability = nil, sellerCountry = nil, sellerState = nil, shipComments = nil, sellerRating = nil)
1741
+ @offeringType = offeringType
1742
+ @sellerId = sellerId
1743
+ @sellerNickname = sellerNickname
1744
+ @exchangeId = exchangeId
1745
+ @offeringPrice = offeringPrice
1746
+ @condition = condition
1747
+ @conditionType = conditionType
1748
+ @exchangeAvailability = exchangeAvailability
1749
+ @sellerCountry = sellerCountry
1750
+ @sellerState = sellerState
1751
+ @shipComments = shipComments
1752
+ @sellerRating = sellerRating
1753
+ end
1754
+ end
1755
+
1756
+ # {http://soap.amazon.com}KeywordRequest
1757
+ class KeywordRequest
1758
+ @@schema_type = "KeywordRequest"
1759
+ @@schema_ns = "http://soap.amazon.com"
1760
+ @@schema_element = [["keyword", "SOAP::SOAPString"], ["page", "SOAP::SOAPString"], ["mode", "SOAP::SOAPString"], ["tag", "SOAP::SOAPString"], ["type", "SOAP::SOAPString"], ["devtag", "SOAP::SOAPString"], ["sort", "SOAP::SOAPString"], ["locale", "SOAP::SOAPString"], ["price", "SOAP::SOAPString"]]
1761
+
1762
+ attr_accessor :keyword
1763
+ attr_accessor :page
1764
+ attr_accessor :mode
1765
+ attr_accessor :tag
1766
+ attr_accessor :type
1767
+ attr_accessor :devtag
1768
+ attr_accessor :sort
1769
+ attr_accessor :locale
1770
+ attr_accessor :price
1771
+
1772
+ def initialize(keyword = nil, page = nil, mode = nil, tag = nil, type = nil, devtag = nil, sort = nil, locale = nil, price = nil)
1773
+ @keyword = keyword
1774
+ @page = page
1775
+ @mode = mode
1776
+ @tag = tag
1777
+ @type = type
1778
+ @devtag = devtag
1779
+ @sort = sort
1780
+ @locale = locale
1781
+ @price = price
1782
+ end
1783
+ end
1784
+
1785
+ # {http://soap.amazon.com}TextStreamRequest
1786
+ class TextStreamRequest
1787
+ @@schema_type = "TextStreamRequest"
1788
+ @@schema_ns = "http://soap.amazon.com"
1789
+ @@schema_element = [["textStream", "SOAP::SOAPString"], ["page", "SOAP::SOAPString"], ["mode", "SOAP::SOAPString"], ["tag", "SOAP::SOAPString"], ["type", "SOAP::SOAPString"], ["devtag", "SOAP::SOAPString"], ["sort", "SOAP::SOAPString"], ["locale", "SOAP::SOAPString"], ["price", "SOAP::SOAPString"]]
1790
+
1791
+ attr_accessor :textStream
1792
+ attr_accessor :page
1793
+ attr_accessor :mode
1794
+ attr_accessor :tag
1795
+ attr_accessor :type
1796
+ attr_accessor :devtag
1797
+ attr_accessor :sort
1798
+ attr_accessor :locale
1799
+ attr_accessor :price
1800
+
1801
+ def initialize(textStream = nil, page = nil, mode = nil, tag = nil, type = nil, devtag = nil, sort = nil, locale = nil, price = nil)
1802
+ @textStream = textStream
1803
+ @page = page
1804
+ @mode = mode
1805
+ @tag = tag
1806
+ @type = type
1807
+ @devtag = devtag
1808
+ @sort = sort
1809
+ @locale = locale
1810
+ @price = price
1811
+ end
1812
+ end
1813
+
1814
+ # {http://soap.amazon.com}PowerRequest
1815
+ class PowerRequest
1816
+ @@schema_type = "PowerRequest"
1817
+ @@schema_ns = "http://soap.amazon.com"
1818
+ @@schema_element = [["power", "SOAP::SOAPString"], ["page", "SOAP::SOAPString"], ["mode", "SOAP::SOAPString"], ["tag", "SOAP::SOAPString"], ["type", "SOAP::SOAPString"], ["devtag", "SOAP::SOAPString"], ["sort", "SOAP::SOAPString"], ["locale", "SOAP::SOAPString"]]
1819
+
1820
+ attr_accessor :power
1821
+ attr_accessor :page
1822
+ attr_accessor :mode
1823
+ attr_accessor :tag
1824
+ attr_accessor :type
1825
+ attr_accessor :devtag
1826
+ attr_accessor :sort
1827
+ attr_accessor :locale
1828
+
1829
+ def initialize(power = nil, page = nil, mode = nil, tag = nil, type = nil, devtag = nil, sort = nil, locale = nil)
1830
+ @power = power
1831
+ @page = page
1832
+ @mode = mode
1833
+ @tag = tag
1834
+ @type = type
1835
+ @devtag = devtag
1836
+ @sort = sort
1837
+ @locale = locale
1838
+ end
1839
+ end
1840
+
1841
+ # {http://soap.amazon.com}BrowseNodeRequest
1842
+ class BrowseNodeRequest
1843
+ @@schema_type = "BrowseNodeRequest"
1844
+ @@schema_ns = "http://soap.amazon.com"
1845
+ @@schema_element = [["browse_node", "SOAP::SOAPString"], ["page", "SOAP::SOAPString"], ["mode", "SOAP::SOAPString"], ["tag", "SOAP::SOAPString"], ["type", "SOAP::SOAPString"], ["devtag", "SOAP::SOAPString"], ["sort", "SOAP::SOAPString"], ["locale", "SOAP::SOAPString"], ["keywords", "SOAP::SOAPString"], ["price", "SOAP::SOAPString"]]
1846
+
1847
+ attr_accessor :browse_node
1848
+ attr_accessor :page
1849
+ attr_accessor :mode
1850
+ attr_accessor :tag
1851
+ attr_accessor :type
1852
+ attr_accessor :devtag
1853
+ attr_accessor :sort
1854
+ attr_accessor :locale
1855
+ attr_accessor :keywords
1856
+ attr_accessor :price
1857
+
1858
+ def initialize(browse_node = nil, page = nil, mode = nil, tag = nil, type = nil, devtag = nil, sort = nil, locale = nil, keywords = nil, price = nil)
1859
+ @browse_node = browse_node
1860
+ @page = page
1861
+ @mode = mode
1862
+ @tag = tag
1863
+ @type = type
1864
+ @devtag = devtag
1865
+ @sort = sort
1866
+ @locale = locale
1867
+ @keywords = keywords
1868
+ @price = price
1869
+ end
1870
+ end
1871
+
1872
+ # {http://soap.amazon.com}AsinRequest
1873
+ class AsinRequest
1874
+ @@schema_type = "AsinRequest"
1875
+ @@schema_ns = "http://soap.amazon.com"
1876
+ @@schema_element = [["asin", "SOAP::SOAPString"], ["tag", "SOAP::SOAPString"], ["type", "SOAP::SOAPString"], ["devtag", "SOAP::SOAPString"], ["offer", "SOAP::SOAPString"], ["offerpage", "SOAP::SOAPString"], ["locale", "SOAP::SOAPString"], ["mode", "SOAP::SOAPString"]]
1877
+
1878
+ attr_accessor :asin
1879
+ attr_accessor :tag
1880
+ attr_accessor :type
1881
+ attr_accessor :devtag
1882
+ attr_accessor :offer
1883
+ attr_accessor :offerpage
1884
+ attr_accessor :locale
1885
+ attr_accessor :mode
1886
+
1887
+ def initialize(asin = nil, tag = nil, type = nil, devtag = nil, offer = nil, offerpage = nil, locale = nil, mode = nil)
1888
+ @asin = asin
1889
+ @tag = tag
1890
+ @type = type
1891
+ @devtag = devtag
1892
+ @offer = offer
1893
+ @offerpage = offerpage
1894
+ @locale = locale
1895
+ @mode = mode
1896
+ end
1897
+ end
1898
+
1899
+ # {http://soap.amazon.com}BlendedRequest
1900
+ class BlendedRequest
1901
+ @@schema_type = "BlendedRequest"
1902
+ @@schema_ns = "http://soap.amazon.com"
1903
+ @@schema_element = [["blended", "SOAP::SOAPString"], ["tag", "SOAP::SOAPString"], ["type", "SOAP::SOAPString"], ["devtag", "SOAP::SOAPString"], ["locale", "SOAP::SOAPString"]]
1904
+
1905
+ attr_accessor :blended
1906
+ attr_accessor :tag
1907
+ attr_accessor :type
1908
+ attr_accessor :devtag
1909
+ attr_accessor :locale
1910
+
1911
+ def initialize(blended = nil, tag = nil, type = nil, devtag = nil, locale = nil)
1912
+ @blended = blended
1913
+ @tag = tag
1914
+ @type = type
1915
+ @devtag = devtag
1916
+ @locale = locale
1917
+ end
1918
+ end
1919
+
1920
+ # {http://soap.amazon.com}UpcRequest
1921
+ class UpcRequest
1922
+ @@schema_type = "UpcRequest"
1923
+ @@schema_ns = "http://soap.amazon.com"
1924
+ @@schema_element = [["upc", "SOAP::SOAPString"], ["mode", "SOAP::SOAPString"], ["tag", "SOAP::SOAPString"], ["type", "SOAP::SOAPString"], ["devtag", "SOAP::SOAPString"], ["sort", "SOAP::SOAPString"], ["locale", "SOAP::SOAPString"]]
1925
+
1926
+ attr_accessor :upc
1927
+ attr_accessor :mode
1928
+ attr_accessor :tag
1929
+ attr_accessor :type
1930
+ attr_accessor :devtag
1931
+ attr_accessor :sort
1932
+ attr_accessor :locale
1933
+
1934
+ def initialize(upc = nil, mode = nil, tag = nil, type = nil, devtag = nil, sort = nil, locale = nil)
1935
+ @upc = upc
1936
+ @mode = mode
1937
+ @tag = tag
1938
+ @type = type
1939
+ @devtag = devtag
1940
+ @sort = sort
1941
+ @locale = locale
1942
+ end
1943
+ end
1944
+
1945
+ # {http://soap.amazon.com}SkuRequest
1946
+ class SkuRequest
1947
+ @@schema_type = "SkuRequest"
1948
+ @@schema_ns = "http://soap.amazon.com"
1949
+ @@schema_element = [["sku", "SOAP::SOAPString"], ["mode", "SOAP::SOAPString"], ["tag", "SOAP::SOAPString"], ["type", "SOAP::SOAPString"], ["devtag", "SOAP::SOAPString"], ["merchant_id", "SOAP::SOAPString"], ["keywords", "SOAP::SOAPString"], ["sort", "SOAP::SOAPString"], ["locale", "SOAP::SOAPString"]]
1950
+
1951
+ attr_accessor :sku
1952
+ attr_accessor :mode
1953
+ attr_accessor :tag
1954
+ attr_accessor :type
1955
+ attr_accessor :devtag
1956
+ attr_accessor :merchant_id
1957
+ attr_accessor :keywords
1958
+ attr_accessor :sort
1959
+ attr_accessor :locale
1960
+
1961
+ def initialize(sku = nil, mode = nil, tag = nil, type = nil, devtag = nil, merchant_id = nil, keywords = nil, sort = nil, locale = nil)
1962
+ @sku = sku
1963
+ @mode = mode
1964
+ @tag = tag
1965
+ @type = type
1966
+ @devtag = devtag
1967
+ @merchant_id = merchant_id
1968
+ @keywords = keywords
1969
+ @sort = sort
1970
+ @locale = locale
1971
+ end
1972
+ end
1973
+
1974
+ # {http://soap.amazon.com}ArtistRequest
1975
+ class ArtistRequest
1976
+ @@schema_type = "ArtistRequest"
1977
+ @@schema_ns = "http://soap.amazon.com"
1978
+ @@schema_element = [["artist", "SOAP::SOAPString"], ["page", "SOAP::SOAPString"], ["mode", "SOAP::SOAPString"], ["tag", "SOAP::SOAPString"], ["type", "SOAP::SOAPString"], ["devtag", "SOAP::SOAPString"], ["sort", "SOAP::SOAPString"], ["locale", "SOAP::SOAPString"], ["keywords", "SOAP::SOAPString"], ["price", "SOAP::SOAPString"]]
1979
+
1980
+ attr_accessor :artist
1981
+ attr_accessor :page
1982
+ attr_accessor :mode
1983
+ attr_accessor :tag
1984
+ attr_accessor :type
1985
+ attr_accessor :devtag
1986
+ attr_accessor :sort
1987
+ attr_accessor :locale
1988
+ attr_accessor :keywords
1989
+ attr_accessor :price
1990
+
1991
+ def initialize(artist = nil, page = nil, mode = nil, tag = nil, type = nil, devtag = nil, sort = nil, locale = nil, keywords = nil, price = nil)
1992
+ @artist = artist
1993
+ @page = page
1994
+ @mode = mode
1995
+ @tag = tag
1996
+ @type = type
1997
+ @devtag = devtag
1998
+ @sort = sort
1999
+ @locale = locale
2000
+ @keywords = keywords
2001
+ @price = price
2002
+ end
2003
+ end
2004
+
2005
+ # {http://soap.amazon.com}AuthorRequest
2006
+ class AuthorRequest
2007
+ @@schema_type = "AuthorRequest"
2008
+ @@schema_ns = "http://soap.amazon.com"
2009
+ @@schema_element = [["author", "SOAP::SOAPString"], ["page", "SOAP::SOAPString"], ["mode", "SOAP::SOAPString"], ["tag", "SOAP::SOAPString"], ["type", "SOAP::SOAPString"], ["devtag", "SOAP::SOAPString"], ["sort", "SOAP::SOAPString"], ["locale", "SOAP::SOAPString"], ["keywords", "SOAP::SOAPString"], ["price", "SOAP::SOAPString"]]
2010
+
2011
+ attr_accessor :author
2012
+ attr_accessor :page
2013
+ attr_accessor :mode
2014
+ attr_accessor :tag
2015
+ attr_accessor :type
2016
+ attr_accessor :devtag
2017
+ attr_accessor :sort
2018
+ attr_accessor :locale
2019
+ attr_accessor :keywords
2020
+ attr_accessor :price
2021
+
2022
+ def initialize(author = nil, page = nil, mode = nil, tag = nil, type = nil, devtag = nil, sort = nil, locale = nil, keywords = nil, price = nil)
2023
+ @author = author
2024
+ @page = page
2025
+ @mode = mode
2026
+ @tag = tag
2027
+ @type = type
2028
+ @devtag = devtag
2029
+ @sort = sort
2030
+ @locale = locale
2031
+ @keywords = keywords
2032
+ @price = price
2033
+ end
2034
+ end
2035
+
2036
+ # {http://soap.amazon.com}ActorRequest
2037
+ class ActorRequest
2038
+ @@schema_type = "ActorRequest"
2039
+ @@schema_ns = "http://soap.amazon.com"
2040
+ @@schema_element = [["actor", "SOAP::SOAPString"], ["page", "SOAP::SOAPString"], ["mode", "SOAP::SOAPString"], ["tag", "SOAP::SOAPString"], ["type", "SOAP::SOAPString"], ["devtag", "SOAP::SOAPString"], ["sort", "SOAP::SOAPString"], ["locale", "SOAP::SOAPString"], ["keywords", "SOAP::SOAPString"], ["price", "SOAP::SOAPString"]]
2041
+
2042
+ attr_accessor :actor
2043
+ attr_accessor :page
2044
+ attr_accessor :mode
2045
+ attr_accessor :tag
2046
+ attr_accessor :type
2047
+ attr_accessor :devtag
2048
+ attr_accessor :sort
2049
+ attr_accessor :locale
2050
+ attr_accessor :keywords
2051
+ attr_accessor :price
2052
+
2053
+ def initialize(actor = nil, page = nil, mode = nil, tag = nil, type = nil, devtag = nil, sort = nil, locale = nil, keywords = nil, price = nil)
2054
+ @actor = actor
2055
+ @page = page
2056
+ @mode = mode
2057
+ @tag = tag
2058
+ @type = type
2059
+ @devtag = devtag
2060
+ @sort = sort
2061
+ @locale = locale
2062
+ @keywords = keywords
2063
+ @price = price
2064
+ end
2065
+ end
2066
+
2067
+ # {http://soap.amazon.com}DirectorRequest
2068
+ class DirectorRequest
2069
+ @@schema_type = "DirectorRequest"
2070
+ @@schema_ns = "http://soap.amazon.com"
2071
+ @@schema_element = [["director", "SOAP::SOAPString"], ["page", "SOAP::SOAPString"], ["mode", "SOAP::SOAPString"], ["tag", "SOAP::SOAPString"], ["type", "SOAP::SOAPString"], ["devtag", "SOAP::SOAPString"], ["sort", "SOAP::SOAPString"], ["locale", "SOAP::SOAPString"], ["keywords", "SOAP::SOAPString"], ["price", "SOAP::SOAPString"]]
2072
+
2073
+ attr_accessor :director
2074
+ attr_accessor :page
2075
+ attr_accessor :mode
2076
+ attr_accessor :tag
2077
+ attr_accessor :type
2078
+ attr_accessor :devtag
2079
+ attr_accessor :sort
2080
+ attr_accessor :locale
2081
+ attr_accessor :keywords
2082
+ attr_accessor :price
2083
+
2084
+ def initialize(director = nil, page = nil, mode = nil, tag = nil, type = nil, devtag = nil, sort = nil, locale = nil, keywords = nil, price = nil)
2085
+ @director = director
2086
+ @page = page
2087
+ @mode = mode
2088
+ @tag = tag
2089
+ @type = type
2090
+ @devtag = devtag
2091
+ @sort = sort
2092
+ @locale = locale
2093
+ @keywords = keywords
2094
+ @price = price
2095
+ end
2096
+ end
2097
+
2098
+ # {http://soap.amazon.com}ExchangeRequest
2099
+ class ExchangeRequest
2100
+ @@schema_type = "ExchangeRequest"
2101
+ @@schema_ns = "http://soap.amazon.com"
2102
+ @@schema_element = [["exchange_id", "SOAP::SOAPString"], ["tag", "SOAP::SOAPString"], ["type", "SOAP::SOAPString"], ["devtag", "SOAP::SOAPString"], ["locale", "SOAP::SOAPString"]]
2103
+
2104
+ attr_accessor :exchange_id
2105
+ attr_accessor :tag
2106
+ attr_accessor :type
2107
+ attr_accessor :devtag
2108
+ attr_accessor :locale
2109
+
2110
+ def initialize(exchange_id = nil, tag = nil, type = nil, devtag = nil, locale = nil)
2111
+ @exchange_id = exchange_id
2112
+ @tag = tag
2113
+ @type = type
2114
+ @devtag = devtag
2115
+ @locale = locale
2116
+ end
2117
+ end
2118
+
2119
+ # {http://soap.amazon.com}ManufacturerRequest
2120
+ class ManufacturerRequest
2121
+ @@schema_type = "ManufacturerRequest"
2122
+ @@schema_ns = "http://soap.amazon.com"
2123
+ @@schema_element = [["manufacturer", "SOAP::SOAPString"], ["page", "SOAP::SOAPString"], ["mode", "SOAP::SOAPString"], ["tag", "SOAP::SOAPString"], ["type", "SOAP::SOAPString"], ["devtag", "SOAP::SOAPString"], ["sort", "SOAP::SOAPString"], ["locale", "SOAP::SOAPString"], ["keywords", "SOAP::SOAPString"], ["price", "SOAP::SOAPString"]]
2124
+
2125
+ attr_accessor :manufacturer
2126
+ attr_accessor :page
2127
+ attr_accessor :mode
2128
+ attr_accessor :tag
2129
+ attr_accessor :type
2130
+ attr_accessor :devtag
2131
+ attr_accessor :sort
2132
+ attr_accessor :locale
2133
+ attr_accessor :keywords
2134
+ attr_accessor :price
2135
+
2136
+ def initialize(manufacturer = nil, page = nil, mode = nil, tag = nil, type = nil, devtag = nil, sort = nil, locale = nil, keywords = nil, price = nil)
2137
+ @manufacturer = manufacturer
2138
+ @page = page
2139
+ @mode = mode
2140
+ @tag = tag
2141
+ @type = type
2142
+ @devtag = devtag
2143
+ @sort = sort
2144
+ @locale = locale
2145
+ @keywords = keywords
2146
+ @price = price
2147
+ end
2148
+ end
2149
+
2150
+ # {http://soap.amazon.com}ListManiaRequest
2151
+ class ListManiaRequest
2152
+ @@schema_type = "ListManiaRequest"
2153
+ @@schema_ns = "http://soap.amazon.com"
2154
+ @@schema_element = [["lm_id", "SOAP::SOAPString"], ["page", "SOAP::SOAPString"], ["tag", "SOAP::SOAPString"], ["type", "SOAP::SOAPString"], ["devtag", "SOAP::SOAPString"], ["locale", "SOAP::SOAPString"]]
2155
+
2156
+ attr_accessor :lm_id
2157
+ attr_accessor :page
2158
+ attr_accessor :tag
2159
+ attr_accessor :type
2160
+ attr_accessor :devtag
2161
+ attr_accessor :locale
2162
+
2163
+ def initialize(lm_id = nil, page = nil, tag = nil, type = nil, devtag = nil, locale = nil)
2164
+ @lm_id = lm_id
2165
+ @page = page
2166
+ @tag = tag
2167
+ @type = type
2168
+ @devtag = devtag
2169
+ @locale = locale
2170
+ end
2171
+ end
2172
+
2173
+ # {http://soap.amazon.com}WishlistRequest
2174
+ class WishlistRequest
2175
+ @@schema_type = "WishlistRequest"
2176
+ @@schema_ns = "http://soap.amazon.com"
2177
+ @@schema_element = [["wishlist_id", "SOAP::SOAPString"], ["page", "SOAP::SOAPString"], ["tag", "SOAP::SOAPString"], ["type", "SOAP::SOAPString"], ["devtag", "SOAP::SOAPString"], ["locale", "SOAP::SOAPString"]]
2178
+
2179
+ attr_accessor :wishlist_id
2180
+ attr_accessor :page
2181
+ attr_accessor :tag
2182
+ attr_accessor :type
2183
+ attr_accessor :devtag
2184
+ attr_accessor :locale
2185
+
2186
+ def initialize(wishlist_id = nil, page = nil, tag = nil, type = nil, devtag = nil, locale = nil)
2187
+ @wishlist_id = wishlist_id
2188
+ @page = page
2189
+ @tag = tag
2190
+ @type = type
2191
+ @devtag = devtag
2192
+ @locale = locale
2193
+ end
2194
+ end
2195
+
2196
+ # {http://soap.amazon.com}MarketplaceRequest
2197
+ class MarketplaceRequest
2198
+ @@schema_type = "MarketplaceRequest"
2199
+ @@schema_ns = "http://soap.amazon.com"
2200
+ @@schema_element = [["marketplace_search", "SOAP::SOAPString"], ["tag", "SOAP::SOAPString"], ["type", "SOAP::SOAPString"], ["devtag", "SOAP::SOAPString"], ["page", "SOAP::SOAPString"], ["keyword", "SOAP::SOAPString"], ["keyword_search", "SOAP::SOAPString"], ["browse_id", "SOAP::SOAPString"], ["zipcode", "SOAP::SOAPString"], ["area_id", "SOAP::SOAPString"], ["geo", "SOAP::SOAPString"], ["sort", "SOAP::SOAPString"], ["listing_id", "SOAP::SOAPString"], ["desc", "SOAP::SOAPString"], ["locale", "SOAP::SOAPString"], ["index", "SOAP::SOAPString"]]
2201
+
2202
+ attr_accessor :marketplace_search
2203
+ attr_accessor :tag
2204
+ attr_accessor :type
2205
+ attr_accessor :devtag
2206
+ attr_accessor :page
2207
+ attr_accessor :keyword
2208
+ attr_accessor :keyword_search
2209
+ attr_accessor :browse_id
2210
+ attr_accessor :zipcode
2211
+ attr_accessor :area_id
2212
+ attr_accessor :geo
2213
+ attr_accessor :sort
2214
+ attr_accessor :listing_id
2215
+ attr_accessor :desc
2216
+ attr_accessor :locale
2217
+ attr_accessor :index
2218
+
2219
+ def initialize(marketplace_search = nil, tag = nil, type = nil, devtag = nil, page = nil, keyword = nil, keyword_search = nil, browse_id = nil, zipcode = nil, area_id = nil, geo = nil, sort = nil, listing_id = nil, desc = nil, locale = nil, index = nil)
2220
+ @marketplace_search = marketplace_search
2221
+ @tag = tag
2222
+ @type = type
2223
+ @devtag = devtag
2224
+ @page = page
2225
+ @keyword = keyword
2226
+ @keyword_search = keyword_search
2227
+ @browse_id = browse_id
2228
+ @zipcode = zipcode
2229
+ @area_id = area_id
2230
+ @geo = geo
2231
+ @sort = sort
2232
+ @listing_id = listing_id
2233
+ @desc = desc
2234
+ @locale = locale
2235
+ @index = index
2236
+ end
2237
+ end
2238
+
2239
+ # {http://soap.amazon.com}SellerProfileRequest
2240
+ class SellerProfileRequest
2241
+ @@schema_type = "SellerProfileRequest"
2242
+ @@schema_ns = "http://soap.amazon.com"
2243
+ @@schema_element = [["seller_id", "SOAP::SOAPString"], ["tag", "SOAP::SOAPString"], ["type", "SOAP::SOAPString"], ["devtag", "SOAP::SOAPString"], ["page", "SOAP::SOAPString"], ["desc", "SOAP::SOAPString"], ["locale", "SOAP::SOAPString"]]
2244
+
2245
+ attr_accessor :seller_id
2246
+ attr_accessor :tag
2247
+ attr_accessor :type
2248
+ attr_accessor :devtag
2249
+ attr_accessor :page
2250
+ attr_accessor :desc
2251
+ attr_accessor :locale
2252
+
2253
+ def initialize(seller_id = nil, tag = nil, type = nil, devtag = nil, page = nil, desc = nil, locale = nil)
2254
+ @seller_id = seller_id
2255
+ @tag = tag
2256
+ @type = type
2257
+ @devtag = devtag
2258
+ @page = page
2259
+ @desc = desc
2260
+ @locale = locale
2261
+ end
2262
+ end
2263
+
2264
+ # {http://soap.amazon.com}SellerRequest
2265
+ class SellerRequest
2266
+ @@schema_type = "SellerRequest"
2267
+ @@schema_ns = "http://soap.amazon.com"
2268
+ @@schema_element = [["seller_id", "SOAP::SOAPString"], ["tag", "SOAP::SOAPString"], ["type", "SOAP::SOAPString"], ["devtag", "SOAP::SOAPString"], ["offerstatus", "SOAP::SOAPString"], ["page", "SOAP::SOAPString"], ["seller_browse_id", "SOAP::SOAPString"], ["keyword", "SOAP::SOAPString"], ["desc", "SOAP::SOAPString"], ["locale", "SOAP::SOAPString"], ["index", "SOAP::SOAPString"]]
2269
+
2270
+ attr_accessor :seller_id
2271
+ attr_accessor :tag
2272
+ attr_accessor :type
2273
+ attr_accessor :devtag
2274
+ attr_accessor :offerstatus
2275
+ attr_accessor :page
2276
+ attr_accessor :seller_browse_id
2277
+ attr_accessor :keyword
2278
+ attr_accessor :desc
2279
+ attr_accessor :locale
2280
+ attr_accessor :index
2281
+
2282
+ def initialize(seller_id = nil, tag = nil, type = nil, devtag = nil, offerstatus = nil, page = nil, seller_browse_id = nil, keyword = nil, desc = nil, locale = nil, index = nil)
2283
+ @seller_id = seller_id
2284
+ @tag = tag
2285
+ @type = type
2286
+ @devtag = devtag
2287
+ @offerstatus = offerstatus
2288
+ @page = page
2289
+ @seller_browse_id = seller_browse_id
2290
+ @keyword = keyword
2291
+ @desc = desc
2292
+ @locale = locale
2293
+ @index = index
2294
+ end
2295
+ end
2296
+
2297
+ # {http://soap.amazon.com}SimilarityRequest
2298
+ class SimilarityRequest
2299
+ @@schema_type = "SimilarityRequest"
2300
+ @@schema_ns = "http://soap.amazon.com"
2301
+ @@schema_element = [["asin", "SOAP::SOAPString"], ["tag", "SOAP::SOAPString"], ["type", "SOAP::SOAPString"], ["devtag", "SOAP::SOAPString"], ["locale", "SOAP::SOAPString"]]
2302
+
2303
+ attr_accessor :asin
2304
+ attr_accessor :tag
2305
+ attr_accessor :type
2306
+ attr_accessor :devtag
2307
+ attr_accessor :locale
2308
+
2309
+ def initialize(asin = nil, tag = nil, type = nil, devtag = nil, locale = nil)
2310
+ @asin = asin
2311
+ @tag = tag
2312
+ @type = type
2313
+ @devtag = devtag
2314
+ @locale = locale
2315
+ end
2316
+ end
2317
+
2318
+ # {http://soap.amazon.com}ItemIdArray
2319
+ class ItemIdArray < ::Array
2320
+ @@schema_type = "string"
2321
+ @@schema_ns = "http://www.w3.org/2001/XMLSchema"
2322
+ end
2323
+
2324
+ # {http://soap.amazon.com}ItemArray
2325
+ class ItemArray < ::Array
2326
+ @@schema_type = "Item"
2327
+ @@schema_ns = "http://soap.amazon.com"
2328
+ end
2329
+
2330
+ # {http://soap.amazon.com}Item
2331
+ class Item
2332
+ @@schema_type = "Item"
2333
+ @@schema_ns = "http://soap.amazon.com"
2334
+ @@schema_element = [["itemId", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "ItemId")]], ["productName", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "ProductName")]], ["catalog", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "Catalog")]], ["asin", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "Asin")]], ["exchangeId", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "ExchangeId")]], ["quantity", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "Quantity")]], ["listPrice", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "ListPrice")]], ["ourPrice", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "OurPrice")]], ["merchantSku", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "MerchantSku")]]]
2335
+
2336
+ def ItemId
2337
+ @itemId
2338
+ end
2339
+
2340
+ def ItemId=(value)
2341
+ @itemId = value
2342
+ end
2343
+
2344
+ def ProductName
2345
+ @productName
2346
+ end
2347
+
2348
+ def ProductName=(value)
2349
+ @productName = value
2350
+ end
2351
+
2352
+ def Catalog
2353
+ @catalog
2354
+ end
2355
+
2356
+ def Catalog=(value)
2357
+ @catalog = value
2358
+ end
2359
+
2360
+ def Asin
2361
+ @asin
2362
+ end
2363
+
2364
+ def Asin=(value)
2365
+ @asin = value
2366
+ end
2367
+
2368
+ def ExchangeId
2369
+ @exchangeId
2370
+ end
2371
+
2372
+ def ExchangeId=(value)
2373
+ @exchangeId = value
2374
+ end
2375
+
2376
+ def Quantity
2377
+ @quantity
2378
+ end
2379
+
2380
+ def Quantity=(value)
2381
+ @quantity = value
2382
+ end
2383
+
2384
+ def ListPrice
2385
+ @listPrice
2386
+ end
2387
+
2388
+ def ListPrice=(value)
2389
+ @listPrice = value
2390
+ end
2391
+
2392
+ def OurPrice
2393
+ @ourPrice
2394
+ end
2395
+
2396
+ def OurPrice=(value)
2397
+ @ourPrice = value
2398
+ end
2399
+
2400
+ def MerchantSku
2401
+ @merchantSku
2402
+ end
2403
+
2404
+ def MerchantSku=(value)
2405
+ @merchantSku = value
2406
+ end
2407
+
2408
+ def initialize(itemId = nil, productName = nil, catalog = nil, asin = nil, exchangeId = nil, quantity = nil, listPrice = nil, ourPrice = nil, merchantSku = nil)
2409
+ @itemId = itemId
2410
+ @productName = productName
2411
+ @catalog = catalog
2412
+ @asin = asin
2413
+ @exchangeId = exchangeId
2414
+ @quantity = quantity
2415
+ @listPrice = listPrice
2416
+ @ourPrice = ourPrice
2417
+ @merchantSku = merchantSku
2418
+ end
2419
+ end
2420
+
2421
+ # {http://soap.amazon.com}ItemQuantityArray
2422
+ class ItemQuantityArray < ::Array
2423
+ @@schema_type = "ItemQuantity"
2424
+ @@schema_ns = "http://soap.amazon.com"
2425
+ end
2426
+
2427
+ # {http://soap.amazon.com}ItemQuantity
2428
+ class ItemQuantity
2429
+ @@schema_type = "ItemQuantity"
2430
+ @@schema_ns = "http://soap.amazon.com"
2431
+ @@schema_element = [["itemId", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "ItemId")]], ["quantity", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "Quantity")]]]
2432
+
2433
+ def ItemId
2434
+ @itemId
2435
+ end
2436
+
2437
+ def ItemId=(value)
2438
+ @itemId = value
2439
+ end
2440
+
2441
+ def Quantity
2442
+ @quantity
2443
+ end
2444
+
2445
+ def Quantity=(value)
2446
+ @quantity = value
2447
+ end
2448
+
2449
+ def initialize(itemId = nil, quantity = nil)
2450
+ @itemId = itemId
2451
+ @quantity = quantity
2452
+ end
2453
+ end
2454
+
2455
+ # {http://soap.amazon.com}AddItemArray
2456
+ class AddItemArray < ::Array
2457
+ @@schema_type = "AddItem"
2458
+ @@schema_ns = "http://soap.amazon.com"
2459
+ end
2460
+
2461
+ # {http://soap.amazon.com}AddItem
2462
+ class AddItem
2463
+ @@schema_type = "AddItem"
2464
+ @@schema_ns = "http://soap.amazon.com"
2465
+ @@schema_element = [["parentAsin", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "ParentAsin")]], ["asin", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "Asin")]], ["merchantId", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "MerchantId")]], ["exchangeId", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "ExchangeId")]], ["quantity", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "Quantity")]]]
2466
+
2467
+ def ParentAsin
2468
+ @parentAsin
2469
+ end
2470
+
2471
+ def ParentAsin=(value)
2472
+ @parentAsin = value
2473
+ end
2474
+
2475
+ def Asin
2476
+ @asin
2477
+ end
2478
+
2479
+ def Asin=(value)
2480
+ @asin = value
2481
+ end
2482
+
2483
+ def MerchantId
2484
+ @merchantId
2485
+ end
2486
+
2487
+ def MerchantId=(value)
2488
+ @merchantId = value
2489
+ end
2490
+
2491
+ def ExchangeId
2492
+ @exchangeId
2493
+ end
2494
+
2495
+ def ExchangeId=(value)
2496
+ @exchangeId = value
2497
+ end
2498
+
2499
+ def Quantity
2500
+ @quantity
2501
+ end
2502
+
2503
+ def Quantity=(value)
2504
+ @quantity = value
2505
+ end
2506
+
2507
+ def initialize(parentAsin = nil, asin = nil, merchantId = nil, exchangeId = nil, quantity = nil)
2508
+ @parentAsin = parentAsin
2509
+ @asin = asin
2510
+ @merchantId = merchantId
2511
+ @exchangeId = exchangeId
2512
+ @quantity = quantity
2513
+ end
2514
+ end
2515
+
2516
+ # {http://soap.amazon.com}ShoppingCart
2517
+ class ShoppingCart
2518
+ @@schema_type = "ShoppingCart"
2519
+ @@schema_ns = "http://soap.amazon.com"
2520
+ @@schema_element = [["cartId", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "CartId")]], ["hMAC", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "HMAC")]], ["purchaseUrl", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "PurchaseUrl")]], ["items", ["ItemArray", XSD::QName.new("http://soap.amazon.com", "Items")]], ["similarProducts", ["SimilarProductsArray", XSD::QName.new("http://soap.amazon.com", "SimilarProducts")]]]
2521
+
2522
+ def CartId
2523
+ @cartId
2524
+ end
2525
+
2526
+ def CartId=(value)
2527
+ @cartId = value
2528
+ end
2529
+
2530
+ def HMAC
2531
+ @hMAC
2532
+ end
2533
+
2534
+ def HMAC=(value)
2535
+ @hMAC = value
2536
+ end
2537
+
2538
+ def PurchaseUrl
2539
+ @purchaseUrl
2540
+ end
2541
+
2542
+ def PurchaseUrl=(value)
2543
+ @purchaseUrl = value
2544
+ end
2545
+
2546
+ def Items
2547
+ @items
2548
+ end
2549
+
2550
+ def Items=(value)
2551
+ @items = value
2552
+ end
2553
+
2554
+ def SimilarProducts
2555
+ @similarProducts
2556
+ end
2557
+
2558
+ def SimilarProducts=(value)
2559
+ @similarProducts = value
2560
+ end
2561
+
2562
+ def initialize(cartId = nil, hMAC = nil, purchaseUrl = nil, items = nil, similarProducts = nil)
2563
+ @cartId = cartId
2564
+ @hMAC = hMAC
2565
+ @purchaseUrl = purchaseUrl
2566
+ @items = items
2567
+ @similarProducts = similarProducts
2568
+ end
2569
+ end
2570
+
2571
+ # {http://soap.amazon.com}GetShoppingCartRequest
2572
+ class GetShoppingCartRequest
2573
+ @@schema_type = "GetShoppingCartRequest"
2574
+ @@schema_ns = "http://soap.amazon.com"
2575
+ @@schema_element = [["tag", "SOAP::SOAPString"], ["devtag", "SOAP::SOAPString"], ["cartId", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "CartId")]], ["hMAC", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "HMAC")]], ["locale", "SOAP::SOAPString"], ["sims", "SOAP::SOAPString"], ["mergeCart", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "MergeCart")]]]
2576
+
2577
+ attr_accessor :tag
2578
+ attr_accessor :devtag
2579
+ attr_accessor :locale
2580
+ attr_accessor :sims
2581
+
2582
+ def CartId
2583
+ @cartId
2584
+ end
2585
+
2586
+ def CartId=(value)
2587
+ @cartId = value
2588
+ end
2589
+
2590
+ def HMAC
2591
+ @hMAC
2592
+ end
2593
+
2594
+ def HMAC=(value)
2595
+ @hMAC = value
2596
+ end
2597
+
2598
+ def MergeCart
2599
+ @mergeCart
2600
+ end
2601
+
2602
+ def MergeCart=(value)
2603
+ @mergeCart = value
2604
+ end
2605
+
2606
+ def initialize(tag = nil, devtag = nil, cartId = nil, hMAC = nil, locale = nil, sims = nil, mergeCart = nil)
2607
+ @tag = tag
2608
+ @devtag = devtag
2609
+ @cartId = cartId
2610
+ @hMAC = hMAC
2611
+ @locale = locale
2612
+ @sims = sims
2613
+ @mergeCart = mergeCart
2614
+ end
2615
+ end
2616
+
2617
+ # {http://soap.amazon.com}ClearShoppingCartRequest
2618
+ class ClearShoppingCartRequest
2619
+ @@schema_type = "ClearShoppingCartRequest"
2620
+ @@schema_ns = "http://soap.amazon.com"
2621
+ @@schema_element = [["tag", "SOAP::SOAPString"], ["devtag", "SOAP::SOAPString"], ["cartId", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "CartId")]], ["hMAC", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "HMAC")]], ["locale", "SOAP::SOAPString"], ["mergeCart", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "MergeCart")]]]
2622
+
2623
+ attr_accessor :tag
2624
+ attr_accessor :devtag
2625
+ attr_accessor :locale
2626
+
2627
+ def CartId
2628
+ @cartId
2629
+ end
2630
+
2631
+ def CartId=(value)
2632
+ @cartId = value
2633
+ end
2634
+
2635
+ def HMAC
2636
+ @hMAC
2637
+ end
2638
+
2639
+ def HMAC=(value)
2640
+ @hMAC = value
2641
+ end
2642
+
2643
+ def MergeCart
2644
+ @mergeCart
2645
+ end
2646
+
2647
+ def MergeCart=(value)
2648
+ @mergeCart = value
2649
+ end
2650
+
2651
+ def initialize(tag = nil, devtag = nil, cartId = nil, hMAC = nil, locale = nil, mergeCart = nil)
2652
+ @tag = tag
2653
+ @devtag = devtag
2654
+ @cartId = cartId
2655
+ @hMAC = hMAC
2656
+ @locale = locale
2657
+ @mergeCart = mergeCart
2658
+ end
2659
+ end
2660
+
2661
+ # {http://soap.amazon.com}AddShoppingCartItemsRequest
2662
+ class AddShoppingCartItemsRequest
2663
+ @@schema_type = "AddShoppingCartItemsRequest"
2664
+ @@schema_ns = "http://soap.amazon.com"
2665
+ @@schema_element = [["tag", "SOAP::SOAPString"], ["devtag", "SOAP::SOAPString"], ["cartId", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "CartId")]], ["hMAC", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "HMAC")]], ["items", ["AddItemArray", XSD::QName.new("http://soap.amazon.com", "Items")]], ["locale", "SOAP::SOAPString"], ["sims", "SOAP::SOAPString"], ["mergeCart", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "MergeCart")]]]
2666
+
2667
+ attr_accessor :tag
2668
+ attr_accessor :devtag
2669
+ attr_accessor :locale
2670
+ attr_accessor :sims
2671
+
2672
+ def CartId
2673
+ @cartId
2674
+ end
2675
+
2676
+ def CartId=(value)
2677
+ @cartId = value
2678
+ end
2679
+
2680
+ def HMAC
2681
+ @hMAC
2682
+ end
2683
+
2684
+ def HMAC=(value)
2685
+ @hMAC = value
2686
+ end
2687
+
2688
+ def Items
2689
+ @items
2690
+ end
2691
+
2692
+ def Items=(value)
2693
+ @items = value
2694
+ end
2695
+
2696
+ def MergeCart
2697
+ @mergeCart
2698
+ end
2699
+
2700
+ def MergeCart=(value)
2701
+ @mergeCart = value
2702
+ end
2703
+
2704
+ def initialize(tag = nil, devtag = nil, cartId = nil, hMAC = nil, items = nil, locale = nil, sims = nil, mergeCart = nil)
2705
+ @tag = tag
2706
+ @devtag = devtag
2707
+ @cartId = cartId
2708
+ @hMAC = hMAC
2709
+ @items = items
2710
+ @locale = locale
2711
+ @sims = sims
2712
+ @mergeCart = mergeCart
2713
+ end
2714
+ end
2715
+
2716
+ # {http://soap.amazon.com}RemoveShoppingCartItemsRequest
2717
+ class RemoveShoppingCartItemsRequest
2718
+ @@schema_type = "RemoveShoppingCartItemsRequest"
2719
+ @@schema_ns = "http://soap.amazon.com"
2720
+ @@schema_element = [["tag", "SOAP::SOAPString"], ["devtag", "SOAP::SOAPString"], ["cartId", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "CartId")]], ["hMAC", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "HMAC")]], ["items", ["ItemIdArray", XSD::QName.new("http://soap.amazon.com", "Items")]], ["locale", "SOAP::SOAPString"], ["sims", "SOAP::SOAPString"], ["mergeCart", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "MergeCart")]]]
2721
+
2722
+ attr_accessor :tag
2723
+ attr_accessor :devtag
2724
+ attr_accessor :locale
2725
+ attr_accessor :sims
2726
+
2727
+ def CartId
2728
+ @cartId
2729
+ end
2730
+
2731
+ def CartId=(value)
2732
+ @cartId = value
2733
+ end
2734
+
2735
+ def HMAC
2736
+ @hMAC
2737
+ end
2738
+
2739
+ def HMAC=(value)
2740
+ @hMAC = value
2741
+ end
2742
+
2743
+ def Items
2744
+ @items
2745
+ end
2746
+
2747
+ def Items=(value)
2748
+ @items = value
2749
+ end
2750
+
2751
+ def MergeCart
2752
+ @mergeCart
2753
+ end
2754
+
2755
+ def MergeCart=(value)
2756
+ @mergeCart = value
2757
+ end
2758
+
2759
+ def initialize(tag = nil, devtag = nil, cartId = nil, hMAC = nil, items = nil, locale = nil, sims = nil, mergeCart = nil)
2760
+ @tag = tag
2761
+ @devtag = devtag
2762
+ @cartId = cartId
2763
+ @hMAC = hMAC
2764
+ @items = items
2765
+ @locale = locale
2766
+ @sims = sims
2767
+ @mergeCart = mergeCart
2768
+ end
2769
+ end
2770
+
2771
+ # {http://soap.amazon.com}ModifyShoppingCartItemsRequest
2772
+ class ModifyShoppingCartItemsRequest
2773
+ @@schema_type = "ModifyShoppingCartItemsRequest"
2774
+ @@schema_ns = "http://soap.amazon.com"
2775
+ @@schema_element = [["tag", "SOAP::SOAPString"], ["devtag", "SOAP::SOAPString"], ["cartId", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "CartId")]], ["hMAC", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "HMAC")]], ["items", ["ItemQuantityArray", XSD::QName.new("http://soap.amazon.com", "Items")]], ["locale", "SOAP::SOAPString"], ["sims", "SOAP::SOAPString"], ["mergeCart", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "MergeCart")]]]
2776
+
2777
+ attr_accessor :tag
2778
+ attr_accessor :devtag
2779
+ attr_accessor :locale
2780
+ attr_accessor :sims
2781
+
2782
+ def CartId
2783
+ @cartId
2784
+ end
2785
+
2786
+ def CartId=(value)
2787
+ @cartId = value
2788
+ end
2789
+
2790
+ def HMAC
2791
+ @hMAC
2792
+ end
2793
+
2794
+ def HMAC=(value)
2795
+ @hMAC = value
2796
+ end
2797
+
2798
+ def Items
2799
+ @items
2800
+ end
2801
+
2802
+ def Items=(value)
2803
+ @items = value
2804
+ end
2805
+
2806
+ def MergeCart
2807
+ @mergeCart
2808
+ end
2809
+
2810
+ def MergeCart=(value)
2811
+ @mergeCart = value
2812
+ end
2813
+
2814
+ def initialize(tag = nil, devtag = nil, cartId = nil, hMAC = nil, items = nil, locale = nil, sims = nil, mergeCart = nil)
2815
+ @tag = tag
2816
+ @devtag = devtag
2817
+ @cartId = cartId
2818
+ @hMAC = hMAC
2819
+ @items = items
2820
+ @locale = locale
2821
+ @sims = sims
2822
+ @mergeCart = mergeCart
2823
+ end
2824
+ end
2825
+
2826
+ # {http://soap.amazon.com}OrderIdArray
2827
+ class OrderIdArray < ::Array
2828
+ @@schema_type = "string"
2829
+ @@schema_ns = "http://www.w3.org/2001/XMLSchema"
2830
+ end
2831
+
2832
+ # {http://soap.amazon.com}Price
2833
+ class Price
2834
+ @@schema_type = "Price"
2835
+ @@schema_ns = "http://soap.amazon.com"
2836
+ @@schema_element = [["amount", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "Amount")]], ["currencyCode", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "CurrencyCode")]]]
2837
+
2838
+ def Amount
2839
+ @amount
2840
+ end
2841
+
2842
+ def Amount=(value)
2843
+ @amount = value
2844
+ end
2845
+
2846
+ def CurrencyCode
2847
+ @currencyCode
2848
+ end
2849
+
2850
+ def CurrencyCode=(value)
2851
+ @currencyCode = value
2852
+ end
2853
+
2854
+ def initialize(amount = nil, currencyCode = nil)
2855
+ @amount = amount
2856
+ @currencyCode = currencyCode
2857
+ end
2858
+ end
2859
+
2860
+ # {http://soap.amazon.com}Package
2861
+ class Package
2862
+ @@schema_type = "Package"
2863
+ @@schema_ns = "http://soap.amazon.com"
2864
+ @@schema_element = [["trackingNumber", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "TrackingNumber")]], ["carrierName", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "CarrierName")]]]
2865
+
2866
+ def TrackingNumber
2867
+ @trackingNumber
2868
+ end
2869
+
2870
+ def TrackingNumber=(value)
2871
+ @trackingNumber = value
2872
+ end
2873
+
2874
+ def CarrierName
2875
+ @carrierName
2876
+ end
2877
+
2878
+ def CarrierName=(value)
2879
+ @carrierName = value
2880
+ end
2881
+
2882
+ def initialize(trackingNumber = nil, carrierName = nil)
2883
+ @trackingNumber = trackingNumber
2884
+ @carrierName = carrierName
2885
+ end
2886
+ end
2887
+
2888
+ # {http://soap.amazon.com}PackageArray
2889
+ class PackageArray < ::Array
2890
+ @@schema_type = "Package"
2891
+ @@schema_ns = "http://soap.amazon.com"
2892
+ end
2893
+
2894
+ # {http://soap.amazon.com}OrderItem
2895
+ class OrderItem
2896
+ @@schema_type = "OrderItem"
2897
+ @@schema_ns = "http://soap.amazon.com"
2898
+ @@schema_element = [["itemNumber", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "ItemNumber")]], ["aSIN", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "ASIN")]], ["exchangeId", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "ExchangeId")]], ["quantity", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "Quantity")]], ["unitPrice", ["Price", XSD::QName.new("http://soap.amazon.com", "UnitPrice")]], ["totalPrice", ["Price", XSD::QName.new("http://soap.amazon.com", "TotalPrice")]]]
2899
+
2900
+ def ItemNumber
2901
+ @itemNumber
2902
+ end
2903
+
2904
+ def ItemNumber=(value)
2905
+ @itemNumber = value
2906
+ end
2907
+
2908
+ def ASIN
2909
+ @aSIN
2910
+ end
2911
+
2912
+ def ASIN=(value)
2913
+ @aSIN = value
2914
+ end
2915
+
2916
+ def ExchangeId
2917
+ @exchangeId
2918
+ end
2919
+
2920
+ def ExchangeId=(value)
2921
+ @exchangeId = value
2922
+ end
2923
+
2924
+ def Quantity
2925
+ @quantity
2926
+ end
2927
+
2928
+ def Quantity=(value)
2929
+ @quantity = value
2930
+ end
2931
+
2932
+ def UnitPrice
2933
+ @unitPrice
2934
+ end
2935
+
2936
+ def UnitPrice=(value)
2937
+ @unitPrice = value
2938
+ end
2939
+
2940
+ def TotalPrice
2941
+ @totalPrice
2942
+ end
2943
+
2944
+ def TotalPrice=(value)
2945
+ @totalPrice = value
2946
+ end
2947
+
2948
+ def initialize(itemNumber = nil, aSIN = nil, exchangeId = nil, quantity = nil, unitPrice = nil, totalPrice = nil)
2949
+ @itemNumber = itemNumber
2950
+ @aSIN = aSIN
2951
+ @exchangeId = exchangeId
2952
+ @quantity = quantity
2953
+ @unitPrice = unitPrice
2954
+ @totalPrice = totalPrice
2955
+ end
2956
+ end
2957
+
2958
+ # {http://soap.amazon.com}OrderItemArray
2959
+ class OrderItemArray < ::Array
2960
+ @@schema_type = "OrderItem"
2961
+ @@schema_ns = "http://soap.amazon.com"
2962
+ end
2963
+
2964
+ # {http://soap.amazon.com}ShortSummary
2965
+ class ShortSummary
2966
+ @@schema_type = "ShortSummary"
2967
+ @@schema_ns = "http://soap.amazon.com"
2968
+ @@schema_element = [["orderId", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "OrderId")]], ["sellerId", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "SellerId")]], ["condition", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "Condition")]], ["transactionDate", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "TransactionDate")]], ["transactionDateEpoch", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "TransactionDateEpoch")]], ["total", ["Price", XSD::QName.new("http://soap.amazon.com", "Total")]], ["subtotal", ["Price", XSD::QName.new("http://soap.amazon.com", "Subtotal")]], ["shipping", ["Price", XSD::QName.new("http://soap.amazon.com", "Shipping")]], ["tax", ["Price", XSD::QName.new("http://soap.amazon.com", "Tax")]], ["promotion", ["Price", XSD::QName.new("http://soap.amazon.com", "Promotion")]], ["storeName", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "StoreName")]], ["packages", ["PackageArray", XSD::QName.new("http://soap.amazon.com", "Packages")]], ["orderItems", ["OrderItemArray", XSD::QName.new("http://soap.amazon.com", "OrderItems")]], ["errorCode", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "ErrorCode")]], ["errorString", ["SOAP::SOAPString", XSD::QName.new("http://soap.amazon.com", "ErrorString")]]]
2969
+
2970
+ def OrderId
2971
+ @orderId
2972
+ end
2973
+
2974
+ def OrderId=(value)
2975
+ @orderId = value
2976
+ end
2977
+
2978
+ def SellerId
2979
+ @sellerId
2980
+ end
2981
+
2982
+ def SellerId=(value)
2983
+ @sellerId = value
2984
+ end
2985
+
2986
+ def Condition
2987
+ @condition
2988
+ end
2989
+
2990
+ def Condition=(value)
2991
+ @condition = value
2992
+ end
2993
+
2994
+ def TransactionDate
2995
+ @transactionDate
2996
+ end
2997
+
2998
+ def TransactionDate=(value)
2999
+ @transactionDate = value
3000
+ end
3001
+
3002
+ def TransactionDateEpoch
3003
+ @transactionDateEpoch
3004
+ end
3005
+
3006
+ def TransactionDateEpoch=(value)
3007
+ @transactionDateEpoch = value
3008
+ end
3009
+
3010
+ def Total
3011
+ @total
3012
+ end
3013
+
3014
+ def Total=(value)
3015
+ @total = value
3016
+ end
3017
+
3018
+ def Subtotal
3019
+ @subtotal
3020
+ end
3021
+
3022
+ def Subtotal=(value)
3023
+ @subtotal = value
3024
+ end
3025
+
3026
+ def Shipping
3027
+ @shipping
3028
+ end
3029
+
3030
+ def Shipping=(value)
3031
+ @shipping = value
3032
+ end
3033
+
3034
+ def Tax
3035
+ @tax
3036
+ end
3037
+
3038
+ def Tax=(value)
3039
+ @tax = value
3040
+ end
3041
+
3042
+ def Promotion
3043
+ @promotion
3044
+ end
3045
+
3046
+ def Promotion=(value)
3047
+ @promotion = value
3048
+ end
3049
+
3050
+ def StoreName
3051
+ @storeName
3052
+ end
3053
+
3054
+ def StoreName=(value)
3055
+ @storeName = value
3056
+ end
3057
+
3058
+ def Packages
3059
+ @packages
3060
+ end
3061
+
3062
+ def Packages=(value)
3063
+ @packages = value
3064
+ end
3065
+
3066
+ def OrderItems
3067
+ @orderItems
3068
+ end
3069
+
3070
+ def OrderItems=(value)
3071
+ @orderItems = value
3072
+ end
3073
+
3074
+ def ErrorCode
3075
+ @errorCode
3076
+ end
3077
+
3078
+ def ErrorCode=(value)
3079
+ @errorCode = value
3080
+ end
3081
+
3082
+ def ErrorString
3083
+ @errorString
3084
+ end
3085
+
3086
+ def ErrorString=(value)
3087
+ @errorString = value
3088
+ end
3089
+
3090
+ def initialize(orderId = nil, sellerId = nil, condition = nil, transactionDate = nil, transactionDateEpoch = nil, total = nil, subtotal = nil, shipping = nil, tax = nil, promotion = nil, storeName = nil, packages = nil, orderItems = nil, errorCode = nil, errorString = nil)
3091
+ @orderId = orderId
3092
+ @sellerId = sellerId
3093
+ @condition = condition
3094
+ @transactionDate = transactionDate
3095
+ @transactionDateEpoch = transactionDateEpoch
3096
+ @total = total
3097
+ @subtotal = subtotal
3098
+ @shipping = shipping
3099
+ @tax = tax
3100
+ @promotion = promotion
3101
+ @storeName = storeName
3102
+ @packages = packages
3103
+ @orderItems = orderItems
3104
+ @errorCode = errorCode
3105
+ @errorString = errorString
3106
+ end
3107
+ end
3108
+
3109
+ # {http://soap.amazon.com}ShortSummaryArray
3110
+ class ShortSummaryArray < ::Array
3111
+ @@schema_type = "ShortSummary"
3112
+ @@schema_ns = "http://soap.amazon.com"
3113
+ end
3114
+
3115
+ # {http://soap.amazon.com}GetTransactionDetailsRequest
3116
+ class GetTransactionDetailsRequest
3117
+ @@schema_type = "GetTransactionDetailsRequest"
3118
+ @@schema_ns = "http://soap.amazon.com"
3119
+ @@schema_element = [["tag", "SOAP::SOAPString"], ["devtag", "SOAP::SOAPString"], ["key", "SOAP::SOAPString"], ["orderIds", ["OrderIdArray", XSD::QName.new("http://soap.amazon.com", "OrderIds")]], ["locale", "SOAP::SOAPString"]]
3120
+
3121
+ attr_accessor :tag
3122
+ attr_accessor :devtag
3123
+ attr_accessor :key
3124
+ attr_accessor :locale
3125
+
3126
+ def OrderIds
3127
+ @orderIds
3128
+ end
3129
+
3130
+ def OrderIds=(value)
3131
+ @orderIds = value
3132
+ end
3133
+
3134
+ def initialize(tag = nil, devtag = nil, key = nil, orderIds = nil, locale = nil)
3135
+ @tag = tag
3136
+ @devtag = devtag
3137
+ @key = key
3138
+ @orderIds = orderIds
3139
+ @locale = locale
3140
+ end
3141
+ end
3142
+
3143
+ # {http://soap.amazon.com}GetTransactionDetailsResponse
3144
+ class GetTransactionDetailsResponse
3145
+ @@schema_type = "GetTransactionDetailsResponse"
3146
+ @@schema_ns = "http://soap.amazon.com"
3147
+ @@schema_element = [["shortSummaries", ["ShortSummaryArray", XSD::QName.new("http://soap.amazon.com", "ShortSummaries")]]]
3148
+
3149
+ def ShortSummaries
3150
+ @shortSummaries
3151
+ end
3152
+
3153
+ def ShortSummaries=(value)
3154
+ @shortSummaries = value
3155
+ end
3156
+
3157
+ def initialize(shortSummaries = nil)
3158
+ @shortSummaries = shortSummaries
3159
+ end
3160
+ end