soap5r 2.0.0

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