wsdl-mapper 0.0.7

Sign up to get free protection for your applications and to get access to all the features.
Files changed (617) hide show
  1. checksums.yaml +7 -0
  2. data/.codeclimate.yml +21 -0
  3. data/.gitignore +13 -0
  4. data/.rubocop.yml +1156 -0
  5. data/.ruby-version +1 -0
  6. data/.travis.yml +7 -0
  7. data/.yardopts +3 -0
  8. data/Gemfile +4 -0
  9. data/Guardfile +49 -0
  10. data/LICENSE +21 -0
  11. data/README.md +76 -0
  12. data/Rakefile +18 -0
  13. data/bin/wsdl-mapper +7 -0
  14. data/doc/WsdlMapper.html +129 -0
  15. data/doc/WsdlMapper/Cli.html +124 -0
  16. data/doc/WsdlMapper/Cli/Cli.html +132 -0
  17. data/doc/WsdlMapper/Cli/Generate.html +482 -0
  18. data/doc/WsdlMapper/CoreExt.html +115 -0
  19. data/doc/WsdlMapper/CoreExt/TimeDuration.html +1476 -0
  20. data/doc/WsdlMapper/D10rGeneration.html +117 -0
  21. data/doc/WsdlMapper/D10rGeneration/D10rGenerator.html +473 -0
  22. data/doc/WsdlMapper/D10rGeneration/Facade.html +208 -0
  23. data/doc/WsdlMapper/Deserializers.html +119 -0
  24. data/doc/WsdlMapper/Deserializers/AttrMapping.html +617 -0
  25. data/doc/WsdlMapper/Deserializers/ClassMapping.html +1157 -0
  26. data/doc/WsdlMapper/Deserializers/ClassMapping/Delegate.html +303 -0
  27. data/doc/WsdlMapper/Deserializers/Deserializer.html +760 -0
  28. data/doc/WsdlMapper/Deserializers/ElementDirectory.html +554 -0
  29. data/doc/WsdlMapper/Deserializers/ElementDirectory/ElementItem.html +541 -0
  30. data/doc/WsdlMapper/Deserializers/Errors.html +115 -0
  31. data/doc/WsdlMapper/Deserializers/Errors/UnknownAttributeError.html +147 -0
  32. data/doc/WsdlMapper/Deserializers/Errors/UnknownElementError.html +147 -0
  33. data/doc/WsdlMapper/Deserializers/Errors/UnknownError.html +415 -0
  34. data/doc/WsdlMapper/Deserializers/Errors/UnknownTypeError.html +147 -0
  35. data/doc/WsdlMapper/Deserializers/Frame.html +1038 -0
  36. data/doc/WsdlMapper/Deserializers/LazyLoadingDeserializer.html +287 -0
  37. data/doc/WsdlMapper/Deserializers/PropMapping.html +365 -0
  38. data/doc/WsdlMapper/Deserializers/SaxDocument.html +773 -0
  39. data/doc/WsdlMapper/Deserializers/SoapArrayMapping.html +452 -0
  40. data/doc/WsdlMapper/Deserializers/TypeDirectory.html +386 -0
  41. data/doc/WsdlMapper/Dom.html +123 -0
  42. data/doc/WsdlMapper/Dom/Attribute.html +1156 -0
  43. data/doc/WsdlMapper/Dom/Attribute/Ref.html +222 -0
  44. data/doc/WsdlMapper/Dom/Bounds.html +472 -0
  45. data/doc/WsdlMapper/Dom/Builder.html +696 -0
  46. data/doc/WsdlMapper/Dom/BuiltinType.html +246 -0
  47. data/doc/WsdlMapper/Dom/ComplexType.html +1448 -0
  48. data/doc/WsdlMapper/Dom/Directory.html +735 -0
  49. data/doc/WsdlMapper/Dom/Documentation.html +428 -0
  50. data/doc/WsdlMapper/Dom/Element.html +486 -0
  51. data/doc/WsdlMapper/Dom/EnumerationValue.html +213 -0
  52. data/doc/WsdlMapper/Dom/Name.html +908 -0
  53. data/doc/WsdlMapper/Dom/Namespaces.html +618 -0
  54. data/doc/WsdlMapper/Dom/Property.html +1372 -0
  55. data/doc/WsdlMapper/Dom/Property/Ref.html +724 -0
  56. data/doc/WsdlMapper/Dom/Schema.html +1480 -0
  57. data/doc/WsdlMapper/Dom/ShallowSchema.html +499 -0
  58. data/doc/WsdlMapper/Dom/SimpleType.html +1254 -0
  59. data/doc/WsdlMapper/Dom/SoapEncodingType.html +177 -0
  60. data/doc/WsdlMapper/Dom/TypeBase.html +605 -0
  61. data/doc/WsdlMapper/Dom/Validator.html +334 -0
  62. data/doc/WsdlMapper/Dom/Validator/Error.html +352 -0
  63. data/doc/WsdlMapper/DomGeneration.html +117 -0
  64. data/doc/WsdlMapper/DomGeneration/DefaultClassGenerator.html +251 -0
  65. data/doc/WsdlMapper/DomGeneration/DefaultCtrGenerator.html +404 -0
  66. data/doc/WsdlMapper/DomGeneration/DefaultEnumGenerator.html +321 -0
  67. data/doc/WsdlMapper/DomGeneration/DefaultValueDefaultsGenerator.html +368 -0
  68. data/doc/WsdlMapper/DomGeneration/DefaultValueGenerator.html +811 -0
  69. data/doc/WsdlMapper/DomGeneration/DefaultWrappingTypeGenerator.html +249 -0
  70. data/doc/WsdlMapper/DomGeneration/DocumentedClassGenerator.html +165 -0
  71. data/doc/WsdlMapper/DomGeneration/DocumentedCtrGenerator.html +336 -0
  72. data/doc/WsdlMapper/DomGeneration/DocumentedEnumGenerator.html +171 -0
  73. data/doc/WsdlMapper/DomGeneration/DocumentedSchemaGenerator.html +327 -0
  74. data/doc/WsdlMapper/DomGeneration/DocumentedWrappingTypeGenerator.html +165 -0
  75. data/doc/WsdlMapper/DomGeneration/Facade.html +260 -0
  76. data/doc/WsdlMapper/DomGeneration/GeneratorBase.html +234 -0
  77. data/doc/WsdlMapper/DomGeneration/NullCtrGenerator.html +356 -0
  78. data/doc/WsdlMapper/DomGeneration/SchemaGenerator.html +1407 -0
  79. data/doc/WsdlMapper/DomParsing.html +119 -0
  80. data/doc/WsdlMapper/DomParsing/AbstractResolver.html +228 -0
  81. data/doc/WsdlMapper/DomParsing/AnnotationParser.html +331 -0
  82. data/doc/WsdlMapper/DomParsing/AttributeParser.html +395 -0
  83. data/doc/WsdlMapper/DomParsing/ComplexTypeParser.html +1267 -0
  84. data/doc/WsdlMapper/DomParsing/DefaultResolver.html +278 -0
  85. data/doc/WsdlMapper/DomParsing/ElementParser.html +303 -0
  86. data/doc/WsdlMapper/DomParsing/ImportParser.html +341 -0
  87. data/doc/WsdlMapper/DomParsing/Linker.html +292 -0
  88. data/doc/WsdlMapper/DomParsing/LocalFileResolver.html +270 -0
  89. data/doc/WsdlMapper/DomParsing/Parser.html +1009 -0
  90. data/doc/WsdlMapper/DomParsing/Parser/InvalidNsException.html +131 -0
  91. data/doc/WsdlMapper/DomParsing/Parser/InvalidRootException.html +131 -0
  92. data/doc/WsdlMapper/DomParsing/Parser/ParserException.html +127 -0
  93. data/doc/WsdlMapper/DomParsing/ParserBase.html +190 -0
  94. data/doc/WsdlMapper/DomParsing/SimpleTypeParser.html +275 -0
  95. data/doc/WsdlMapper/DomParsing/UrlResolver.html +199 -0
  96. data/doc/WsdlMapper/DomParsing/Xsd.html +279 -0
  97. data/doc/WsdlMapper/Generation.html +121 -0
  98. data/doc/WsdlMapper/Generation/AbstractFormatter.html +2143 -0
  99. data/doc/WsdlMapper/Generation/Base.html +707 -0
  100. data/doc/WsdlMapper/Generation/Context.html +430 -0
  101. data/doc/WsdlMapper/Generation/DefaultFormatter.html +1803 -0
  102. data/doc/WsdlMapper/Generation/DefaultModuleGenerator.html +295 -0
  103. data/doc/WsdlMapper/Generation/Facade.html +379 -0
  104. data/doc/WsdlMapper/Generation/Result.html +749 -0
  105. data/doc/WsdlMapper/Generation/Result/ModuleTreeNode.html +432 -0
  106. data/doc/WsdlMapper/Generation/TypeToGenerate.html +352 -0
  107. data/doc/WsdlMapper/Generation/YardDocFormatter.html +902 -0
  108. data/doc/WsdlMapper/Naming.html +119 -0
  109. data/doc/WsdlMapper/Naming/AbstractNamer.html +890 -0
  110. data/doc/WsdlMapper/Naming/AbstractServiceNamer.html +2148 -0
  111. data/doc/WsdlMapper/Naming/DefaultNamer.html +1512 -0
  112. data/doc/WsdlMapper/Naming/DefaultNamer/InlineType.html +218 -0
  113. data/doc/WsdlMapper/Naming/DefaultServiceNamer.html +1605 -0
  114. data/doc/WsdlMapper/Naming/EnumerationValueName.html +397 -0
  115. data/doc/WsdlMapper/Naming/Inflector.html +408 -0
  116. data/doc/WsdlMapper/Naming/NamerBase.html +373 -0
  117. data/doc/WsdlMapper/Naming/PropertyName.html +397 -0
  118. data/doc/WsdlMapper/Naming/SeparatingNamer.html +376 -0
  119. data/doc/WsdlMapper/Naming/TypeName.html +1040 -0
  120. data/doc/WsdlMapper/Parsing.html +119 -0
  121. data/doc/WsdlMapper/Parsing/Base.html +359 -0
  122. data/doc/WsdlMapper/Parsing/Logging.html +305 -0
  123. data/doc/WsdlMapper/Parsing/Logging/LogMsg.html +264 -0
  124. data/doc/WsdlMapper/Runtime.html +119 -0
  125. data/doc/WsdlMapper/Runtime/Api.html +628 -0
  126. data/doc/WsdlMapper/Runtime/AsyncHttpBackend.html +674 -0
  127. data/doc/WsdlMapper/Runtime/BackendBase.html +351 -0
  128. data/doc/WsdlMapper/Runtime/Body.html +209 -0
  129. data/doc/WsdlMapper/Runtime/Errors.html +119 -0
  130. data/doc/WsdlMapper/Runtime/Errors/Error.html +289 -0
  131. data/doc/WsdlMapper/Runtime/Errors/HTTPError.html +370 -0
  132. data/doc/WsdlMapper/Runtime/Errors/SoapFault.html +298 -0
  133. data/doc/WsdlMapper/Runtime/Errors/TransportError.html +298 -0
  134. data/doc/WsdlMapper/Runtime/Header.html +120 -0
  135. data/doc/WsdlMapper/Runtime/InputS8r.html +139 -0
  136. data/doc/WsdlMapper/Runtime/Message.html +488 -0
  137. data/doc/WsdlMapper/Runtime/MiddlewareStack.html +1266 -0
  138. data/doc/WsdlMapper/Runtime/Middlewares.html +149 -0
  139. data/doc/WsdlMapper/Runtime/Middlewares/AbstractLogger.html +206 -0
  140. data/doc/WsdlMapper/Runtime/Middlewares/AsyncDispatcher.html +270 -0
  141. data/doc/WsdlMapper/Runtime/Middlewares/AsyncMessageFactory.html +205 -0
  142. data/doc/WsdlMapper/Runtime/Middlewares/AsyncRequestFactory.html +205 -0
  143. data/doc/WsdlMapper/Runtime/Middlewares/AsyncRequestLogger.html +224 -0
  144. data/doc/WsdlMapper/Runtime/Middlewares/AsyncResponseFactory.html +205 -0
  145. data/doc/WsdlMapper/Runtime/Middlewares/AsyncResponseLogger.html +224 -0
  146. data/doc/WsdlMapper/Runtime/Middlewares/Noop.html +189 -0
  147. data/doc/WsdlMapper/Runtime/Middlewares/SimpleDispatcher.html +628 -0
  148. data/doc/WsdlMapper/Runtime/Middlewares/SimpleMessageFactory.html +263 -0
  149. data/doc/WsdlMapper/Runtime/Middlewares/SimpleRequestFactory.html +254 -0
  150. data/doc/WsdlMapper/Runtime/Middlewares/SimpleRequestLogger.html +222 -0
  151. data/doc/WsdlMapper/Runtime/Middlewares/SimpleResponseFactory.html +250 -0
  152. data/doc/WsdlMapper/Runtime/Middlewares/SimpleResponseLogger.html +218 -0
  153. data/doc/WsdlMapper/Runtime/Operation.html +1231 -0
  154. data/doc/WsdlMapper/Runtime/OutputS8r.html +139 -0
  155. data/doc/WsdlMapper/Runtime/Port.html +504 -0
  156. data/doc/WsdlMapper/Runtime/Proxy.html +228 -0
  157. data/doc/WsdlMapper/Runtime/Request.html +736 -0
  158. data/doc/WsdlMapper/Runtime/Response.html +585 -0
  159. data/doc/WsdlMapper/Runtime/S8rBase.html +753 -0
  160. data/doc/WsdlMapper/Runtime/Service.html +396 -0
  161. data/doc/WsdlMapper/Runtime/SimpleHttpBackend.html +260 -0
  162. data/doc/WsdlMapper/Runtime/SimplerInspect.html +205 -0
  163. data/doc/WsdlMapper/S8rGeneration.html +117 -0
  164. data/doc/WsdlMapper/S8rGeneration/Facade.html +208 -0
  165. data/doc/WsdlMapper/S8rGeneration/S8rGenerator.html +415 -0
  166. data/doc/WsdlMapper/Serializers.html +117 -0
  167. data/doc/WsdlMapper/Serializers/AbstractResolver.html +224 -0
  168. data/doc/WsdlMapper/Serializers/SerializerCore.html +710 -0
  169. data/doc/WsdlMapper/Serializers/SerializerFactory.html +326 -0
  170. data/doc/WsdlMapper/Serializers/TypeDirectory.html +556 -0
  171. data/doc/WsdlMapper/Serializers/TypeDirectory/TypeItem.html +388 -0
  172. data/doc/WsdlMapper/SvcDesc.html +158 -0
  173. data/doc/WsdlMapper/SvcDesc/Envelope.html +348 -0
  174. data/doc/WsdlMapper/SvcDesc/Fault.html +580 -0
  175. data/doc/WsdlMapper/SvcDesc/Wsdl11.html +121 -0
  176. data/doc/WsdlMapper/SvcDesc/Wsdl11/Base.html +352 -0
  177. data/doc/WsdlMapper/SvcDesc/Wsdl11/Binding.html +873 -0
  178. data/doc/WsdlMapper/SvcDesc/Wsdl11/Binding/Body.html +708 -0
  179. data/doc/WsdlMapper/SvcDesc/Wsdl11/Binding/Fault.html +358 -0
  180. data/doc/WsdlMapper/SvcDesc/Wsdl11/Binding/Header.html +408 -0
  181. data/doc/WsdlMapper/SvcDesc/Wsdl11/Binding/HeaderBase.html +775 -0
  182. data/doc/WsdlMapper/SvcDesc/Wsdl11/Binding/HeaderFault.html +138 -0
  183. data/doc/WsdlMapper/SvcDesc/Wsdl11/Binding/InputOutput.html +539 -0
  184. data/doc/WsdlMapper/SvcDesc/Wsdl11/Binding/Operation.html +727 -0
  185. data/doc/WsdlMapper/SvcDesc/Wsdl11/Binding/SoapFault.html +387 -0
  186. data/doc/WsdlMapper/SvcDesc/Wsdl11/Description.html +1272 -0
  187. data/doc/WsdlMapper/SvcDesc/Wsdl11/Message.html +467 -0
  188. data/doc/WsdlMapper/SvcDesc/Wsdl11/Message/Part.html +426 -0
  189. data/doc/WsdlMapper/SvcDesc/Wsdl11/PortType.html +499 -0
  190. data/doc/WsdlMapper/SvcDesc/Wsdl11/PortType/InputOutput.html +290 -0
  191. data/doc/WsdlMapper/SvcDesc/Wsdl11/PortType/Operation.html +659 -0
  192. data/doc/WsdlMapper/SvcDesc/Wsdl11/Service.html +335 -0
  193. data/doc/WsdlMapper/SvcDesc/Wsdl11/Service/Port.html +358 -0
  194. data/doc/WsdlMapper/SvcDescParsing.html +119 -0
  195. data/doc/WsdlMapper/SvcDescParsing/BindingParser.html +1271 -0
  196. data/doc/WsdlMapper/SvcDescParsing/Linker.html +308 -0
  197. data/doc/WsdlMapper/SvcDescParsing/MessageParser.html +419 -0
  198. data/doc/WsdlMapper/SvcDescParsing/Parser.html +972 -0
  199. data/doc/WsdlMapper/SvcDescParsing/ParserBase.html +215 -0
  200. data/doc/WsdlMapper/SvcDescParsing/PortTypeParser.html +757 -0
  201. data/doc/WsdlMapper/SvcDescParsing/ServiceParser.html +541 -0
  202. data/doc/WsdlMapper/SvcDescParsing/Soap.html +162 -0
  203. data/doc/WsdlMapper/SvcDescParsing/SoapEnc.html +137 -0
  204. data/doc/WsdlMapper/SvcDescParsing/SoapHttp.html +127 -0
  205. data/doc/WsdlMapper/SvcDescParsing/TypesParser.html +397 -0
  206. data/doc/WsdlMapper/SvcDescParsing/Wsdl11.html +201 -0
  207. data/doc/WsdlMapper/SvcGeneration.html +117 -0
  208. data/doc/WsdlMapper/SvcGeneration/DocumentedOperationGenerator.html +828 -0
  209. data/doc/WsdlMapper/SvcGeneration/DocumentedPortGenerator.html +256 -0
  210. data/doc/WsdlMapper/SvcGeneration/DocumentedProxyGenerator.html +332 -0
  211. data/doc/WsdlMapper/SvcGeneration/DocumentedServiceGenerator.html +258 -0
  212. data/doc/WsdlMapper/SvcGeneration/DocumentedSvcGenerator.html +331 -0
  213. data/doc/WsdlMapper/SvcGeneration/Facade.html +814 -0
  214. data/doc/WsdlMapper/SvcGeneration/GeneratorBase.html +239 -0
  215. data/doc/WsdlMapper/SvcGeneration/GeneratorBase/HeaderToGenerate.html +123 -0
  216. data/doc/WsdlMapper/SvcGeneration/GeneratorBase/PartToGenerate.html +123 -0
  217. data/doc/WsdlMapper/SvcGeneration/OperationD10rGenerator.html +1327 -0
  218. data/doc/WsdlMapper/SvcGeneration/OperationGenerator.html +1487 -0
  219. data/doc/WsdlMapper/SvcGeneration/OperationGeneratorBase.html +162 -0
  220. data/doc/WsdlMapper/SvcGeneration/OperationS8rGenerator.html +2247 -0
  221. data/doc/WsdlMapper/SvcGeneration/PortGenerator.html +453 -0
  222. data/doc/WsdlMapper/SvcGeneration/ProxyGenerator.html +487 -0
  223. data/doc/WsdlMapper/SvcGeneration/ServiceGenerator.html +437 -0
  224. data/doc/WsdlMapper/SvcGeneration/SvcGenerator.html +2055 -0
  225. data/doc/WsdlMapper/SvcGeneration/TypeToGenerate.html +388 -0
  226. data/doc/WsdlMapper/TypeMapping.html +543 -0
  227. data/doc/WsdlMapper/TypeMapping/Base.html +706 -0
  228. data/doc/WsdlMapper/TypeMapping/DateParts.html +209 -0
  229. data/doc/WsdlMapper/TypeMapping/DateParts/Base.html +265 -0
  230. data/doc/WsdlMapper/TypeMapping/MappingSet.html +770 -0
  231. data/doc/WsdlMapperTesting.html +119 -0
  232. data/doc/WsdlMapperTesting/FakeD10r.html +310 -0
  233. data/doc/WsdlMapperTesting/FakeOperation.html +706 -0
  234. data/doc/WsdlMapperTesting/FakeS8r.html +310 -0
  235. data/doc/WsdlMapperTesting/GenerationTest.html +646 -0
  236. data/doc/WsdlMapperTesting/ImplementationTest.html +221 -0
  237. data/doc/WsdlMapperTesting/Middlewares.html +117 -0
  238. data/doc/WsdlMapperTesting/Middlewares/FakeDispatcher.html +310 -0
  239. data/doc/WsdlMapperTesting/Middlewares/FakeMessageFactory.html +414 -0
  240. data/doc/WsdlMapperTesting/Middlewares/FakeRequestFactory.html +271 -0
  241. data/doc/WsdlMapperTesting/Middlewares/FakeResponseFactory.html +271 -0
  242. data/doc/WsdlMapperTesting/SchemaTest.html +209 -0
  243. data/doc/WsdlMapperTesting/StubConnection.html +547 -0
  244. data/doc/WsdlMapperTesting/Test.html +200 -0
  245. data/doc/WsdlMapperTesting/TestHelper.html +394 -0
  246. data/doc/WsdlMapperTesting/TmpPath.html +364 -0
  247. data/doc/WsdlMapperTesting/Vcr.html +196 -0
  248. data/doc/_index.html +1913 -0
  249. data/doc/class_list.html +58 -0
  250. data/doc/concepts/wrapping_types.md +3 -0
  251. data/doc/css/common.css +1 -0
  252. data/doc/css/full_list.css +57 -0
  253. data/doc/css/style.css +339 -0
  254. data/doc/diag/async_backend.gliffy +1 -0
  255. data/doc/diag/async_backend.png +0 -0
  256. data/doc/diag/simple_http_backend.gliffy +1 -0
  257. data/doc/diag/simple_http_backend.md +1 -0
  258. data/doc/diag/simple_http_backend.png +0 -0
  259. data/doc/file.README.html +151 -0
  260. data/doc/file_list.html +60 -0
  261. data/doc/frames.html +26 -0
  262. data/doc/index.html +151 -0
  263. data/doc/js/app.js +219 -0
  264. data/doc/js/full_list.js +181 -0
  265. data/doc/js/jquery.js +4 -0
  266. data/doc/method_list.html +6561 -0
  267. data/doc/top-level-namespace.html +112 -0
  268. data/examples/blz_service/.gitignore +3 -0
  269. data/examples/blz_service/Gemfile +4 -0
  270. data/examples/blz_service/README.md +11 -0
  271. data/examples/blz_service/blz_service.wsdl +86 -0
  272. data/examples/blz_service/example.rb +28 -0
  273. data/examples/calculator/.gitignore +3 -0
  274. data/examples/calculator/Gemfile +4 -0
  275. data/examples/calculator/README.md +11 -0
  276. data/examples/calculator/calculator.wsdl +196 -0
  277. data/examples/calculator/example.rb +25 -0
  278. data/lib/wsdl-mapper.rb +1 -0
  279. data/lib/wsdl_mapper.rb +4 -0
  280. data/lib/wsdl_mapper/cli/cli.rb +90 -0
  281. data/lib/wsdl_mapper/core_ext/time_duration.rb +112 -0
  282. data/lib/wsdl_mapper/d10r_generation/d10r_generator.rb +195 -0
  283. data/lib/wsdl_mapper/d10r_generation/facade.rb +12 -0
  284. data/lib/wsdl_mapper/deserializers/attr_mapping.rb +21 -0
  285. data/lib/wsdl_mapper/deserializers/class_mapping.rb +122 -0
  286. data/lib/wsdl_mapper/deserializers/deserializer.rb +83 -0
  287. data/lib/wsdl_mapper/deserializers/element_directory.rb +66 -0
  288. data/lib/wsdl_mapper/deserializers/errors.rb +28 -0
  289. data/lib/wsdl_mapper/deserializers/frame.rb +31 -0
  290. data/lib/wsdl_mapper/deserializers/lazy_loading_deserializer.rb +39 -0
  291. data/lib/wsdl_mapper/deserializers/prop_mapping.rb +26 -0
  292. data/lib/wsdl_mapper/deserializers/sax_document.rb +156 -0
  293. data/lib/wsdl_mapper/deserializers/soap_array_mapping.rb +34 -0
  294. data/lib/wsdl_mapper/deserializers/type_directory.rb +39 -0
  295. data/lib/wsdl_mapper/dom/attribute.rb +42 -0
  296. data/lib/wsdl_mapper/dom/bounds.rb +15 -0
  297. data/lib/wsdl_mapper/dom/builder.rb +77 -0
  298. data/lib/wsdl_mapper/dom/builtin_type.rb +17 -0
  299. data/lib/wsdl_mapper/dom/complex_type.rb +63 -0
  300. data/lib/wsdl_mapper/dom/directory.rb +74 -0
  301. data/lib/wsdl_mapper/dom/documentation.rb +16 -0
  302. data/lib/wsdl_mapper/dom/element.rb +15 -0
  303. data/lib/wsdl_mapper/dom/enumeration_value.rb +11 -0
  304. data/lib/wsdl_mapper/dom/name.rb +69 -0
  305. data/lib/wsdl_mapper/dom/namespaces.rb +88 -0
  306. data/lib/wsdl_mapper/dom/property.rb +56 -0
  307. data/lib/wsdl_mapper/dom/schema.rb +120 -0
  308. data/lib/wsdl_mapper/dom/shallow_schema.rb +34 -0
  309. data/lib/wsdl_mapper/dom/simple_type.rb +28 -0
  310. data/lib/wsdl_mapper/dom/soap_encoding_type.rb +13 -0
  311. data/lib/wsdl_mapper/dom/type_base.rb +31 -0
  312. data/lib/wsdl_mapper/dom/validator.rb +36 -0
  313. data/lib/wsdl_mapper/dom_generation/default_class_generator.rb +78 -0
  314. data/lib/wsdl_mapper/dom_generation/default_ctr_generator.rb +99 -0
  315. data/lib/wsdl_mapper/dom_generation/default_enum_generator.rb +59 -0
  316. data/lib/wsdl_mapper/dom_generation/default_value_defaults_generator.rb +52 -0
  317. data/lib/wsdl_mapper/dom_generation/default_value_generator.rb +82 -0
  318. data/lib/wsdl_mapper/dom_generation/default_wrapping_type_generator.rb +44 -0
  319. data/lib/wsdl_mapper/dom_generation/documented_class_generator.rb +58 -0
  320. data/lib/wsdl_mapper/dom_generation/documented_ctr_generator.rb +54 -0
  321. data/lib/wsdl_mapper/dom_generation/documented_enum_generator.rb +30 -0
  322. data/lib/wsdl_mapper/dom_generation/documented_schema_generator.rb +51 -0
  323. data/lib/wsdl_mapper/dom_generation/documented_wrapping_type_generator.rb +17 -0
  324. data/lib/wsdl_mapper/dom_generation/facade.rb +18 -0
  325. data/lib/wsdl_mapper/dom_generation/generator_base.rb +66 -0
  326. data/lib/wsdl_mapper/dom_generation/null_ctr_generator.rb +20 -0
  327. data/lib/wsdl_mapper/dom_generation/schema_generator.rb +134 -0
  328. data/lib/wsdl_mapper/dom_parsing/abstract_resolver.rb +10 -0
  329. data/lib/wsdl_mapper/dom_parsing/annotation_parser.rb +25 -0
  330. data/lib/wsdl_mapper/dom_parsing/attribute_parser.rb +47 -0
  331. data/lib/wsdl_mapper/dom_parsing/complex_type_parser.rb +213 -0
  332. data/lib/wsdl_mapper/dom_parsing/default_resolver.rb +30 -0
  333. data/lib/wsdl_mapper/dom_parsing/element_parser.rb +43 -0
  334. data/lib/wsdl_mapper/dom_parsing/import_parser.rb +31 -0
  335. data/lib/wsdl_mapper/dom_parsing/linker.rb +108 -0
  336. data/lib/wsdl_mapper/dom_parsing/local_file_resolver.rb +19 -0
  337. data/lib/wsdl_mapper/dom_parsing/parser.rb +127 -0
  338. data/lib/wsdl_mapper/dom_parsing/parser_base.rb +41 -0
  339. data/lib/wsdl_mapper/dom_parsing/simple_type_parser.rb +99 -0
  340. data/lib/wsdl_mapper/dom_parsing/url_resolver.rb +16 -0
  341. data/lib/wsdl_mapper/dom_parsing/xsd.rb +47 -0
  342. data/lib/wsdl_mapper/generation/abstract_formatter.rb +115 -0
  343. data/lib/wsdl_mapper/generation/base.rb +69 -0
  344. data/lib/wsdl_mapper/generation/context.rb +35 -0
  345. data/lib/wsdl_mapper/generation/default_formatter.rb +237 -0
  346. data/lib/wsdl_mapper/generation/default_module_generator.rb +32 -0
  347. data/lib/wsdl_mapper/generation/facade.rb +59 -0
  348. data/lib/wsdl_mapper/generation/result.rb +61 -0
  349. data/lib/wsdl_mapper/generation/type_to_generate.rb +12 -0
  350. data/lib/wsdl_mapper/generation/yard_doc_formatter.rb +105 -0
  351. data/lib/wsdl_mapper/naming/abstract_namer.rb +53 -0
  352. data/lib/wsdl_mapper/naming/abstract_service_namer.rb +115 -0
  353. data/lib/wsdl_mapper/naming/default_namer.rb +183 -0
  354. data/lib/wsdl_mapper/naming/default_service_namer.rb +147 -0
  355. data/lib/wsdl_mapper/naming/enumeration_value_name.rb +16 -0
  356. data/lib/wsdl_mapper/naming/inflector.rb +42 -0
  357. data/lib/wsdl_mapper/naming/namer_base.rb +115 -0
  358. data/lib/wsdl_mapper/naming/property_name.rb +16 -0
  359. data/lib/wsdl_mapper/naming/separating_namer.rb +122 -0
  360. data/lib/wsdl_mapper/naming/type_name.rb +77 -0
  361. data/lib/wsdl_mapper/parsing/base.rb +148 -0
  362. data/lib/wsdl_mapper/parsing/logging.rb +33 -0
  363. data/lib/wsdl_mapper/runtime.rb +4 -0
  364. data/lib/wsdl_mapper/runtime/api.rb +42 -0
  365. data/lib/wsdl_mapper/runtime/async_http_backend.rb +72 -0
  366. data/lib/wsdl_mapper/runtime/backend_base.rb +21 -0
  367. data/lib/wsdl_mapper/runtime/body.rb +10 -0
  368. data/lib/wsdl_mapper/runtime/errors.rb +42 -0
  369. data/lib/wsdl_mapper/runtime/header.rb +6 -0
  370. data/lib/wsdl_mapper/runtime/input_s8r.rb +8 -0
  371. data/lib/wsdl_mapper/runtime/message.rb +23 -0
  372. data/lib/wsdl_mapper/runtime/middleware_stack.rb +104 -0
  373. data/lib/wsdl_mapper/runtime/middlewares.rb +19 -0
  374. data/lib/wsdl_mapper/runtime/middlewares/abstract_logger.rb +19 -0
  375. data/lib/wsdl_mapper/runtime/middlewares/async_dispatcher.rb +21 -0
  376. data/lib/wsdl_mapper/runtime/middlewares/async_message_factory.rb +17 -0
  377. data/lib/wsdl_mapper/runtime/middlewares/async_request_factory.rb +17 -0
  378. data/lib/wsdl_mapper/runtime/middlewares/async_request_logger.rb +17 -0
  379. data/lib/wsdl_mapper/runtime/middlewares/async_response_factory.rb +17 -0
  380. data/lib/wsdl_mapper/runtime/middlewares/async_response_logger.rb +17 -0
  381. data/lib/wsdl_mapper/runtime/middlewares/noop.rb +11 -0
  382. data/lib/wsdl_mapper/runtime/middlewares/simple_dispatcher.rb +69 -0
  383. data/lib/wsdl_mapper/runtime/middlewares/simple_message_factory.rb +19 -0
  384. data/lib/wsdl_mapper/runtime/middlewares/simple_request_factory.rb +37 -0
  385. data/lib/wsdl_mapper/runtime/middlewares/simple_request_logger.rb +18 -0
  386. data/lib/wsdl_mapper/runtime/middlewares/simple_response_factory.rb +26 -0
  387. data/lib/wsdl_mapper/runtime/middlewares/simple_response_logger.rb +16 -0
  388. data/lib/wsdl_mapper/runtime/operation.rb +90 -0
  389. data/lib/wsdl_mapper/runtime/output_s8r.rb +9 -0
  390. data/lib/wsdl_mapper/runtime/port.rb +30 -0
  391. data/lib/wsdl_mapper/runtime/proxy.rb +12 -0
  392. data/lib/wsdl_mapper/runtime/request.rb +35 -0
  393. data/lib/wsdl_mapper/runtime/response.rb +27 -0
  394. data/lib/wsdl_mapper/runtime/s8r_base.rb +57 -0
  395. data/lib/wsdl_mapper/runtime/service.rb +25 -0
  396. data/lib/wsdl_mapper/runtime/simple_http_backend.rb +34 -0
  397. data/lib/wsdl_mapper/runtime/simpler_inspect.rb +19 -0
  398. data/lib/wsdl_mapper/s8r_generation/facade.rb +12 -0
  399. data/lib/wsdl_mapper/s8r_generation/s8r_generator.rb +276 -0
  400. data/lib/wsdl_mapper/serializers/abstract_resolver.rb +11 -0
  401. data/lib/wsdl_mapper/serializers/serializer_core.rb +111 -0
  402. data/lib/wsdl_mapper/serializers/serializer_factory.rb +27 -0
  403. data/lib/wsdl_mapper/serializers/type_directory.rb +75 -0
  404. data/lib/wsdl_mapper/svc_desc/envelope.rb +12 -0
  405. data/lib/wsdl_mapper/svc_desc/fault.rb +27 -0
  406. data/lib/wsdl_mapper/svc_desc/soap_element_directory.rb +13 -0
  407. data/lib/wsdl_mapper/svc_desc/soap_type_directory.rb +21 -0
  408. data/lib/wsdl_mapper/svc_desc/wsdl11/base.rb +16 -0
  409. data/lib/wsdl_mapper/svc_desc/wsdl11/binding.rb +148 -0
  410. data/lib/wsdl_mapper/svc_desc/wsdl11/description.rb +86 -0
  411. data/lib/wsdl_mapper/svc_desc/wsdl11/message.rb +32 -0
  412. data/lib/wsdl_mapper/svc_desc/wsdl11/port_type.rb +63 -0
  413. data/lib/wsdl_mapper/svc_desc/wsdl11/service.rb +27 -0
  414. data/lib/wsdl_mapper/svc_desc_parsing/binding_parser.rb +198 -0
  415. data/lib/wsdl_mapper/svc_desc_parsing/http.rb +14 -0
  416. data/lib/wsdl_mapper/svc_desc_parsing/linker.rb +126 -0
  417. data/lib/wsdl_mapper/svc_desc_parsing/message_parser.rb +42 -0
  418. data/lib/wsdl_mapper/svc_desc_parsing/parser.rb +94 -0
  419. data/lib/wsdl_mapper/svc_desc_parsing/parser_base.rb +24 -0
  420. data/lib/wsdl_mapper/svc_desc_parsing/port_type_parser.rb +101 -0
  421. data/lib/wsdl_mapper/svc_desc_parsing/service_parser.rb +66 -0
  422. data/lib/wsdl_mapper/svc_desc_parsing/soap.rb +18 -0
  423. data/lib/wsdl_mapper/svc_desc_parsing/soap12.rb +18 -0
  424. data/lib/wsdl_mapper/svc_desc_parsing/soap_enc.rb +13 -0
  425. data/lib/wsdl_mapper/svc_desc_parsing/soap_http.rb +11 -0
  426. data/lib/wsdl_mapper/svc_desc_parsing/types_parser.rb +31 -0
  427. data/lib/wsdl_mapper/svc_desc_parsing/wsdl11.rb +27 -0
  428. data/lib/wsdl_mapper/svc_generation/documented_operation_generator.rb +104 -0
  429. data/lib/wsdl_mapper/svc_generation/documented_port_generator.rb +19 -0
  430. data/lib/wsdl_mapper/svc_generation/documented_proxy_generator.rb +36 -0
  431. data/lib/wsdl_mapper/svc_generation/documented_service_generator.rb +20 -0
  432. data/lib/wsdl_mapper/svc_generation/documented_svc_generator.rb +38 -0
  433. data/lib/wsdl_mapper/svc_generation/facade.rb +78 -0
  434. data/lib/wsdl_mapper/svc_generation/generator_base.rb +111 -0
  435. data/lib/wsdl_mapper/svc_generation/operation_d10r_generator.rb +171 -0
  436. data/lib/wsdl_mapper/svc_generation/operation_generator.rb +217 -0
  437. data/lib/wsdl_mapper/svc_generation/operation_generator_base.rb +8 -0
  438. data/lib/wsdl_mapper/svc_generation/operation_s8r_generator.rb +260 -0
  439. data/lib/wsdl_mapper/svc_generation/port_generator.rb +56 -0
  440. data/lib/wsdl_mapper/svc_generation/proxy_generator.rb +51 -0
  441. data/lib/wsdl_mapper/svc_generation/service_generator.rb +49 -0
  442. data/lib/wsdl_mapper/svc_generation/svc_generator.rb +172 -0
  443. data/lib/wsdl_mapper/svc_generation/type_to_generate.rb +6 -0
  444. data/lib/wsdl_mapper/type_mapping.rb +21 -0
  445. data/lib/wsdl_mapper/type_mapping/base.rb +48 -0
  446. data/lib/wsdl_mapper/type_mapping/base64_binary.rb +31 -0
  447. data/lib/wsdl_mapper/type_mapping/boolean.rb +31 -0
  448. data/lib/wsdl_mapper/type_mapping/date.rb +28 -0
  449. data/lib/wsdl_mapper/type_mapping/date_parts.rb +92 -0
  450. data/lib/wsdl_mapper/type_mapping/date_time.rb +28 -0
  451. data/lib/wsdl_mapper/type_mapping/decimal.rb +30 -0
  452. data/lib/wsdl_mapper/type_mapping/duration.rb +115 -0
  453. data/lib/wsdl_mapper/type_mapping/float.rb +30 -0
  454. data/lib/wsdl_mapper/type_mapping/hex_binary.rb +30 -0
  455. data/lib/wsdl_mapper/type_mapping/integer.rb +36 -0
  456. data/lib/wsdl_mapper/type_mapping/mapping_set.rb +64 -0
  457. data/lib/wsdl_mapper/type_mapping/string.rb +38 -0
  458. data/lib/wsdl_mapper/type_mapping/time.rb +29 -0
  459. data/lib/wsdl_mapper/type_mapping/uri.rb +35 -0
  460. data/lib/wsdl_mapper/version.rb +3 -0
  461. data/lib/wsdl_mapper_testing/fake_d10r.rb +15 -0
  462. data/lib/wsdl_mapper_testing/fake_operation.rb +33 -0
  463. data/lib/wsdl_mapper_testing/fake_s8r.rb +15 -0
  464. data/lib/wsdl_mapper_testing/generation_test.rb +47 -0
  465. data/lib/wsdl_mapper_testing/implementation_test.rb +17 -0
  466. data/lib/wsdl_mapper_testing/middlewares/fake_dispatcher.rb +17 -0
  467. data/lib/wsdl_mapper_testing/middlewares/fake_message_factory.rb +23 -0
  468. data/lib/wsdl_mapper_testing/middlewares/fake_request_factory.rb +20 -0
  469. data/lib/wsdl_mapper_testing/middlewares/fake_response_factory.rb +20 -0
  470. data/lib/wsdl_mapper_testing/schema_test.rb +9 -0
  471. data/lib/wsdl_mapper_testing/stub_connection.rb +52 -0
  472. data/lib/wsdl_mapper_testing/test.rb +9 -0
  473. data/lib/wsdl_mapper_testing/test_helper.rb +29 -0
  474. data/lib/wsdl_mapper_testing/tmp_path.rb +20 -0
  475. data/lib/wsdl_mapper_testing/vcr.rb +19 -0
  476. data/test/compatibility/dom_compatibility_test.rb +56 -0
  477. data/test/compatibility/svc_compatibility_test.rb +47 -0
  478. data/test/fixtures/address_type_enumeration.xsd +9 -0
  479. data/test/fixtures/address_type_enumeration_with_documentation.xsd +16 -0
  480. data/test/fixtures/address_type_enumeration_with_value_documentation.xsd +21 -0
  481. data/test/fixtures/attachment_type_for_import.xsd +9 -0
  482. data/test/fixtures/basic_credentials_type.xsd +9 -0
  483. data/test/fixtures/basic_note_inline_type.xsd +13 -0
  484. data/test/fixtures/basic_note_type.xsd +11 -0
  485. data/test/fixtures/basic_note_type_and_fancy_note_type_extension.xsd +21 -0
  486. data/test/fixtures/basic_note_type_and_fancy_note_type_extension_with_namespace.xsd +21 -0
  487. data/test/fixtures/basic_note_type_with_an_invalid_root_node.xsd +11 -0
  488. data/test/fixtures/basic_note_type_with_attachments.xsd +12 -0
  489. data/test/fixtures/basic_note_type_with_attachments_simple_type.xsd +16 -0
  490. data/test/fixtures/basic_note_type_with_attribute.xsd +12 -0
  491. data/test/fixtures/basic_note_type_with_boolean_property.xsd +12 -0
  492. data/test/fixtures/basic_note_type_with_boolean_property_and_documentation.xsd +24 -0
  493. data/test/fixtures/basic_note_type_with_complex_attachments.xsd +22 -0
  494. data/test/fixtures/basic_note_type_with_date.xsd +12 -0
  495. data/test/fixtures/basic_note_type_with_defaults.xsd +12 -0
  496. data/test/fixtures/basic_note_type_with_documentation_and_bounds.xsd +19 -0
  497. data/test/fixtures/basic_note_type_with_element.xsd +12 -0
  498. data/test/fixtures/basic_note_type_with_element_inline_complex_type.xsd +13 -0
  499. data/test/fixtures/basic_note_type_with_import.xsd +13 -0
  500. data/test/fixtures/basic_note_type_with_inline_complex_type.xsd +20 -0
  501. data/test/fixtures/basic_note_type_with_inline_simple_type.xsd +17 -0
  502. data/test/fixtures/basic_note_type_with_invalid_xsd_namespace.xsd +11 -0
  503. data/test/fixtures/basic_note_type_with_missing_xsd_namespace.xsd +11 -0
  504. data/test/fixtures/basic_note_type_with_property_and_attribute.xsd +15 -0
  505. data/test/fixtures/basic_note_type_with_property_and_attribute_documentation.xsd +30 -0
  506. data/test/fixtures/basic_note_type_with_ref_attribute.xsd +13 -0
  507. data/test/fixtures/basic_note_type_with_referenced_simple_email_address_type.xsd +15 -0
  508. data/test/fixtures/basic_note_type_with_soap_array.xsd +26 -0
  509. data/test/fixtures/basic_note_type_with_soap_array_builtin.xsd +20 -0
  510. data/test/fixtures/basic_note_type_with_soap_array_simple.xsd +25 -0
  511. data/test/fixtures/basic_note_type_with_target_namespace.xsd +11 -0
  512. data/test/fixtures/basic_order_type_with_referenced_address_type_enum.xsd +17 -0
  513. data/test/fixtures/basic_order_type_with_required_address_type_enum.xsd +17 -0
  514. data/test/fixtures/element_inline_simple_type.xsd +8 -0
  515. data/test/fixtures/empty_note_type.xsd +8 -0
  516. data/test/fixtures/empty_note_type_with_multiline_documentation.xsd +13 -0
  517. data/test/fixtures/empty_note_type_with_target_namespace.xsd +7 -0
  518. data/test/fixtures/empty_note_with_documentaion_and_target_namespace.xsd +12 -0
  519. data/test/fixtures/ms_cust_order_example.xsd +77 -0
  520. data/test/fixtures/services/cdiscount.wsdl +4034 -0
  521. data/test/fixtures/services/ebaySvc.wsdl +144554 -0
  522. data/test/fixtures/services/ebaySvc.xsd +140654 -0
  523. data/test/fixtures/services/magento_v2.wsdl +5477 -0
  524. data/test/fixtures/services/magento_v2.xsd +2152 -0
  525. data/test/fixtures/services/plenty_114.wsdl +11954 -0
  526. data/test/fixtures/services/plenty_114.xsd +7948 -0
  527. data/test/fixtures/services/tb-cat_1_2_import.xsd +1769 -0
  528. data/test/fixtures/services/tb-stock_all_in_one.xsd +936 -0
  529. data/test/fixtures/simple_email_address_type.xsd +6 -0
  530. data/test/fixtures/simple_email_address_type_with_documentation.xsd +11 -0
  531. data/test/fixtures/simple_money_type_with_currency_attribute.xsd +10 -0
  532. data/test/fixtures/super_fancy_note_type.xsd +31 -0
  533. data/test/fixtures/w3_example.xsd +15 -0
  534. data/test/fixtures/wsdls/price_service.wsdl +88 -0
  535. data/test/fixtures/wsdls/price_service_doc_encoded.wsdl +87 -0
  536. data/test/fixtures/wsdls/price_service_doc_literal.wsdl +89 -0
  537. data/test/fixtures/wsdls/price_service_doc_literal2.wsdl +88 -0
  538. data/test/fixtures/wsdls/price_service_doc_literal_type.wsdl +84 -0
  539. data/test/fixtures/wsdls/price_service_rpc_encoded.wsdl +85 -0
  540. data/test/fixtures/wsdls/price_service_rpc_encoded2.wsdl +86 -0
  541. data/test/fixtures/wsdls/price_service_rpc_literal.wsdl +88 -0
  542. data/test/fixtures/wsdls/price_service_rpc_literal2.wsdl +86 -0
  543. data/test/fixtures/wsdls/simple_service.wsdl +93 -0
  544. data/test/fixtures/wsdls/simple_service_with_overload.wsdl +123 -0
  545. data/test/fixtures/wsdls/w3_example.wsdl +64 -0
  546. data/test/test_helper.rb +29 -0
  547. data/test/wsdl_mapper/cli/cli_test.rb +10 -0
  548. data/test/wsdl_mapper/core_ext/time_duration_test.rb +82 -0
  549. data/test/wsdl_mapper/d10r_generation/d10r_generator_test.rb +227 -0
  550. data/test/wsdl_mapper/deserializers/benchmark_test.rb +906 -0
  551. data/test/wsdl_mapper/deserializers/deserializer_integration_test.rb +115 -0
  552. data/test/wsdl_mapper/deserializers/deserializer_test.rb +343 -0
  553. data/test/wsdl_mapper/deserializers/deserializer_with_ns_test.rb +188 -0
  554. data/test/wsdl_mapper/deserializers/operation_deserializer_test.rb +342 -0
  555. data/test/wsdl_mapper/dom/builtin_type_test.rb +25 -0
  556. data/test/wsdl_mapper/dom/enumeration_value_test.rb +14 -0
  557. data/test/wsdl_mapper/dom/name_test.rb +31 -0
  558. data/test/wsdl_mapper/dom/namespaces_test.rb +96 -0
  559. data/test/wsdl_mapper/dom/simple_type_test.rb +26 -0
  560. data/test/wsdl_mapper/dom/validator_test.rb +30 -0
  561. data/test/wsdl_mapper/dom_generation/default_class_generator_test.rb +213 -0
  562. data/test/wsdl_mapper/dom_generation/default_ctr_generator_test.rb +166 -0
  563. data/test/wsdl_mapper/dom_generation/default_enum_generator_test.rb +35 -0
  564. data/test/wsdl_mapper/dom_generation/default_value_generator_test.rb +72 -0
  565. data/test/wsdl_mapper/dom_generation/default_wrapping_type_generator_test.rb +65 -0
  566. data/test/wsdl_mapper/dom_generation/documented_class_generator_test.rb +151 -0
  567. data/test/wsdl_mapper/dom_generation/documented_ctr_generator_test.rb +84 -0
  568. data/test/wsdl_mapper/dom_generation/documented_enum_generator_test.rb +66 -0
  569. data/test/wsdl_mapper/dom_generation/documented_schema_generator_test.rb +73 -0
  570. data/test/wsdl_mapper/dom_generation/documented_wrapping_type_generator_test.rb +34 -0
  571. data/test/wsdl_mapper/dom_generation/schema_generator_test.rb +53 -0
  572. data/test/wsdl_mapper/dom_parsing/parser_test.rb +300 -0
  573. data/test/wsdl_mapper/generation/default_formatter_test.rb +104 -0
  574. data/test/wsdl_mapper/naming/default_namer_test.rb +127 -0
  575. data/test/wsdl_mapper/naming/default_service_namer_test.rb +15 -0
  576. data/test/wsdl_mapper/naming/inflector_test.rb +37 -0
  577. data/test/wsdl_mapper/naming/separating_namer_test.rb +53 -0
  578. data/test/wsdl_mapper/naming/type_name_test.rb +50 -0
  579. data/test/wsdl_mapper/runtime/async_http_backend_test.rb +57 -0
  580. data/test/wsdl_mapper/runtime/middleware_stack_test.rb +130 -0
  581. data/test/wsdl_mapper/runtime/middlewares/simple_dispatcher_test.rb +45 -0
  582. data/test/wsdl_mapper/runtime/operation_test.rb +79 -0
  583. data/test/wsdl_mapper/runtime/simple_http_backend_test.rb +49 -0
  584. data/test/wsdl_mapper/s8r_generation/s8r_generator_test.rb +450 -0
  585. data/test/wsdl_mapper/serializers/serializer_core_test.rb +293 -0
  586. data/test/wsdl_mapper/serializers/serializer_factory_test.rb +46 -0
  587. data/test/wsdl_mapper/serializers/type_directory_test.rb +31 -0
  588. data/test/wsdl_mapper/svc_desc_parsing/parser_test.rb +269 -0
  589. data/test/wsdl_mapper/svc_generation/documented_operation_generator_test.rb +226 -0
  590. data/test/wsdl_mapper/svc_generation/documented_port_generator_test.rb +46 -0
  591. data/test/wsdl_mapper/svc_generation/documented_service_generator_test.rb +42 -0
  592. data/test/wsdl_mapper/svc_generation/documented_svc_generator_test.rb +41 -0
  593. data/test/wsdl_mapper/svc_generation/operation_d10r_generator_test.rb +134 -0
  594. data/test/wsdl_mapper/svc_generation/operation_generator_test.rb +261 -0
  595. data/test/wsdl_mapper/svc_generation/operation_s8r_generator_test.rb +165 -0
  596. data/test/wsdl_mapper/svc_generation/port_generator_test.rb +43 -0
  597. data/test/wsdl_mapper/svc_generation/proxy_generator_test.rb +40 -0
  598. data/test/wsdl_mapper/svc_generation/service_generator_test.rb +38 -0
  599. data/test/wsdl_mapper/svc_generation/svc_generator_test.rb +38 -0
  600. data/test/wsdl_mapper/type_mapping/base64_binary_test.rb +27 -0
  601. data/test/wsdl_mapper/type_mapping/base_test.rb +37 -0
  602. data/test/wsdl_mapper/type_mapping/boolean_test.rb +25 -0
  603. data/test/wsdl_mapper/type_mapping/date_parts_test.rb +81 -0
  604. data/test/wsdl_mapper/type_mapping/date_test.rb +23 -0
  605. data/test/wsdl_mapper/type_mapping/date_time_test.rb +23 -0
  606. data/test/wsdl_mapper/type_mapping/decimal_test.rb +21 -0
  607. data/test/wsdl_mapper/type_mapping/duration_test.rb +34 -0
  608. data/test/wsdl_mapper/type_mapping/float_test.rb +27 -0
  609. data/test/wsdl_mapper/type_mapping/hex_binary_test.rb +27 -0
  610. data/test/wsdl_mapper/type_mapping/integer_test.rb +36 -0
  611. data/test/wsdl_mapper/type_mapping/string_test.rb +24 -0
  612. data/test/wsdl_mapper/type_mapping/time_test.rb +29 -0
  613. data/test/wsdl_mapper/type_mapping/uri_test.rb +28 -0
  614. data/test/wsdl_mapper/type_mapping_test.rb +70 -0
  615. data/test/wsdl_mapper_testing/stub_connection_test.rb +55 -0
  616. data/wsdl-mapper.gemspec +39 -0
  617. metadata +1038 -0
@@ -0,0 +1,4034 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <wsdl:definitions xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
3
+ xmlns:tns="http://www.cdiscount.com" xmlns:wsaw="http://www.w3.org/2006/05/addressing/wsdl"
4
+ name="MarketplaceAPIService" targetNamespace="http://www.cdiscount.com">
5
+ <wsdl:types>
6
+ <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified" targetNamespace="http://www.cdiscount.com">
7
+ <xs:import namespace="http://schemas.datacontract.org/2004/07/Cdiscount.Framework.Core.Communication.Messages"/>
8
+ <xs:import namespace="http://schemas.microsoft.com/2003/10/Serialization/Arrays"/>
9
+ <xs:import namespace="http://schemas.datacontract.org/2004/07/Cdiscount.Service.Marketplace.API.External.Contract.Data.Product"/>
10
+ <xs:import namespace="http://schemas.microsoft.com/2003/10/Serialization/"/>
11
+ <xs:import namespace="http://schemas.datacontract.org/2004/07/Cdiscount.Service.Marketplace.API.External.Contract.Data.Mail"/>
12
+ <xs:element name="GetProductList">
13
+ <xs:complexType>
14
+ <xs:sequence>
15
+ <xs:element xmlns:q1="http://schemas.datacontract.org/2004/07/Cdiscount.Framework.Core.Communication.Messages" minOccurs="0" name="headerMessage" nillable="true" type="q1:HeaderMessage"/>
16
+ <xs:element minOccurs="0" name="productFilter" nillable="true" type="tns:ProductFilter"/>
17
+ </xs:sequence>
18
+ </xs:complexType>
19
+ </xs:element>
20
+ <xs:complexType name="ProductFilter">
21
+ <xs:sequence>
22
+ <xs:element minOccurs="0" name="CategoryCode" nillable="true" type="xs:string"/>
23
+ </xs:sequence>
24
+ </xs:complexType>
25
+ <xs:element name="ProductFilter" nillable="true" type="tns:ProductFilter"/>
26
+ <xs:element name="GetProductListResponse">
27
+ <xs:complexType>
28
+ <xs:sequence>
29
+ <xs:element minOccurs="0" name="GetProductListResult" nillable="true" type="tns:ProductListMessage"/>
30
+ </xs:sequence>
31
+ </xs:complexType>
32
+ </xs:element>
33
+ <xs:complexType name="ProductListMessage">
34
+ <xs:complexContent mixed="false">
35
+ <xs:extension base="tns:ServiceBaseAPIMessage">
36
+ <xs:sequence>
37
+ <xs:element minOccurs="0" name="ProductList" nillable="true" type="tns:ArrayOfProduct"/>
38
+ </xs:sequence>
39
+ </xs:extension>
40
+ </xs:complexContent>
41
+ </xs:complexType>
42
+ <xs:element name="ProductListMessage" nillable="true" type="tns:ProductListMessage"/>
43
+ <xs:complexType name="ServiceBaseAPIMessage">
44
+ <xs:complexContent mixed="false">
45
+ <xs:extension xmlns:q2="http://schemas.datacontract.org/2004/07/Cdiscount.Framework.Core.Communication.Messages" base="q2:ServiceMessage">
46
+ <xs:sequence>
47
+ <xs:element minOccurs="0" name="ErrorList" nillable="true" type="tns:ArrayOfError"/>
48
+ <xs:element minOccurs="0" name="SellerLogin" nillable="true" type="xs:string"/>
49
+ <xs:element minOccurs="0" name="TokenId" nillable="true" type="xs:string"/>
50
+ </xs:sequence>
51
+ </xs:extension>
52
+ </xs:complexContent>
53
+ </xs:complexType>
54
+ <xs:element name="ServiceBaseAPIMessage" nillable="true" type="tns:ServiceBaseAPIMessage"/>
55
+ <xs:complexType name="ArrayOfError">
56
+ <xs:sequence>
57
+ <xs:element minOccurs="0" maxOccurs="unbounded" name="Error" nillable="true" type="tns:Error"/>
58
+ </xs:sequence>
59
+ </xs:complexType>
60
+ <xs:element name="ArrayOfError" nillable="true" type="tns:ArrayOfError"/>
61
+ <xs:complexType name="Error">
62
+ <xs:sequence>
63
+ <xs:element name="ErrorType" type="tns:ErrorTypeEnum"/>
64
+ <xs:element name="Message" nillable="true" type="xs:string"/>
65
+ </xs:sequence>
66
+ </xs:complexType>
67
+ <xs:element name="Error" nillable="true" type="tns:Error"/>
68
+ <xs:simpleType name="ErrorTypeEnum">
69
+ <xs:restriction base="xs:string">
70
+ <xs:enumeration value="UnexpectedException"/>
71
+ <xs:enumeration value="MissingField"/>
72
+ <xs:enumeration value="PackageNotFound"/>
73
+ <xs:enumeration value="PackageMatchingFileError"/>
74
+ <xs:enumeration value="OrderNotFound"/>
75
+ <xs:enumeration value="OrderStateIncoherent"/>
76
+ <xs:enumeration value="OrderLineCancelledAcceptedConflict"/>
77
+ <xs:enumeration value="SellerNotFound"/>
78
+ <xs:enumeration value="InvalidFileFormat"/>
79
+ <xs:enumeration value="FileAlreadySubmitted"/>
80
+ <xs:enumeration value="InvalidRequest"/>
81
+ <xs:enumeration value="FileDownloadException"/>
82
+ <xs:enumeration value="SellerNotAuthorized"/>
83
+ <xs:enumeration value="OrderLineNotFound"/>
84
+ <xs:enumeration value="OrderLineIncoherentState"/>
85
+ <xs:enumeration value="FunctionNotActive"/>
86
+ <xs:enumeration value="OrderPriceOrQuantityError"/>
87
+ <xs:enumeration value="OrderTrackingInformationError"/>
88
+ <xs:enumeration value="TooManyProductsInPackageError"/>
89
+ </xs:restriction>
90
+ </xs:simpleType>
91
+ <xs:element name="ErrorTypeEnum" nillable="true" type="tns:ErrorTypeEnum"/>
92
+ <xs:complexType name="ArrayOfProduct">
93
+ <xs:sequence>
94
+ <xs:element minOccurs="0" maxOccurs="unbounded" name="Product" nillable="true" type="tns:Product"/>
95
+ </xs:sequence>
96
+ </xs:complexType>
97
+ <xs:element name="ArrayOfProduct" nillable="true" type="tns:ArrayOfProduct"/>
98
+ <xs:complexType name="Product">
99
+ <xs:sequence>
100
+ <xs:element minOccurs="0" name="BrandName" nillable="true" type="xs:string"/>
101
+ <xs:element xmlns:q3="http://schemas.microsoft.com/2003/10/Serialization/Arrays" minOccurs="0" name="EANList" nillable="true" type="q3:ArrayOfstring"/>
102
+ <xs:element minOccurs="0" name="ISBN" nillable="true" type="xs:string"/>
103
+ <xs:element minOccurs="0" name="Name" nillable="true" type="xs:string"/>
104
+ <xs:element minOccurs="0" name="ProductType" type="tns:ProductTypeEnum"/>
105
+ <xs:element minOccurs="0" name="SKU" nillable="true" type="xs:string"/>
106
+ </xs:sequence>
107
+ </xs:complexType>
108
+ <xs:element name="Product" nillable="true" type="tns:Product"/>
109
+ <xs:simpleType name="ProductTypeEnum">
110
+ <xs:restriction base="xs:string">
111
+ <xs:enumeration value="Standard"/>
112
+ <xs:enumeration value="Variant"/>
113
+ </xs:restriction>
114
+ </xs:simpleType>
115
+ <xs:element name="ProductTypeEnum" nillable="true" type="tns:ProductTypeEnum"/>
116
+ <xs:element name="SubmitProductPackage">
117
+ <xs:complexType>
118
+ <xs:sequence>
119
+ <xs:element xmlns:q4="http://schemas.datacontract.org/2004/07/Cdiscount.Framework.Core.Communication.Messages" minOccurs="0" name="headerMessage" nillable="true" type="q4:HeaderMessage"/>
120
+ <xs:element minOccurs="0" name="productPackageRequest" nillable="true" type="tns:ProductPackageRequest"/>
121
+ </xs:sequence>
122
+ </xs:complexType>
123
+ </xs:element>
124
+ <xs:complexType name="ProductPackageRequest">
125
+ <xs:sequence>
126
+ <xs:element minOccurs="0" name="ZipFileFullPath" nillable="true" type="xs:string"/>
127
+ </xs:sequence>
128
+ </xs:complexType>
129
+ <xs:element name="ProductPackageRequest" nillable="true" type="tns:ProductPackageRequest"/>
130
+ <xs:element name="SubmitProductPackageResponse">
131
+ <xs:complexType>
132
+ <xs:sequence>
133
+ <xs:element minOccurs="0" name="SubmitProductPackageResult" nillable="true" type="tns:ProductIntegrationReportMessage"/>
134
+ </xs:sequence>
135
+ </xs:complexType>
136
+ </xs:element>
137
+ <xs:complexType name="ProductIntegrationReportMessage">
138
+ <xs:complexContent mixed="false">
139
+ <xs:extension base="tns:ServiceBaseAPIMessage">
140
+ <xs:sequence>
141
+ <xs:element minOccurs="0" name="NumberOfErrors" type="xs:int"/>
142
+ <xs:element minOccurs="0" name="PackageId" type="xs:long"/>
143
+ <xs:element minOccurs="0" name="PackageIntegrationStatus" nillable="true" type="xs:string"/>
144
+ <xs:element minOccurs="0" name="ProductLogList" nillable="true" type="tns:ArrayOfProductReportLog"/>
145
+ </xs:sequence>
146
+ </xs:extension>
147
+ </xs:complexContent>
148
+ </xs:complexType>
149
+ <xs:element name="ProductIntegrationReportMessage" nillable="true" type="tns:ProductIntegrationReportMessage"/>
150
+ <xs:complexType name="ArrayOfProductReportLog">
151
+ <xs:sequence>
152
+ <xs:element minOccurs="0" maxOccurs="unbounded" name="ProductReportLog" nillable="true" type="tns:ProductReportLog"/>
153
+ </xs:sequence>
154
+ </xs:complexType>
155
+ <xs:element name="ArrayOfProductReportLog" nillable="true" type="tns:ArrayOfProductReportLog"/>
156
+ <xs:complexType name="ProductReportLog">
157
+ <xs:sequence>
158
+ <xs:element minOccurs="0" name="LogDate" type="xs:dateTime"/>
159
+ <xs:element minOccurs="0" name="ProductIntegrationStatus" nillable="true" type="xs:string"/>
160
+ <xs:element minOccurs="0" name="PropertyList" nillable="true" type="tns:ArrayOfProductReportPropertyLog"/>
161
+ <xs:element minOccurs="0" name="SKU" nillable="true" type="xs:string"/>
162
+ <xs:element minOccurs="0" name="Validated" type="xs:boolean"/>
163
+ </xs:sequence>
164
+ </xs:complexType>
165
+ <xs:element name="ProductReportLog" nillable="true" type="tns:ProductReportLog"/>
166
+ <xs:complexType name="ArrayOfProductReportPropertyLog">
167
+ <xs:sequence>
168
+ <xs:element minOccurs="0" maxOccurs="unbounded" name="ProductReportPropertyLog" nillable="true" type="tns:ProductReportPropertyLog"/>
169
+ </xs:sequence>
170
+ </xs:complexType>
171
+ <xs:element name="ArrayOfProductReportPropertyLog" nillable="true" type="tns:ArrayOfProductReportPropertyLog"/>
172
+ <xs:complexType name="ProductReportPropertyLog">
173
+ <xs:sequence>
174
+ <xs:element minOccurs="0" name="ErrorCode" nillable="true" type="xs:string"/>
175
+ <xs:element minOccurs="0" name="LogMessage" nillable="true" type="xs:string"/>
176
+ <xs:element minOccurs="0" name="Name" nillable="true" type="xs:string"/>
177
+ <xs:element minOccurs="0" name="PropertyError" nillable="true" type="xs:string"/>
178
+ </xs:sequence>
179
+ </xs:complexType>
180
+ <xs:element name="ProductReportPropertyLog" nillable="true" type="tns:ProductReportPropertyLog"/>
181
+ <xs:element name="GetProductPackageSubmissionResult">
182
+ <xs:complexType>
183
+ <xs:sequence>
184
+ <xs:element xmlns:q5="http://schemas.datacontract.org/2004/07/Cdiscount.Framework.Core.Communication.Messages" minOccurs="0" name="headerMessage" nillable="true" type="q5:HeaderMessage"/>
185
+ <xs:element minOccurs="0" name="productPackageFilter" nillable="true" type="tns:PackageFilter"/>
186
+ </xs:sequence>
187
+ </xs:complexType>
188
+ </xs:element>
189
+ <xs:complexType name="PackageFilter">
190
+ <xs:sequence>
191
+ <xs:element minOccurs="0" name="PackageID" type="xs:long"/>
192
+ </xs:sequence>
193
+ </xs:complexType>
194
+ <xs:element name="PackageFilter" nillable="true" type="tns:PackageFilter"/>
195
+ <xs:element name="GetProductPackageSubmissionResultResponse">
196
+ <xs:complexType>
197
+ <xs:sequence>
198
+ <xs:element minOccurs="0" name="GetProductPackageSubmissionResultResult" nillable="true" type="tns:ProductIntegrationReportMessage"/>
199
+ </xs:sequence>
200
+ </xs:complexType>
201
+ </xs:element>
202
+ <xs:element name="GetProductPackageProductMatchingFileData">
203
+ <xs:complexType>
204
+ <xs:sequence>
205
+ <xs:element xmlns:q6="http://schemas.datacontract.org/2004/07/Cdiscount.Framework.Core.Communication.Messages" minOccurs="0" name="headerMessage" nillable="true" type="q6:HeaderMessage"/>
206
+ <xs:element minOccurs="0" name="productPackageFilter" nillable="true" type="tns:PackageFilter"/>
207
+ </xs:sequence>
208
+ </xs:complexType>
209
+ </xs:element>
210
+ <xs:element name="GetProductPackageProductMatchingFileDataResponse">
211
+ <xs:complexType>
212
+ <xs:sequence>
213
+ <xs:element minOccurs="0" name="GetProductPackageProductMatchingFileDataResult" nillable="true" type="tns:ProductMatchingFileMessage"/>
214
+ </xs:sequence>
215
+ </xs:complexType>
216
+ </xs:element>
217
+ <xs:complexType name="ProductMatchingFileMessage">
218
+ <xs:complexContent mixed="false">
219
+ <xs:extension base="tns:ServiceBaseAPIMessage">
220
+ <xs:sequence>
221
+ <xs:element minOccurs="0" name="PackageId" type="xs:long"/>
222
+ <xs:element minOccurs="0" name="ProductMatchingList" nillable="true" type="tns:ArrayOfProductMatching"/>
223
+ </xs:sequence>
224
+ </xs:extension>
225
+ </xs:complexContent>
226
+ </xs:complexType>
227
+ <xs:element name="ProductMatchingFileMessage" nillable="true" type="tns:ProductMatchingFileMessage"/>
228
+ <xs:complexType name="ArrayOfProductMatching">
229
+ <xs:sequence>
230
+ <xs:element minOccurs="0" maxOccurs="unbounded" name="ProductMatching" nillable="true" type="tns:ProductMatching"/>
231
+ </xs:sequence>
232
+ </xs:complexType>
233
+ <xs:element name="ArrayOfProductMatching" nillable="true" type="tns:ArrayOfProductMatching"/>
234
+ <xs:complexType name="ProductMatching">
235
+ <xs:sequence>
236
+ <xs:element minOccurs="0" name="Color" nillable="true" type="xs:string"/>
237
+ <xs:element minOccurs="0" name="Comment" nillable="true" type="xs:string"/>
238
+ <xs:element name="Ean" nillable="true" type="xs:string"/>
239
+ <xs:element name="MatchingStatus" type="tns:ProductMatchingStatusEnum"/>
240
+ <xs:element name="Name" nillable="true" type="xs:string"/>
241
+ <xs:element name="SellerProductId" nillable="true" type="xs:string"/>
242
+ <xs:element minOccurs="0" name="Size" nillable="true" type="xs:string"/>
243
+ <xs:element name="Sku" nillable="true" type="xs:string"/>
244
+ </xs:sequence>
245
+ </xs:complexType>
246
+ <xs:element name="ProductMatching" nillable="true" type="tns:ProductMatching"/>
247
+ <xs:simpleType name="ProductMatchingStatusEnum">
248
+ <xs:restriction base="xs:string">
249
+ <xs:enumeration value="None"/>
250
+ <xs:enumeration value="Pending"/>
251
+ <xs:enumeration value="Ok"/>
252
+ <xs:enumeration value="Ko"/>
253
+ </xs:restriction>
254
+ </xs:simpleType>
255
+ <xs:element name="ProductMatchingStatusEnum" nillable="true" type="tns:ProductMatchingStatusEnum"/>
256
+ <xs:element name="GetAllowedCategoryTree">
257
+ <xs:complexType>
258
+ <xs:sequence>
259
+ <xs:element xmlns:q7="http://schemas.datacontract.org/2004/07/Cdiscount.Framework.Core.Communication.Messages" minOccurs="0" name="headerMessage" nillable="true" type="q7:HeaderMessage"/>
260
+ </xs:sequence>
261
+ </xs:complexType>
262
+ </xs:element>
263
+ <xs:element name="GetAllowedCategoryTreeResponse">
264
+ <xs:complexType>
265
+ <xs:sequence>
266
+ <xs:element minOccurs="0" name="GetAllowedCategoryTreeResult" nillable="true" type="tns:CategoryTreeMessage"/>
267
+ </xs:sequence>
268
+ </xs:complexType>
269
+ </xs:element>
270
+ <xs:complexType name="CategoryTreeMessage">
271
+ <xs:complexContent mixed="false">
272
+ <xs:extension base="tns:ServiceBaseAPIMessage">
273
+ <xs:sequence>
274
+ <xs:element minOccurs="0" name="CategoryTree" nillable="true" type="tns:CategoryTree"/>
275
+ </xs:sequence>
276
+ </xs:extension>
277
+ </xs:complexContent>
278
+ </xs:complexType>
279
+ <xs:element name="CategoryTreeMessage" nillable="true" type="tns:CategoryTreeMessage"/>
280
+ <xs:complexType name="CategoryTree">
281
+ <xs:sequence>
282
+ <xs:element minOccurs="0" name="AllowOfferIntegration" type="xs:boolean"/>
283
+ <xs:element minOccurs="0" name="AllowProductIntegration" type="xs:boolean"/>
284
+ <xs:element minOccurs="0" name="ChildrenCategoryList" nillable="true" type="tns:ArrayOfCategoryTree"/>
285
+ <xs:element minOccurs="0" name="Code" nillable="true" type="xs:string"/>
286
+ <xs:element minOccurs="0" name="Name" nillable="true" type="xs:string"/>
287
+ </xs:sequence>
288
+ </xs:complexType>
289
+ <xs:element name="CategoryTree" nillable="true" type="tns:CategoryTree"/>
290
+ <xs:complexType name="ArrayOfCategoryTree">
291
+ <xs:sequence>
292
+ <xs:element minOccurs="0" maxOccurs="unbounded" name="CategoryTree" nillable="true" type="tns:CategoryTree"/>
293
+ </xs:sequence>
294
+ </xs:complexType>
295
+ <xs:element name="ArrayOfCategoryTree" nillable="true" type="tns:ArrayOfCategoryTree"/>
296
+ <xs:element name="GetAllAllowedCategoryTree">
297
+ <xs:complexType>
298
+ <xs:sequence>
299
+ <xs:element xmlns:q8="http://schemas.datacontract.org/2004/07/Cdiscount.Framework.Core.Communication.Messages" minOccurs="0" name="headerMessage" nillable="true" type="q8:HeaderMessage"/>
300
+ </xs:sequence>
301
+ </xs:complexType>
302
+ </xs:element>
303
+ <xs:element name="GetAllAllowedCategoryTreeResponse">
304
+ <xs:complexType>
305
+ <xs:sequence>
306
+ <xs:element minOccurs="0" name="GetAllAllowedCategoryTreeResult" nillable="true" type="tns:CategoryTreeMessage"/>
307
+ </xs:sequence>
308
+ </xs:complexType>
309
+ </xs:element>
310
+ <xs:element name="GetModelList">
311
+ <xs:complexType>
312
+ <xs:sequence>
313
+ <xs:element xmlns:q9="http://schemas.datacontract.org/2004/07/Cdiscount.Framework.Core.Communication.Messages" minOccurs="0" name="headerMessage" nillable="true" type="q9:HeaderMessage"/>
314
+ <xs:element minOccurs="0" name="modelFilter" nillable="true" type="tns:ModelFilter"/>
315
+ </xs:sequence>
316
+ </xs:complexType>
317
+ </xs:element>
318
+ <xs:complexType name="ModelFilter">
319
+ <xs:sequence>
320
+ <xs:element xmlns:q10="http://schemas.microsoft.com/2003/10/Serialization/Arrays" minOccurs="0" name="CategoryCodeList" nillable="true" type="q10:ArrayOfstring"/>
321
+ </xs:sequence>
322
+ </xs:complexType>
323
+ <xs:element name="ModelFilter" nillable="true" type="tns:ModelFilter"/>
324
+ <xs:element name="GetModelListResponse">
325
+ <xs:complexType>
326
+ <xs:sequence>
327
+ <xs:element minOccurs="0" name="GetModelListResult" nillable="true" type="tns:ProductModelListMessage"/>
328
+ </xs:sequence>
329
+ </xs:complexType>
330
+ </xs:element>
331
+ <xs:complexType name="ProductModelListMessage">
332
+ <xs:complexContent mixed="false">
333
+ <xs:extension base="tns:ServiceBaseAPIMessage">
334
+ <xs:sequence>
335
+ <xs:element minOccurs="0" name="ModelList" nillable="true" type="tns:ArrayOfProductModel"/>
336
+ </xs:sequence>
337
+ </xs:extension>
338
+ </xs:complexContent>
339
+ </xs:complexType>
340
+ <xs:element name="ProductModelListMessage" nillable="true" type="tns:ProductModelListMessage"/>
341
+ <xs:complexType name="ArrayOfProductModel">
342
+ <xs:sequence>
343
+ <xs:element minOccurs="0" maxOccurs="unbounded" name="ProductModel" nillable="true" type="tns:ProductModel"/>
344
+ </xs:sequence>
345
+ </xs:complexType>
346
+ <xs:element name="ArrayOfProductModel" nillable="true" type="tns:ArrayOfProductModel"/>
347
+ <xs:complexType name="ProductModel">
348
+ <xs:sequence>
349
+ <xs:element minOccurs="0" name="CategoryCode" nillable="true" type="xs:string"/>
350
+ <xs:element minOccurs="0" name="Definition" nillable="true" type="tns:ModelDefinition"/>
351
+ <xs:element minOccurs="0" name="ModelId" type="xs:int"/>
352
+ <xs:element minOccurs="0" name="Name" nillable="true" type="xs:string"/>
353
+ <xs:element minOccurs="0" name="ProductXmlStructure" nillable="true" type="xs:string"/>
354
+ <xs:element minOccurs="0" name="VariationValueList" nillable="true" type="tns:ArrayOfVariationDescription"/>
355
+ <xs:element minOccurs="0" name="Version" nillable="true" type="xs:string"/>
356
+ </xs:sequence>
357
+ </xs:complexType>
358
+ <xs:element name="ProductModel" nillable="true" type="tns:ProductModel"/>
359
+ <xs:complexType name="ModelDefinition">
360
+ <xs:sequence>
361
+ <xs:element xmlns:q11="http://schemas.microsoft.com/2003/10/Serialization/Arrays" minOccurs="0" name="ListProperties" nillable="true" type="q11:ArrayOfKeyValueOfstringArrayOfstringty7Ep6D1"/>
362
+ <xs:element xmlns:q12="http://schemas.microsoft.com/2003/10/Serialization/Arrays" minOccurs="0" name="MultipleFreeTextProperties" nillable="true" type="q12:ArrayOfKeyValueOfstringArrayOfstringty7Ep6D1"/>
363
+ <xs:element xmlns:q13="http://schemas.microsoft.com/2003/10/Serialization/Arrays" minOccurs="0" name="SingleFreeTextProperties" nillable="true" type="q13:ArrayOfKeyValueOfstringArrayOfstringty7Ep6D1"/>
364
+ </xs:sequence>
365
+ </xs:complexType>
366
+ <xs:element name="ModelDefinition" nillable="true" type="tns:ModelDefinition"/>
367
+ <xs:complexType name="ArrayOfVariationDescription">
368
+ <xs:sequence>
369
+ <xs:element minOccurs="0" maxOccurs="unbounded" name="VariationDescription" nillable="true" type="tns:VariationDescription"/>
370
+ </xs:sequence>
371
+ </xs:complexType>
372
+ <xs:element name="ArrayOfVariationDescription" nillable="true" type="tns:ArrayOfVariationDescription"/>
373
+ <xs:complexType name="VariationDescription">
374
+ <xs:sequence>
375
+ <xs:element minOccurs="0" name="VariantValueDescription" nillable="true" type="xs:string"/>
376
+ <xs:element minOccurs="0" name="VariantValueId" type="xs:int"/>
377
+ </xs:sequence>
378
+ </xs:complexType>
379
+ <xs:element name="VariationDescription" nillable="true" type="tns:VariationDescription"/>
380
+ <xs:element name="GetAllModelList">
381
+ <xs:complexType>
382
+ <xs:sequence>
383
+ <xs:element xmlns:q14="http://schemas.datacontract.org/2004/07/Cdiscount.Framework.Core.Communication.Messages" minOccurs="0" name="headerMessage" nillable="true" type="q14:HeaderMessage"/>
384
+ </xs:sequence>
385
+ </xs:complexType>
386
+ </xs:element>
387
+ <xs:element name="GetAllModelListResponse">
388
+ <xs:complexType>
389
+ <xs:sequence>
390
+ <xs:element minOccurs="0" name="GetAllModelListResult" nillable="true" type="tns:ProductModelListMessage"/>
391
+ </xs:sequence>
392
+ </xs:complexType>
393
+ </xs:element>
394
+ <xs:element name="GetBrandList">
395
+ <xs:complexType>
396
+ <xs:sequence>
397
+ <xs:element xmlns:q15="http://schemas.datacontract.org/2004/07/Cdiscount.Framework.Core.Communication.Messages" minOccurs="0" name="headerMessage" nillable="true" type="q15:HeaderMessage"/>
398
+ </xs:sequence>
399
+ </xs:complexType>
400
+ </xs:element>
401
+ <xs:element name="GetBrandListResponse">
402
+ <xs:complexType>
403
+ <xs:sequence>
404
+ <xs:element xmlns:q16="http://schemas.datacontract.org/2004/07/Cdiscount.Service.Marketplace.API.External.Contract.Data.Product" minOccurs="0" name="GetBrandListResult" nillable="true" type="q16:BrandListMessage"/>
405
+ </xs:sequence>
406
+ </xs:complexType>
407
+ </xs:element>
408
+ <xs:complexType name="ArrayOfBrand">
409
+ <xs:sequence>
410
+ <xs:element minOccurs="0" maxOccurs="unbounded" name="Brand" nillable="true" type="tns:Brand"/>
411
+ </xs:sequence>
412
+ </xs:complexType>
413
+ <xs:element name="ArrayOfBrand" nillable="true" type="tns:ArrayOfBrand"/>
414
+ <xs:complexType name="Brand">
415
+ <xs:sequence>
416
+ <xs:element minOccurs="0" name="BrandName" nillable="true" type="xs:string"/>
417
+ </xs:sequence>
418
+ </xs:complexType>
419
+ <xs:element name="Brand" nillable="true" type="tns:Brand"/>
420
+ <xs:element name="SubmitOfferPackage">
421
+ <xs:complexType>
422
+ <xs:sequence>
423
+ <xs:element xmlns:q17="http://schemas.datacontract.org/2004/07/Cdiscount.Framework.Core.Communication.Messages" minOccurs="0" name="headerMessage" nillable="true" type="q17:HeaderMessage"/>
424
+ <xs:element minOccurs="0" name="offerPackageRequest" nillable="true" type="tns:OfferPackageRequest"/>
425
+ </xs:sequence>
426
+ </xs:complexType>
427
+ </xs:element>
428
+ <xs:complexType name="OfferPackageRequest">
429
+ <xs:sequence>
430
+ <xs:element minOccurs="0" name="ZipFileFullPath" nillable="true" type="xs:string"/>
431
+ </xs:sequence>
432
+ </xs:complexType>
433
+ <xs:element name="OfferPackageRequest" nillable="true" type="tns:OfferPackageRequest"/>
434
+ <xs:element name="SubmitOfferPackageResponse">
435
+ <xs:complexType>
436
+ <xs:sequence>
437
+ <xs:element minOccurs="0" name="SubmitOfferPackageResult" nillable="true" type="tns:OfferIntegrationReportMessage"/>
438
+ </xs:sequence>
439
+ </xs:complexType>
440
+ </xs:element>
441
+ <xs:complexType name="OfferIntegrationReportMessage">
442
+ <xs:complexContent mixed="false">
443
+ <xs:extension base="tns:ServiceBaseAPIMessage">
444
+ <xs:sequence>
445
+ <xs:element minOccurs="0" name="NumberOfErrors" type="xs:int"/>
446
+ <xs:element minOccurs="0" name="OfferLogList" nillable="true" type="tns:ArrayOfOfferReportLog"/>
447
+ <xs:element minOccurs="0" name="PackageId" type="xs:long"/>
448
+ <xs:element minOccurs="0" name="PackageIntegrationStatus" nillable="true" type="xs:string"/>
449
+ </xs:sequence>
450
+ </xs:extension>
451
+ </xs:complexContent>
452
+ </xs:complexType>
453
+ <xs:element name="OfferIntegrationReportMessage" nillable="true" type="tns:OfferIntegrationReportMessage"/>
454
+ <xs:complexType name="ArrayOfOfferReportLog">
455
+ <xs:sequence>
456
+ <xs:element minOccurs="0" maxOccurs="unbounded" name="OfferReportLog" nillable="true" type="tns:OfferReportLog"/>
457
+ </xs:sequence>
458
+ </xs:complexType>
459
+ <xs:element name="ArrayOfOfferReportLog" nillable="true" type="tns:ArrayOfOfferReportLog"/>
460
+ <xs:complexType name="OfferReportLog">
461
+ <xs:sequence>
462
+ <xs:element minOccurs="0" name="LogDate" type="xs:dateTime"/>
463
+ <xs:element minOccurs="0" name="OfferIntegrationStatus" nillable="true" type="xs:string"/>
464
+ <xs:element minOccurs="0" name="ProductEan" nillable="true" type="xs:string"/>
465
+ <xs:element minOccurs="0" name="PropertyList" nillable="true" type="tns:ArrayOfOfferReportPropertyLog"/>
466
+ <xs:element minOccurs="0" name="SellerProductId" nillable="true" type="xs:string"/>
467
+ <xs:element minOccurs="0" name="Sku" nillable="true" type="xs:string"/>
468
+ <xs:element minOccurs="0" name="Validated" type="xs:boolean"/>
469
+ </xs:sequence>
470
+ </xs:complexType>
471
+ <xs:element name="OfferReportLog" nillable="true" type="tns:OfferReportLog"/>
472
+ <xs:complexType name="ArrayOfOfferReportPropertyLog">
473
+ <xs:sequence>
474
+ <xs:element minOccurs="0" maxOccurs="unbounded" name="OfferReportPropertyLog" nillable="true" type="tns:OfferReportPropertyLog"/>
475
+ </xs:sequence>
476
+ </xs:complexType>
477
+ <xs:element name="ArrayOfOfferReportPropertyLog" nillable="true" type="tns:ArrayOfOfferReportPropertyLog"/>
478
+ <xs:complexType name="OfferReportPropertyLog">
479
+ <xs:sequence>
480
+ <xs:element minOccurs="0" name="LogMessage" nillable="true" type="xs:string"/>
481
+ <xs:element minOccurs="0" name="Name" nillable="true" type="xs:string"/>
482
+ <xs:element minOccurs="0" name="PropertyCode" nillable="true" type="xs:string"/>
483
+ <xs:element minOccurs="0" name="PropertyError" nillable="true" type="xs:string"/>
484
+ </xs:sequence>
485
+ </xs:complexType>
486
+ <xs:element name="OfferReportPropertyLog" nillable="true" type="tns:OfferReportPropertyLog"/>
487
+ <xs:element name="GetOfferPackageSubmissionResult">
488
+ <xs:complexType>
489
+ <xs:sequence>
490
+ <xs:element xmlns:q18="http://schemas.datacontract.org/2004/07/Cdiscount.Framework.Core.Communication.Messages" minOccurs="0" name="headerMessage" nillable="true" type="q18:HeaderMessage"/>
491
+ <xs:element minOccurs="0" name="offerPackageFilter" nillable="true" type="tns:PackageFilter"/>
492
+ </xs:sequence>
493
+ </xs:complexType>
494
+ </xs:element>
495
+ <xs:element name="GetOfferPackageSubmissionResultResponse">
496
+ <xs:complexType>
497
+ <xs:sequence>
498
+ <xs:element minOccurs="0" name="GetOfferPackageSubmissionResultResult" nillable="true" type="tns:OfferIntegrationReportMessage"/>
499
+ </xs:sequence>
500
+ </xs:complexType>
501
+ </xs:element>
502
+ <xs:element name="GetOfferList">
503
+ <xs:complexType>
504
+ <xs:sequence>
505
+ <xs:element xmlns:q19="http://schemas.datacontract.org/2004/07/Cdiscount.Framework.Core.Communication.Messages" minOccurs="0" name="headerMessage" nillable="true" type="q19:HeaderMessage"/>
506
+ <xs:element minOccurs="0" name="offerFilter" nillable="true" type="tns:OfferFilter"/>
507
+ </xs:sequence>
508
+ </xs:complexType>
509
+ </xs:element>
510
+ <xs:complexType name="OfferFilter">
511
+ <xs:sequence>
512
+ <xs:element minOccurs="0" name="OfferPoolId" nillable="true" type="xs:int"/>
513
+ <xs:element xmlns:q20="http://schemas.microsoft.com/2003/10/Serialization/Arrays" minOccurs="0" name="SellerProductIdList" nillable="true" type="q20:ArrayOfstring"/>
514
+ </xs:sequence>
515
+ </xs:complexType>
516
+ <xs:element name="OfferFilter" nillable="true" type="tns:OfferFilter"/>
517
+ <xs:element name="GetOfferListResponse">
518
+ <xs:complexType>
519
+ <xs:sequence>
520
+ <xs:element minOccurs="0" name="GetOfferListResult" nillable="true" type="tns:OfferListMessage"/>
521
+ </xs:sequence>
522
+ </xs:complexType>
523
+ </xs:element>
524
+ <xs:complexType name="OfferListMessage">
525
+ <xs:complexContent mixed="false">
526
+ <xs:extension base="tns:ServiceBaseAPIMessage">
527
+ <xs:sequence>
528
+ <xs:element minOccurs="0" name="OfferList" nillable="true" type="tns:ArrayOfOffer"/>
529
+ </xs:sequence>
530
+ </xs:extension>
531
+ </xs:complexContent>
532
+ </xs:complexType>
533
+ <xs:element name="OfferListMessage" nillable="true" type="tns:OfferListMessage"/>
534
+ <xs:complexType name="ArrayOfOffer">
535
+ <xs:sequence>
536
+ <xs:element minOccurs="0" maxOccurs="unbounded" name="Offer" nillable="true" type="tns:Offer"/>
537
+ </xs:sequence>
538
+ </xs:complexType>
539
+ <xs:element name="ArrayOfOffer" nillable="true" type="tns:ArrayOfOffer"/>
540
+ <xs:complexType name="Offer">
541
+ <xs:sequence>
542
+ <xs:element minOccurs="0" name="BestShippingCharges" type="xs:decimal"/>
543
+ <xs:element minOccurs="0" name="Comments" nillable="true" type="xs:string"/>
544
+ <xs:element minOccurs="0" name="CreationDate" type="xs:dateTime"/>
545
+ <xs:element minOccurs="0" name="DeaTax" type="xs:decimal"/>
546
+ <xs:element minOccurs="0" name="DiscountList" nillable="true" type="tns:ArrayOfDiscountComponent"/>
547
+ <xs:element minOccurs="0" name="EcoTax" type="xs:decimal"/>
548
+ <xs:element minOccurs="0" name="IntegrationPrice" type="xs:decimal"/>
549
+ <xs:element minOccurs="0" name="LastUpdateDate" type="xs:dateTime"/>
550
+ <xs:element minOccurs="0" name="MinimumPriceForPriceAlignment" nillable="true" type="xs:decimal"/>
551
+ <xs:element minOccurs="0" name="OfferBenchMark" nillable="true" type="tns:OfferPriceBenchMark"/>
552
+ <xs:element minOccurs="0" name="OfferPoolList" nillable="true" type="tns:ArrayOfOfferPool"/>
553
+ <xs:element minOccurs="0" name="OfferState" type="tns:OfferStateEnum"/>
554
+ <xs:element minOccurs="0" name="ParentProductId" nillable="true" type="xs:string"/>
555
+ <xs:element minOccurs="0" name="Price" type="xs:decimal"/>
556
+ <xs:element minOccurs="0" name="PriceMustBeAligned" type="tns:PriceAlignmentAction"/>
557
+ <xs:element minOccurs="0" name="ProductCondition" type="tns:ProductConditionEnum"/>
558
+ <xs:element minOccurs="0" name="ProductEan" nillable="true" type="xs:string"/>
559
+ <xs:element minOccurs="0" name="ProductId" nillable="true" type="xs:string"/>
560
+ <xs:element minOccurs="0" name="ProductPackagingUnit" type="tns:ProductPackagingUnit"/>
561
+ <xs:element minOccurs="0" name="ProductPackagingUnitPrice" type="xs:decimal"/>
562
+ <xs:element minOccurs="0" name="ProductPackagingValue" type="xs:decimal"/>
563
+ <xs:element minOccurs="0" name="SellerProductId" nillable="true" type="xs:string"/>
564
+ <xs:element minOccurs="0" name="ShippingInformationList" nillable="true" type="tns:ArrayOfShippingInformation"/>
565
+ <xs:element minOccurs="0" name="Stock" type="xs:int"/>
566
+ <xs:element minOccurs="0" name="StrikedPrice" nillable="true" type="xs:decimal"/>
567
+ <xs:element minOccurs="0" name="VatRate" type="xs:decimal"/>
568
+ </xs:sequence>
569
+ </xs:complexType>
570
+ <xs:element name="Offer" nillable="true" type="tns:Offer"/>
571
+ <xs:complexType name="ArrayOfDiscountComponent">
572
+ <xs:sequence>
573
+ <xs:element minOccurs="0" maxOccurs="unbounded" name="DiscountComponent" nillable="true" type="tns:DiscountComponent"/>
574
+ </xs:sequence>
575
+ </xs:complexType>
576
+ <xs:element name="ArrayOfDiscountComponent" nillable="true" type="tns:ArrayOfDiscountComponent"/>
577
+ <xs:complexType name="DiscountComponent">
578
+ <xs:sequence>
579
+ <xs:element minOccurs="0" name="DiscountValue" type="xs:decimal"/>
580
+ <xs:element minOccurs="0" name="EndDate" type="xs:dateTime"/>
581
+ <xs:element minOccurs="0" name="Price" type="xs:decimal"/>
582
+ <xs:element minOccurs="0" name="StartDate" type="xs:dateTime"/>
583
+ <xs:element minOccurs="0" name="Type" type="tns:DiscountType"/>
584
+ </xs:sequence>
585
+ </xs:complexType>
586
+ <xs:element name="DiscountComponent" nillable="true" type="tns:DiscountComponent"/>
587
+ <xs:simpleType name="DiscountType">
588
+ <xs:restriction base="xs:string">
589
+ <xs:enumeration value="StrikedPrice"/>
590
+ <xs:enumeration value="Flash"/>
591
+ <xs:enumeration value="Sales"/>
592
+ </xs:restriction>
593
+ </xs:simpleType>
594
+ <xs:element name="DiscountType" nillable="true" type="tns:DiscountType"/>
595
+ <xs:complexType name="OfferPriceBenchMark">
596
+ <xs:sequence>
597
+ <xs:element minOccurs="0" name="BestOfferPrice" type="xs:decimal"/>
598
+ <xs:element minOccurs="0" name="ProductCondition" type="tns:ProductConditionEnum"/>
599
+ <xs:element minOccurs="0" name="ProductState" type="tns:ProductStateEnum"/>
600
+ <xs:element minOccurs="0" name="ShippingCharges" type="xs:decimal"/>
601
+ </xs:sequence>
602
+ </xs:complexType>
603
+ <xs:element name="OfferPriceBenchMark" nillable="true" type="tns:OfferPriceBenchMark"/>
604
+ <xs:simpleType name="ProductConditionEnum">
605
+ <xs:restriction base="xs:string">
606
+ <xs:enumeration value="None"/>
607
+ <xs:enumeration value="LikeNew"/>
608
+ <xs:enumeration value="VeryGoodState"/>
609
+ <xs:enumeration value="GoodState"/>
610
+ <xs:enumeration value="AverageState"/>
611
+ <xs:enumeration value="Refurbished"/>
612
+ <xs:enumeration value="New"/>
613
+ </xs:restriction>
614
+ </xs:simpleType>
615
+ <xs:element name="ProductConditionEnum" nillable="true" type="tns:ProductConditionEnum"/>
616
+ <xs:simpleType name="ProductStateEnum">
617
+ <xs:restriction base="xs:string">
618
+ <xs:enumeration value="New">
619
+ <xs:annotation>
620
+ <xs:appinfo>
621
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">1</EnumerationValue>
622
+ </xs:appinfo>
623
+ </xs:annotation>
624
+ </xs:enumeration>
625
+ <xs:enumeration value="Used">
626
+ <xs:annotation>
627
+ <xs:appinfo>
628
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">2</EnumerationValue>
629
+ </xs:appinfo>
630
+ </xs:annotation>
631
+ </xs:enumeration>
632
+ </xs:restriction>
633
+ </xs:simpleType>
634
+ <xs:element name="ProductStateEnum" nillable="true" type="tns:ProductStateEnum"/>
635
+ <xs:complexType name="ArrayOfOfferPool">
636
+ <xs:sequence>
637
+ <xs:element minOccurs="0" maxOccurs="unbounded" name="OfferPool" nillable="true" type="tns:OfferPool"/>
638
+ </xs:sequence>
639
+ </xs:complexType>
640
+ <xs:element name="ArrayOfOfferPool" nillable="true" type="tns:ArrayOfOfferPool"/>
641
+ <xs:complexType name="OfferPool">
642
+ <xs:sequence>
643
+ <xs:element minOccurs="0" name="Description" nillable="true" type="xs:string"/>
644
+ <xs:element minOccurs="0" name="Id" type="xs:int"/>
645
+ </xs:sequence>
646
+ </xs:complexType>
647
+ <xs:element name="OfferPool" nillable="true" type="tns:OfferPool"/>
648
+ <xs:simpleType name="OfferStateEnum">
649
+ <xs:restriction base="xs:string">
650
+ <xs:enumeration value="WaitingForProductActivation">
651
+ <xs:annotation>
652
+ <xs:appinfo>
653
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">1</EnumerationValue>
654
+ </xs:appinfo>
655
+ </xs:annotation>
656
+ </xs:enumeration>
657
+ <xs:enumeration value="Active">
658
+ <xs:annotation>
659
+ <xs:appinfo>
660
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">2</EnumerationValue>
661
+ </xs:appinfo>
662
+ </xs:annotation>
663
+ </xs:enumeration>
664
+ <xs:enumeration value="Inactive">
665
+ <xs:annotation>
666
+ <xs:appinfo>
667
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">3</EnumerationValue>
668
+ </xs:appinfo>
669
+ </xs:annotation>
670
+ </xs:enumeration>
671
+ <xs:enumeration value="Archived">
672
+ <xs:annotation>
673
+ <xs:appinfo>
674
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">4</EnumerationValue>
675
+ </xs:appinfo>
676
+ </xs:annotation>
677
+ </xs:enumeration>
678
+ <xs:enumeration value="Fulfillment">
679
+ <xs:annotation>
680
+ <xs:appinfo>
681
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">5</EnumerationValue>
682
+ </xs:appinfo>
683
+ </xs:annotation>
684
+ </xs:enumeration>
685
+ </xs:restriction>
686
+ </xs:simpleType>
687
+ <xs:element name="OfferStateEnum" nillable="true" type="tns:OfferStateEnum"/>
688
+ <xs:simpleType name="PriceAlignmentAction">
689
+ <xs:restriction base="xs:string">
690
+ <xs:enumeration value="Empty"/>
691
+ <xs:enumeration value="Unknown"/>
692
+ <xs:enumeration value="Align"/>
693
+ <xs:enumeration value="DontAlign"/>
694
+ </xs:restriction>
695
+ </xs:simpleType>
696
+ <xs:element name="PriceAlignmentAction" nillable="true" type="tns:PriceAlignmentAction"/>
697
+ <xs:simpleType name="ProductPackagingUnit">
698
+ <xs:restriction base="xs:string">
699
+ <xs:enumeration value="None"/>
700
+ <xs:enumeration value="Liter"/>
701
+ <xs:enumeration value="Kilogram"/>
702
+ <xs:enumeration value="SquareMeter"/>
703
+ <xs:enumeration value="CubicMeter"/>
704
+ </xs:restriction>
705
+ </xs:simpleType>
706
+ <xs:element name="ProductPackagingUnit" nillable="true" type="tns:ProductPackagingUnit"/>
707
+ <xs:complexType name="ArrayOfShippingInformation">
708
+ <xs:sequence>
709
+ <xs:element minOccurs="0" maxOccurs="unbounded" name="ShippingInformation" nillable="true" type="tns:ShippingInformation"/>
710
+ </xs:sequence>
711
+ </xs:complexType>
712
+ <xs:element name="ArrayOfShippingInformation" nillable="true" type="tns:ArrayOfShippingInformation"/>
713
+ <xs:complexType name="ShippingInformation">
714
+ <xs:sequence>
715
+ <xs:element minOccurs="0" name="AdditionalShippingCharges" type="xs:decimal"/>
716
+ <xs:element minOccurs="0" name="DeliveryMode" nillable="true" type="tns:DeliveryModeInformation"/>
717
+ <xs:element minOccurs="0" name="MaxLeadTime" type="xs:int"/>
718
+ <xs:element minOccurs="0" name="MinLeadTime" type="xs:int"/>
719
+ <xs:element minOccurs="0" name="ShippingCharges" type="xs:decimal"/>
720
+ </xs:sequence>
721
+ </xs:complexType>
722
+ <xs:element name="ShippingInformation" nillable="true" type="tns:ShippingInformation"/>
723
+ <xs:complexType name="DeliveryModeInformation">
724
+ <xs:sequence>
725
+ <xs:element minOccurs="0" name="Code" nillable="true" type="xs:string"/>
726
+ <xs:element minOccurs="0" name="Name" nillable="true" type="xs:string"/>
727
+ </xs:sequence>
728
+ </xs:complexType>
729
+ <xs:element name="DeliveryModeInformation" nillable="true" type="tns:DeliveryModeInformation"/>
730
+ <xs:element name="GetOfferListPaginated">
731
+ <xs:complexType>
732
+ <xs:sequence>
733
+ <xs:element xmlns:q21="http://schemas.datacontract.org/2004/07/Cdiscount.Framework.Core.Communication.Messages" minOccurs="0" name="headerMessage" nillable="true" type="q21:HeaderMessage"/>
734
+ <xs:element minOccurs="0" name="offerFilter" nillable="true" type="tns:OfferFilterPaginated"/>
735
+ </xs:sequence>
736
+ </xs:complexType>
737
+ </xs:element>
738
+ <xs:complexType name="OfferFilterPaginated">
739
+ <xs:sequence>
740
+ <xs:element minOccurs="0" name="OfferFilterCriterion" nillable="true" type="tns:OfferFilterCriterion"/>
741
+ <xs:element minOccurs="0" name="OfferPoolId" nillable="true" type="xs:int"/>
742
+ <xs:element minOccurs="0" name="OfferSortOrder" nillable="true" type="tns:OfferSortOrder"/>
743
+ <xs:element name="PageNumber" type="xs:int"/>
744
+ </xs:sequence>
745
+ </xs:complexType>
746
+ <xs:element name="OfferFilterPaginated" nillable="true" type="tns:OfferFilterPaginated"/>
747
+ <xs:simpleType name="OfferFilterCriterion">
748
+ <xs:restriction base="xs:string">
749
+ <xs:enumeration value="NewOffersOnly"/>
750
+ <xs:enumeration value="UsedOffersOnly"/>
751
+ </xs:restriction>
752
+ </xs:simpleType>
753
+ <xs:element name="OfferFilterCriterion" nillable="true" type="tns:OfferFilterCriterion"/>
754
+ <xs:simpleType name="OfferSortOrder">
755
+ <xs:restriction base="xs:string">
756
+ <xs:enumeration value="BySoldQuantityDescending"/>
757
+ <xs:enumeration value="ByPriceAscending"/>
758
+ <xs:enumeration value="ByPriceDescending"/>
759
+ <xs:enumeration value="ByCreationDateDescending"/>
760
+ </xs:restriction>
761
+ </xs:simpleType>
762
+ <xs:element name="OfferSortOrder" nillable="true" type="tns:OfferSortOrder"/>
763
+ <xs:element name="GetOfferListPaginatedResponse">
764
+ <xs:complexType>
765
+ <xs:sequence>
766
+ <xs:element minOccurs="0" name="GetOfferListPaginatedResult" nillable="true" type="tns:OfferListPaginatedMessage"/>
767
+ </xs:sequence>
768
+ </xs:complexType>
769
+ </xs:element>
770
+ <xs:complexType name="OfferListPaginatedMessage">
771
+ <xs:complexContent mixed="false">
772
+ <xs:extension base="tns:OfferListMessage">
773
+ <xs:sequence>
774
+ <xs:element minOccurs="0" name="CurrentPageNumber" type="xs:int"/>
775
+ <xs:element minOccurs="0" name="NumberOfPages" type="xs:int"/>
776
+ </xs:sequence>
777
+ </xs:extension>
778
+ </xs:complexContent>
779
+ </xs:complexType>
780
+ <xs:element name="OfferListPaginatedMessage" nillable="true" type="tns:OfferListPaginatedMessage"/>
781
+ <xs:element name="GetSellerInformation">
782
+ <xs:complexType>
783
+ <xs:sequence>
784
+ <xs:element xmlns:q22="http://schemas.datacontract.org/2004/07/Cdiscount.Framework.Core.Communication.Messages" minOccurs="0" name="headerMessage" nillable="true" type="q22:HeaderMessage"/>
785
+ </xs:sequence>
786
+ </xs:complexType>
787
+ </xs:element>
788
+ <xs:element name="GetSellerInformationResponse">
789
+ <xs:complexType>
790
+ <xs:sequence>
791
+ <xs:element minOccurs="0" name="GetSellerInformationResult" nillable="true" type="tns:SellerMessage"/>
792
+ </xs:sequence>
793
+ </xs:complexType>
794
+ </xs:element>
795
+ <xs:complexType name="SellerMessage">
796
+ <xs:complexContent mixed="false">
797
+ <xs:extension base="tns:ServiceBaseAPIMessage">
798
+ <xs:sequence>
799
+ <xs:element minOccurs="0" name="DeliveryModes" nillable="true" type="tns:ArrayOfDeliveryModeInformation"/>
800
+ <xs:element minOccurs="0" name="OfferPoolList" nillable="true" type="tns:ArrayOfOfferPool"/>
801
+ <xs:element minOccurs="0" name="Seller" nillable="true" type="tns:Seller"/>
802
+ </xs:sequence>
803
+ </xs:extension>
804
+ </xs:complexContent>
805
+ </xs:complexType>
806
+ <xs:element name="SellerMessage" nillable="true" type="tns:SellerMessage"/>
807
+ <xs:complexType name="ArrayOfDeliveryModeInformation">
808
+ <xs:sequence>
809
+ <xs:element minOccurs="0" maxOccurs="unbounded" name="DeliveryModeInformation" nillable="true" type="tns:DeliveryModeInformation"/>
810
+ </xs:sequence>
811
+ </xs:complexType>
812
+ <xs:element name="ArrayOfDeliveryModeInformation" nillable="true" type="tns:ArrayOfDeliveryModeInformation"/>
813
+ <xs:complexType name="Seller">
814
+ <xs:sequence>
815
+ <xs:element minOccurs="0" name="Email" nillable="true" type="xs:string"/>
816
+ <xs:element minOccurs="0" name="Login" nillable="true" type="xs:string"/>
817
+ <xs:element minOccurs="0" name="MobileNumber" nillable="true" type="xs:string"/>
818
+ <xs:element minOccurs="0" name="PhoneNumber" nillable="true" type="xs:string"/>
819
+ <xs:element minOccurs="0" name="SellerAddress" nillable="true" type="tns:Address"/>
820
+ <xs:element minOccurs="0" name="ShopName" nillable="true" type="xs:string"/>
821
+ <xs:element minOccurs="0" name="ShopUrl" nillable="true" type="xs:string"/>
822
+ <xs:element minOccurs="0" name="SiretNumber" nillable="true" type="xs:string"/>
823
+ </xs:sequence>
824
+ </xs:complexType>
825
+ <xs:element name="Seller" nillable="true" type="tns:Seller"/>
826
+ <xs:complexType name="Address">
827
+ <xs:sequence>
828
+ <xs:element minOccurs="0" name="Address1" nillable="true" type="xs:string"/>
829
+ <xs:element minOccurs="0" name="Address2" nillable="true" type="xs:string"/>
830
+ <xs:element minOccurs="0" name="ApartmentNumber" nillable="true" type="xs:string"/>
831
+ <xs:element minOccurs="0" name="Building" nillable="true" type="xs:string"/>
832
+ <xs:element minOccurs="0" name="City" nillable="true" type="xs:string"/>
833
+ <xs:element minOccurs="0" name="Civility" type="tns:Civility"/>
834
+ <xs:element minOccurs="0" name="CompanyName" nillable="true" type="xs:string"/>
835
+ <xs:element minOccurs="0" name="Country" nillable="true" type="xs:string"/>
836
+ <xs:element minOccurs="0" name="County" nillable="true" type="xs:string"/>
837
+ <xs:element minOccurs="0" name="FirstName" nillable="true" type="xs:string"/>
838
+ <xs:element minOccurs="0" name="Instructions" nillable="true" type="xs:string"/>
839
+ <xs:element minOccurs="0" name="LastName" nillable="true" type="xs:string"/>
840
+ <xs:element minOccurs="0" name="PlaceName" nillable="true" type="xs:string"/>
841
+ <xs:element minOccurs="0" name="RelayId" nillable="true" type="xs:string"/>
842
+ <xs:element minOccurs="0" name="Street" nillable="true" type="xs:string"/>
843
+ <xs:element minOccurs="0" name="ZipCode" nillable="true" type="xs:string"/>
844
+ </xs:sequence>
845
+ </xs:complexType>
846
+ <xs:element name="Address" nillable="true" type="tns:Address"/>
847
+ <xs:simpleType name="Civility">
848
+ <xs:restriction base="xs:string">
849
+ <xs:enumeration value="None"/>
850
+ <xs:enumeration value="MR"/>
851
+ <xs:enumeration value="MISS"/>
852
+ <xs:enumeration value="MRS"/>
853
+ <xs:enumeration value="DR"/>
854
+ <xs:enumeration value="PHD"/>
855
+ <xs:enumeration value="PR"/>
856
+ </xs:restriction>
857
+ </xs:simpleType>
858
+ <xs:element name="Civility" nillable="true" type="tns:Civility"/>
859
+ <xs:element name="GetOrderList">
860
+ <xs:complexType>
861
+ <xs:sequence>
862
+ <xs:element xmlns:q23="http://schemas.datacontract.org/2004/07/Cdiscount.Framework.Core.Communication.Messages" minOccurs="0" name="headerMessage" nillable="true" type="q23:HeaderMessage"/>
863
+ <xs:element minOccurs="0" name="orderFilter" nillable="true" type="tns:OrderFilter"/>
864
+ </xs:sequence>
865
+ </xs:complexType>
866
+ </xs:element>
867
+ <xs:complexType name="OrderFilter">
868
+ <xs:sequence>
869
+ <xs:element minOccurs="0" name="BeginCreationDate" nillable="true" type="xs:dateTime"/>
870
+ <xs:element minOccurs="0" name="BeginModificationDate" nillable="true" type="xs:dateTime"/>
871
+ <xs:element minOccurs="0" name="CorporationCode" nillable="true" type="xs:string"/>
872
+ <xs:element minOccurs="0" name="EndCreationDate" nillable="true" type="xs:dateTime"/>
873
+ <xs:element minOccurs="0" name="EndModificationDate" nillable="true" type="xs:dateTime"/>
874
+ <xs:element minOccurs="0" name="FetchOrderLines" type="xs:boolean"/>
875
+ <xs:element minOccurs="0" name="IncludeExternalFbcSiteId" type="xs:boolean"/>
876
+ <xs:element xmlns:q24="http://schemas.microsoft.com/2003/10/Serialization/Arrays" minOccurs="0" name="OrderReferenceList" nillable="true" type="q24:ArrayOfstring"/>
877
+ <xs:element minOccurs="0" name="States" nillable="true" type="tns:ArrayOfOrderStateEnum"/>
878
+ </xs:sequence>
879
+ </xs:complexType>
880
+ <xs:element name="OrderFilter" nillable="true" type="tns:OrderFilter"/>
881
+ <xs:complexType name="ArrayOfOrderStateEnum">
882
+ <xs:sequence>
883
+ <xs:element minOccurs="0" maxOccurs="unbounded" name="OrderStateEnum" type="tns:OrderStateEnum"/>
884
+ </xs:sequence>
885
+ </xs:complexType>
886
+ <xs:element name="ArrayOfOrderStateEnum" nillable="true" type="tns:ArrayOfOrderStateEnum"/>
887
+ <xs:simpleType name="OrderStateEnum">
888
+ <xs:restriction base="xs:string">
889
+ <xs:enumeration value="CancelledByCustomer"/>
890
+ <xs:enumeration value="WaitingForSellerAcceptation"/>
891
+ <xs:enumeration value="AcceptedBySeller"/>
892
+ <xs:enumeration value="PaymentInProgress"/>
893
+ <xs:enumeration value="WaitingForShipmentAcceptation"/>
894
+ <xs:enumeration value="Shipped"/>
895
+ <xs:enumeration value="RefusedBySeller"/>
896
+ <xs:enumeration value="AutomaticCancellation"/>
897
+ <xs:enumeration value="PaymentRefused"/>
898
+ <xs:enumeration value="ShipmentRefusedBySeller"/>
899
+ <xs:enumeration value="None"/>
900
+ <xs:enumeration value="ValidatedFianet"/>
901
+ <xs:enumeration value="RefusedNoShipment"/>
902
+ <xs:enumeration value="AvailableOnStore"/>
903
+ <xs:enumeration value="NonPickedUpByCustomer"/>
904
+ <xs:enumeration value="PickedUp"/>
905
+ <xs:enumeration value="ServiceCanceled"/>
906
+ <xs:enumeration value="PendingShipmentForAssociatedProduct"/>
907
+ <xs:enumeration value="BlockedWaitingForTreatment"/>
908
+ <xs:enumeration value="BlockedWaitingForProof"/>
909
+ <xs:enumeration value="BlockedRepeatedLitigationSuspicion"/>
910
+ <xs:enumeration value="BlockedFraudSuspicion"/>
911
+ <xs:enumeration value="BlockedConfirmed"/>
912
+ <xs:enumeration value="FinishedGenerixUpdate"/>
913
+ <xs:enumeration value="BlockedRepeatedLitigationSuspicionConfirmation"/>
914
+ <xs:enumeration value="BlockedFraudSuspicionConfirmation"/>
915
+ <xs:enumeration value="CegidDown"/>
916
+ <xs:enumeration value="BlockedAutomaticCds"/>
917
+ <xs:enumeration value="RequestGoingToGnx"/>
918
+ <xs:enumeration value="PartialInGnx"/>
919
+ <xs:enumeration value="BeingValidatedFianet"/>
920
+ </xs:restriction>
921
+ </xs:simpleType>
922
+ <xs:element name="OrderStateEnum" nillable="true" type="tns:OrderStateEnum"/>
923
+ <xs:element name="GetOrderListResponse">
924
+ <xs:complexType>
925
+ <xs:sequence>
926
+ <xs:element minOccurs="0" name="GetOrderListResult" nillable="true" type="tns:OrderListMessage"/>
927
+ </xs:sequence>
928
+ </xs:complexType>
929
+ </xs:element>
930
+ <xs:complexType name="OrderListMessage">
931
+ <xs:complexContent mixed="false">
932
+ <xs:extension base="tns:ServiceBaseAPIMessage">
933
+ <xs:sequence>
934
+ <xs:element minOccurs="0" name="OrderList" nillable="true" type="tns:ArrayOfOrder"/>
935
+ </xs:sequence>
936
+ </xs:extension>
937
+ </xs:complexContent>
938
+ </xs:complexType>
939
+ <xs:element name="OrderListMessage" nillable="true" type="tns:OrderListMessage"/>
940
+ <xs:complexType name="ArrayOfOrder">
941
+ <xs:sequence>
942
+ <xs:element minOccurs="0" maxOccurs="unbounded" name="Order" nillable="true" type="tns:Order"/>
943
+ </xs:sequence>
944
+ </xs:complexType>
945
+ <xs:element name="ArrayOfOrder" nillable="true" type="tns:ArrayOfOrder"/>
946
+ <xs:complexType name="Order">
947
+ <xs:sequence>
948
+ <xs:element minOccurs="0" name="ArchiveParcelList" type="xs:boolean"/>
949
+ <xs:element minOccurs="0" name="BillingAddress" nillable="true" type="tns:Address"/>
950
+ <xs:element minOccurs="0" name="Corporation" nillable="true" type="tns:Corporation"/>
951
+ <xs:element minOccurs="0" name="CreationDate" type="xs:dateTime"/>
952
+ <xs:element minOccurs="0" name="Customer" nillable="true" type="tns:Customer"/>
953
+ <xs:element minOccurs="0" name="HasClaims" type="xs:boolean"/>
954
+ <xs:element minOccurs="0" name="InitialTotalAmount" type="xs:decimal"/>
955
+ <xs:element minOccurs="0" name="InitialTotalShippingChargesAmount" type="xs:decimal"/>
956
+ <xs:element name="IsCLogistiqueOrder" type="xs:boolean"/>
957
+ <xs:element minOccurs="0" name="LastUpdatedDate" nillable="true" type="xs:dateTime"/>
958
+ <xs:element minOccurs="0" name="ModifiedDate" nillable="true" type="xs:dateTime"/>
959
+ <xs:element minOccurs="0" name="Offer" nillable="true" type="tns:OfferOrder"/>
960
+ <xs:element minOccurs="0" name="OrderLineList" nillable="true" type="tns:ArrayOfOrderLine"/>
961
+ <xs:element minOccurs="0" name="OrderNumber" nillable="true" type="xs:string"/>
962
+ <xs:element minOccurs="0" name="OrderState" nillable="true" type="tns:OrderStateEnum"/>
963
+ <xs:element minOccurs="0" name="ShippedTotalAmount" type="xs:decimal"/>
964
+ <xs:element minOccurs="0" name="ShippedTotalShippingCharges" type="xs:decimal"/>
965
+ <xs:element minOccurs="0" name="ShippingAddress" nillable="true" type="tns:Address"/>
966
+ <xs:element minOccurs="0" name="ShippingCode" nillable="true" type="xs:string"/>
967
+ <xs:element minOccurs="0" name="ShippingDateMax" nillable="true" type="xs:dateTime"/>
968
+ <xs:element minOccurs="0" name="ShippingDateMin" nillable="true" type="xs:dateTime"/>
969
+ <xs:element minOccurs="0" name="SiteCommissionPromisedAmount" type="xs:decimal"/>
970
+ <xs:element minOccurs="0" name="SiteCommissionShippedAmount" type="xs:decimal"/>
971
+ <xs:element minOccurs="0" name="SiteCommissionValidatedAmount" type="xs:decimal"/>
972
+ <xs:element minOccurs="0" name="Status" type="tns:OrderStatusType"/>
973
+ <xs:element minOccurs="0" name="ValidatedTotalAmount" type="xs:decimal"/>
974
+ <xs:element minOccurs="0" name="ValidatedTotalShippingCharges" type="xs:decimal"/>
975
+ <xs:element minOccurs="0" name="ValidationStatus" type="tns:ValidationStatusType"/>
976
+ <xs:element minOccurs="0" name="VisaCegid" nillable="true" type="xs:int"/>
977
+ </xs:sequence>
978
+ </xs:complexType>
979
+ <xs:element name="Order" nillable="true" type="tns:Order"/>
980
+ <xs:complexType name="Corporation">
981
+ <xs:sequence>
982
+ <xs:element minOccurs="0" name="BusinessUnitId" type="xs:short"/>
983
+ <xs:element name="CorporationCode" nillable="true" type="xs:string"/>
984
+ <xs:element name="CorporationId" type="xs:short"/>
985
+ <xs:element minOccurs="0" name="CorporationName" nillable="true" type="xs:string"/>
986
+ <xs:element minOccurs="0" name="IsMarketPlaceActive" nillable="true" type="xs:boolean"/>
987
+ </xs:sequence>
988
+ </xs:complexType>
989
+ <xs:element name="Corporation" nillable="true" type="tns:Corporation"/>
990
+ <xs:complexType name="Customer">
991
+ <xs:sequence>
992
+ <xs:element minOccurs="0" name="Civility" nillable="true" type="tns:Civility"/>
993
+ <xs:element minOccurs="0" name="CustomerId" nillable="true" type="xs:string"/>
994
+ <xs:element minOccurs="0" name="Email" nillable="true" type="xs:string"/>
995
+ <xs:element minOccurs="0" name="EncryptedEmail" nillable="true" type="xs:string"/>
996
+ <xs:element minOccurs="0" name="FirstName" nillable="true" type="xs:string"/>
997
+ <xs:element minOccurs="0" name="LastName" nillable="true" type="xs:string"/>
998
+ <xs:element minOccurs="0" name="MobilePhone" nillable="true" type="xs:string"/>
999
+ <xs:element minOccurs="0" name="Phone" nillable="true" type="xs:string"/>
1000
+ <xs:element minOccurs="0" name="ShippingFirstName" nillable="true" type="xs:string"/>
1001
+ <xs:element minOccurs="0" name="ShippingLastName" nillable="true" type="xs:string"/>
1002
+ </xs:sequence>
1003
+ </xs:complexType>
1004
+ <xs:element name="Customer" nillable="true" type="tns:Customer"/>
1005
+ <xs:complexType name="OfferOrder">
1006
+ <xs:sequence>
1007
+ <xs:element minOccurs="0" name="Code" nillable="true" type="xs:string"/>
1008
+ <xs:element minOccurs="0" name="CreationDate" nillable="true" type="xs:string"/>
1009
+ <xs:element minOccurs="0" name="ExpirationDate" nillable="true" type="xs:string"/>
1010
+ </xs:sequence>
1011
+ </xs:complexType>
1012
+ <xs:element name="OfferOrder" nillable="true" type="tns:OfferOrder"/>
1013
+ <xs:complexType name="ArrayOfOrderLine">
1014
+ <xs:sequence>
1015
+ <xs:element minOccurs="0" maxOccurs="unbounded" name="OrderLine" nillable="true" type="tns:OrderLine"/>
1016
+ </xs:sequence>
1017
+ </xs:complexType>
1018
+ <xs:element name="ArrayOfOrderLine" nillable="true" type="tns:ArrayOfOrderLine"/>
1019
+ <xs:complexType name="OrderLine">
1020
+ <xs:sequence>
1021
+ <xs:element minOccurs="0" name="AcceptationState" nillable="true" type="tns:AcceptationStateEnum"/>
1022
+ <xs:element minOccurs="0" name="CategoryCode" nillable="true" type="xs:string"/>
1023
+ <xs:element minOccurs="0" name="DeliveryDateMax" type="xs:dateTime"/>
1024
+ <xs:element minOccurs="0" name="DeliveryDateMin" type="xs:dateTime"/>
1025
+ <xs:element minOccurs="0" name="HasClaim" type="xs:boolean"/>
1026
+ <xs:element minOccurs="0" name="InitialPrice" nillable="true" type="xs:decimal"/>
1027
+ <xs:element minOccurs="0" name="IsNegotiated" nillable="true" type="xs:boolean"/>
1028
+ <xs:element minOccurs="0" name="IsProductEanGenerated" type="xs:boolean"/>
1029
+ <xs:element minOccurs="0" name="Name" nillable="true" type="xs:string"/>
1030
+ <xs:element minOccurs="0" name="OrderLineChildList" nillable="true" type="tns:ArrayOfOrderLine"/>
1031
+ <xs:element minOccurs="0" name="ProductCondition" nillable="true" type="tns:ProductConditionEnum"/>
1032
+ <xs:element minOccurs="0" name="ProductEan" nillable="true" type="xs:string"/>
1033
+ <xs:element minOccurs="0" name="ProductId" nillable="true" type="xs:string"/>
1034
+ <xs:element minOccurs="0" name="PurchasePrice" type="xs:decimal"/>
1035
+ <xs:element minOccurs="0" name="Quantity" type="xs:int"/>
1036
+ <xs:element minOccurs="0" name="RowId" type="xs:int"/>
1037
+ <xs:element minOccurs="0" name="SellerProductId" nillable="true" type="xs:string"/>
1038
+ <xs:element minOccurs="0" name="ShippingDateMax" type="xs:dateTime"/>
1039
+ <xs:element minOccurs="0" name="ShippingDateMin" type="xs:dateTime"/>
1040
+ <xs:element minOccurs="0" name="Sku" nillable="true" type="xs:string"/>
1041
+ <xs:element minOccurs="0" name="SkuParent" nillable="true" type="xs:string"/>
1042
+ <xs:element minOccurs="0" name="UnitAdditionalShippingCharges" type="xs:decimal"/>
1043
+ <xs:element minOccurs="0" name="UnitShippingCharges" type="xs:decimal"/>
1044
+ </xs:sequence>
1045
+ </xs:complexType>
1046
+ <xs:element name="OrderLine" nillable="true" type="tns:OrderLine"/>
1047
+ <xs:simpleType name="AcceptationStateEnum">
1048
+ <xs:restriction base="xs:string">
1049
+ <xs:enumeration value="None"/>
1050
+ <xs:enumeration value="AcceptedBySeller"/>
1051
+ <xs:enumeration value="RefusedBySeller"/>
1052
+ <xs:enumeration value="ShippedBySeller"/>
1053
+ <xs:enumeration value="RefundedAfterShipping"/>
1054
+ <xs:enumeration value="ShipmentRefusedBySeller"/>
1055
+ <xs:enumeration value="RefundedAfterShipmentRefused"/>
1056
+ <xs:enumeration value="CancelledBeforeNotificationByCustomer"/>
1057
+ <xs:enumeration value="CancelledBeforePaymentByCustomer"/>
1058
+ <xs:enumeration value="CancellationRequestPending"/>
1059
+ <xs:enumeration value="CancelledAfterPaymentByCustomer"/>
1060
+ <xs:enumeration value="RefundedAfterCustomerCancellation"/>
1061
+ <xs:enumeration value="PaymentRefused"/>
1062
+ </xs:restriction>
1063
+ </xs:simpleType>
1064
+ <xs:element name="AcceptationStateEnum" nillable="true" type="tns:AcceptationStateEnum"/>
1065
+ <xs:simpleType name="OrderStatusType">
1066
+ <xs:restriction base="xs:string">
1067
+ <xs:enumeration value="NonValidated"/>
1068
+ <xs:enumeration value="NoPaymentAttempt"/>
1069
+ <xs:enumeration value="Cancelled"/>
1070
+ <xs:enumeration value="Validated"/>
1071
+ <xs:enumeration value="Waiting"/>
1072
+ <xs:enumeration value="Completed"/>
1073
+ </xs:restriction>
1074
+ </xs:simpleType>
1075
+ <xs:element name="OrderStatusType" nillable="true" type="tns:OrderStatusType"/>
1076
+ <xs:simpleType name="ValidationStatusType">
1077
+ <xs:restriction base="xs:string">
1078
+ <xs:enumeration value="ValidatingFianet"/>
1079
+ <xs:enumeration value="PreAccepted"/>
1080
+ <xs:enumeration value="None"/>
1081
+ </xs:restriction>
1082
+ </xs:simpleType>
1083
+ <xs:element name="ValidationStatusType" nillable="true" type="tns:ValidationStatusType"/>
1084
+ <xs:element name="ValidateOrderList">
1085
+ <xs:complexType>
1086
+ <xs:sequence>
1087
+ <xs:element xmlns:q25="http://schemas.datacontract.org/2004/07/Cdiscount.Framework.Core.Communication.Messages" minOccurs="0" name="headerMessage" nillable="true" type="q25:HeaderMessage"/>
1088
+ <xs:element minOccurs="0" name="validateOrderListMessage" nillable="true" type="tns:ValidateOrderListMessage"/>
1089
+ </xs:sequence>
1090
+ </xs:complexType>
1091
+ </xs:element>
1092
+ <xs:complexType name="ValidateOrderListMessage">
1093
+ <xs:sequence>
1094
+ <xs:element minOccurs="0" name="OrderList" nillable="true" type="tns:ArrayOfValidateOrder"/>
1095
+ </xs:sequence>
1096
+ </xs:complexType>
1097
+ <xs:element name="ValidateOrderListMessage" nillable="true" type="tns:ValidateOrderListMessage"/>
1098
+ <xs:complexType name="ArrayOfValidateOrder">
1099
+ <xs:sequence>
1100
+ <xs:element minOccurs="0" maxOccurs="unbounded" name="ValidateOrder" nillable="true" type="tns:ValidateOrder"/>
1101
+ </xs:sequence>
1102
+ </xs:complexType>
1103
+ <xs:element name="ArrayOfValidateOrder" nillable="true" type="tns:ArrayOfValidateOrder"/>
1104
+ <xs:complexType name="ValidateOrder">
1105
+ <xs:sequence>
1106
+ <xs:element minOccurs="0" name="CarrierName" nillable="true" type="xs:string"/>
1107
+ <xs:element minOccurs="0" name="OrderLineList" nillable="true" type="tns:ArrayOfValidateOrderLine"/>
1108
+ <xs:element minOccurs="0" name="OrderNumber" nillable="true" type="xs:string"/>
1109
+ <xs:element minOccurs="0" name="OrderState" type="tns:OrderStateEnum"/>
1110
+ <xs:element minOccurs="0" name="TrackingNumber" nillable="true" type="xs:string"/>
1111
+ <xs:element minOccurs="0" name="TrackingUrl" nillable="true" type="xs:string"/>
1112
+ </xs:sequence>
1113
+ </xs:complexType>
1114
+ <xs:element name="ValidateOrder" nillable="true" type="tns:ValidateOrder"/>
1115
+ <xs:complexType name="ArrayOfValidateOrderLine">
1116
+ <xs:sequence>
1117
+ <xs:element minOccurs="0" maxOccurs="unbounded" name="ValidateOrderLine" nillable="true" type="tns:ValidateOrderLine"/>
1118
+ </xs:sequence>
1119
+ </xs:complexType>
1120
+ <xs:element name="ArrayOfValidateOrderLine" nillable="true" type="tns:ArrayOfValidateOrderLine"/>
1121
+ <xs:complexType name="ValidateOrderLine">
1122
+ <xs:sequence>
1123
+ <xs:element minOccurs="0" name="AcceptationState" type="tns:AcceptationStateEnum"/>
1124
+ <xs:element minOccurs="0" name="ProductCondition" type="tns:ProductConditionEnum"/>
1125
+ <xs:element minOccurs="0" name="SellerProductId" nillable="true" type="xs:string"/>
1126
+ </xs:sequence>
1127
+ </xs:complexType>
1128
+ <xs:element name="ValidateOrderLine" nillable="true" type="tns:ValidateOrderLine"/>
1129
+ <xs:element name="ValidateOrderListResponse">
1130
+ <xs:complexType>
1131
+ <xs:sequence>
1132
+ <xs:element minOccurs="0" name="ValidateOrderListResult" nillable="true" type="tns:ValidationResultMessage"/>
1133
+ </xs:sequence>
1134
+ </xs:complexType>
1135
+ </xs:element>
1136
+ <xs:complexType name="ValidationResultMessage">
1137
+ <xs:complexContent mixed="false">
1138
+ <xs:extension base="tns:ServiceBaseAPIMessage">
1139
+ <xs:sequence>
1140
+ <xs:element minOccurs="0" name="ValidateOrderResults" nillable="true" type="tns:ArrayOfValidateOrderResult"/>
1141
+ </xs:sequence>
1142
+ </xs:extension>
1143
+ </xs:complexContent>
1144
+ </xs:complexType>
1145
+ <xs:element name="ValidationResultMessage" nillable="true" type="tns:ValidationResultMessage"/>
1146
+ <xs:complexType name="ArrayOfValidateOrderResult">
1147
+ <xs:sequence>
1148
+ <xs:element minOccurs="0" maxOccurs="unbounded" name="ValidateOrderResult" nillable="true" type="tns:ValidateOrderResult"/>
1149
+ </xs:sequence>
1150
+ </xs:complexType>
1151
+ <xs:element name="ArrayOfValidateOrderResult" nillable="true" type="tns:ArrayOfValidateOrderResult"/>
1152
+ <xs:complexType name="ValidateOrderResult">
1153
+ <xs:sequence>
1154
+ <xs:element minOccurs="0" name="Errors" nillable="true" type="tns:ArrayOfError"/>
1155
+ <xs:element minOccurs="0" name="OrderNumber" nillable="true" type="xs:string"/>
1156
+ <xs:element minOccurs="0" name="ValidateOrderLineResults" nillable="true" type="tns:ArrayOfValidateOrderLineResult"/>
1157
+ <xs:element minOccurs="0" name="Validated" type="xs:boolean"/>
1158
+ <xs:element minOccurs="0" name="Warnings" nillable="true" type="tns:ArrayOfError"/>
1159
+ </xs:sequence>
1160
+ </xs:complexType>
1161
+ <xs:element name="ValidateOrderResult" nillable="true" type="tns:ValidateOrderResult"/>
1162
+ <xs:complexType name="ArrayOfValidateOrderLineResult">
1163
+ <xs:sequence>
1164
+ <xs:element minOccurs="0" maxOccurs="unbounded" name="ValidateOrderLineResult" nillable="true" type="tns:ValidateOrderLineResult"/>
1165
+ </xs:sequence>
1166
+ </xs:complexType>
1167
+ <xs:element name="ArrayOfValidateOrderLineResult" nillable="true" type="tns:ArrayOfValidateOrderLineResult"/>
1168
+ <xs:complexType name="ValidateOrderLineResult">
1169
+ <xs:sequence>
1170
+ <xs:element minOccurs="0" name="Errors" nillable="true" type="tns:ArrayOfError"/>
1171
+ <xs:element minOccurs="0" name="SellerProductId" nillable="true" type="xs:string"/>
1172
+ <xs:element minOccurs="0" name="Updated" type="xs:boolean"/>
1173
+ </xs:sequence>
1174
+ </xs:complexType>
1175
+ <xs:element name="ValidateOrderLineResult" nillable="true" type="tns:ValidateOrderLineResult"/>
1176
+ <xs:element name="CreateRefundVoucherAfterShipment">
1177
+ <xs:complexType>
1178
+ <xs:sequence>
1179
+ <xs:element xmlns:q26="http://schemas.datacontract.org/2004/07/Cdiscount.Framework.Core.Communication.Messages" minOccurs="0" name="headerMessage" nillable="true" type="q26:HeaderMessage"/>
1180
+ <xs:element minOccurs="0" name="request" nillable="true" type="tns:SellerRefundRequestMessage"/>
1181
+ </xs:sequence>
1182
+ </xs:complexType>
1183
+ </xs:element>
1184
+ <xs:complexType name="SellerRefundRequestMessage">
1185
+ <xs:sequence>
1186
+ <xs:element name="OrderNumber" nillable="true" type="xs:string"/>
1187
+ <xs:element name="SellerRefundRequestList" nillable="true" type="tns:ArrayOfSellerRefundRequest"/>
1188
+ </xs:sequence>
1189
+ </xs:complexType>
1190
+ <xs:element name="SellerRefundRequestMessage" nillable="true" type="tns:SellerRefundRequestMessage"/>
1191
+ <xs:complexType name="ArrayOfSellerRefundRequest">
1192
+ <xs:sequence>
1193
+ <xs:element minOccurs="0" maxOccurs="unbounded" name="SellerRefundRequest" nillable="true" type="tns:SellerRefundRequest"/>
1194
+ </xs:sequence>
1195
+ </xs:complexType>
1196
+ <xs:element name="ArrayOfSellerRefundRequest" nillable="true" type="tns:ArrayOfSellerRefundRequest"/>
1197
+ <xs:complexType name="SellerRefundRequest">
1198
+ <xs:sequence>
1199
+ <xs:element name="Mode" type="tns:SellerRefundRequestMode"/>
1200
+ <xs:element name="Motive" type="tns:RefundMotive"/>
1201
+ <xs:element name="RefundOrderLine" nillable="true" type="tns:SellerRefundOrderLine"/>
1202
+ </xs:sequence>
1203
+ </xs:complexType>
1204
+ <xs:element name="SellerRefundRequest" nillable="true" type="tns:SellerRefundRequest"/>
1205
+ <xs:simpleType name="SellerRefundRequestMode">
1206
+ <xs:restriction base="xs:string">
1207
+ <xs:enumeration value="Claim"/>
1208
+ <xs:enumeration value="Retraction"/>
1209
+ </xs:restriction>
1210
+ </xs:simpleType>
1211
+ <xs:element name="SellerRefundRequestMode" nillable="true" type="tns:SellerRefundRequestMode"/>
1212
+ <xs:simpleType name="RefundMotive">
1213
+ <xs:restriction base="xs:string">
1214
+ <xs:enumeration value="VendorRejection"/>
1215
+ <xs:enumeration value="ClientCancellation"/>
1216
+ <xs:enumeration value="VendorRejectionAndClientCancellation"/>
1217
+ <xs:enumeration value="ClientClaim"/>
1218
+ <xs:enumeration value="VendorInitiatedRefund"/>
1219
+ <xs:enumeration value="ClientRetraction"/>
1220
+ </xs:restriction>
1221
+ </xs:simpleType>
1222
+ <xs:element name="RefundMotive" nillable="true" type="tns:RefundMotive"/>
1223
+ <xs:complexType name="SellerRefundOrderLine">
1224
+ <xs:sequence>
1225
+ <xs:element minOccurs="0" name="Ean" nillable="true" type="xs:string"/>
1226
+ <xs:element minOccurs="0" name="RefundShippingCharges" nillable="true" type="xs:boolean"/>
1227
+ <xs:element name="SellerProductId" nillable="true" type="xs:string"/>
1228
+ </xs:sequence>
1229
+ </xs:complexType>
1230
+ <xs:element name="SellerRefundOrderLine" nillable="true" type="tns:SellerRefundOrderLine"/>
1231
+ <xs:element name="CreateRefundVoucherAfterShipmentResponse">
1232
+ <xs:complexType>
1233
+ <xs:sequence>
1234
+ <xs:element minOccurs="0" name="CreateRefundVoucherAfterShipmentResult" nillable="true" type="tns:SellerRefundResultMessage"/>
1235
+ </xs:sequence>
1236
+ </xs:complexType>
1237
+ </xs:element>
1238
+ <xs:complexType name="SellerRefundResultMessage">
1239
+ <xs:complexContent mixed="false">
1240
+ <xs:extension xmlns:q27="http://schemas.datacontract.org/2004/07/Cdiscount.Framework.Core.Communication.Messages" base="q27:ServiceMessage">
1241
+ <xs:sequence>
1242
+ <xs:element name="OrderNumber" nillable="true" type="xs:string"/>
1243
+ <xs:element name="SellerRefundResultList" nillable="true" type="tns:ArrayOfSellerRefundResult"/>
1244
+ </xs:sequence>
1245
+ </xs:extension>
1246
+ </xs:complexContent>
1247
+ </xs:complexType>
1248
+ <xs:element name="SellerRefundResultMessage" nillable="true" type="tns:SellerRefundResultMessage"/>
1249
+ <xs:complexType name="ArrayOfSellerRefundResult">
1250
+ <xs:sequence>
1251
+ <xs:element minOccurs="0" maxOccurs="unbounded" name="SellerRefundResult" nillable="true" type="tns:SellerRefundResult"/>
1252
+ </xs:sequence>
1253
+ </xs:complexType>
1254
+ <xs:element name="ArrayOfSellerRefundResult" nillable="true" type="tns:ArrayOfSellerRefundResult"/>
1255
+ <xs:complexType name="SellerRefundResult">
1256
+ <xs:complexContent mixed="false">
1257
+ <xs:extension xmlns:q28="http://schemas.datacontract.org/2004/07/Cdiscount.Framework.Core.Communication.Messages" base="q28:ServiceMessage">
1258
+ <xs:sequence>
1259
+ <xs:element name="Ean" nillable="true" type="xs:string"/>
1260
+ <xs:element name="Motive" type="tns:RefundMotive"/>
1261
+ <xs:element name="SellerProductId" nillable="true" type="xs:string"/>
1262
+ <xs:element name="Value" type="xs:decimal"/>
1263
+ </xs:sequence>
1264
+ </xs:extension>
1265
+ </xs:complexContent>
1266
+ </xs:complexType>
1267
+ <xs:element name="SellerRefundResult" nillable="true" type="tns:SellerRefundResult"/>
1268
+ <xs:element name="GenerateDiscussionMailGuid">
1269
+ <xs:complexType>
1270
+ <xs:sequence>
1271
+ <xs:element xmlns:q29="http://schemas.datacontract.org/2004/07/Cdiscount.Framework.Core.Communication.Messages" minOccurs="0" name="headerMessage" nillable="true" type="q29:HeaderMessage"/>
1272
+ <xs:element xmlns:q30="http://schemas.datacontract.org/2004/07/Cdiscount.Service.Marketplace.API.External.Contract.Data.Mail" minOccurs="0" name="request" nillable="true" type="q30:DiscussionMailGuidCreationRequestMessage"/>
1273
+ </xs:sequence>
1274
+ </xs:complexType>
1275
+ </xs:element>
1276
+ <xs:element name="GenerateDiscussionMailGuidResponse">
1277
+ <xs:complexType>
1278
+ <xs:sequence>
1279
+ <xs:element xmlns:q31="http://schemas.datacontract.org/2004/07/Cdiscount.Service.Marketplace.API.External.Contract.Data.Mail" minOccurs="0" name="GenerateDiscussionMailGuidResult" nillable="true" type="q31:DiscussionMailGuidCreationResultMessage"/>
1280
+ </xs:sequence>
1281
+ </xs:complexType>
1282
+ </xs:element>
1283
+ <xs:element name="SubmitRelaysFile">
1284
+ <xs:complexType>
1285
+ <xs:sequence>
1286
+ <xs:element xmlns:q32="http://schemas.datacontract.org/2004/07/Cdiscount.Framework.Core.Communication.Messages" minOccurs="0" name="headerMessage" nillable="true" type="q32:HeaderMessage"/>
1287
+ <xs:element minOccurs="0" name="relaysFileRequest" nillable="true" type="tns:RelaysFileIntegrationRequest"/>
1288
+ </xs:sequence>
1289
+ </xs:complexType>
1290
+ </xs:element>
1291
+ <xs:complexType name="RelaysFileIntegrationRequest">
1292
+ <xs:sequence>
1293
+ <xs:element minOccurs="0" name="RelaysFileURI" nillable="true" type="xs:string"/>
1294
+ </xs:sequence>
1295
+ </xs:complexType>
1296
+ <xs:element name="RelaysFileIntegrationRequest" nillable="true" type="tns:RelaysFileIntegrationRequest"/>
1297
+ <xs:element name="SubmitRelaysFileResponse">
1298
+ <xs:complexType>
1299
+ <xs:sequence>
1300
+ <xs:element minOccurs="0" name="SubmitRelaysFileResult" nillable="true" type="tns:RelaysFileDepositMessage"/>
1301
+ </xs:sequence>
1302
+ </xs:complexType>
1303
+ </xs:element>
1304
+ <xs:complexType name="RelaysFileDepositMessage">
1305
+ <xs:complexContent mixed="false">
1306
+ <xs:extension base="tns:ServiceBaseAPIMessage">
1307
+ <xs:sequence>
1308
+ <xs:element minOccurs="0" name="RelaysFileId" type="xs:int"/>
1309
+ </xs:sequence>
1310
+ </xs:extension>
1311
+ </xs:complexContent>
1312
+ </xs:complexType>
1313
+ <xs:element name="RelaysFileDepositMessage" nillable="true" type="tns:RelaysFileDepositMessage"/>
1314
+ <xs:element name="GetRelaysFileSubmissionResult">
1315
+ <xs:complexType>
1316
+ <xs:sequence>
1317
+ <xs:element xmlns:q33="http://schemas.datacontract.org/2004/07/Cdiscount.Framework.Core.Communication.Messages" minOccurs="0" name="headerMessage" nillable="true" type="q33:HeaderMessage"/>
1318
+ <xs:element minOccurs="0" name="relaysFileFilter" nillable="true" type="tns:RelaysFileFilter"/>
1319
+ </xs:sequence>
1320
+ </xs:complexType>
1321
+ </xs:element>
1322
+ <xs:complexType name="RelaysFileFilter">
1323
+ <xs:sequence>
1324
+ <xs:element minOccurs="0" name="RelaysFileId" type="xs:int"/>
1325
+ </xs:sequence>
1326
+ </xs:complexType>
1327
+ <xs:element name="RelaysFileFilter" nillable="true" type="tns:RelaysFileFilter"/>
1328
+ <xs:element name="GetRelaysFileSubmissionResultResponse">
1329
+ <xs:complexType>
1330
+ <xs:sequence>
1331
+ <xs:element minOccurs="0" name="GetRelaysFileSubmissionResultResult" nillable="true" type="tns:RelayIntegrationReportMessage"/>
1332
+ </xs:sequence>
1333
+ </xs:complexType>
1334
+ </xs:element>
1335
+ <xs:complexType name="RelayIntegrationReportMessage">
1336
+ <xs:complexContent mixed="false">
1337
+ <xs:extension base="tns:ServiceBaseAPIMessage">
1338
+ <xs:sequence>
1339
+ <xs:element minOccurs="0" name="NumberOfErrors" type="xs:int"/>
1340
+ <xs:element minOccurs="0" name="RelaysFileId" type="xs:int"/>
1341
+ <xs:element minOccurs="0" name="RelaysFileIntegrationStatus" nillable="true" type="xs:string"/>
1342
+ <xs:element minOccurs="0" name="RelaysLogList" nillable="true" type="tns:ArrayOfRelayIntegrationLog"/>
1343
+ </xs:sequence>
1344
+ </xs:extension>
1345
+ </xs:complexContent>
1346
+ </xs:complexType>
1347
+ <xs:element name="RelayIntegrationReportMessage" nillable="true" type="tns:RelayIntegrationReportMessage"/>
1348
+ <xs:complexType name="ArrayOfRelayIntegrationLog">
1349
+ <xs:sequence>
1350
+ <xs:element minOccurs="0" maxOccurs="unbounded" name="RelayIntegrationLog" nillable="true" type="tns:RelayIntegrationLog"/>
1351
+ </xs:sequence>
1352
+ </xs:complexType>
1353
+ <xs:element name="ArrayOfRelayIntegrationLog" nillable="true" type="tns:ArrayOfRelayIntegrationLog"/>
1354
+ <xs:complexType name="RelayIntegrationLog">
1355
+ <xs:sequence>
1356
+ <xs:element xmlns:q34="http://schemas.microsoft.com/2003/10/Serialization/Arrays" minOccurs="0" name="Errors" nillable="true" type="q34:ArrayOfstring"/>
1357
+ <xs:element minOccurs="0" name="LogDate" type="xs:dateTime"/>
1358
+ <xs:element minOccurs="0" name="RelayReference" nillable="true" type="xs:string"/>
1359
+ <xs:element minOccurs="0" name="Validated" type="xs:boolean"/>
1360
+ </xs:sequence>
1361
+ </xs:complexType>
1362
+ <xs:element name="RelayIntegrationLog" nillable="true" type="tns:RelayIntegrationLog"/>
1363
+ <xs:element name="GetParcelShopList">
1364
+ <xs:complexType>
1365
+ <xs:sequence>
1366
+ <xs:element xmlns:q35="http://schemas.datacontract.org/2004/07/Cdiscount.Framework.Core.Communication.Messages" minOccurs="0" name="headerMessage" nillable="true" type="q35:HeaderMessage"/>
1367
+ </xs:sequence>
1368
+ </xs:complexType>
1369
+ </xs:element>
1370
+ <xs:element name="GetParcelShopListResponse">
1371
+ <xs:complexType>
1372
+ <xs:sequence>
1373
+ <xs:element minOccurs="0" name="GetParcelShopListResult" nillable="true" type="tns:ParcelShopListMessage"/>
1374
+ </xs:sequence>
1375
+ </xs:complexType>
1376
+ </xs:element>
1377
+ <xs:complexType name="ParcelShopListMessage">
1378
+ <xs:complexContent mixed="false">
1379
+ <xs:extension base="tns:ServiceBaseAPIMessage">
1380
+ <xs:sequence>
1381
+ <xs:element minOccurs="0" name="ParcelShopList" nillable="true" type="tns:ArrayOfParcelShop"/>
1382
+ </xs:sequence>
1383
+ </xs:extension>
1384
+ </xs:complexContent>
1385
+ </xs:complexType>
1386
+ <xs:element name="ParcelShopListMessage" nillable="true" type="tns:ParcelShopListMessage"/>
1387
+ <xs:complexType name="ArrayOfParcelShop">
1388
+ <xs:sequence>
1389
+ <xs:element minOccurs="0" maxOccurs="unbounded" name="ParcelShop" nillable="true" type="tns:ParcelShop"/>
1390
+ </xs:sequence>
1391
+ </xs:complexType>
1392
+ <xs:element name="ArrayOfParcelShop" nillable="true" type="tns:ArrayOfParcelShop"/>
1393
+ <xs:complexType name="ParcelShop">
1394
+ <xs:sequence>
1395
+ <xs:element minOccurs="0" name="AddressComplement" nillable="true" type="xs:string"/>
1396
+ <xs:element minOccurs="0" name="City" nillable="true" type="xs:string"/>
1397
+ <xs:element minOccurs="0" name="ClosingDate" nillable="true" type="xs:dateTime"/>
1398
+ <xs:element minOccurs="0" name="ExceptionalClosingDate1" nillable="true" type="xs:dateTime"/>
1399
+ <xs:element minOccurs="0" name="ExceptionalClosingDate2" nillable="true" type="xs:dateTime"/>
1400
+ <xs:element minOccurs="0" name="ExceptionalClosingDate3" nillable="true" type="xs:dateTime"/>
1401
+ <xs:element minOccurs="0" name="ExceptionalClosingDate4" nillable="true" type="xs:dateTime"/>
1402
+ <xs:element minOccurs="0" name="ExceptionalClosingDate5" nillable="true" type="xs:dateTime"/>
1403
+ <xs:element minOccurs="0" name="FridayAfternoonClosingHour" nillable="true" type="xs:string"/>
1404
+ <xs:element minOccurs="0" name="FridayAfternoonOpeningHour" nillable="true" type="xs:string"/>
1405
+ <xs:element minOccurs="0" name="FridayMorningClosingHour" nillable="true" type="xs:string"/>
1406
+ <xs:element minOccurs="0" name="FridayMorningOpeningHour" nillable="true" type="xs:string"/>
1407
+ <xs:element minOccurs="0" name="IsStoreShipmentActive" type="xs:boolean"/>
1408
+ <xs:element minOccurs="0" name="IsTakeAwayDeliveryActive" type="xs:boolean"/>
1409
+ <xs:element minOccurs="0" name="Latitude" nillable="true" type="xs:double"/>
1410
+ <xs:element minOccurs="0" name="Locality" nillable="true" type="xs:string"/>
1411
+ <xs:element minOccurs="0" name="Longitude" nillable="true" type="xs:double"/>
1412
+ <xs:element minOccurs="0" name="MondayAfternoonClosingHour" nillable="true" type="xs:string"/>
1413
+ <xs:element minOccurs="0" name="MondayAfternoonOpeningHour" nillable="true" type="xs:string"/>
1414
+ <xs:element minOccurs="0" name="MondayMorningClosingHour" nillable="true" type="xs:string"/>
1415
+ <xs:element minOccurs="0" name="MondayMorningOpeningHour" nillable="true" type="xs:string"/>
1416
+ <xs:element minOccurs="0" name="Name" nillable="true" type="xs:string"/>
1417
+ <xs:element minOccurs="0" name="OpeningDate" nillable="true" type="xs:dateTime"/>
1418
+ <xs:element minOccurs="0" name="PhoneNumber" nillable="true" type="xs:string"/>
1419
+ <xs:element minOccurs="0" name="Reference" nillable="true" type="xs:string"/>
1420
+ <xs:element minOccurs="0" name="SaturdayAfternoonClosingHour" nillable="true" type="xs:string"/>
1421
+ <xs:element minOccurs="0" name="SaturdayAfternoonOpeningHour" nillable="true" type="xs:string"/>
1422
+ <xs:element minOccurs="0" name="SaturdayMorningClosingHour" nillable="true" type="xs:string"/>
1423
+ <xs:element minOccurs="0" name="SaturdayMorningOpeningHour" nillable="true" type="xs:string"/>
1424
+ <xs:element minOccurs="0" name="StreetAndStreetNumber" nillable="true" type="xs:string"/>
1425
+ <xs:element minOccurs="0" name="SundayAfternoonClosingHour" nillable="true" type="xs:string"/>
1426
+ <xs:element minOccurs="0" name="SundayAfternoonOpeningHour" nillable="true" type="xs:string"/>
1427
+ <xs:element minOccurs="0" name="SundayMorningClosingHour" nillable="true" type="xs:string"/>
1428
+ <xs:element minOccurs="0" name="SundayMorningOpeningHour" nillable="true" type="xs:string"/>
1429
+ <xs:element minOccurs="0" name="TemporaryClosingEndDate" nillable="true" type="xs:dateTime"/>
1430
+ <xs:element minOccurs="0" name="TemporaryClosingStartDate" nillable="true" type="xs:dateTime"/>
1431
+ <xs:element minOccurs="0" name="ThursdayAfternoonClosingHour" nillable="true" type="xs:string"/>
1432
+ <xs:element minOccurs="0" name="ThursdayAfternoonOpeningHour" nillable="true" type="xs:string"/>
1433
+ <xs:element minOccurs="0" name="ThursdayMorningClosingHour" nillable="true" type="xs:string"/>
1434
+ <xs:element minOccurs="0" name="ThursdayMorningOpeningHour" nillable="true" type="xs:string"/>
1435
+ <xs:element minOccurs="0" name="TuesdayAfternoonClosingHour" nillable="true" type="xs:string"/>
1436
+ <xs:element minOccurs="0" name="TuesdayAfternoonOpeningHour" nillable="true" type="xs:string"/>
1437
+ <xs:element minOccurs="0" name="TuesdayMorningClosingHour" nillable="true" type="xs:string"/>
1438
+ <xs:element minOccurs="0" name="TuesdayMorningOpeningHour" nillable="true" type="xs:string"/>
1439
+ <xs:element minOccurs="0" name="WednesdayAfternoonClosingHour" nillable="true" type="xs:string"/>
1440
+ <xs:element minOccurs="0" name="WednesdayAfternoonOpeningHour" nillable="true" type="xs:string"/>
1441
+ <xs:element minOccurs="0" name="WednesdayMorningClosingHour" nillable="true" type="xs:string"/>
1442
+ <xs:element minOccurs="0" name="WednesdayMorningOpeningHour" nillable="true" type="xs:string"/>
1443
+ <xs:element minOccurs="0" name="ZipCode" nillable="true" type="xs:string"/>
1444
+ </xs:sequence>
1445
+ </xs:complexType>
1446
+ <xs:element name="ParcelShop" nillable="true" type="tns:ParcelShop"/>
1447
+ <xs:element name="CloseDiscussionList">
1448
+ <xs:complexType>
1449
+ <xs:sequence>
1450
+ <xs:element xmlns:q36="http://schemas.datacontract.org/2004/07/Cdiscount.Framework.Core.Communication.Messages" minOccurs="0" name="headerMessage" nillable="true" type="q36:HeaderMessage"/>
1451
+ <xs:element minOccurs="0" name="closeDiscussionRequest" nillable="true" type="tns:CloseDiscussionRequest"/>
1452
+ </xs:sequence>
1453
+ </xs:complexType>
1454
+ </xs:element>
1455
+ <xs:complexType name="CloseDiscussionRequest">
1456
+ <xs:sequence>
1457
+ <xs:element xmlns:q37="http://schemas.microsoft.com/2003/10/Serialization/Arrays" minOccurs="0" name="DiscussionIds" nillable="true" type="q37:ArrayOflong"/>
1458
+ </xs:sequence>
1459
+ </xs:complexType>
1460
+ <xs:element name="CloseDiscussionRequest" nillable="true" type="tns:CloseDiscussionRequest"/>
1461
+ <xs:element name="CloseDiscussionListResponse">
1462
+ <xs:complexType>
1463
+ <xs:sequence>
1464
+ <xs:element minOccurs="0" name="CloseDiscussionListResult" nillable="true" type="tns:CloseDiscussionResultMessage"/>
1465
+ </xs:sequence>
1466
+ </xs:complexType>
1467
+ </xs:element>
1468
+ <xs:complexType name="CloseDiscussionResultMessage">
1469
+ <xs:complexContent mixed="false">
1470
+ <xs:extension base="tns:ServiceBaseAPIMessage">
1471
+ <xs:sequence>
1472
+ <xs:element minOccurs="0" name="CloseDiscussionResultList" nillable="true" type="tns:ArrayOfCloseDiscussionResult"/>
1473
+ </xs:sequence>
1474
+ </xs:extension>
1475
+ </xs:complexContent>
1476
+ </xs:complexType>
1477
+ <xs:element name="CloseDiscussionResultMessage" nillable="true" type="tns:CloseDiscussionResultMessage"/>
1478
+ <xs:complexType name="ArrayOfCloseDiscussionResult">
1479
+ <xs:sequence>
1480
+ <xs:element minOccurs="0" maxOccurs="unbounded" name="CloseDiscussionResult" nillable="true" type="tns:CloseDiscussionResult"/>
1481
+ </xs:sequence>
1482
+ </xs:complexType>
1483
+ <xs:element name="ArrayOfCloseDiscussionResult" nillable="true" type="tns:ArrayOfCloseDiscussionResult"/>
1484
+ <xs:complexType name="CloseDiscussionResult">
1485
+ <xs:sequence>
1486
+ <xs:element minOccurs="0" name="DiscussionId" type="xs:long"/>
1487
+ <xs:element minOccurs="0" name="OperationStatus" type="tns:CloseDiscussionStatus"/>
1488
+ </xs:sequence>
1489
+ </xs:complexType>
1490
+ <xs:element name="CloseDiscussionResult" nillable="true" type="tns:CloseDiscussionResult"/>
1491
+ <xs:simpleType name="CloseDiscussionStatus">
1492
+ <xs:restriction base="xs:string">
1493
+ <xs:enumeration value="DiscussionClosed"/>
1494
+ <xs:enumeration value="DiscussionNotFound"/>
1495
+ <xs:enumeration value="UnauthorizedCancelPending"/>
1496
+ <xs:enumeration value="UnauthorizedLastAnswer"/>
1497
+ <xs:enumeration value="AlreadyClosed"/>
1498
+ </xs:restriction>
1499
+ </xs:simpleType>
1500
+ <xs:element name="CloseDiscussionStatus" nillable="true" type="tns:CloseDiscussionStatus"/>
1501
+ <xs:element name="GetOrderClaimList">
1502
+ <xs:complexType>
1503
+ <xs:sequence>
1504
+ <xs:element xmlns:q38="http://schemas.datacontract.org/2004/07/Cdiscount.Framework.Core.Communication.Messages" minOccurs="0" name="headerMessage" nillable="true" type="q38:HeaderMessage"/>
1505
+ <xs:element minOccurs="0" name="orderClaimFilter" nillable="true" type="tns:OrderClaimFilter"/>
1506
+ </xs:sequence>
1507
+ </xs:complexType>
1508
+ </xs:element>
1509
+ <xs:complexType name="OrderClaimFilter">
1510
+ <xs:complexContent mixed="false">
1511
+ <xs:extension base="tns:OrderQuestionFilter">
1512
+ <xs:sequence>
1513
+ <xs:element minOccurs="0" name="OnlyWithMessageFromCdsCustomerService" nillable="true" type="xs:boolean"/>
1514
+ </xs:sequence>
1515
+ </xs:extension>
1516
+ </xs:complexContent>
1517
+ </xs:complexType>
1518
+ <xs:element name="OrderClaimFilter" nillable="true" type="tns:OrderClaimFilter"/>
1519
+ <xs:complexType name="OrderQuestionFilter">
1520
+ <xs:complexContent mixed="false">
1521
+ <xs:extension base="tns:DiscussionFilterBase">
1522
+ <xs:sequence>
1523
+ <xs:element xmlns:q39="http://schemas.microsoft.com/2003/10/Serialization/Arrays" minOccurs="0" name="OrderNumberList" nillable="true" type="q39:ArrayOfstring"/>
1524
+ </xs:sequence>
1525
+ </xs:extension>
1526
+ </xs:complexContent>
1527
+ </xs:complexType>
1528
+ <xs:element name="OrderQuestionFilter" nillable="true" type="tns:OrderQuestionFilter"/>
1529
+ <xs:complexType name="DiscussionFilterBase">
1530
+ <xs:sequence>
1531
+ <xs:element minOccurs="0" name="BeginCreationDate" nillable="true" type="xs:dateTime"/>
1532
+ <xs:element minOccurs="0" name="BeginModificationDate" nillable="true" type="xs:dateTime"/>
1533
+ <xs:element minOccurs="0" name="EndCreationDate" nillable="true" type="xs:dateTime"/>
1534
+ <xs:element minOccurs="0" name="EndModificationDate" nillable="true" type="xs:dateTime"/>
1535
+ <xs:element minOccurs="0" name="StatusList" nillable="true" type="tns:ArrayOfDiscussionStateFilter"/>
1536
+ </xs:sequence>
1537
+ </xs:complexType>
1538
+ <xs:element name="DiscussionFilterBase" nillable="true" type="tns:DiscussionFilterBase"/>
1539
+ <xs:complexType name="ArrayOfDiscussionStateFilter">
1540
+ <xs:sequence>
1541
+ <xs:element minOccurs="0" maxOccurs="unbounded" name="DiscussionStateFilter" type="tns:DiscussionStateFilter"/>
1542
+ </xs:sequence>
1543
+ </xs:complexType>
1544
+ <xs:element name="ArrayOfDiscussionStateFilter" nillable="true" type="tns:ArrayOfDiscussionStateFilter"/>
1545
+ <xs:simpleType name="DiscussionStateFilter">
1546
+ <xs:restriction base="xs:string">
1547
+ <xs:enumeration value="All"/>
1548
+ <xs:enumeration value="Open"/>
1549
+ <xs:enumeration value="Closed"/>
1550
+ <xs:enumeration value="NotProcessed"/>
1551
+ </xs:restriction>
1552
+ </xs:simpleType>
1553
+ <xs:element name="DiscussionStateFilter" nillable="true" type="tns:DiscussionStateFilter"/>
1554
+ <xs:element name="GetOrderClaimListResponse">
1555
+ <xs:complexType>
1556
+ <xs:sequence>
1557
+ <xs:element minOccurs="0" name="GetOrderClaimListResult" nillable="true" type="tns:OrderClaimListMessage"/>
1558
+ </xs:sequence>
1559
+ </xs:complexType>
1560
+ </xs:element>
1561
+ <xs:complexType name="OrderClaimListMessage">
1562
+ <xs:complexContent mixed="false">
1563
+ <xs:extension base="tns:ServiceBaseAPIMessage">
1564
+ <xs:sequence>
1565
+ <xs:element minOccurs="0" name="OrderClaimList" nillable="true" type="tns:ArrayOfOrderClaim"/>
1566
+ </xs:sequence>
1567
+ </xs:extension>
1568
+ </xs:complexContent>
1569
+ </xs:complexType>
1570
+ <xs:element name="OrderClaimListMessage" nillable="true" type="tns:OrderClaimListMessage"/>
1571
+ <xs:complexType name="ArrayOfOrderClaim">
1572
+ <xs:sequence>
1573
+ <xs:element minOccurs="0" maxOccurs="unbounded" name="OrderClaim" nillable="true" type="tns:OrderClaim"/>
1574
+ </xs:sequence>
1575
+ </xs:complexType>
1576
+ <xs:element name="ArrayOfOrderClaim" nillable="true" type="tns:ArrayOfOrderClaim"/>
1577
+ <xs:complexType name="OrderClaim">
1578
+ <xs:complexContent mixed="false">
1579
+ <xs:extension base="tns:OrderQuestion">
1580
+ <xs:sequence>
1581
+ <xs:element minOccurs="0" name="ClaimType" type="tns:ClaimType"/>
1582
+ </xs:sequence>
1583
+ </xs:extension>
1584
+ </xs:complexContent>
1585
+ </xs:complexType>
1586
+ <xs:element name="OrderClaim" nillable="true" type="tns:OrderClaim"/>
1587
+ <xs:complexType name="OrderQuestion">
1588
+ <xs:complexContent mixed="false">
1589
+ <xs:extension base="tns:DiscussionThreadBase">
1590
+ <xs:sequence>
1591
+ <xs:element minOccurs="0" name="OrderNumber" nillable="true" type="xs:string"/>
1592
+ </xs:sequence>
1593
+ </xs:extension>
1594
+ </xs:complexContent>
1595
+ </xs:complexType>
1596
+ <xs:element name="OrderQuestion" nillable="true" type="tns:OrderQuestion"/>
1597
+ <xs:complexType name="DiscussionThreadBase">
1598
+ <xs:sequence>
1599
+ <xs:element minOccurs="0" name="CloseDate" nillable="true" type="xs:dateTime"/>
1600
+ <xs:element minOccurs="0" name="CreationDate" type="xs:dateTime"/>
1601
+ <xs:element minOccurs="0" name="Id" type="xs:long"/>
1602
+ <xs:element minOccurs="0" name="LastUpdatedDate" nillable="true" type="xs:dateTime"/>
1603
+ <xs:element minOccurs="0" name="Messages" nillable="true" type="tns:ArrayOfMessage"/>
1604
+ <xs:element minOccurs="0" name="Status" type="tns:DiscussionState"/>
1605
+ <xs:element minOccurs="0" name="Subject" nillable="true" type="xs:string"/>
1606
+ </xs:sequence>
1607
+ </xs:complexType>
1608
+ <xs:element name="DiscussionThreadBase" nillable="true" type="tns:DiscussionThreadBase"/>
1609
+ <xs:complexType name="ArrayOfMessage">
1610
+ <xs:sequence>
1611
+ <xs:element minOccurs="0" maxOccurs="unbounded" name="Message" nillable="true" type="tns:Message"/>
1612
+ </xs:sequence>
1613
+ </xs:complexType>
1614
+ <xs:element name="ArrayOfMessage" nillable="true" type="tns:ArrayOfMessage"/>
1615
+ <xs:complexType name="Message">
1616
+ <xs:sequence>
1617
+ <xs:element minOccurs="0" name="Content" nillable="true" type="xs:string"/>
1618
+ <xs:element minOccurs="0" name="Sender" nillable="true" type="xs:string"/>
1619
+ <xs:element minOccurs="0" name="Timestamp" type="xs:dateTime"/>
1620
+ </xs:sequence>
1621
+ </xs:complexType>
1622
+ <xs:element name="Message" nillable="true" type="tns:Message"/>
1623
+ <xs:simpleType name="DiscussionState">
1624
+ <xs:restriction base="xs:string">
1625
+ <xs:enumeration value="Open"/>
1626
+ <xs:enumeration value="Closed"/>
1627
+ <xs:enumeration value="NotProcessed"/>
1628
+ </xs:restriction>
1629
+ </xs:simpleType>
1630
+ <xs:element name="DiscussionState" nillable="true" type="tns:DiscussionState"/>
1631
+ <xs:simpleType name="ClaimType">
1632
+ <xs:restriction base="xs:string">
1633
+ <xs:enumeration value="PackageNotReceived"/>
1634
+ <xs:enumeration value="IncompletePackage"/>
1635
+ <xs:enumeration value="MissingAccessories"/>
1636
+ <xs:enumeration value="DamagedProduct"/>
1637
+ <xs:enumeration value="WrongProductReference"/>
1638
+ <xs:enumeration value="WrongRefundAmount"/>
1639
+ <xs:enumeration value="RefundNotReceived"/>
1640
+ <xs:enumeration value="ProductNotWorking"/>
1641
+ <xs:enumeration value="Other"/>
1642
+ <xs:enumeration value="ProductCanceling"/>
1643
+ <xs:enumeration value="OrderCanceling"/>
1644
+ <xs:enumeration value="WishToWithdraw"/>
1645
+ <xs:enumeration value="OrderNotShipped"/>
1646
+ </xs:restriction>
1647
+ </xs:simpleType>
1648
+ <xs:element name="ClaimType" nillable="true" type="tns:ClaimType"/>
1649
+ <xs:element name="GetOrderQuestionList">
1650
+ <xs:complexType>
1651
+ <xs:sequence>
1652
+ <xs:element xmlns:q40="http://schemas.datacontract.org/2004/07/Cdiscount.Framework.Core.Communication.Messages" minOccurs="0" name="headerMessage" nillable="true" type="q40:HeaderMessage"/>
1653
+ <xs:element minOccurs="0" name="orderQuestionFilter" nillable="true" type="tns:OrderQuestionFilter"/>
1654
+ </xs:sequence>
1655
+ </xs:complexType>
1656
+ </xs:element>
1657
+ <xs:element name="GetOrderQuestionListResponse">
1658
+ <xs:complexType>
1659
+ <xs:sequence>
1660
+ <xs:element minOccurs="0" name="GetOrderQuestionListResult" nillable="true" type="tns:OrderQuestionListMessage"/>
1661
+ </xs:sequence>
1662
+ </xs:complexType>
1663
+ </xs:element>
1664
+ <xs:complexType name="OrderQuestionListMessage">
1665
+ <xs:complexContent mixed="false">
1666
+ <xs:extension base="tns:ServiceBaseAPIMessage">
1667
+ <xs:sequence>
1668
+ <xs:element minOccurs="0" name="OrderQuestionList" nillable="true" type="tns:ArrayOfOrderQuestion"/>
1669
+ </xs:sequence>
1670
+ </xs:extension>
1671
+ </xs:complexContent>
1672
+ </xs:complexType>
1673
+ <xs:element name="OrderQuestionListMessage" nillable="true" type="tns:OrderQuestionListMessage"/>
1674
+ <xs:complexType name="ArrayOfOrderQuestion">
1675
+ <xs:sequence>
1676
+ <xs:element minOccurs="0" maxOccurs="unbounded" name="OrderQuestion" nillable="true" type="tns:OrderQuestion"/>
1677
+ </xs:sequence>
1678
+ </xs:complexType>
1679
+ <xs:element name="ArrayOfOrderQuestion" nillable="true" type="tns:ArrayOfOrderQuestion"/>
1680
+ <xs:element name="GetOfferQuestionList">
1681
+ <xs:complexType>
1682
+ <xs:sequence>
1683
+ <xs:element xmlns:q41="http://schemas.datacontract.org/2004/07/Cdiscount.Framework.Core.Communication.Messages" minOccurs="0" name="headerMessage" nillable="true" type="q41:HeaderMessage"/>
1684
+ <xs:element minOccurs="0" name="offerQuestionFilter" nillable="true" type="tns:OfferQuestionFilter"/>
1685
+ </xs:sequence>
1686
+ </xs:complexType>
1687
+ </xs:element>
1688
+ <xs:complexType name="OfferQuestionFilter">
1689
+ <xs:complexContent mixed="false">
1690
+ <xs:extension base="tns:DiscussionFilterBase">
1691
+ <xs:sequence>
1692
+ <xs:element xmlns:q42="http://schemas.microsoft.com/2003/10/Serialization/Arrays" minOccurs="0" name="ProductEANList" nillable="true" type="q42:ArrayOfstring"/>
1693
+ <xs:element xmlns:q43="http://schemas.microsoft.com/2003/10/Serialization/Arrays" minOccurs="0" name="ProductSellerReferenceList" nillable="true" type="q43:ArrayOfstring"/>
1694
+ </xs:sequence>
1695
+ </xs:extension>
1696
+ </xs:complexContent>
1697
+ </xs:complexType>
1698
+ <xs:element name="OfferQuestionFilter" nillable="true" type="tns:OfferQuestionFilter"/>
1699
+ <xs:element name="GetOfferQuestionListResponse">
1700
+ <xs:complexType>
1701
+ <xs:sequence>
1702
+ <xs:element minOccurs="0" name="GetOfferQuestionListResult" nillable="true" type="tns:OfferQuestionListMessage"/>
1703
+ </xs:sequence>
1704
+ </xs:complexType>
1705
+ </xs:element>
1706
+ <xs:complexType name="OfferQuestionListMessage">
1707
+ <xs:complexContent mixed="false">
1708
+ <xs:extension base="tns:ServiceBaseAPIMessage">
1709
+ <xs:sequence>
1710
+ <xs:element minOccurs="0" name="OfferQuestionList" nillable="true" type="tns:ArrayOfOfferQuestion"/>
1711
+ </xs:sequence>
1712
+ </xs:extension>
1713
+ </xs:complexContent>
1714
+ </xs:complexType>
1715
+ <xs:element name="OfferQuestionListMessage" nillable="true" type="tns:OfferQuestionListMessage"/>
1716
+ <xs:complexType name="ArrayOfOfferQuestion">
1717
+ <xs:sequence>
1718
+ <xs:element minOccurs="0" maxOccurs="unbounded" name="OfferQuestion" nillable="true" type="tns:OfferQuestion"/>
1719
+ </xs:sequence>
1720
+ </xs:complexType>
1721
+ <xs:element name="ArrayOfOfferQuestion" nillable="true" type="tns:ArrayOfOfferQuestion"/>
1722
+ <xs:complexType name="OfferQuestion">
1723
+ <xs:complexContent mixed="false">
1724
+ <xs:extension base="tns:DiscussionThreadBase">
1725
+ <xs:sequence>
1726
+ <xs:element minOccurs="0" name="ProductEAN" nillable="true" type="xs:string"/>
1727
+ <xs:element minOccurs="0" name="ProductSellerReference" nillable="true" type="xs:string"/>
1728
+ </xs:sequence>
1729
+ </xs:extension>
1730
+ </xs:complexContent>
1731
+ </xs:complexType>
1732
+ <xs:element name="OfferQuestion" nillable="true" type="tns:OfferQuestion"/>
1733
+ <xs:element name="GetDiscussionMailList">
1734
+ <xs:complexType>
1735
+ <xs:sequence>
1736
+ <xs:element xmlns:q44="http://schemas.datacontract.org/2004/07/Cdiscount.Framework.Core.Communication.Messages" minOccurs="0" name="headerMessage" nillable="true" type="q44:HeaderMessage"/>
1737
+ <xs:element minOccurs="0" name="request" nillable="true" type="tns:GetDiscussionMailListRequest"/>
1738
+ </xs:sequence>
1739
+ </xs:complexType>
1740
+ </xs:element>
1741
+ <xs:complexType name="GetDiscussionMailListRequest">
1742
+ <xs:sequence>
1743
+ <xs:element xmlns:q45="http://schemas.microsoft.com/2003/10/Serialization/Arrays" minOccurs="0" name="DiscussionIds" nillable="true" type="q45:ArrayOflong"/>
1744
+ </xs:sequence>
1745
+ </xs:complexType>
1746
+ <xs:element name="GetDiscussionMailListRequest" nillable="true" type="tns:GetDiscussionMailListRequest"/>
1747
+ <xs:element name="GetDiscussionMailListResponse">
1748
+ <xs:complexType>
1749
+ <xs:sequence>
1750
+ <xs:element minOccurs="0" name="GetDiscussionMailListResult" nillable="true" type="tns:DiscussionMailListMessage"/>
1751
+ </xs:sequence>
1752
+ </xs:complexType>
1753
+ </xs:element>
1754
+ <xs:complexType name="DiscussionMailListMessage">
1755
+ <xs:complexContent mixed="false">
1756
+ <xs:extension base="tns:ServiceBaseAPIMessage">
1757
+ <xs:sequence>
1758
+ <xs:element minOccurs="0" name="DiscussionMailList" nillable="true" type="tns:ArrayOfDiscussionMail"/>
1759
+ </xs:sequence>
1760
+ </xs:extension>
1761
+ </xs:complexContent>
1762
+ </xs:complexType>
1763
+ <xs:element name="DiscussionMailListMessage" nillable="true" type="tns:DiscussionMailListMessage"/>
1764
+ <xs:complexType name="ArrayOfDiscussionMail">
1765
+ <xs:sequence>
1766
+ <xs:element minOccurs="0" maxOccurs="unbounded" name="DiscussionMail" nillable="true" type="tns:DiscussionMail"/>
1767
+ </xs:sequence>
1768
+ </xs:complexType>
1769
+ <xs:element name="ArrayOfDiscussionMail" nillable="true" type="tns:ArrayOfDiscussionMail"/>
1770
+ <xs:complexType name="DiscussionMail">
1771
+ <xs:sequence>
1772
+ <xs:element minOccurs="0" name="DiscussionId" type="xs:long"/>
1773
+ <xs:element minOccurs="0" name="MailAddress" nillable="true" type="xs:string"/>
1774
+ <xs:element minOccurs="0" name="OperationStatus" type="tns:DiscussionMailStatusEnum"/>
1775
+ </xs:sequence>
1776
+ </xs:complexType>
1777
+ <xs:element name="DiscussionMail" nillable="true" type="tns:DiscussionMail"/>
1778
+ <xs:simpleType name="DiscussionMailStatusEnum">
1779
+ <xs:restriction base="xs:string">
1780
+ <xs:enumeration value="DiscussionNotFound"/>
1781
+ <xs:enumeration value="UnknownError"/>
1782
+ <xs:enumeration value="Success"/>
1783
+ <xs:enumeration value="DiscussionClosed"/>
1784
+ </xs:restriction>
1785
+ </xs:simpleType>
1786
+ <xs:element name="DiscussionMailStatusEnum" nillable="true" type="tns:DiscussionMailStatusEnum"/>
1787
+ </xs:schema>
1788
+ <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:tns="http://schemas.microsoft.com/2003/10/Serialization/" attributeFormDefault="qualified" elementFormDefault="qualified" targetNamespace="http://schemas.microsoft.com/2003/10/Serialization/">
1789
+ <xs:element name="anyType" nillable="true" type="xs:anyType"/>
1790
+ <xs:element name="anyURI" nillable="true" type="xs:anyURI"/>
1791
+ <xs:element name="base64Binary" nillable="true" type="xs:base64Binary"/>
1792
+ <xs:element name="boolean" nillable="true" type="xs:boolean"/>
1793
+ <xs:element name="byte" nillable="true" type="xs:byte"/>
1794
+ <xs:element name="dateTime" nillable="true" type="xs:dateTime"/>
1795
+ <xs:element name="decimal" nillable="true" type="xs:decimal"/>
1796
+ <xs:element name="double" nillable="true" type="xs:double"/>
1797
+ <xs:element name="float" nillable="true" type="xs:float"/>
1798
+ <xs:element name="int" nillable="true" type="xs:int"/>
1799
+ <xs:element name="long" nillable="true" type="xs:long"/>
1800
+ <xs:element name="QName" nillable="true" type="xs:QName"/>
1801
+ <xs:element name="short" nillable="true" type="xs:short"/>
1802
+ <xs:element name="string" nillable="true" type="xs:string"/>
1803
+ <xs:element name="unsignedByte" nillable="true" type="xs:unsignedByte"/>
1804
+ <xs:element name="unsignedInt" nillable="true" type="xs:unsignedInt"/>
1805
+ <xs:element name="unsignedLong" nillable="true" type="xs:unsignedLong"/>
1806
+ <xs:element name="unsignedShort" nillable="true" type="xs:unsignedShort"/>
1807
+ <xs:element name="char" nillable="true" type="tns:char"/>
1808
+ <xs:simpleType name="char">
1809
+ <xs:restriction base="xs:int"/>
1810
+ </xs:simpleType>
1811
+ <xs:element name="duration" nillable="true" type="tns:duration"/>
1812
+ <xs:simpleType name="duration">
1813
+ <xs:restriction base="xs:duration">
1814
+ <xs:pattern value="\-?P(\d*D)?(T(\d*H)?(\d*M)?(\d*(\.\d*)?S)?)?"/>
1815
+ <xs:minInclusive value="-P10675199DT2H48M5.4775808S"/>
1816
+ <xs:maxInclusive value="P10675199DT2H48M5.4775807S"/>
1817
+ </xs:restriction>
1818
+ </xs:simpleType>
1819
+ <xs:element name="guid" nillable="true" type="tns:guid"/>
1820
+ <xs:simpleType name="guid">
1821
+ <xs:restriction base="xs:string">
1822
+ <xs:pattern value="[\da-fA-F]{8}-[\da-fA-F]{4}-[\da-fA-F]{4}-[\da-fA-F]{4}-[\da-fA-F]{12}"/>
1823
+ </xs:restriction>
1824
+ </xs:simpleType>
1825
+ <xs:attribute name="FactoryType" type="xs:QName"/>
1826
+ <xs:attribute name="Id" type="xs:ID"/>
1827
+ <xs:attribute name="Ref" type="xs:IDREF"/>
1828
+ </xs:schema>
1829
+ <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:tns="http://schemas.datacontract.org/2004/07/Cdiscount.Framework.Core.Communication.Messages" elementFormDefault="qualified" targetNamespace="http://schemas.datacontract.org/2004/07/Cdiscount.Framework.Core.Communication.Messages">
1830
+ <xs:import namespace="http://schemas.datacontract.org/2004/07/System.Device.Location"/>
1831
+ <xs:import namespace="http://schemas.microsoft.com/2003/10/Serialization/"/>
1832
+ <xs:complexType name="HeaderMessage">
1833
+ <xs:sequence>
1834
+ <xs:element name="Context" nillable="true" type="tns:ContextMessage"/>
1835
+ <xs:element name="Localization" nillable="true" type="tns:LocalizationMessage"/>
1836
+ <xs:element minOccurs="0" name="Security" nillable="true" type="tns:SecurityContext"/>
1837
+ <xs:element name="Version" nillable="true" type="xs:string"/>
1838
+ </xs:sequence>
1839
+ </xs:complexType>
1840
+ <xs:element name="HeaderMessage" nillable="true" type="tns:HeaderMessage"/>
1841
+ <xs:complexType name="ContextMessage">
1842
+ <xs:sequence>
1843
+ <xs:element minOccurs="0" name="CatalogID" nillable="true" type="xs:int"/>
1844
+ <xs:element minOccurs="0" name="ConfigurationPolicy" nillable="true" type="xs:string"/>
1845
+ <xs:element minOccurs="0" name="CustomerID" nillable="true" type="xs:string"/>
1846
+ <xs:element minOccurs="0" name="CustomerId" type="xs:int"/>
1847
+ <xs:element minOccurs="0" name="CustomerNumber" nillable="true" type="xs:string"/>
1848
+ <xs:element minOccurs="0" name="CustomerPoolID" nillable="true" type="xs:int"/>
1849
+ <xs:element xmlns:q1="http://schemas.datacontract.org/2004/07/System.Device.Location" minOccurs="0" name="GeoCoordinate" nillable="true" type="q1:GeoCoordinate"/>
1850
+ <xs:element minOccurs="0" name="SecuredContext" type="xs:boolean"/>
1851
+ <xs:element name="SiteID" type="xs:int"/>
1852
+ </xs:sequence>
1853
+ </xs:complexType>
1854
+ <xs:element name="ContextMessage" nillable="true" type="tns:ContextMessage"/>
1855
+ <xs:complexType name="LocalizationMessage">
1856
+ <xs:sequence>
1857
+ <xs:element minOccurs="0" name="Country" type="tns:Country"/>
1858
+ <xs:element minOccurs="0" name="CultureName" nillable="true" type="xs:string"/>
1859
+ <xs:element minOccurs="0" name="Currency" type="tns:Currency"/>
1860
+ <xs:element minOccurs="0" name="DecimalPosition" nillable="true" type="xs:int"/>
1861
+ <xs:element minOccurs="0" name="Language" type="tns:Language"/>
1862
+ </xs:sequence>
1863
+ </xs:complexType>
1864
+ <xs:element name="LocalizationMessage" nillable="true" type="tns:LocalizationMessage"/>
1865
+ <xs:simpleType name="Country">
1866
+ <xs:restriction base="xs:string">
1867
+ <xs:enumeration value="Fr"/>
1868
+ <xs:enumeration value="Be"/>
1869
+ <xs:enumeration value="AF"/>
1870
+ <xs:enumeration value="ZA"/>
1871
+ <xs:enumeration value="AX"/>
1872
+ <xs:enumeration value="AL"/>
1873
+ <xs:enumeration value="DZ"/>
1874
+ <xs:enumeration value="De"/>
1875
+ <xs:enumeration value="AD"/>
1876
+ <xs:enumeration value="AO"/>
1877
+ <xs:enumeration value="AI"/>
1878
+ <xs:enumeration value="AQ"/>
1879
+ <xs:enumeration value="AG"/>
1880
+ <xs:enumeration value="AN"/>
1881
+ <xs:enumeration value="SA"/>
1882
+ <xs:enumeration value="AR"/>
1883
+ <xs:enumeration value="AM"/>
1884
+ <xs:enumeration value="AW"/>
1885
+ <xs:enumeration value="AU"/>
1886
+ <xs:enumeration value="AT"/>
1887
+ <xs:enumeration value="AZ"/>
1888
+ <xs:enumeration value="BS"/>
1889
+ <xs:enumeration value="BH"/>
1890
+ <xs:enumeration value="BD"/>
1891
+ <xs:enumeration value="BB"/>
1892
+ <xs:enumeration value="BY"/>
1893
+ <xs:enumeration value="BZ"/>
1894
+ <xs:enumeration value="BJ"/>
1895
+ <xs:enumeration value="BM"/>
1896
+ <xs:enumeration value="BT"/>
1897
+ <xs:enumeration value="BO"/>
1898
+ <xs:enumeration value="BA"/>
1899
+ <xs:enumeration value="BW"/>
1900
+ <xs:enumeration value="BV"/>
1901
+ <xs:enumeration value="BR"/>
1902
+ <xs:enumeration value="BN"/>
1903
+ <xs:enumeration value="BG"/>
1904
+ <xs:enumeration value="BF"/>
1905
+ <xs:enumeration value="BI"/>
1906
+ <xs:enumeration value="KY"/>
1907
+ <xs:enumeration value="KH"/>
1908
+ <xs:enumeration value="CM"/>
1909
+ <xs:enumeration value="CA"/>
1910
+ <xs:enumeration value="CV"/>
1911
+ <xs:enumeration value="CF"/>
1912
+ <xs:enumeration value="CL"/>
1913
+ <xs:enumeration value="CN"/>
1914
+ <xs:enumeration value="CX"/>
1915
+ <xs:enumeration value="CY"/>
1916
+ <xs:enumeration value="CC"/>
1917
+ <xs:enumeration value="CO"/>
1918
+ <xs:enumeration value="KM"/>
1919
+ <xs:enumeration value="CG"/>
1920
+ <xs:enumeration value="CD"/>
1921
+ <xs:enumeration value="CK"/>
1922
+ <xs:enumeration value="KR"/>
1923
+ <xs:enumeration value="KP"/>
1924
+ <xs:enumeration value="CR"/>
1925
+ <xs:enumeration value="CI"/>
1926
+ <xs:enumeration value="HR"/>
1927
+ <xs:enumeration value="CU"/>
1928
+ <xs:enumeration value="DK"/>
1929
+ <xs:enumeration value="DJ"/>
1930
+ <xs:enumeration value="DO"/>
1931
+ <xs:enumeration value="DM"/>
1932
+ <xs:enumeration value="EG"/>
1933
+ <xs:enumeration value="SV"/>
1934
+ <xs:enumeration value="AE"/>
1935
+ <xs:enumeration value="EC"/>
1936
+ <xs:enumeration value="ER"/>
1937
+ <xs:enumeration value="ES"/>
1938
+ <xs:enumeration value="EE"/>
1939
+ <xs:enumeration value="Us"/>
1940
+ <xs:enumeration value="ET"/>
1941
+ <xs:enumeration value="FK"/>
1942
+ <xs:enumeration value="FO"/>
1943
+ <xs:enumeration value="FJ"/>
1944
+ <xs:enumeration value="FI"/>
1945
+ <xs:enumeration value="GA"/>
1946
+ <xs:enumeration value="GM"/>
1947
+ <xs:enumeration value="GE"/>
1948
+ <xs:enumeration value="GS"/>
1949
+ <xs:enumeration value="GH"/>
1950
+ <xs:enumeration value="GI"/>
1951
+ <xs:enumeration value="GR"/>
1952
+ <xs:enumeration value="GD"/>
1953
+ <xs:enumeration value="GL"/>
1954
+ <xs:enumeration value="GP"/>
1955
+ <xs:enumeration value="GU"/>
1956
+ <xs:enumeration value="GT"/>
1957
+ <xs:enumeration value="GG"/>
1958
+ <xs:enumeration value="GN"/>
1959
+ <xs:enumeration value="GW"/>
1960
+ <xs:enumeration value="GQ"/>
1961
+ <xs:enumeration value="GY"/>
1962
+ <xs:enumeration value="GF"/>
1963
+ <xs:enumeration value="HT"/>
1964
+ <xs:enumeration value="HM"/>
1965
+ <xs:enumeration value="HN"/>
1966
+ <xs:enumeration value="HK"/>
1967
+ <xs:enumeration value="HU"/>
1968
+ <xs:enumeration value="IM"/>
1969
+ <xs:enumeration value="UM"/>
1970
+ <xs:enumeration value="VG"/>
1971
+ <xs:enumeration value="VI"/>
1972
+ <xs:enumeration value="IN"/>
1973
+ <xs:enumeration value="ID"/>
1974
+ <xs:enumeration value="IR"/>
1975
+ <xs:enumeration value="IQ"/>
1976
+ <xs:enumeration value="IE"/>
1977
+ <xs:enumeration value="IS"/>
1978
+ <xs:enumeration value="IL"/>
1979
+ <xs:enumeration value="IT"/>
1980
+ <xs:enumeration value="JM"/>
1981
+ <xs:enumeration value="JP"/>
1982
+ <xs:enumeration value="JE"/>
1983
+ <xs:enumeration value="JO"/>
1984
+ <xs:enumeration value="KZ"/>
1985
+ <xs:enumeration value="KE"/>
1986
+ <xs:enumeration value="KG"/>
1987
+ <xs:enumeration value="KI"/>
1988
+ <xs:enumeration value="KW"/>
1989
+ <xs:enumeration value="LA"/>
1990
+ <xs:enumeration value="LS"/>
1991
+ <xs:enumeration value="LV"/>
1992
+ <xs:enumeration value="LB"/>
1993
+ <xs:enumeration value="LR"/>
1994
+ <xs:enumeration value="LY"/>
1995
+ <xs:enumeration value="LI"/>
1996
+ <xs:enumeration value="LT"/>
1997
+ <xs:enumeration value="LU"/>
1998
+ <xs:enumeration value="MO"/>
1999
+ <xs:enumeration value="MK"/>
2000
+ <xs:enumeration value="MG"/>
2001
+ <xs:enumeration value="MY"/>
2002
+ <xs:enumeration value="MW"/>
2003
+ <xs:enumeration value="MV"/>
2004
+ <xs:enumeration value="ML"/>
2005
+ <xs:enumeration value="MT"/>
2006
+ <xs:enumeration value="MP"/>
2007
+ <xs:enumeration value="MA"/>
2008
+ <xs:enumeration value="MH"/>
2009
+ <xs:enumeration value="MQ"/>
2010
+ <xs:enumeration value="MU"/>
2011
+ <xs:enumeration value="MR"/>
2012
+ <xs:enumeration value="YT"/>
2013
+ <xs:enumeration value="MX"/>
2014
+ <xs:enumeration value="FM"/>
2015
+ <xs:enumeration value="MD"/>
2016
+ <xs:enumeration value="MC"/>
2017
+ <xs:enumeration value="MN"/>
2018
+ <xs:enumeration value="ME"/>
2019
+ <xs:enumeration value="MS"/>
2020
+ <xs:enumeration value="MZ"/>
2021
+ <xs:enumeration value="MM"/>
2022
+ <xs:enumeration value="NA"/>
2023
+ <xs:enumeration value="NR"/>
2024
+ <xs:enumeration value="NP"/>
2025
+ <xs:enumeration value="NI"/>
2026
+ <xs:enumeration value="NE"/>
2027
+ <xs:enumeration value="NG"/>
2028
+ <xs:enumeration value="NU"/>
2029
+ <xs:enumeration value="NF"/>
2030
+ <xs:enumeration value="NO"/>
2031
+ <xs:enumeration value="NC"/>
2032
+ <xs:enumeration value="NZ"/>
2033
+ <xs:enumeration value="IO"/>
2034
+ <xs:enumeration value="OM"/>
2035
+ <xs:enumeration value="UG"/>
2036
+ <xs:enumeration value="UZ"/>
2037
+ <xs:enumeration value="PK"/>
2038
+ <xs:enumeration value="PW"/>
2039
+ <xs:enumeration value="PS"/>
2040
+ <xs:enumeration value="PA"/>
2041
+ <xs:enumeration value="PG"/>
2042
+ <xs:enumeration value="PY"/>
2043
+ <xs:enumeration value="NL"/>
2044
+ <xs:enumeration value="PE"/>
2045
+ <xs:enumeration value="PH"/>
2046
+ <xs:enumeration value="PN"/>
2047
+ <xs:enumeration value="PL"/>
2048
+ <xs:enumeration value="PF"/>
2049
+ <xs:enumeration value="PR"/>
2050
+ <xs:enumeration value="PT"/>
2051
+ <xs:enumeration value="QA"/>
2052
+ <xs:enumeration value="RE"/>
2053
+ <xs:enumeration value="RO"/>
2054
+ <xs:enumeration value="GB"/>
2055
+ <xs:enumeration value="RU"/>
2056
+ <xs:enumeration value="RW"/>
2057
+ <xs:enumeration value="EH"/>
2058
+ <xs:enumeration value="BL"/>
2059
+ <xs:enumeration value="SH"/>
2060
+ <xs:enumeration value="LC"/>
2061
+ <xs:enumeration value="KN"/>
2062
+ <xs:enumeration value="SM"/>
2063
+ <xs:enumeration value="MF"/>
2064
+ <xs:enumeration value="PM"/>
2065
+ <xs:enumeration value="VA"/>
2066
+ <xs:enumeration value="VC"/>
2067
+ <xs:enumeration value="SB"/>
2068
+ <xs:enumeration value="WS"/>
2069
+ <xs:enumeration value="AS"/>
2070
+ <xs:enumeration value="ST"/>
2071
+ <xs:enumeration value="SN"/>
2072
+ <xs:enumeration value="RS"/>
2073
+ <xs:enumeration value="SC"/>
2074
+ <xs:enumeration value="SL"/>
2075
+ <xs:enumeration value="SG"/>
2076
+ <xs:enumeration value="SK"/>
2077
+ <xs:enumeration value="SI"/>
2078
+ <xs:enumeration value="SO"/>
2079
+ <xs:enumeration value="SD"/>
2080
+ <xs:enumeration value="LK"/>
2081
+ <xs:enumeration value="SE"/>
2082
+ <xs:enumeration value="CH"/>
2083
+ <xs:enumeration value="SR"/>
2084
+ <xs:enumeration value="SJ"/>
2085
+ <xs:enumeration value="SZ"/>
2086
+ <xs:enumeration value="SY"/>
2087
+ <xs:enumeration value="TJ"/>
2088
+ <xs:enumeration value="TW"/>
2089
+ <xs:enumeration value="TZ"/>
2090
+ <xs:enumeration value="TD"/>
2091
+ <xs:enumeration value="CZ"/>
2092
+ <xs:enumeration value="TF"/>
2093
+ <xs:enumeration value="TH"/>
2094
+ <xs:enumeration value="TL"/>
2095
+ <xs:enumeration value="TG"/>
2096
+ <xs:enumeration value="TK"/>
2097
+ <xs:enumeration value="TO"/>
2098
+ <xs:enumeration value="TT"/>
2099
+ <xs:enumeration value="TN"/>
2100
+ <xs:enumeration value="TM"/>
2101
+ <xs:enumeration value="TC"/>
2102
+ <xs:enumeration value="TR"/>
2103
+ <xs:enumeration value="TV"/>
2104
+ <xs:enumeration value="UA"/>
2105
+ <xs:enumeration value="UY"/>
2106
+ <xs:enumeration value="VU"/>
2107
+ <xs:enumeration value="VE"/>
2108
+ <xs:enumeration value="VN"/>
2109
+ <xs:enumeration value="WF"/>
2110
+ <xs:enumeration value="YE"/>
2111
+ <xs:enumeration value="ZM"/>
2112
+ <xs:enumeration value="ZW"/>
2113
+ </xs:restriction>
2114
+ </xs:simpleType>
2115
+ <xs:element name="Country" nillable="true" type="tns:Country"/>
2116
+ <xs:simpleType name="Currency">
2117
+ <xs:restriction base="xs:string">
2118
+ <xs:enumeration value="Aed">
2119
+ <xs:annotation>
2120
+ <xs:appinfo>
2121
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">784</EnumerationValue>
2122
+ </xs:appinfo>
2123
+ </xs:annotation>
2124
+ </xs:enumeration>
2125
+ <xs:enumeration value="Afn">
2126
+ <xs:annotation>
2127
+ <xs:appinfo>
2128
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">971</EnumerationValue>
2129
+ </xs:appinfo>
2130
+ </xs:annotation>
2131
+ </xs:enumeration>
2132
+ <xs:enumeration value="All">
2133
+ <xs:annotation>
2134
+ <xs:appinfo>
2135
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">8</EnumerationValue>
2136
+ </xs:appinfo>
2137
+ </xs:annotation>
2138
+ </xs:enumeration>
2139
+ <xs:enumeration value="Amd">
2140
+ <xs:annotation>
2141
+ <xs:appinfo>
2142
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">51</EnumerationValue>
2143
+ </xs:appinfo>
2144
+ </xs:annotation>
2145
+ </xs:enumeration>
2146
+ <xs:enumeration value="Ang">
2147
+ <xs:annotation>
2148
+ <xs:appinfo>
2149
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">532</EnumerationValue>
2150
+ </xs:appinfo>
2151
+ </xs:annotation>
2152
+ </xs:enumeration>
2153
+ <xs:enumeration value="Aoa">
2154
+ <xs:annotation>
2155
+ <xs:appinfo>
2156
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">973</EnumerationValue>
2157
+ </xs:appinfo>
2158
+ </xs:annotation>
2159
+ </xs:enumeration>
2160
+ <xs:enumeration value="Ars">
2161
+ <xs:annotation>
2162
+ <xs:appinfo>
2163
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">32</EnumerationValue>
2164
+ </xs:appinfo>
2165
+ </xs:annotation>
2166
+ </xs:enumeration>
2167
+ <xs:enumeration value="Aud">
2168
+ <xs:annotation>
2169
+ <xs:appinfo>
2170
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">36</EnumerationValue>
2171
+ </xs:appinfo>
2172
+ </xs:annotation>
2173
+ </xs:enumeration>
2174
+ <xs:enumeration value="Awg">
2175
+ <xs:annotation>
2176
+ <xs:appinfo>
2177
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">533</EnumerationValue>
2178
+ </xs:appinfo>
2179
+ </xs:annotation>
2180
+ </xs:enumeration>
2181
+ <xs:enumeration value="Azn">
2182
+ <xs:annotation>
2183
+ <xs:appinfo>
2184
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">944</EnumerationValue>
2185
+ </xs:appinfo>
2186
+ </xs:annotation>
2187
+ </xs:enumeration>
2188
+ <xs:enumeration value="Bam">
2189
+ <xs:annotation>
2190
+ <xs:appinfo>
2191
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">977</EnumerationValue>
2192
+ </xs:appinfo>
2193
+ </xs:annotation>
2194
+ </xs:enumeration>
2195
+ <xs:enumeration value="Bbd">
2196
+ <xs:annotation>
2197
+ <xs:appinfo>
2198
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">52</EnumerationValue>
2199
+ </xs:appinfo>
2200
+ </xs:annotation>
2201
+ </xs:enumeration>
2202
+ <xs:enumeration value="Bdt">
2203
+ <xs:annotation>
2204
+ <xs:appinfo>
2205
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">50</EnumerationValue>
2206
+ </xs:appinfo>
2207
+ </xs:annotation>
2208
+ </xs:enumeration>
2209
+ <xs:enumeration value="Bgn">
2210
+ <xs:annotation>
2211
+ <xs:appinfo>
2212
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">975</EnumerationValue>
2213
+ </xs:appinfo>
2214
+ </xs:annotation>
2215
+ </xs:enumeration>
2216
+ <xs:enumeration value="Bhd">
2217
+ <xs:annotation>
2218
+ <xs:appinfo>
2219
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">48</EnumerationValue>
2220
+ </xs:appinfo>
2221
+ </xs:annotation>
2222
+ </xs:enumeration>
2223
+ <xs:enumeration value="Bif">
2224
+ <xs:annotation>
2225
+ <xs:appinfo>
2226
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">108</EnumerationValue>
2227
+ </xs:appinfo>
2228
+ </xs:annotation>
2229
+ </xs:enumeration>
2230
+ <xs:enumeration value="Bmd">
2231
+ <xs:annotation>
2232
+ <xs:appinfo>
2233
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">60</EnumerationValue>
2234
+ </xs:appinfo>
2235
+ </xs:annotation>
2236
+ </xs:enumeration>
2237
+ <xs:enumeration value="Bnd">
2238
+ <xs:annotation>
2239
+ <xs:appinfo>
2240
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">96</EnumerationValue>
2241
+ </xs:appinfo>
2242
+ </xs:annotation>
2243
+ </xs:enumeration>
2244
+ <xs:enumeration value="Bob">
2245
+ <xs:annotation>
2246
+ <xs:appinfo>
2247
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">68</EnumerationValue>
2248
+ </xs:appinfo>
2249
+ </xs:annotation>
2250
+ </xs:enumeration>
2251
+ <xs:enumeration value="Bov">
2252
+ <xs:annotation>
2253
+ <xs:appinfo>
2254
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">984</EnumerationValue>
2255
+ </xs:appinfo>
2256
+ </xs:annotation>
2257
+ </xs:enumeration>
2258
+ <xs:enumeration value="Brl">
2259
+ <xs:annotation>
2260
+ <xs:appinfo>
2261
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">986</EnumerationValue>
2262
+ </xs:appinfo>
2263
+ </xs:annotation>
2264
+ </xs:enumeration>
2265
+ <xs:enumeration value="Bsd">
2266
+ <xs:annotation>
2267
+ <xs:appinfo>
2268
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">44</EnumerationValue>
2269
+ </xs:appinfo>
2270
+ </xs:annotation>
2271
+ </xs:enumeration>
2272
+ <xs:enumeration value="Btn">
2273
+ <xs:annotation>
2274
+ <xs:appinfo>
2275
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">64</EnumerationValue>
2276
+ </xs:appinfo>
2277
+ </xs:annotation>
2278
+ </xs:enumeration>
2279
+ <xs:enumeration value="Bwp">
2280
+ <xs:annotation>
2281
+ <xs:appinfo>
2282
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">72</EnumerationValue>
2283
+ </xs:appinfo>
2284
+ </xs:annotation>
2285
+ </xs:enumeration>
2286
+ <xs:enumeration value="Byr">
2287
+ <xs:annotation>
2288
+ <xs:appinfo>
2289
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">974</EnumerationValue>
2290
+ </xs:appinfo>
2291
+ </xs:annotation>
2292
+ </xs:enumeration>
2293
+ <xs:enumeration value="Bzd">
2294
+ <xs:annotation>
2295
+ <xs:appinfo>
2296
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">84</EnumerationValue>
2297
+ </xs:appinfo>
2298
+ </xs:annotation>
2299
+ </xs:enumeration>
2300
+ <xs:enumeration value="Cad">
2301
+ <xs:annotation>
2302
+ <xs:appinfo>
2303
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">124</EnumerationValue>
2304
+ </xs:appinfo>
2305
+ </xs:annotation>
2306
+ </xs:enumeration>
2307
+ <xs:enumeration value="Cdf">
2308
+ <xs:annotation>
2309
+ <xs:appinfo>
2310
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">976</EnumerationValue>
2311
+ </xs:appinfo>
2312
+ </xs:annotation>
2313
+ </xs:enumeration>
2314
+ <xs:enumeration value="Che">
2315
+ <xs:annotation>
2316
+ <xs:appinfo>
2317
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">947</EnumerationValue>
2318
+ </xs:appinfo>
2319
+ </xs:annotation>
2320
+ </xs:enumeration>
2321
+ <xs:enumeration value="Chf">
2322
+ <xs:annotation>
2323
+ <xs:appinfo>
2324
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">756</EnumerationValue>
2325
+ </xs:appinfo>
2326
+ </xs:annotation>
2327
+ </xs:enumeration>
2328
+ <xs:enumeration value="Chw">
2329
+ <xs:annotation>
2330
+ <xs:appinfo>
2331
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">948</EnumerationValue>
2332
+ </xs:appinfo>
2333
+ </xs:annotation>
2334
+ </xs:enumeration>
2335
+ <xs:enumeration value="Clf">
2336
+ <xs:annotation>
2337
+ <xs:appinfo>
2338
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">990</EnumerationValue>
2339
+ </xs:appinfo>
2340
+ </xs:annotation>
2341
+ </xs:enumeration>
2342
+ <xs:enumeration value="Clp">
2343
+ <xs:annotation>
2344
+ <xs:appinfo>
2345
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">152</EnumerationValue>
2346
+ </xs:appinfo>
2347
+ </xs:annotation>
2348
+ </xs:enumeration>
2349
+ <xs:enumeration value="Cny">
2350
+ <xs:annotation>
2351
+ <xs:appinfo>
2352
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">156</EnumerationValue>
2353
+ </xs:appinfo>
2354
+ </xs:annotation>
2355
+ </xs:enumeration>
2356
+ <xs:enumeration value="Cop">
2357
+ <xs:annotation>
2358
+ <xs:appinfo>
2359
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">170</EnumerationValue>
2360
+ </xs:appinfo>
2361
+ </xs:annotation>
2362
+ </xs:enumeration>
2363
+ <xs:enumeration value="Cou">
2364
+ <xs:annotation>
2365
+ <xs:appinfo>
2366
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">970</EnumerationValue>
2367
+ </xs:appinfo>
2368
+ </xs:annotation>
2369
+ </xs:enumeration>
2370
+ <xs:enumeration value="Crc">
2371
+ <xs:annotation>
2372
+ <xs:appinfo>
2373
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">188</EnumerationValue>
2374
+ </xs:appinfo>
2375
+ </xs:annotation>
2376
+ </xs:enumeration>
2377
+ <xs:enumeration value="Cuc">
2378
+ <xs:annotation>
2379
+ <xs:appinfo>
2380
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">931</EnumerationValue>
2381
+ </xs:appinfo>
2382
+ </xs:annotation>
2383
+ </xs:enumeration>
2384
+ <xs:enumeration value="Cup">
2385
+ <xs:annotation>
2386
+ <xs:appinfo>
2387
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">192</EnumerationValue>
2388
+ </xs:appinfo>
2389
+ </xs:annotation>
2390
+ </xs:enumeration>
2391
+ <xs:enumeration value="Cve">
2392
+ <xs:annotation>
2393
+ <xs:appinfo>
2394
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">132</EnumerationValue>
2395
+ </xs:appinfo>
2396
+ </xs:annotation>
2397
+ </xs:enumeration>
2398
+ <xs:enumeration value="Czk">
2399
+ <xs:annotation>
2400
+ <xs:appinfo>
2401
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">203</EnumerationValue>
2402
+ </xs:appinfo>
2403
+ </xs:annotation>
2404
+ </xs:enumeration>
2405
+ <xs:enumeration value="Djf">
2406
+ <xs:annotation>
2407
+ <xs:appinfo>
2408
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">262</EnumerationValue>
2409
+ </xs:appinfo>
2410
+ </xs:annotation>
2411
+ </xs:enumeration>
2412
+ <xs:enumeration value="Dkk">
2413
+ <xs:annotation>
2414
+ <xs:appinfo>
2415
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">208</EnumerationValue>
2416
+ </xs:appinfo>
2417
+ </xs:annotation>
2418
+ </xs:enumeration>
2419
+ <xs:enumeration value="Dop">
2420
+ <xs:annotation>
2421
+ <xs:appinfo>
2422
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">214</EnumerationValue>
2423
+ </xs:appinfo>
2424
+ </xs:annotation>
2425
+ </xs:enumeration>
2426
+ <xs:enumeration value="Dzd">
2427
+ <xs:annotation>
2428
+ <xs:appinfo>
2429
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">12</EnumerationValue>
2430
+ </xs:appinfo>
2431
+ </xs:annotation>
2432
+ </xs:enumeration>
2433
+ <xs:enumeration value="Egp">
2434
+ <xs:annotation>
2435
+ <xs:appinfo>
2436
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">818</EnumerationValue>
2437
+ </xs:appinfo>
2438
+ </xs:annotation>
2439
+ </xs:enumeration>
2440
+ <xs:enumeration value="Ern">
2441
+ <xs:annotation>
2442
+ <xs:appinfo>
2443
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">232</EnumerationValue>
2444
+ </xs:appinfo>
2445
+ </xs:annotation>
2446
+ </xs:enumeration>
2447
+ <xs:enumeration value="Etb">
2448
+ <xs:annotation>
2449
+ <xs:appinfo>
2450
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">230</EnumerationValue>
2451
+ </xs:appinfo>
2452
+ </xs:annotation>
2453
+ </xs:enumeration>
2454
+ <xs:enumeration value="Eur">
2455
+ <xs:annotation>
2456
+ <xs:appinfo>
2457
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">978</EnumerationValue>
2458
+ </xs:appinfo>
2459
+ </xs:annotation>
2460
+ </xs:enumeration>
2461
+ <xs:enumeration value="Fjd">
2462
+ <xs:annotation>
2463
+ <xs:appinfo>
2464
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">242</EnumerationValue>
2465
+ </xs:appinfo>
2466
+ </xs:annotation>
2467
+ </xs:enumeration>
2468
+ <xs:enumeration value="Fkp">
2469
+ <xs:annotation>
2470
+ <xs:appinfo>
2471
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">238</EnumerationValue>
2472
+ </xs:appinfo>
2473
+ </xs:annotation>
2474
+ </xs:enumeration>
2475
+ <xs:enumeration value="Gbp">
2476
+ <xs:annotation>
2477
+ <xs:appinfo>
2478
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">826</EnumerationValue>
2479
+ </xs:appinfo>
2480
+ </xs:annotation>
2481
+ </xs:enumeration>
2482
+ <xs:enumeration value="Gel">
2483
+ <xs:annotation>
2484
+ <xs:appinfo>
2485
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">981</EnumerationValue>
2486
+ </xs:appinfo>
2487
+ </xs:annotation>
2488
+ </xs:enumeration>
2489
+ <xs:enumeration value="Ghs">
2490
+ <xs:annotation>
2491
+ <xs:appinfo>
2492
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">936</EnumerationValue>
2493
+ </xs:appinfo>
2494
+ </xs:annotation>
2495
+ </xs:enumeration>
2496
+ <xs:enumeration value="Gip">
2497
+ <xs:annotation>
2498
+ <xs:appinfo>
2499
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">292</EnumerationValue>
2500
+ </xs:appinfo>
2501
+ </xs:annotation>
2502
+ </xs:enumeration>
2503
+ <xs:enumeration value="Gmd">
2504
+ <xs:annotation>
2505
+ <xs:appinfo>
2506
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">270</EnumerationValue>
2507
+ </xs:appinfo>
2508
+ </xs:annotation>
2509
+ </xs:enumeration>
2510
+ <xs:enumeration value="Gnf">
2511
+ <xs:annotation>
2512
+ <xs:appinfo>
2513
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">324</EnumerationValue>
2514
+ </xs:appinfo>
2515
+ </xs:annotation>
2516
+ </xs:enumeration>
2517
+ <xs:enumeration value="Gtq">
2518
+ <xs:annotation>
2519
+ <xs:appinfo>
2520
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">320</EnumerationValue>
2521
+ </xs:appinfo>
2522
+ </xs:annotation>
2523
+ </xs:enumeration>
2524
+ <xs:enumeration value="Gyd">
2525
+ <xs:annotation>
2526
+ <xs:appinfo>
2527
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">328</EnumerationValue>
2528
+ </xs:appinfo>
2529
+ </xs:annotation>
2530
+ </xs:enumeration>
2531
+ <xs:enumeration value="Hkd">
2532
+ <xs:annotation>
2533
+ <xs:appinfo>
2534
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">344</EnumerationValue>
2535
+ </xs:appinfo>
2536
+ </xs:annotation>
2537
+ </xs:enumeration>
2538
+ <xs:enumeration value="Hnl">
2539
+ <xs:annotation>
2540
+ <xs:appinfo>
2541
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">340</EnumerationValue>
2542
+ </xs:appinfo>
2543
+ </xs:annotation>
2544
+ </xs:enumeration>
2545
+ <xs:enumeration value="Hrk">
2546
+ <xs:annotation>
2547
+ <xs:appinfo>
2548
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">191</EnumerationValue>
2549
+ </xs:appinfo>
2550
+ </xs:annotation>
2551
+ </xs:enumeration>
2552
+ <xs:enumeration value="Htg">
2553
+ <xs:annotation>
2554
+ <xs:appinfo>
2555
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">332</EnumerationValue>
2556
+ </xs:appinfo>
2557
+ </xs:annotation>
2558
+ </xs:enumeration>
2559
+ <xs:enumeration value="Huf">
2560
+ <xs:annotation>
2561
+ <xs:appinfo>
2562
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">348</EnumerationValue>
2563
+ </xs:appinfo>
2564
+ </xs:annotation>
2565
+ </xs:enumeration>
2566
+ <xs:enumeration value="Idr">
2567
+ <xs:annotation>
2568
+ <xs:appinfo>
2569
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">360</EnumerationValue>
2570
+ </xs:appinfo>
2571
+ </xs:annotation>
2572
+ </xs:enumeration>
2573
+ <xs:enumeration value="Ils">
2574
+ <xs:annotation>
2575
+ <xs:appinfo>
2576
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">376</EnumerationValue>
2577
+ </xs:appinfo>
2578
+ </xs:annotation>
2579
+ </xs:enumeration>
2580
+ <xs:enumeration value="Inr">
2581
+ <xs:annotation>
2582
+ <xs:appinfo>
2583
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">356</EnumerationValue>
2584
+ </xs:appinfo>
2585
+ </xs:annotation>
2586
+ </xs:enumeration>
2587
+ <xs:enumeration value="Iqd">
2588
+ <xs:annotation>
2589
+ <xs:appinfo>
2590
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">368</EnumerationValue>
2591
+ </xs:appinfo>
2592
+ </xs:annotation>
2593
+ </xs:enumeration>
2594
+ <xs:enumeration value="Irr">
2595
+ <xs:annotation>
2596
+ <xs:appinfo>
2597
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">364</EnumerationValue>
2598
+ </xs:appinfo>
2599
+ </xs:annotation>
2600
+ </xs:enumeration>
2601
+ <xs:enumeration value="Isk">
2602
+ <xs:annotation>
2603
+ <xs:appinfo>
2604
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">352</EnumerationValue>
2605
+ </xs:appinfo>
2606
+ </xs:annotation>
2607
+ </xs:enumeration>
2608
+ <xs:enumeration value="Jmd">
2609
+ <xs:annotation>
2610
+ <xs:appinfo>
2611
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">388</EnumerationValue>
2612
+ </xs:appinfo>
2613
+ </xs:annotation>
2614
+ </xs:enumeration>
2615
+ <xs:enumeration value="Jod">
2616
+ <xs:annotation>
2617
+ <xs:appinfo>
2618
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">400</EnumerationValue>
2619
+ </xs:appinfo>
2620
+ </xs:annotation>
2621
+ </xs:enumeration>
2622
+ <xs:enumeration value="Jpy">
2623
+ <xs:annotation>
2624
+ <xs:appinfo>
2625
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">392</EnumerationValue>
2626
+ </xs:appinfo>
2627
+ </xs:annotation>
2628
+ </xs:enumeration>
2629
+ <xs:enumeration value="Kes">
2630
+ <xs:annotation>
2631
+ <xs:appinfo>
2632
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">404</EnumerationValue>
2633
+ </xs:appinfo>
2634
+ </xs:annotation>
2635
+ </xs:enumeration>
2636
+ <xs:enumeration value="Kgs">
2637
+ <xs:annotation>
2638
+ <xs:appinfo>
2639
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">417</EnumerationValue>
2640
+ </xs:appinfo>
2641
+ </xs:annotation>
2642
+ </xs:enumeration>
2643
+ <xs:enumeration value="Khr">
2644
+ <xs:annotation>
2645
+ <xs:appinfo>
2646
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">116</EnumerationValue>
2647
+ </xs:appinfo>
2648
+ </xs:annotation>
2649
+ </xs:enumeration>
2650
+ <xs:enumeration value="Kmf">
2651
+ <xs:annotation>
2652
+ <xs:appinfo>
2653
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">174</EnumerationValue>
2654
+ </xs:appinfo>
2655
+ </xs:annotation>
2656
+ </xs:enumeration>
2657
+ <xs:enumeration value="Kpw">
2658
+ <xs:annotation>
2659
+ <xs:appinfo>
2660
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">408</EnumerationValue>
2661
+ </xs:appinfo>
2662
+ </xs:annotation>
2663
+ </xs:enumeration>
2664
+ <xs:enumeration value="Krw">
2665
+ <xs:annotation>
2666
+ <xs:appinfo>
2667
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">410</EnumerationValue>
2668
+ </xs:appinfo>
2669
+ </xs:annotation>
2670
+ </xs:enumeration>
2671
+ <xs:enumeration value="Kwd">
2672
+ <xs:annotation>
2673
+ <xs:appinfo>
2674
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">414</EnumerationValue>
2675
+ </xs:appinfo>
2676
+ </xs:annotation>
2677
+ </xs:enumeration>
2678
+ <xs:enumeration value="Kyd">
2679
+ <xs:annotation>
2680
+ <xs:appinfo>
2681
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">136</EnumerationValue>
2682
+ </xs:appinfo>
2683
+ </xs:annotation>
2684
+ </xs:enumeration>
2685
+ <xs:enumeration value="Kzt">
2686
+ <xs:annotation>
2687
+ <xs:appinfo>
2688
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">398</EnumerationValue>
2689
+ </xs:appinfo>
2690
+ </xs:annotation>
2691
+ </xs:enumeration>
2692
+ <xs:enumeration value="Lak">
2693
+ <xs:annotation>
2694
+ <xs:appinfo>
2695
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">418</EnumerationValue>
2696
+ </xs:appinfo>
2697
+ </xs:annotation>
2698
+ </xs:enumeration>
2699
+ <xs:enumeration value="Lbp">
2700
+ <xs:annotation>
2701
+ <xs:appinfo>
2702
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">422</EnumerationValue>
2703
+ </xs:appinfo>
2704
+ </xs:annotation>
2705
+ </xs:enumeration>
2706
+ <xs:enumeration value="Lkr">
2707
+ <xs:annotation>
2708
+ <xs:appinfo>
2709
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">144</EnumerationValue>
2710
+ </xs:appinfo>
2711
+ </xs:annotation>
2712
+ </xs:enumeration>
2713
+ <xs:enumeration value="Lrd">
2714
+ <xs:annotation>
2715
+ <xs:appinfo>
2716
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">430</EnumerationValue>
2717
+ </xs:appinfo>
2718
+ </xs:annotation>
2719
+ </xs:enumeration>
2720
+ <xs:enumeration value="Lsl">
2721
+ <xs:annotation>
2722
+ <xs:appinfo>
2723
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">426</EnumerationValue>
2724
+ </xs:appinfo>
2725
+ </xs:annotation>
2726
+ </xs:enumeration>
2727
+ <xs:enumeration value="Ltl">
2728
+ <xs:annotation>
2729
+ <xs:appinfo>
2730
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">440</EnumerationValue>
2731
+ </xs:appinfo>
2732
+ </xs:annotation>
2733
+ </xs:enumeration>
2734
+ <xs:enumeration value="Lyd">
2735
+ <xs:annotation>
2736
+ <xs:appinfo>
2737
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">434</EnumerationValue>
2738
+ </xs:appinfo>
2739
+ </xs:annotation>
2740
+ </xs:enumeration>
2741
+ <xs:enumeration value="Mad">
2742
+ <xs:annotation>
2743
+ <xs:appinfo>
2744
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">504</EnumerationValue>
2745
+ </xs:appinfo>
2746
+ </xs:annotation>
2747
+ </xs:enumeration>
2748
+ <xs:enumeration value="Mdl">
2749
+ <xs:annotation>
2750
+ <xs:appinfo>
2751
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">498</EnumerationValue>
2752
+ </xs:appinfo>
2753
+ </xs:annotation>
2754
+ </xs:enumeration>
2755
+ <xs:enumeration value="Mga">
2756
+ <xs:annotation>
2757
+ <xs:appinfo>
2758
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">969</EnumerationValue>
2759
+ </xs:appinfo>
2760
+ </xs:annotation>
2761
+ </xs:enumeration>
2762
+ <xs:enumeration value="Mkd">
2763
+ <xs:annotation>
2764
+ <xs:appinfo>
2765
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">807</EnumerationValue>
2766
+ </xs:appinfo>
2767
+ </xs:annotation>
2768
+ </xs:enumeration>
2769
+ <xs:enumeration value="Mmk">
2770
+ <xs:annotation>
2771
+ <xs:appinfo>
2772
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">104</EnumerationValue>
2773
+ </xs:appinfo>
2774
+ </xs:annotation>
2775
+ </xs:enumeration>
2776
+ <xs:enumeration value="Mnt">
2777
+ <xs:annotation>
2778
+ <xs:appinfo>
2779
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">496</EnumerationValue>
2780
+ </xs:appinfo>
2781
+ </xs:annotation>
2782
+ </xs:enumeration>
2783
+ <xs:enumeration value="Mop">
2784
+ <xs:annotation>
2785
+ <xs:appinfo>
2786
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">446</EnumerationValue>
2787
+ </xs:appinfo>
2788
+ </xs:annotation>
2789
+ </xs:enumeration>
2790
+ <xs:enumeration value="Mro">
2791
+ <xs:annotation>
2792
+ <xs:appinfo>
2793
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">478</EnumerationValue>
2794
+ </xs:appinfo>
2795
+ </xs:annotation>
2796
+ </xs:enumeration>
2797
+ <xs:enumeration value="Mur">
2798
+ <xs:annotation>
2799
+ <xs:appinfo>
2800
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">480</EnumerationValue>
2801
+ </xs:appinfo>
2802
+ </xs:annotation>
2803
+ </xs:enumeration>
2804
+ <xs:enumeration value="Mvr">
2805
+ <xs:annotation>
2806
+ <xs:appinfo>
2807
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">462</EnumerationValue>
2808
+ </xs:appinfo>
2809
+ </xs:annotation>
2810
+ </xs:enumeration>
2811
+ <xs:enumeration value="Mwk">
2812
+ <xs:annotation>
2813
+ <xs:appinfo>
2814
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">454</EnumerationValue>
2815
+ </xs:appinfo>
2816
+ </xs:annotation>
2817
+ </xs:enumeration>
2818
+ <xs:enumeration value="Mxn">
2819
+ <xs:annotation>
2820
+ <xs:appinfo>
2821
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">484</EnumerationValue>
2822
+ </xs:appinfo>
2823
+ </xs:annotation>
2824
+ </xs:enumeration>
2825
+ <xs:enumeration value="Mxv">
2826
+ <xs:annotation>
2827
+ <xs:appinfo>
2828
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">979</EnumerationValue>
2829
+ </xs:appinfo>
2830
+ </xs:annotation>
2831
+ </xs:enumeration>
2832
+ <xs:enumeration value="Myr">
2833
+ <xs:annotation>
2834
+ <xs:appinfo>
2835
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">458</EnumerationValue>
2836
+ </xs:appinfo>
2837
+ </xs:annotation>
2838
+ </xs:enumeration>
2839
+ <xs:enumeration value="Mzn">
2840
+ <xs:annotation>
2841
+ <xs:appinfo>
2842
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">943</EnumerationValue>
2843
+ </xs:appinfo>
2844
+ </xs:annotation>
2845
+ </xs:enumeration>
2846
+ <xs:enumeration value="Nad">
2847
+ <xs:annotation>
2848
+ <xs:appinfo>
2849
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">516</EnumerationValue>
2850
+ </xs:appinfo>
2851
+ </xs:annotation>
2852
+ </xs:enumeration>
2853
+ <xs:enumeration value="Ngn">
2854
+ <xs:annotation>
2855
+ <xs:appinfo>
2856
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">566</EnumerationValue>
2857
+ </xs:appinfo>
2858
+ </xs:annotation>
2859
+ </xs:enumeration>
2860
+ <xs:enumeration value="Nio">
2861
+ <xs:annotation>
2862
+ <xs:appinfo>
2863
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">558</EnumerationValue>
2864
+ </xs:appinfo>
2865
+ </xs:annotation>
2866
+ </xs:enumeration>
2867
+ <xs:enumeration value="Nok">
2868
+ <xs:annotation>
2869
+ <xs:appinfo>
2870
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">578</EnumerationValue>
2871
+ </xs:appinfo>
2872
+ </xs:annotation>
2873
+ </xs:enumeration>
2874
+ <xs:enumeration value="Npr">
2875
+ <xs:annotation>
2876
+ <xs:appinfo>
2877
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">524</EnumerationValue>
2878
+ </xs:appinfo>
2879
+ </xs:annotation>
2880
+ </xs:enumeration>
2881
+ <xs:enumeration value="Nzd">
2882
+ <xs:annotation>
2883
+ <xs:appinfo>
2884
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">554</EnumerationValue>
2885
+ </xs:appinfo>
2886
+ </xs:annotation>
2887
+ </xs:enumeration>
2888
+ <xs:enumeration value="Omr">
2889
+ <xs:annotation>
2890
+ <xs:appinfo>
2891
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">512</EnumerationValue>
2892
+ </xs:appinfo>
2893
+ </xs:annotation>
2894
+ </xs:enumeration>
2895
+ <xs:enumeration value="Pab">
2896
+ <xs:annotation>
2897
+ <xs:appinfo>
2898
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">590</EnumerationValue>
2899
+ </xs:appinfo>
2900
+ </xs:annotation>
2901
+ </xs:enumeration>
2902
+ <xs:enumeration value="Pen">
2903
+ <xs:annotation>
2904
+ <xs:appinfo>
2905
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">604</EnumerationValue>
2906
+ </xs:appinfo>
2907
+ </xs:annotation>
2908
+ </xs:enumeration>
2909
+ <xs:enumeration value="Pgk">
2910
+ <xs:annotation>
2911
+ <xs:appinfo>
2912
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">598</EnumerationValue>
2913
+ </xs:appinfo>
2914
+ </xs:annotation>
2915
+ </xs:enumeration>
2916
+ <xs:enumeration value="Php">
2917
+ <xs:annotation>
2918
+ <xs:appinfo>
2919
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">608</EnumerationValue>
2920
+ </xs:appinfo>
2921
+ </xs:annotation>
2922
+ </xs:enumeration>
2923
+ <xs:enumeration value="Pkr">
2924
+ <xs:annotation>
2925
+ <xs:appinfo>
2926
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">586</EnumerationValue>
2927
+ </xs:appinfo>
2928
+ </xs:annotation>
2929
+ </xs:enumeration>
2930
+ <xs:enumeration value="Pln">
2931
+ <xs:annotation>
2932
+ <xs:appinfo>
2933
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">985</EnumerationValue>
2934
+ </xs:appinfo>
2935
+ </xs:annotation>
2936
+ </xs:enumeration>
2937
+ <xs:enumeration value="Pyg">
2938
+ <xs:annotation>
2939
+ <xs:appinfo>
2940
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">600</EnumerationValue>
2941
+ </xs:appinfo>
2942
+ </xs:annotation>
2943
+ </xs:enumeration>
2944
+ <xs:enumeration value="Qar">
2945
+ <xs:annotation>
2946
+ <xs:appinfo>
2947
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">634</EnumerationValue>
2948
+ </xs:appinfo>
2949
+ </xs:annotation>
2950
+ </xs:enumeration>
2951
+ <xs:enumeration value="Ron">
2952
+ <xs:annotation>
2953
+ <xs:appinfo>
2954
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">946</EnumerationValue>
2955
+ </xs:appinfo>
2956
+ </xs:annotation>
2957
+ </xs:enumeration>
2958
+ <xs:enumeration value="Rsd">
2959
+ <xs:annotation>
2960
+ <xs:appinfo>
2961
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">941</EnumerationValue>
2962
+ </xs:appinfo>
2963
+ </xs:annotation>
2964
+ </xs:enumeration>
2965
+ <xs:enumeration value="Rub">
2966
+ <xs:annotation>
2967
+ <xs:appinfo>
2968
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">643</EnumerationValue>
2969
+ </xs:appinfo>
2970
+ </xs:annotation>
2971
+ </xs:enumeration>
2972
+ <xs:enumeration value="Rwf">
2973
+ <xs:annotation>
2974
+ <xs:appinfo>
2975
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">646</EnumerationValue>
2976
+ </xs:appinfo>
2977
+ </xs:annotation>
2978
+ </xs:enumeration>
2979
+ <xs:enumeration value="Sar">
2980
+ <xs:annotation>
2981
+ <xs:appinfo>
2982
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">682</EnumerationValue>
2983
+ </xs:appinfo>
2984
+ </xs:annotation>
2985
+ </xs:enumeration>
2986
+ <xs:enumeration value="Sbd">
2987
+ <xs:annotation>
2988
+ <xs:appinfo>
2989
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">90</EnumerationValue>
2990
+ </xs:appinfo>
2991
+ </xs:annotation>
2992
+ </xs:enumeration>
2993
+ <xs:enumeration value="Scr">
2994
+ <xs:annotation>
2995
+ <xs:appinfo>
2996
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">690</EnumerationValue>
2997
+ </xs:appinfo>
2998
+ </xs:annotation>
2999
+ </xs:enumeration>
3000
+ <xs:enumeration value="Sdg">
3001
+ <xs:annotation>
3002
+ <xs:appinfo>
3003
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">938</EnumerationValue>
3004
+ </xs:appinfo>
3005
+ </xs:annotation>
3006
+ </xs:enumeration>
3007
+ <xs:enumeration value="Sek">
3008
+ <xs:annotation>
3009
+ <xs:appinfo>
3010
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">752</EnumerationValue>
3011
+ </xs:appinfo>
3012
+ </xs:annotation>
3013
+ </xs:enumeration>
3014
+ <xs:enumeration value="Sgd">
3015
+ <xs:annotation>
3016
+ <xs:appinfo>
3017
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">702</EnumerationValue>
3018
+ </xs:appinfo>
3019
+ </xs:annotation>
3020
+ </xs:enumeration>
3021
+ <xs:enumeration value="Shp">
3022
+ <xs:annotation>
3023
+ <xs:appinfo>
3024
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">654</EnumerationValue>
3025
+ </xs:appinfo>
3026
+ </xs:annotation>
3027
+ </xs:enumeration>
3028
+ <xs:enumeration value="Sll">
3029
+ <xs:annotation>
3030
+ <xs:appinfo>
3031
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">694</EnumerationValue>
3032
+ </xs:appinfo>
3033
+ </xs:annotation>
3034
+ </xs:enumeration>
3035
+ <xs:enumeration value="Sos">
3036
+ <xs:annotation>
3037
+ <xs:appinfo>
3038
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">706</EnumerationValue>
3039
+ </xs:appinfo>
3040
+ </xs:annotation>
3041
+ </xs:enumeration>
3042
+ <xs:enumeration value="Srd">
3043
+ <xs:annotation>
3044
+ <xs:appinfo>
3045
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">968</EnumerationValue>
3046
+ </xs:appinfo>
3047
+ </xs:annotation>
3048
+ </xs:enumeration>
3049
+ <xs:enumeration value="Ssp">
3050
+ <xs:annotation>
3051
+ <xs:appinfo>
3052
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">728</EnumerationValue>
3053
+ </xs:appinfo>
3054
+ </xs:annotation>
3055
+ </xs:enumeration>
3056
+ <xs:enumeration value="Std">
3057
+ <xs:annotation>
3058
+ <xs:appinfo>
3059
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">678</EnumerationValue>
3060
+ </xs:appinfo>
3061
+ </xs:annotation>
3062
+ </xs:enumeration>
3063
+ <xs:enumeration value="Svc">
3064
+ <xs:annotation>
3065
+ <xs:appinfo>
3066
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">222</EnumerationValue>
3067
+ </xs:appinfo>
3068
+ </xs:annotation>
3069
+ </xs:enumeration>
3070
+ <xs:enumeration value="Syp">
3071
+ <xs:annotation>
3072
+ <xs:appinfo>
3073
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">760</EnumerationValue>
3074
+ </xs:appinfo>
3075
+ </xs:annotation>
3076
+ </xs:enumeration>
3077
+ <xs:enumeration value="Szl">
3078
+ <xs:annotation>
3079
+ <xs:appinfo>
3080
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">748</EnumerationValue>
3081
+ </xs:appinfo>
3082
+ </xs:annotation>
3083
+ </xs:enumeration>
3084
+ <xs:enumeration value="Thb">
3085
+ <xs:annotation>
3086
+ <xs:appinfo>
3087
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">764</EnumerationValue>
3088
+ </xs:appinfo>
3089
+ </xs:annotation>
3090
+ </xs:enumeration>
3091
+ <xs:enumeration value="Tjs">
3092
+ <xs:annotation>
3093
+ <xs:appinfo>
3094
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">972</EnumerationValue>
3095
+ </xs:appinfo>
3096
+ </xs:annotation>
3097
+ </xs:enumeration>
3098
+ <xs:enumeration value="Tmt">
3099
+ <xs:annotation>
3100
+ <xs:appinfo>
3101
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">934</EnumerationValue>
3102
+ </xs:appinfo>
3103
+ </xs:annotation>
3104
+ </xs:enumeration>
3105
+ <xs:enumeration value="Tnd">
3106
+ <xs:annotation>
3107
+ <xs:appinfo>
3108
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">788</EnumerationValue>
3109
+ </xs:appinfo>
3110
+ </xs:annotation>
3111
+ </xs:enumeration>
3112
+ <xs:enumeration value="Top">
3113
+ <xs:annotation>
3114
+ <xs:appinfo>
3115
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">776</EnumerationValue>
3116
+ </xs:appinfo>
3117
+ </xs:annotation>
3118
+ </xs:enumeration>
3119
+ <xs:enumeration value="Try">
3120
+ <xs:annotation>
3121
+ <xs:appinfo>
3122
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">949</EnumerationValue>
3123
+ </xs:appinfo>
3124
+ </xs:annotation>
3125
+ </xs:enumeration>
3126
+ <xs:enumeration value="Ttd">
3127
+ <xs:annotation>
3128
+ <xs:appinfo>
3129
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">780</EnumerationValue>
3130
+ </xs:appinfo>
3131
+ </xs:annotation>
3132
+ </xs:enumeration>
3133
+ <xs:enumeration value="Twd">
3134
+ <xs:annotation>
3135
+ <xs:appinfo>
3136
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">901</EnumerationValue>
3137
+ </xs:appinfo>
3138
+ </xs:annotation>
3139
+ </xs:enumeration>
3140
+ <xs:enumeration value="Tzs">
3141
+ <xs:annotation>
3142
+ <xs:appinfo>
3143
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">834</EnumerationValue>
3144
+ </xs:appinfo>
3145
+ </xs:annotation>
3146
+ </xs:enumeration>
3147
+ <xs:enumeration value="Uah">
3148
+ <xs:annotation>
3149
+ <xs:appinfo>
3150
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">980</EnumerationValue>
3151
+ </xs:appinfo>
3152
+ </xs:annotation>
3153
+ </xs:enumeration>
3154
+ <xs:enumeration value="Ugx">
3155
+ <xs:annotation>
3156
+ <xs:appinfo>
3157
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">800</EnumerationValue>
3158
+ </xs:appinfo>
3159
+ </xs:annotation>
3160
+ </xs:enumeration>
3161
+ <xs:enumeration value="Usd">
3162
+ <xs:annotation>
3163
+ <xs:appinfo>
3164
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">840</EnumerationValue>
3165
+ </xs:appinfo>
3166
+ </xs:annotation>
3167
+ </xs:enumeration>
3168
+ <xs:enumeration value="Usn">
3169
+ <xs:annotation>
3170
+ <xs:appinfo>
3171
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">997</EnumerationValue>
3172
+ </xs:appinfo>
3173
+ </xs:annotation>
3174
+ </xs:enumeration>
3175
+ <xs:enumeration value="Uyi">
3176
+ <xs:annotation>
3177
+ <xs:appinfo>
3178
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">940</EnumerationValue>
3179
+ </xs:appinfo>
3180
+ </xs:annotation>
3181
+ </xs:enumeration>
3182
+ <xs:enumeration value="Uyu">
3183
+ <xs:annotation>
3184
+ <xs:appinfo>
3185
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">858</EnumerationValue>
3186
+ </xs:appinfo>
3187
+ </xs:annotation>
3188
+ </xs:enumeration>
3189
+ <xs:enumeration value="Uzs">
3190
+ <xs:annotation>
3191
+ <xs:appinfo>
3192
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">860</EnumerationValue>
3193
+ </xs:appinfo>
3194
+ </xs:annotation>
3195
+ </xs:enumeration>
3196
+ <xs:enumeration value="Vef">
3197
+ <xs:annotation>
3198
+ <xs:appinfo>
3199
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">937</EnumerationValue>
3200
+ </xs:appinfo>
3201
+ </xs:annotation>
3202
+ </xs:enumeration>
3203
+ <xs:enumeration value="Vnd">
3204
+ <xs:annotation>
3205
+ <xs:appinfo>
3206
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">704</EnumerationValue>
3207
+ </xs:appinfo>
3208
+ </xs:annotation>
3209
+ </xs:enumeration>
3210
+ <xs:enumeration value="Vuv">
3211
+ <xs:annotation>
3212
+ <xs:appinfo>
3213
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">548</EnumerationValue>
3214
+ </xs:appinfo>
3215
+ </xs:annotation>
3216
+ </xs:enumeration>
3217
+ <xs:enumeration value="Wst">
3218
+ <xs:annotation>
3219
+ <xs:appinfo>
3220
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">882</EnumerationValue>
3221
+ </xs:appinfo>
3222
+ </xs:annotation>
3223
+ </xs:enumeration>
3224
+ <xs:enumeration value="Xaf">
3225
+ <xs:annotation>
3226
+ <xs:appinfo>
3227
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">950</EnumerationValue>
3228
+ </xs:appinfo>
3229
+ </xs:annotation>
3230
+ </xs:enumeration>
3231
+ <xs:enumeration value="Xag">
3232
+ <xs:annotation>
3233
+ <xs:appinfo>
3234
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">961</EnumerationValue>
3235
+ </xs:appinfo>
3236
+ </xs:annotation>
3237
+ </xs:enumeration>
3238
+ <xs:enumeration value="Xau">
3239
+ <xs:annotation>
3240
+ <xs:appinfo>
3241
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">959</EnumerationValue>
3242
+ </xs:appinfo>
3243
+ </xs:annotation>
3244
+ </xs:enumeration>
3245
+ <xs:enumeration value="Xba">
3246
+ <xs:annotation>
3247
+ <xs:appinfo>
3248
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">955</EnumerationValue>
3249
+ </xs:appinfo>
3250
+ </xs:annotation>
3251
+ </xs:enumeration>
3252
+ <xs:enumeration value="Xbb">
3253
+ <xs:annotation>
3254
+ <xs:appinfo>
3255
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">956</EnumerationValue>
3256
+ </xs:appinfo>
3257
+ </xs:annotation>
3258
+ </xs:enumeration>
3259
+ <xs:enumeration value="Xbc">
3260
+ <xs:annotation>
3261
+ <xs:appinfo>
3262
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">957</EnumerationValue>
3263
+ </xs:appinfo>
3264
+ </xs:annotation>
3265
+ </xs:enumeration>
3266
+ <xs:enumeration value="Xbd">
3267
+ <xs:annotation>
3268
+ <xs:appinfo>
3269
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">958</EnumerationValue>
3270
+ </xs:appinfo>
3271
+ </xs:annotation>
3272
+ </xs:enumeration>
3273
+ <xs:enumeration value="Xcd">
3274
+ <xs:annotation>
3275
+ <xs:appinfo>
3276
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">951</EnumerationValue>
3277
+ </xs:appinfo>
3278
+ </xs:annotation>
3279
+ </xs:enumeration>
3280
+ <xs:enumeration value="Xdr">
3281
+ <xs:annotation>
3282
+ <xs:appinfo>
3283
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">960</EnumerationValue>
3284
+ </xs:appinfo>
3285
+ </xs:annotation>
3286
+ </xs:enumeration>
3287
+ <xs:enumeration value="Xof">
3288
+ <xs:annotation>
3289
+ <xs:appinfo>
3290
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">952</EnumerationValue>
3291
+ </xs:appinfo>
3292
+ </xs:annotation>
3293
+ </xs:enumeration>
3294
+ <xs:enumeration value="Xpd">
3295
+ <xs:annotation>
3296
+ <xs:appinfo>
3297
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">964</EnumerationValue>
3298
+ </xs:appinfo>
3299
+ </xs:annotation>
3300
+ </xs:enumeration>
3301
+ <xs:enumeration value="Xpf">
3302
+ <xs:annotation>
3303
+ <xs:appinfo>
3304
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">953</EnumerationValue>
3305
+ </xs:appinfo>
3306
+ </xs:annotation>
3307
+ </xs:enumeration>
3308
+ <xs:enumeration value="Xpt">
3309
+ <xs:annotation>
3310
+ <xs:appinfo>
3311
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">962</EnumerationValue>
3312
+ </xs:appinfo>
3313
+ </xs:annotation>
3314
+ </xs:enumeration>
3315
+ <xs:enumeration value="Xsu">
3316
+ <xs:annotation>
3317
+ <xs:appinfo>
3318
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">994</EnumerationValue>
3319
+ </xs:appinfo>
3320
+ </xs:annotation>
3321
+ </xs:enumeration>
3322
+ <xs:enumeration value="Xts">
3323
+ <xs:annotation>
3324
+ <xs:appinfo>
3325
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">963</EnumerationValue>
3326
+ </xs:appinfo>
3327
+ </xs:annotation>
3328
+ </xs:enumeration>
3329
+ <xs:enumeration value="Xua">
3330
+ <xs:annotation>
3331
+ <xs:appinfo>
3332
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">965</EnumerationValue>
3333
+ </xs:appinfo>
3334
+ </xs:annotation>
3335
+ </xs:enumeration>
3336
+ <xs:enumeration value="Xxx">
3337
+ <xs:annotation>
3338
+ <xs:appinfo>
3339
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">999</EnumerationValue>
3340
+ </xs:appinfo>
3341
+ </xs:annotation>
3342
+ </xs:enumeration>
3343
+ <xs:enumeration value="Yer">
3344
+ <xs:annotation>
3345
+ <xs:appinfo>
3346
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">886</EnumerationValue>
3347
+ </xs:appinfo>
3348
+ </xs:annotation>
3349
+ </xs:enumeration>
3350
+ <xs:enumeration value="Zar">
3351
+ <xs:annotation>
3352
+ <xs:appinfo>
3353
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">710</EnumerationValue>
3354
+ </xs:appinfo>
3355
+ </xs:annotation>
3356
+ </xs:enumeration>
3357
+ <xs:enumeration value="Zmw">
3358
+ <xs:annotation>
3359
+ <xs:appinfo>
3360
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">967</EnumerationValue>
3361
+ </xs:appinfo>
3362
+ </xs:annotation>
3363
+ </xs:enumeration>
3364
+ <xs:enumeration value="Zwl">
3365
+ <xs:annotation>
3366
+ <xs:appinfo>
3367
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">932</EnumerationValue>
3368
+ </xs:appinfo>
3369
+ </xs:annotation>
3370
+ </xs:enumeration>
3371
+ </xs:restriction>
3372
+ </xs:simpleType>
3373
+ <xs:element name="Currency" nillable="true" type="tns:Currency"/>
3374
+ <xs:simpleType name="Language">
3375
+ <xs:restriction base="xs:string">
3376
+ <xs:enumeration value="Fr"/>
3377
+ <xs:enumeration value="En"/>
3378
+ <xs:enumeration value="De"/>
3379
+ <xs:enumeration value="Es"/>
3380
+ <xs:enumeration value="Th"/>
3381
+ <xs:enumeration value="Vi"/>
3382
+ <xs:enumeration value="NotDefined">
3383
+ <xs:annotation>
3384
+ <xs:appinfo>
3385
+ <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">999</EnumerationValue>
3386
+ </xs:appinfo>
3387
+ </xs:annotation>
3388
+ </xs:enumeration>
3389
+ </xs:restriction>
3390
+ </xs:simpleType>
3391
+ <xs:element name="Language" nillable="true" type="tns:Language"/>
3392
+ <xs:complexType name="SecurityContext">
3393
+ <xs:sequence>
3394
+ <xs:element name="DomainRightsList" nillable="true" type="tns:ArrayOfDomainRights"/>
3395
+ <xs:element name="IssuerID" nillable="true" type="xs:string"/>
3396
+ <xs:element name="SessionID" nillable="true" type="xs:string"/>
3397
+ <xs:element minOccurs="0" name="SubjectLocality" nillable="true" type="tns:SubjectLocality"/>
3398
+ <xs:element name="TokenId" nillable="true" type="xs:string"/>
3399
+ <xs:element name="UserName" nillable="true" type="xs:string"/>
3400
+ </xs:sequence>
3401
+ </xs:complexType>
3402
+ <xs:element name="SecurityContext" nillable="true" type="tns:SecurityContext"/>
3403
+ <xs:complexType name="ArrayOfDomainRights">
3404
+ <xs:sequence>
3405
+ <xs:element minOccurs="0" maxOccurs="unbounded" name="DomainRights" nillable="true" type="tns:DomainRights"/>
3406
+ </xs:sequence>
3407
+ </xs:complexType>
3408
+ <xs:element name="ArrayOfDomainRights" nillable="true" type="tns:ArrayOfDomainRights"/>
3409
+ <xs:complexType name="DomainRights">
3410
+ <xs:sequence>
3411
+ <xs:element name="Name" nillable="true" type="xs:string"/>
3412
+ <xs:element name="SecurityDescriptorList" nillable="true" type="tns:ArrayOfSecurityDescriptor"/>
3413
+ </xs:sequence>
3414
+ </xs:complexType>
3415
+ <xs:element name="DomainRights" nillable="true" type="tns:DomainRights"/>
3416
+ <xs:complexType name="ArrayOfSecurityDescriptor">
3417
+ <xs:sequence>
3418
+ <xs:element minOccurs="0" maxOccurs="unbounded" name="SecurityDescriptor" nillable="true" type="tns:SecurityDescriptor"/>
3419
+ </xs:sequence>
3420
+ </xs:complexType>
3421
+ <xs:element name="ArrayOfSecurityDescriptor" nillable="true" type="tns:ArrayOfSecurityDescriptor"/>
3422
+ <xs:complexType name="SecurityDescriptor">
3423
+ <xs:sequence>
3424
+ <xs:element name="Authorization" type="tns:Authorization"/>
3425
+ <xs:element name="FunctionIdentifier" nillable="true" type="xs:string"/>
3426
+ <xs:element name="Version" type="xs:int"/>
3427
+ </xs:sequence>
3428
+ </xs:complexType>
3429
+ <xs:element name="SecurityDescriptor" nillable="true" type="tns:SecurityDescriptor"/>
3430
+ <xs:simpleType name="Authorization">
3431
+ <xs:restriction base="xs:string">
3432
+ <xs:enumeration value="None"/>
3433
+ </xs:restriction>
3434
+ </xs:simpleType>
3435
+ <xs:element name="Authorization" nillable="true" type="tns:Authorization"/>
3436
+ <xs:complexType name="SubjectLocality">
3437
+ <xs:sequence>
3438
+ <xs:element name="Address" nillable="true" type="xs:string"/>
3439
+ <xs:element name="DnsName" nillable="true" type="xs:string"/>
3440
+ </xs:sequence>
3441
+ </xs:complexType>
3442
+ <xs:element name="SubjectLocality" nillable="true" type="tns:SubjectLocality"/>
3443
+ <xs:complexType name="ServiceMessage">
3444
+ <xs:sequence>
3445
+ <xs:element minOccurs="0" name="ErrorMessage" nillable="true" type="xs:string"/>
3446
+ <xs:element minOccurs="0" name="OperationSuccess" type="xs:boolean"/>
3447
+ </xs:sequence>
3448
+ </xs:complexType>
3449
+ <xs:element name="ServiceMessage" nillable="true" type="tns:ServiceMessage"/>
3450
+ </xs:schema>
3451
+ <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:tns="http://schemas.datacontract.org/2004/07/System.Device.Location" elementFormDefault="qualified" targetNamespace="http://schemas.datacontract.org/2004/07/System.Device.Location">
3452
+ <xs:complexType name="GeoCoordinate">
3453
+ <xs:sequence>
3454
+ <xs:element minOccurs="0" name="Altitude" type="xs:double"/>
3455
+ <xs:element minOccurs="0" name="Course" type="xs:double"/>
3456
+ <xs:element minOccurs="0" name="HorizontalAccuracy" type="xs:double"/>
3457
+ <xs:element minOccurs="0" name="Latitude" type="xs:double"/>
3458
+ <xs:element minOccurs="0" name="Longitude" type="xs:double"/>
3459
+ <xs:element minOccurs="0" name="Speed" type="xs:double"/>
3460
+ <xs:element minOccurs="0" name="VerticalAccuracy" type="xs:double"/>
3461
+ </xs:sequence>
3462
+ </xs:complexType>
3463
+ <xs:element name="GeoCoordinate" nillable="true" type="tns:GeoCoordinate"/>
3464
+ </xs:schema>
3465
+ <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:tns="http://schemas.microsoft.com/2003/10/Serialization/Arrays" elementFormDefault="qualified" targetNamespace="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
3466
+ <xs:complexType name="ArrayOfstring">
3467
+ <xs:sequence>
3468
+ <xs:element minOccurs="0" maxOccurs="unbounded" name="string" nillable="true" type="xs:string"/>
3469
+ </xs:sequence>
3470
+ </xs:complexType>
3471
+ <xs:element name="ArrayOfstring" nillable="true" type="tns:ArrayOfstring"/>
3472
+ <xs:complexType name="ArrayOfKeyValueOfstringArrayOfstringty7Ep6D1">
3473
+ <xs:annotation>
3474
+ <xs:appinfo>
3475
+ <IsDictionary xmlns="http://schemas.microsoft.com/2003/10/Serialization/">true</IsDictionary>
3476
+ </xs:appinfo>
3477
+ </xs:annotation>
3478
+ <xs:sequence>
3479
+ <xs:element minOccurs="0" maxOccurs="unbounded" name="KeyValueOfstringArrayOfstringty7Ep6D1">
3480
+ <xs:complexType>
3481
+ <xs:sequence>
3482
+ <xs:element name="Key" nillable="true" type="xs:string"/>
3483
+ <xs:element name="Value" nillable="true" type="tns:ArrayOfstring"/>
3484
+ </xs:sequence>
3485
+ </xs:complexType>
3486
+ </xs:element>
3487
+ </xs:sequence>
3488
+ </xs:complexType>
3489
+ <xs:element name="ArrayOfKeyValueOfstringArrayOfstringty7Ep6D1" nillable="true" type="tns:ArrayOfKeyValueOfstringArrayOfstringty7Ep6D1"/>
3490
+ <xs:complexType name="ArrayOflong">
3491
+ <xs:sequence>
3492
+ <xs:element minOccurs="0" maxOccurs="unbounded" name="long" type="xs:long"/>
3493
+ </xs:sequence>
3494
+ </xs:complexType>
3495
+ <xs:element name="ArrayOflong" nillable="true" type="tns:ArrayOflong"/>
3496
+ </xs:schema>
3497
+ <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:tns="http://schemas.datacontract.org/2004/07/Cdiscount.Service.Marketplace.API.External.Contract.Data.Product" elementFormDefault="qualified" targetNamespace="http://schemas.datacontract.org/2004/07/Cdiscount.Service.Marketplace.API.External.Contract.Data.Product">
3498
+ <xs:import namespace="http://www.cdiscount.com"/>
3499
+ <xs:complexType name="BrandListMessage">
3500
+ <xs:complexContent mixed="false">
3501
+ <xs:extension xmlns:q1="http://www.cdiscount.com" base="q1:ServiceBaseAPIMessage">
3502
+ <xs:sequence>
3503
+ <xs:element minOccurs="0" name="BrandList" nillable="true" type="q1:ArrayOfBrand"/>
3504
+ </xs:sequence>
3505
+ </xs:extension>
3506
+ </xs:complexContent>
3507
+ </xs:complexType>
3508
+ <xs:element name="BrandListMessage" nillable="true" type="tns:BrandListMessage"/>
3509
+ </xs:schema>
3510
+ <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:tns="http://schemas.datacontract.org/2004/07/Cdiscount.Service.Marketplace.API.External.Contract.Data.Mail" elementFormDefault="qualified" targetNamespace="http://schemas.datacontract.org/2004/07/Cdiscount.Service.Marketplace.API.External.Contract.Data.Mail">
3511
+ <xs:import namespace="http://www.cdiscount.com"/>
3512
+ <xs:complexType name="DiscussionMailGuidCreationRequestMessage">
3513
+ <xs:sequence>
3514
+ <xs:element minOccurs="0" name="ScopusId" nillable="true" type="xs:string"/>
3515
+ </xs:sequence>
3516
+ </xs:complexType>
3517
+ <xs:element name="DiscussionMailGuidCreationRequestMessage" nillable="true" type="tns:DiscussionMailGuidCreationRequestMessage"/>
3518
+ <xs:complexType name="DiscussionMailGuidCreationResultMessage">
3519
+ <xs:complexContent mixed="false">
3520
+ <xs:extension xmlns:q1="http://www.cdiscount.com" base="q1:ServiceBaseAPIMessage">
3521
+ <xs:sequence>
3522
+ <xs:element minOccurs="0" name="MailGuid" nillable="true" type="xs:string"/>
3523
+ </xs:sequence>
3524
+ </xs:extension>
3525
+ </xs:complexContent>
3526
+ </xs:complexType>
3527
+ <xs:element name="DiscussionMailGuidCreationResultMessage" nillable="true" type="tns:DiscussionMailGuidCreationResultMessage"/>
3528
+ </xs:schema>
3529
+ </wsdl:types>
3530
+ <wsdl:message name="IMarketplaceAPIService_GetProductList_InputMessage">
3531
+ <wsdl:part name="parameters" element="tns:GetProductList"/>
3532
+ </wsdl:message>
3533
+ <wsdl:message name="IMarketplaceAPIService_GetProductList_OutputMessage">
3534
+ <wsdl:part name="parameters" element="tns:GetProductListResponse"/>
3535
+ </wsdl:message>
3536
+ <wsdl:message name="IMarketplaceAPIService_SubmitProductPackage_InputMessage">
3537
+ <wsdl:part name="parameters" element="tns:SubmitProductPackage"/>
3538
+ </wsdl:message>
3539
+ <wsdl:message name="IMarketplaceAPIService_SubmitProductPackage_OutputMessage">
3540
+ <wsdl:part name="parameters" element="tns:SubmitProductPackageResponse"/>
3541
+ </wsdl:message>
3542
+ <wsdl:message name="IMarketplaceAPIService_GetProductPackageSubmissionResult_InputMessage">
3543
+ <wsdl:part name="parameters" element="tns:GetProductPackageSubmissionResult"/>
3544
+ </wsdl:message>
3545
+ <wsdl:message name="IMarketplaceAPIService_GetProductPackageSubmissionResult_OutputMessage">
3546
+ <wsdl:part name="parameters" element="tns:GetProductPackageSubmissionResultResponse"/>
3547
+ </wsdl:message>
3548
+ <wsdl:message name="IMarketplaceAPIService_GetProductPackageProductMatchingFileData_InputMessage">
3549
+ <wsdl:part name="parameters" element="tns:GetProductPackageProductMatchingFileData"/>
3550
+ </wsdl:message>
3551
+ <wsdl:message name="IMarketplaceAPIService_GetProductPackageProductMatchingFileData_OutputMessage">
3552
+ <wsdl:part name="parameters" element="tns:GetProductPackageProductMatchingFileDataResponse"/>
3553
+ </wsdl:message>
3554
+ <wsdl:message name="IMarketplaceAPIService_GetAllowedCategoryTree_InputMessage">
3555
+ <wsdl:part name="parameters" element="tns:GetAllowedCategoryTree"/>
3556
+ </wsdl:message>
3557
+ <wsdl:message name="IMarketplaceAPIService_GetAllowedCategoryTree_OutputMessage">
3558
+ <wsdl:part name="parameters" element="tns:GetAllowedCategoryTreeResponse"/>
3559
+ </wsdl:message>
3560
+ <wsdl:message name="IMarketplaceAPIService_GetAllAllowedCategoryTree_InputMessage">
3561
+ <wsdl:part name="parameters" element="tns:GetAllAllowedCategoryTree"/>
3562
+ </wsdl:message>
3563
+ <wsdl:message name="IMarketplaceAPIService_GetAllAllowedCategoryTree_OutputMessage">
3564
+ <wsdl:part name="parameters" element="tns:GetAllAllowedCategoryTreeResponse"/>
3565
+ </wsdl:message>
3566
+ <wsdl:message name="IMarketplaceAPIService_GetModelList_InputMessage">
3567
+ <wsdl:part name="parameters" element="tns:GetModelList"/>
3568
+ </wsdl:message>
3569
+ <wsdl:message name="IMarketplaceAPIService_GetModelList_OutputMessage">
3570
+ <wsdl:part name="parameters" element="tns:GetModelListResponse"/>
3571
+ </wsdl:message>
3572
+ <wsdl:message name="IMarketplaceAPIService_GetAllModelList_InputMessage">
3573
+ <wsdl:part name="parameters" element="tns:GetAllModelList"/>
3574
+ </wsdl:message>
3575
+ <wsdl:message name="IMarketplaceAPIService_GetAllModelList_OutputMessage">
3576
+ <wsdl:part name="parameters" element="tns:GetAllModelListResponse"/>
3577
+ </wsdl:message>
3578
+ <wsdl:message name="IMarketplaceAPIService_GetBrandList_InputMessage">
3579
+ <wsdl:part name="parameters" element="tns:GetBrandList"/>
3580
+ </wsdl:message>
3581
+ <wsdl:message name="IMarketplaceAPIService_GetBrandList_OutputMessage">
3582
+ <wsdl:part name="parameters" element="tns:GetBrandListResponse"/>
3583
+ </wsdl:message>
3584
+ <wsdl:message name="IMarketplaceAPIService_SubmitOfferPackage_InputMessage">
3585
+ <wsdl:part name="parameters" element="tns:SubmitOfferPackage"/>
3586
+ </wsdl:message>
3587
+ <wsdl:message name="IMarketplaceAPIService_SubmitOfferPackage_OutputMessage">
3588
+ <wsdl:part name="parameters" element="tns:SubmitOfferPackageResponse"/>
3589
+ </wsdl:message>
3590
+ <wsdl:message name="IMarketplaceAPIService_GetOfferPackageSubmissionResult_InputMessage">
3591
+ <wsdl:part name="parameters" element="tns:GetOfferPackageSubmissionResult"/>
3592
+ </wsdl:message>
3593
+ <wsdl:message name="IMarketplaceAPIService_GetOfferPackageSubmissionResult_OutputMessage">
3594
+ <wsdl:part name="parameters" element="tns:GetOfferPackageSubmissionResultResponse"/>
3595
+ </wsdl:message>
3596
+ <wsdl:message name="IMarketplaceAPIService_GetOfferList_InputMessage">
3597
+ <wsdl:part name="parameters" element="tns:GetOfferList"/>
3598
+ </wsdl:message>
3599
+ <wsdl:message name="IMarketplaceAPIService_GetOfferList_OutputMessage">
3600
+ <wsdl:part name="parameters" element="tns:GetOfferListResponse"/>
3601
+ </wsdl:message>
3602
+ <wsdl:message name="IMarketplaceAPIService_GetOfferListPaginated_InputMessage">
3603
+ <wsdl:part name="parameters" element="tns:GetOfferListPaginated"/>
3604
+ </wsdl:message>
3605
+ <wsdl:message name="IMarketplaceAPIService_GetOfferListPaginated_OutputMessage">
3606
+ <wsdl:part name="parameters" element="tns:GetOfferListPaginatedResponse"/>
3607
+ </wsdl:message>
3608
+ <wsdl:message name="IMarketplaceAPIService_GetSellerInformation_InputMessage">
3609
+ <wsdl:part name="parameters" element="tns:GetSellerInformation"/>
3610
+ </wsdl:message>
3611
+ <wsdl:message name="IMarketplaceAPIService_GetSellerInformation_OutputMessage">
3612
+ <wsdl:part name="parameters" element="tns:GetSellerInformationResponse"/>
3613
+ </wsdl:message>
3614
+ <wsdl:message name="IMarketplaceAPIService_GetOrderList_InputMessage">
3615
+ <wsdl:part name="parameters" element="tns:GetOrderList"/>
3616
+ </wsdl:message>
3617
+ <wsdl:message name="IMarketplaceAPIService_GetOrderList_OutputMessage">
3618
+ <wsdl:part name="parameters" element="tns:GetOrderListResponse"/>
3619
+ </wsdl:message>
3620
+ <wsdl:message name="IMarketplaceAPIService_ValidateOrderList_InputMessage">
3621
+ <wsdl:part name="parameters" element="tns:ValidateOrderList"/>
3622
+ </wsdl:message>
3623
+ <wsdl:message name="IMarketplaceAPIService_ValidateOrderList_OutputMessage">
3624
+ <wsdl:part name="parameters" element="tns:ValidateOrderListResponse"/>
3625
+ </wsdl:message>
3626
+ <wsdl:message name="IMarketplaceAPIService_CreateRefundVoucherAfterShipment_InputMessage">
3627
+ <wsdl:part name="parameters" element="tns:CreateRefundVoucherAfterShipment"/>
3628
+ </wsdl:message>
3629
+ <wsdl:message name="IMarketplaceAPIService_CreateRefundVoucherAfterShipment_OutputMessage">
3630
+ <wsdl:part name="parameters" element="tns:CreateRefundVoucherAfterShipmentResponse"/>
3631
+ </wsdl:message>
3632
+ <wsdl:message name="IMarketplaceAPIService_GenerateDiscussionMailGuid_InputMessage">
3633
+ <wsdl:part name="parameters" element="tns:GenerateDiscussionMailGuid"/>
3634
+ </wsdl:message>
3635
+ <wsdl:message name="IMarketplaceAPIService_GenerateDiscussionMailGuid_OutputMessage">
3636
+ <wsdl:part name="parameters" element="tns:GenerateDiscussionMailGuidResponse"/>
3637
+ </wsdl:message>
3638
+ <wsdl:message name="IMarketplaceAPIService_SubmitRelaysFile_InputMessage">
3639
+ <wsdl:part name="parameters" element="tns:SubmitRelaysFile"/>
3640
+ </wsdl:message>
3641
+ <wsdl:message name="IMarketplaceAPIService_SubmitRelaysFile_OutputMessage">
3642
+ <wsdl:part name="parameters" element="tns:SubmitRelaysFileResponse"/>
3643
+ </wsdl:message>
3644
+ <wsdl:message name="IMarketplaceAPIService_GetRelaysFileSubmissionResult_InputMessage">
3645
+ <wsdl:part name="parameters" element="tns:GetRelaysFileSubmissionResult"/>
3646
+ </wsdl:message>
3647
+ <wsdl:message name="IMarketplaceAPIService_GetRelaysFileSubmissionResult_OutputMessage">
3648
+ <wsdl:part name="parameters" element="tns:GetRelaysFileSubmissionResultResponse"/>
3649
+ </wsdl:message>
3650
+ <wsdl:message name="IMarketplaceAPIService_GetParcelShopList_InputMessage">
3651
+ <wsdl:part name="parameters" element="tns:GetParcelShopList"/>
3652
+ </wsdl:message>
3653
+ <wsdl:message name="IMarketplaceAPIService_GetParcelShopList_OutputMessage">
3654
+ <wsdl:part name="parameters" element="tns:GetParcelShopListResponse"/>
3655
+ </wsdl:message>
3656
+ <wsdl:message name="IMarketplaceAPIService_CloseDiscussionList_InputMessage">
3657
+ <wsdl:part name="parameters" element="tns:CloseDiscussionList"/>
3658
+ </wsdl:message>
3659
+ <wsdl:message name="IMarketplaceAPIService_CloseDiscussionList_OutputMessage">
3660
+ <wsdl:part name="parameters" element="tns:CloseDiscussionListResponse"/>
3661
+ </wsdl:message>
3662
+ <wsdl:message name="IMarketplaceAPIService_GetOrderClaimList_InputMessage">
3663
+ <wsdl:part name="parameters" element="tns:GetOrderClaimList"/>
3664
+ </wsdl:message>
3665
+ <wsdl:message name="IMarketplaceAPIService_GetOrderClaimList_OutputMessage">
3666
+ <wsdl:part name="parameters" element="tns:GetOrderClaimListResponse"/>
3667
+ </wsdl:message>
3668
+ <wsdl:message name="IMarketplaceAPIService_GetOrderQuestionList_InputMessage">
3669
+ <wsdl:part name="parameters" element="tns:GetOrderQuestionList"/>
3670
+ </wsdl:message>
3671
+ <wsdl:message name="IMarketplaceAPIService_GetOrderQuestionList_OutputMessage">
3672
+ <wsdl:part name="parameters" element="tns:GetOrderQuestionListResponse"/>
3673
+ </wsdl:message>
3674
+ <wsdl:message name="IMarketplaceAPIService_GetOfferQuestionList_InputMessage">
3675
+ <wsdl:part name="parameters" element="tns:GetOfferQuestionList"/>
3676
+ </wsdl:message>
3677
+ <wsdl:message name="IMarketplaceAPIService_GetOfferQuestionList_OutputMessage">
3678
+ <wsdl:part name="parameters" element="tns:GetOfferQuestionListResponse"/>
3679
+ </wsdl:message>
3680
+ <wsdl:message name="IMarketplaceAPIService_GetDiscussionMailList_InputMessage">
3681
+ <wsdl:part name="parameters" element="tns:GetDiscussionMailList"/>
3682
+ </wsdl:message>
3683
+ <wsdl:message name="IMarketplaceAPIService_GetDiscussionMailList_OutputMessage">
3684
+ <wsdl:part name="parameters" element="tns:GetDiscussionMailListResponse"/>
3685
+ </wsdl:message>
3686
+ <wsdl:portType name="IMarketplaceAPIService">
3687
+ <wsdl:operation name="GetProductList">
3688
+ <wsdl:input wsaw:Action="http://www.cdiscount.com/IMarketplaceAPIService/GetProductList" message="tns:IMarketplaceAPIService_GetProductList_InputMessage"/>
3689
+ <wsdl:output wsaw:Action="http://www.cdiscount.com/IMarketplaceAPIService/GetProductListResponse" message="tns:IMarketplaceAPIService_GetProductList_OutputMessage"/>
3690
+ </wsdl:operation>
3691
+ <wsdl:operation name="SubmitProductPackage">
3692
+ <wsdl:input wsaw:Action="http://www.cdiscount.com/IMarketplaceAPIService/SubmitProductPackage" message="tns:IMarketplaceAPIService_SubmitProductPackage_InputMessage"/>
3693
+ <wsdl:output wsaw:Action="http://www.cdiscount.com/IMarketplaceAPIService/SubmitProductPackageResponse" message="tns:IMarketplaceAPIService_SubmitProductPackage_OutputMessage"/>
3694
+ </wsdl:operation>
3695
+ <wsdl:operation name="GetProductPackageSubmissionResult">
3696
+ <wsdl:input wsaw:Action="http://www.cdiscount.com/IMarketplaceAPIService/GetProductPackageSubmissionResult" message="tns:IMarketplaceAPIService_GetProductPackageSubmissionResult_InputMessage"/>
3697
+ <wsdl:output wsaw:Action="http://www.cdiscount.com/IMarketplaceAPIService/GetProductPackageSubmissionResultResponse" message="tns:IMarketplaceAPIService_GetProductPackageSubmissionResult_OutputMessage"/>
3698
+ </wsdl:operation>
3699
+ <wsdl:operation name="GetProductPackageProductMatchingFileData">
3700
+ <wsdl:input wsaw:Action="http://www.cdiscount.com/IMarketplaceAPIService/GetProductPackageProductMatchingFileData" message="tns:IMarketplaceAPIService_GetProductPackageProductMatchingFileData_InputMessage"/>
3701
+ <wsdl:output wsaw:Action="http://www.cdiscount.com/IMarketplaceAPIService/GetProductPackageProductMatchingFileDataResponse" message="tns:IMarketplaceAPIService_GetProductPackageProductMatchingFileData_OutputMessage"/>
3702
+ </wsdl:operation>
3703
+ <wsdl:operation name="GetAllowedCategoryTree">
3704
+ <wsdl:input wsaw:Action="http://www.cdiscount.com/IMarketplaceAPIService/GetAllowedCategoryTree" message="tns:IMarketplaceAPIService_GetAllowedCategoryTree_InputMessage"/>
3705
+ <wsdl:output wsaw:Action="http://www.cdiscount.com/IMarketplaceAPIService/GetAllowedCategoryTreeResponse" message="tns:IMarketplaceAPIService_GetAllowedCategoryTree_OutputMessage"/>
3706
+ </wsdl:operation>
3707
+ <wsdl:operation name="GetAllAllowedCategoryTree">
3708
+ <wsdl:input wsaw:Action="http://www.cdiscount.com/IMarketplaceAPIService/GetAllAllowedCategoryTree" message="tns:IMarketplaceAPIService_GetAllAllowedCategoryTree_InputMessage"/>
3709
+ <wsdl:output wsaw:Action="http://www.cdiscount.com/IMarketplaceAPIService/GetAllAllowedCategoryTreeResponse" message="tns:IMarketplaceAPIService_GetAllAllowedCategoryTree_OutputMessage"/>
3710
+ </wsdl:operation>
3711
+ <wsdl:operation name="GetModelList">
3712
+ <wsdl:input wsaw:Action="http://www.cdiscount.com/IMarketplaceAPIService/GetModelList" message="tns:IMarketplaceAPIService_GetModelList_InputMessage"/>
3713
+ <wsdl:output wsaw:Action="http://www.cdiscount.com/IMarketplaceAPIService/GetModelListResponse" message="tns:IMarketplaceAPIService_GetModelList_OutputMessage"/>
3714
+ </wsdl:operation>
3715
+ <wsdl:operation name="GetAllModelList">
3716
+ <wsdl:input wsaw:Action="http://www.cdiscount.com/IMarketplaceAPIService/GetAllModelList" message="tns:IMarketplaceAPIService_GetAllModelList_InputMessage"/>
3717
+ <wsdl:output wsaw:Action="http://www.cdiscount.com/IMarketplaceAPIService/GetAllModelListResponse" message="tns:IMarketplaceAPIService_GetAllModelList_OutputMessage"/>
3718
+ </wsdl:operation>
3719
+ <wsdl:operation name="GetBrandList">
3720
+ <wsdl:input wsaw:Action="http://www.cdiscount.com/IMarketplaceAPIService/GetBrandList" message="tns:IMarketplaceAPIService_GetBrandList_InputMessage"/>
3721
+ <wsdl:output wsaw:Action="http://www.cdiscount.com/IMarketplaceAPIService/GetBrandListResponse" message="tns:IMarketplaceAPIService_GetBrandList_OutputMessage"/>
3722
+ </wsdl:operation>
3723
+ <wsdl:operation name="SubmitOfferPackage">
3724
+ <wsdl:input wsaw:Action="http://www.cdiscount.com/IMarketplaceAPIService/SubmitOfferPackage" message="tns:IMarketplaceAPIService_SubmitOfferPackage_InputMessage"/>
3725
+ <wsdl:output wsaw:Action="http://www.cdiscount.com/IMarketplaceAPIService/SubmitOfferPackageResponse" message="tns:IMarketplaceAPIService_SubmitOfferPackage_OutputMessage"/>
3726
+ </wsdl:operation>
3727
+ <wsdl:operation name="GetOfferPackageSubmissionResult">
3728
+ <wsdl:input wsaw:Action="http://www.cdiscount.com/IMarketplaceAPIService/GetOfferPackageSubmissionResult" message="tns:IMarketplaceAPIService_GetOfferPackageSubmissionResult_InputMessage"/>
3729
+ <wsdl:output wsaw:Action="http://www.cdiscount.com/IMarketplaceAPIService/GetOfferPackageSubmissionResultResponse" message="tns:IMarketplaceAPIService_GetOfferPackageSubmissionResult_OutputMessage"/>
3730
+ </wsdl:operation>
3731
+ <wsdl:operation name="GetOfferList">
3732
+ <wsdl:input wsaw:Action="http://www.cdiscount.com/IMarketplaceAPIService/GetOfferList" message="tns:IMarketplaceAPIService_GetOfferList_InputMessage"/>
3733
+ <wsdl:output wsaw:Action="http://www.cdiscount.com/IMarketplaceAPIService/GetOfferListResponse" message="tns:IMarketplaceAPIService_GetOfferList_OutputMessage"/>
3734
+ </wsdl:operation>
3735
+ <wsdl:operation name="GetOfferListPaginated">
3736
+ <wsdl:input wsaw:Action="http://www.cdiscount.com/IMarketplaceAPIService/GetOfferListPaginated" message="tns:IMarketplaceAPIService_GetOfferListPaginated_InputMessage"/>
3737
+ <wsdl:output wsaw:Action="http://www.cdiscount.com/IMarketplaceAPIService/GetOfferListPaginatedResponse" message="tns:IMarketplaceAPIService_GetOfferListPaginated_OutputMessage"/>
3738
+ </wsdl:operation>
3739
+ <wsdl:operation name="GetSellerInformation">
3740
+ <wsdl:input wsaw:Action="http://www.cdiscount.com/IMarketplaceAPIService/GetSellerInformation" message="tns:IMarketplaceAPIService_GetSellerInformation_InputMessage"/>
3741
+ <wsdl:output wsaw:Action="http://www.cdiscount.com/IMarketplaceAPIService/GetSellerInformationResponse" message="tns:IMarketplaceAPIService_GetSellerInformation_OutputMessage"/>
3742
+ </wsdl:operation>
3743
+ <wsdl:operation name="GetOrderList">
3744
+ <wsdl:input wsaw:Action="http://www.cdiscount.com/IMarketplaceAPIService/GetOrderList" message="tns:IMarketplaceAPIService_GetOrderList_InputMessage"/>
3745
+ <wsdl:output wsaw:Action="http://www.cdiscount.com/IMarketplaceAPIService/GetOrderListResponse" message="tns:IMarketplaceAPIService_GetOrderList_OutputMessage"/>
3746
+ </wsdl:operation>
3747
+ <wsdl:operation name="ValidateOrderList">
3748
+ <wsdl:input wsaw:Action="http://www.cdiscount.com/IMarketplaceAPIService/ValidateOrderList" message="tns:IMarketplaceAPIService_ValidateOrderList_InputMessage"/>
3749
+ <wsdl:output wsaw:Action="http://www.cdiscount.com/IMarketplaceAPIService/ValidateOrderListResponse" message="tns:IMarketplaceAPIService_ValidateOrderList_OutputMessage"/>
3750
+ </wsdl:operation>
3751
+ <wsdl:operation name="CreateRefundVoucherAfterShipment">
3752
+ <wsdl:input wsaw:Action="http://www.cdiscount.com/IMarketplaceAPIService/CreateRefundVoucherAfterShipment" message="tns:IMarketplaceAPIService_CreateRefundVoucherAfterShipment_InputMessage"/>
3753
+ <wsdl:output wsaw:Action="http://www.cdiscount.com/IMarketplaceAPIService/CreateRefundVoucherAfterShipmentResponse" message="tns:IMarketplaceAPIService_CreateRefundVoucherAfterShipment_OutputMessage"/>
3754
+ </wsdl:operation>
3755
+ <wsdl:operation name="GenerateDiscussionMailGuid">
3756
+ <wsdl:input wsaw:Action="http://www.cdiscount.com/IMarketplaceAPIService/GenerateDiscussionMailGuid" message="tns:IMarketplaceAPIService_GenerateDiscussionMailGuid_InputMessage"/>
3757
+ <wsdl:output wsaw:Action="http://www.cdiscount.com/IMarketplaceAPIService/GenerateDiscussionMailGuidResponse" message="tns:IMarketplaceAPIService_GenerateDiscussionMailGuid_OutputMessage"/>
3758
+ </wsdl:operation>
3759
+ <wsdl:operation name="SubmitRelaysFile">
3760
+ <wsdl:input wsaw:Action="http://www.cdiscount.com/IMarketplaceAPIService/SubmitRelaysFile" message="tns:IMarketplaceAPIService_SubmitRelaysFile_InputMessage"/>
3761
+ <wsdl:output wsaw:Action="http://www.cdiscount.com/IMarketplaceAPIService/SubmitRelaysFileResponse" message="tns:IMarketplaceAPIService_SubmitRelaysFile_OutputMessage"/>
3762
+ </wsdl:operation>
3763
+ <wsdl:operation name="GetRelaysFileSubmissionResult">
3764
+ <wsdl:input wsaw:Action="http://www.cdiscount.com/IMarketplaceAPIService/GetRelaysFileSubmissionResult" message="tns:IMarketplaceAPIService_GetRelaysFileSubmissionResult_InputMessage"/>
3765
+ <wsdl:output wsaw:Action="http://www.cdiscount.com/IMarketplaceAPIService/GetRelaysFileSubmissionResultResponse" message="tns:IMarketplaceAPIService_GetRelaysFileSubmissionResult_OutputMessage"/>
3766
+ </wsdl:operation>
3767
+ <wsdl:operation name="GetParcelShopList">
3768
+ <wsdl:input wsaw:Action="http://www.cdiscount.com/IMarketplaceAPIService/GetParcelShopList" message="tns:IMarketplaceAPIService_GetParcelShopList_InputMessage"/>
3769
+ <wsdl:output wsaw:Action="http://www.cdiscount.com/IMarketplaceAPIService/GetParcelShopListResponse" message="tns:IMarketplaceAPIService_GetParcelShopList_OutputMessage"/>
3770
+ </wsdl:operation>
3771
+ <wsdl:operation name="CloseDiscussionList">
3772
+ <wsdl:input wsaw:Action="http://www.cdiscount.com/IMarketplaceAPIService/CloseDiscussionList" message="tns:IMarketplaceAPIService_CloseDiscussionList_InputMessage"/>
3773
+ <wsdl:output wsaw:Action="http://www.cdiscount.com/IMarketplaceAPIService/CloseDiscussionListResponse" message="tns:IMarketplaceAPIService_CloseDiscussionList_OutputMessage"/>
3774
+ </wsdl:operation>
3775
+ <wsdl:operation name="GetOrderClaimList">
3776
+ <wsdl:input wsaw:Action="http://www.cdiscount.com/IMarketplaceAPIService/GetOrderClaimList" message="tns:IMarketplaceAPIService_GetOrderClaimList_InputMessage"/>
3777
+ <wsdl:output wsaw:Action="http://www.cdiscount.com/IMarketplaceAPIService/GetOrderClaimListResponse" message="tns:IMarketplaceAPIService_GetOrderClaimList_OutputMessage"/>
3778
+ </wsdl:operation>
3779
+ <wsdl:operation name="GetOrderQuestionList">
3780
+ <wsdl:input wsaw:Action="http://www.cdiscount.com/IMarketplaceAPIService/GetOrderQuestionList" message="tns:IMarketplaceAPIService_GetOrderQuestionList_InputMessage"/>
3781
+ <wsdl:output wsaw:Action="http://www.cdiscount.com/IMarketplaceAPIService/GetOrderQuestionListResponse" message="tns:IMarketplaceAPIService_GetOrderQuestionList_OutputMessage"/>
3782
+ </wsdl:operation>
3783
+ <wsdl:operation name="GetOfferQuestionList">
3784
+ <wsdl:input wsaw:Action="http://www.cdiscount.com/IMarketplaceAPIService/GetOfferQuestionList" message="tns:IMarketplaceAPIService_GetOfferQuestionList_InputMessage"/>
3785
+ <wsdl:output wsaw:Action="http://www.cdiscount.com/IMarketplaceAPIService/GetOfferQuestionListResponse" message="tns:IMarketplaceAPIService_GetOfferQuestionList_OutputMessage"/>
3786
+ </wsdl:operation>
3787
+ <wsdl:operation name="GetDiscussionMailList">
3788
+ <wsdl:input wsaw:Action="http://www.cdiscount.com/IMarketplaceAPIService/GetDiscussionMailList" message="tns:IMarketplaceAPIService_GetDiscussionMailList_InputMessage"/>
3789
+ <wsdl:output wsaw:Action="http://www.cdiscount.com/IMarketplaceAPIService/GetDiscussionMailListResponse" message="tns:IMarketplaceAPIService_GetDiscussionMailList_OutputMessage"/>
3790
+ </wsdl:operation>
3791
+ </wsdl:portType>
3792
+ <wsdl:binding name="BasicHttpBinding_IMarketplaceAPIService" type="tns:IMarketplaceAPIService">
3793
+ <soap:binding transport="http://schemas.xmlsoap.org/soap/http"/>
3794
+ <wsdl:operation name="GetProductList">
3795
+ <soap:operation soapAction="http://www.cdiscount.com/IMarketplaceAPIService/GetProductList" style="document"/>
3796
+ <wsdl:input>
3797
+ <soap:body use="literal"/>
3798
+ </wsdl:input>
3799
+ <wsdl:output>
3800
+ <soap:body use="literal"/>
3801
+ </wsdl:output>
3802
+ </wsdl:operation>
3803
+ <wsdl:operation name="SubmitProductPackage">
3804
+ <soap:operation soapAction="http://www.cdiscount.com/IMarketplaceAPIService/SubmitProductPackage" style="document"/>
3805
+ <wsdl:input>
3806
+ <soap:body use="literal"/>
3807
+ </wsdl:input>
3808
+ <wsdl:output>
3809
+ <soap:body use="literal"/>
3810
+ </wsdl:output>
3811
+ </wsdl:operation>
3812
+ <wsdl:operation name="GetProductPackageSubmissionResult">
3813
+ <soap:operation soapAction="http://www.cdiscount.com/IMarketplaceAPIService/GetProductPackageSubmissionResult" style="document"/>
3814
+ <wsdl:input>
3815
+ <soap:body use="literal"/>
3816
+ </wsdl:input>
3817
+ <wsdl:output>
3818
+ <soap:body use="literal"/>
3819
+ </wsdl:output>
3820
+ </wsdl:operation>
3821
+ <wsdl:operation name="GetProductPackageProductMatchingFileData">
3822
+ <soap:operation soapAction="http://www.cdiscount.com/IMarketplaceAPIService/GetProductPackageProductMatchingFileData" style="document"/>
3823
+ <wsdl:input>
3824
+ <soap:body use="literal"/>
3825
+ </wsdl:input>
3826
+ <wsdl:output>
3827
+ <soap:body use="literal"/>
3828
+ </wsdl:output>
3829
+ </wsdl:operation>
3830
+ <wsdl:operation name="GetAllowedCategoryTree">
3831
+ <soap:operation soapAction="http://www.cdiscount.com/IMarketplaceAPIService/GetAllowedCategoryTree" style="document"/>
3832
+ <wsdl:input>
3833
+ <soap:body use="literal"/>
3834
+ </wsdl:input>
3835
+ <wsdl:output>
3836
+ <soap:body use="literal"/>
3837
+ </wsdl:output>
3838
+ </wsdl:operation>
3839
+ <wsdl:operation name="GetAllAllowedCategoryTree">
3840
+ <soap:operation soapAction="http://www.cdiscount.com/IMarketplaceAPIService/GetAllAllowedCategoryTree" style="document"/>
3841
+ <wsdl:input>
3842
+ <soap:body use="literal"/>
3843
+ </wsdl:input>
3844
+ <wsdl:output>
3845
+ <soap:body use="literal"/>
3846
+ </wsdl:output>
3847
+ </wsdl:operation>
3848
+ <wsdl:operation name="GetModelList">
3849
+ <soap:operation soapAction="http://www.cdiscount.com/IMarketplaceAPIService/GetModelList" style="document"/>
3850
+ <wsdl:input>
3851
+ <soap:body use="literal"/>
3852
+ </wsdl:input>
3853
+ <wsdl:output>
3854
+ <soap:body use="literal"/>
3855
+ </wsdl:output>
3856
+ </wsdl:operation>
3857
+ <wsdl:operation name="GetAllModelList">
3858
+ <soap:operation soapAction="http://www.cdiscount.com/IMarketplaceAPIService/GetAllModelList" style="document"/>
3859
+ <wsdl:input>
3860
+ <soap:body use="literal"/>
3861
+ </wsdl:input>
3862
+ <wsdl:output>
3863
+ <soap:body use="literal"/>
3864
+ </wsdl:output>
3865
+ </wsdl:operation>
3866
+ <wsdl:operation name="GetBrandList">
3867
+ <soap:operation soapAction="http://www.cdiscount.com/IMarketplaceAPIService/GetBrandList" style="document"/>
3868
+ <wsdl:input>
3869
+ <soap:body use="literal"/>
3870
+ </wsdl:input>
3871
+ <wsdl:output>
3872
+ <soap:body use="literal"/>
3873
+ </wsdl:output>
3874
+ </wsdl:operation>
3875
+ <wsdl:operation name="SubmitOfferPackage">
3876
+ <soap:operation soapAction="http://www.cdiscount.com/IMarketplaceAPIService/SubmitOfferPackage" style="document"/>
3877
+ <wsdl:input>
3878
+ <soap:body use="literal"/>
3879
+ </wsdl:input>
3880
+ <wsdl:output>
3881
+ <soap:body use="literal"/>
3882
+ </wsdl:output>
3883
+ </wsdl:operation>
3884
+ <wsdl:operation name="GetOfferPackageSubmissionResult">
3885
+ <soap:operation soapAction="http://www.cdiscount.com/IMarketplaceAPIService/GetOfferPackageSubmissionResult" style="document"/>
3886
+ <wsdl:input>
3887
+ <soap:body use="literal"/>
3888
+ </wsdl:input>
3889
+ <wsdl:output>
3890
+ <soap:body use="literal"/>
3891
+ </wsdl:output>
3892
+ </wsdl:operation>
3893
+ <wsdl:operation name="GetOfferList">
3894
+ <soap:operation soapAction="http://www.cdiscount.com/IMarketplaceAPIService/GetOfferList" style="document"/>
3895
+ <wsdl:input>
3896
+ <soap:body use="literal"/>
3897
+ </wsdl:input>
3898
+ <wsdl:output>
3899
+ <soap:body use="literal"/>
3900
+ </wsdl:output>
3901
+ </wsdl:operation>
3902
+ <wsdl:operation name="GetOfferListPaginated">
3903
+ <soap:operation soapAction="http://www.cdiscount.com/IMarketplaceAPIService/GetOfferListPaginated" style="document"/>
3904
+ <wsdl:input>
3905
+ <soap:body use="literal"/>
3906
+ </wsdl:input>
3907
+ <wsdl:output>
3908
+ <soap:body use="literal"/>
3909
+ </wsdl:output>
3910
+ </wsdl:operation>
3911
+ <wsdl:operation name="GetSellerInformation">
3912
+ <soap:operation soapAction="http://www.cdiscount.com/IMarketplaceAPIService/GetSellerInformation" style="document"/>
3913
+ <wsdl:input>
3914
+ <soap:body use="literal"/>
3915
+ </wsdl:input>
3916
+ <wsdl:output>
3917
+ <soap:body use="literal"/>
3918
+ </wsdl:output>
3919
+ </wsdl:operation>
3920
+ <wsdl:operation name="GetOrderList">
3921
+ <soap:operation soapAction="http://www.cdiscount.com/IMarketplaceAPIService/GetOrderList" style="document"/>
3922
+ <wsdl:input>
3923
+ <soap:body use="literal"/>
3924
+ </wsdl:input>
3925
+ <wsdl:output>
3926
+ <soap:body use="literal"/>
3927
+ </wsdl:output>
3928
+ </wsdl:operation>
3929
+ <wsdl:operation name="ValidateOrderList">
3930
+ <soap:operation soapAction="http://www.cdiscount.com/IMarketplaceAPIService/ValidateOrderList" style="document"/>
3931
+ <wsdl:input>
3932
+ <soap:body use="literal"/>
3933
+ </wsdl:input>
3934
+ <wsdl:output>
3935
+ <soap:body use="literal"/>
3936
+ </wsdl:output>
3937
+ </wsdl:operation>
3938
+ <wsdl:operation name="CreateRefundVoucherAfterShipment">
3939
+ <soap:operation soapAction="http://www.cdiscount.com/IMarketplaceAPIService/CreateRefundVoucherAfterShipment" style="document"/>
3940
+ <wsdl:input>
3941
+ <soap:body use="literal"/>
3942
+ </wsdl:input>
3943
+ <wsdl:output>
3944
+ <soap:body use="literal"/>
3945
+ </wsdl:output>
3946
+ </wsdl:operation>
3947
+ <wsdl:operation name="GenerateDiscussionMailGuid">
3948
+ <soap:operation soapAction="http://www.cdiscount.com/IMarketplaceAPIService/GenerateDiscussionMailGuid" style="document"/>
3949
+ <wsdl:input>
3950
+ <soap:body use="literal"/>
3951
+ </wsdl:input>
3952
+ <wsdl:output>
3953
+ <soap:body use="literal"/>
3954
+ </wsdl:output>
3955
+ </wsdl:operation>
3956
+ <wsdl:operation name="SubmitRelaysFile">
3957
+ <soap:operation soapAction="http://www.cdiscount.com/IMarketplaceAPIService/SubmitRelaysFile" style="document"/>
3958
+ <wsdl:input>
3959
+ <soap:body use="literal"/>
3960
+ </wsdl:input>
3961
+ <wsdl:output>
3962
+ <soap:body use="literal"/>
3963
+ </wsdl:output>
3964
+ </wsdl:operation>
3965
+ <wsdl:operation name="GetRelaysFileSubmissionResult">
3966
+ <soap:operation soapAction="http://www.cdiscount.com/IMarketplaceAPIService/GetRelaysFileSubmissionResult" style="document"/>
3967
+ <wsdl:input>
3968
+ <soap:body use="literal"/>
3969
+ </wsdl:input>
3970
+ <wsdl:output>
3971
+ <soap:body use="literal"/>
3972
+ </wsdl:output>
3973
+ </wsdl:operation>
3974
+ <wsdl:operation name="GetParcelShopList">
3975
+ <soap:operation soapAction="http://www.cdiscount.com/IMarketplaceAPIService/GetParcelShopList" style="document"/>
3976
+ <wsdl:input>
3977
+ <soap:body use="literal"/>
3978
+ </wsdl:input>
3979
+ <wsdl:output>
3980
+ <soap:body use="literal"/>
3981
+ </wsdl:output>
3982
+ </wsdl:operation>
3983
+ <wsdl:operation name="CloseDiscussionList">
3984
+ <soap:operation soapAction="http://www.cdiscount.com/IMarketplaceAPIService/CloseDiscussionList" style="document"/>
3985
+ <wsdl:input>
3986
+ <soap:body use="literal"/>
3987
+ </wsdl:input>
3988
+ <wsdl:output>
3989
+ <soap:body use="literal"/>
3990
+ </wsdl:output>
3991
+ </wsdl:operation>
3992
+ <wsdl:operation name="GetOrderClaimList">
3993
+ <soap:operation soapAction="http://www.cdiscount.com/IMarketplaceAPIService/GetOrderClaimList" style="document"/>
3994
+ <wsdl:input>
3995
+ <soap:body use="literal"/>
3996
+ </wsdl:input>
3997
+ <wsdl:output>
3998
+ <soap:body use="literal"/>
3999
+ </wsdl:output>
4000
+ </wsdl:operation>
4001
+ <wsdl:operation name="GetOrderQuestionList">
4002
+ <soap:operation soapAction="http://www.cdiscount.com/IMarketplaceAPIService/GetOrderQuestionList" style="document"/>
4003
+ <wsdl:input>
4004
+ <soap:body use="literal"/>
4005
+ </wsdl:input>
4006
+ <wsdl:output>
4007
+ <soap:body use="literal"/>
4008
+ </wsdl:output>
4009
+ </wsdl:operation>
4010
+ <wsdl:operation name="GetOfferQuestionList">
4011
+ <soap:operation soapAction="http://www.cdiscount.com/IMarketplaceAPIService/GetOfferQuestionList" style="document"/>
4012
+ <wsdl:input>
4013
+ <soap:body use="literal"/>
4014
+ </wsdl:input>
4015
+ <wsdl:output>
4016
+ <soap:body use="literal"/>
4017
+ </wsdl:output>
4018
+ </wsdl:operation>
4019
+ <wsdl:operation name="GetDiscussionMailList">
4020
+ <soap:operation soapAction="http://www.cdiscount.com/IMarketplaceAPIService/GetDiscussionMailList" style="document"/>
4021
+ <wsdl:input>
4022
+ <soap:body use="literal"/>
4023
+ </wsdl:input>
4024
+ <wsdl:output>
4025
+ <soap:body use="literal"/>
4026
+ </wsdl:output>
4027
+ </wsdl:operation>
4028
+ </wsdl:binding>
4029
+ <wsdl:service name="MarketplaceAPIService">
4030
+ <wsdl:port name="BasicHttpBinding_IMarketplaceAPIService" binding="tns:BasicHttpBinding_IMarketplaceAPIService">
4031
+ <soap:address location="http://wsvc.cdiscount.com/MarketplaceAPIService.svc"/>
4032
+ </wsdl:port>
4033
+ </wsdl:service>
4034
+ </wsdl:definitions>