ship_compliant 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (129) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +17 -0
  3. data/.travis.yml +8 -0
  4. data/Gemfile +7 -0
  5. data/LICENSE.txt +22 -0
  6. data/README.md +50 -0
  7. data/Rakefile +47 -0
  8. data/cucumber.yml +9 -0
  9. data/features/add_update_brand.feature +20 -0
  10. data/features/add_update_product.feature +24 -0
  11. data/features/check_compliance_of_sales_order_with_address_validations.feature +18 -0
  12. data/features/commit_sales_order.feature +6 -0
  13. data/features/get_inventory_details.feature +7 -0
  14. data/features/get_sales_order_extended.feature +15 -0
  15. data/features/search_sales_orders.feature +13 -0
  16. data/features/step_definitions/brand_steps.rb +73 -0
  17. data/features/step_definitions/commit_sales_order/all_shipments.rb +15 -0
  18. data/features/step_definitions/compliance_check/available_product_steps.rb +175 -0
  19. data/features/step_definitions/compliance_check/missing_product_steps.rb +102 -0
  20. data/features/step_definitions/compliance_check/noncompliant_product.rb +102 -0
  21. data/features/step_definitions/credential_steps.rb +8 -0
  22. data/features/step_definitions/inventory_steps.rb +36 -0
  23. data/features/step_definitions/product_steps.rb +140 -0
  24. data/features/step_definitions/sales_order_extended_steps.rb +79 -0
  25. data/features/step_definitions/search_order_steps.rb +87 -0
  26. data/features/step_definitions/void_order_steps.rb +27 -0
  27. data/features/support/env.rb +14 -0
  28. data/features/void_sales_order.feature +11 -0
  29. data/fixtures/vcr_cassettes/brand_already_exists.yml +1038 -0
  30. data/fixtures/vcr_cassettes/brand_ignore_existing.yml +1037 -0
  31. data/fixtures/vcr_cassettes/brand_update_existing.yml +1037 -0
  32. data/fixtures/vcr_cassettes/brand_valid.yml +1037 -0
  33. data/fixtures/vcr_cassettes/commit_salesorder_all_shipments.yml +1034 -0
  34. data/fixtures/vcr_cassettes/compliance_available_product.yml +1075 -0
  35. data/fixtures/vcr_cassettes/compliance_missing_product.yml +1046 -0
  36. data/fixtures/vcr_cassettes/compliance_noncompliant_product.yml +1082 -0
  37. data/fixtures/vcr_cassettes/ignore_existing_product.yml +1035 -0
  38. data/fixtures/vcr_cassettes/invalid_search_sales_orders.yml +1038 -0
  39. data/fixtures/vcr_cassettes/inventory_details_for_everything.yml +1037 -0
  40. data/fixtures/vcr_cassettes/product_already_exists.yml +1036 -0
  41. data/fixtures/vcr_cassettes/product_invalid_brand.yml +1036 -0
  42. data/fixtures/vcr_cassettes/product_valid_brand.yml +1035 -0
  43. data/fixtures/vcr_cassettes/sales_order_extended.yml +1042 -0
  44. data/fixtures/vcr_cassettes/sales_order_missing.yml +1034 -0
  45. data/fixtures/vcr_cassettes/search_sales_orders.yml +1039 -0
  46. data/fixtures/vcr_cassettes/update_product.yml +1035 -0
  47. data/fixtures/vcr_cassettes/void_order.yml +1033 -0
  48. data/fixtures/vcr_cassettes/void_voided_order.yml +1034 -0
  49. data/lib/ship_compliant.rb +62 -0
  50. data/lib/ship_compliant/add_update_brand.rb +50 -0
  51. data/lib/ship_compliant/add_update_brand_result.rb +6 -0
  52. data/lib/ship_compliant/add_update_product.rb +66 -0
  53. data/lib/ship_compliant/add_update_product_result.rb +6 -0
  54. data/lib/ship_compliant/address.rb +87 -0
  55. data/lib/ship_compliant/address/suggested_address.rb +37 -0
  56. data/lib/ship_compliant/base_result.rb +43 -0
  57. data/lib/ship_compliant/channel_details.rb +31 -0
  58. data/lib/ship_compliant/check_compliance.rb +41 -0
  59. data/lib/ship_compliant/check_compliance_result.rb +95 -0
  60. data/lib/ship_compliant/client.rb +54 -0
  61. data/lib/ship_compliant/commit_sales_order.rb +48 -0
  62. data/lib/ship_compliant/commit_sales_order_result.rb +30 -0
  63. data/lib/ship_compliant/compliance_rule.rb +30 -0
  64. data/lib/ship_compliant/configuration.rb +46 -0
  65. data/lib/ship_compliant/error_result.rb +41 -0
  66. data/lib/ship_compliant/freight_sales_tax_rate.rb +8 -0
  67. data/lib/ship_compliant/get_inventory_details.rb +31 -0
  68. data/lib/ship_compliant/get_inventory_details_result.rb +41 -0
  69. data/lib/ship_compliant/get_sales_order_extended.rb +23 -0
  70. data/lib/ship_compliant/get_sales_order_extended_result.rb +65 -0
  71. data/lib/ship_compliant/inventory_product.rb +95 -0
  72. data/lib/ship_compliant/order_search.rb +92 -0
  73. data/lib/ship_compliant/package.rb +13 -0
  74. data/lib/ship_compliant/product_attributes.rb +98 -0
  75. data/lib/ship_compliant/product_sales_tax_rate.rb +23 -0
  76. data/lib/ship_compliant/sales_tax_rate.rb +22 -0
  77. data/lib/ship_compliant/search_sales_order_summary.rb +30 -0
  78. data/lib/ship_compliant/search_sales_orders.rb +53 -0
  79. data/lib/ship_compliant/search_sales_orders_result.rb +106 -0
  80. data/lib/ship_compliant/shipment.rb +59 -0
  81. data/lib/ship_compliant/shipment_compliance.rb +28 -0
  82. data/lib/ship_compliant/shipment_sales_tax_rate.rb +15 -0
  83. data/lib/ship_compliant/version.rb +3 -0
  84. data/lib/ship_compliant/void_sales_order.rb +42 -0
  85. data/lib/ship_compliant/void_sales_order_result.rb +20 -0
  86. data/ship_compliant.gemspec +33 -0
  87. data/spec/fixtures/add_update_product.xml +22 -0
  88. data/spec/fixtures/check_compliance.xml +125 -0
  89. data/spec/fixtures/coreservice.wsdl +1341 -0
  90. data/spec/fixtures/search_sales_orders.xml +52 -0
  91. data/spec/fixtures/void_order_failure.xml +31 -0
  92. data/spec/fixtures/void_order_success.xml +22 -0
  93. data/spec/lib/ship_compliant/add_update_brand_result_spec.rb +7 -0
  94. data/spec/lib/ship_compliant/add_update_brand_spec.rb +58 -0
  95. data/spec/lib/ship_compliant/add_update_product_result_spec.rb +7 -0
  96. data/spec/lib/ship_compliant/add_update_product_spec.rb +52 -0
  97. data/spec/lib/ship_compliant/address/suggested_address_spec.rb +28 -0
  98. data/spec/lib/ship_compliant/address_spec.rb +123 -0
  99. data/spec/lib/ship_compliant/base_result_spec.rb +127 -0
  100. data/spec/lib/ship_compliant/channel_details_spec.rb +40 -0
  101. data/spec/lib/ship_compliant/check_compliance_result_spec.rb +135 -0
  102. data/spec/lib/ship_compliant/check_compliance_spec.rb +43 -0
  103. data/spec/lib/ship_compliant/client_spec.rb +73 -0
  104. data/spec/lib/ship_compliant/commit_sales_order_result_spec.rb +32 -0
  105. data/spec/lib/ship_compliant/commit_sales_order_spec.rb +38 -0
  106. data/spec/lib/ship_compliant/compliance_rule_spec.rb +47 -0
  107. data/spec/lib/ship_compliant/configuration_spec.rb +47 -0
  108. data/spec/lib/ship_compliant/error_result_spec.rb +47 -0
  109. data/spec/lib/ship_compliant/freight_sales_tax_rate_spec.rb +7 -0
  110. data/spec/lib/ship_compliant/get_inventory_details_result_spec.rb +87 -0
  111. data/spec/lib/ship_compliant/get_inventory_details_spec.rb +35 -0
  112. data/spec/lib/ship_compliant/get_sales_order_extended_result_spec.rb +84 -0
  113. data/spec/lib/ship_compliant/get_sales_order_extended_spec.rb +39 -0
  114. data/spec/lib/ship_compliant/inventory_product_spec.rb +116 -0
  115. data/spec/lib/ship_compliant/order_search_spec.rb +21 -0
  116. data/spec/lib/ship_compliant/package_spec.rb +26 -0
  117. data/spec/lib/ship_compliant/product_attributes_spec.rb +36 -0
  118. data/spec/lib/ship_compliant/product_sales_tax_rate_spec.rb +22 -0
  119. data/spec/lib/ship_compliant/sales_tax_rate_spec.rb +21 -0
  120. data/spec/lib/ship_compliant/search_sales_order_summary_spec.rb +56 -0
  121. data/spec/lib/ship_compliant/search_sales_orders_result_spec.rb +121 -0
  122. data/spec/lib/ship_compliant/search_sales_orders_spec.rb +42 -0
  123. data/spec/lib/ship_compliant/shipment_compliance_spec.rb +46 -0
  124. data/spec/lib/ship_compliant/shipment_sales_tax_rate_spec.rb +20 -0
  125. data/spec/lib/ship_compliant/shipment_spec.rb +106 -0
  126. data/spec/lib/ship_compliant/void_sales_order_result_spec.rb +7 -0
  127. data/spec/lib/ship_compliant/void_sales_order_spec.rb +41 -0
  128. data/spec/spec_helper.rb +50 -0
  129. metadata +366 -0
@@ -0,0 +1,1075 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: https://ws-dev.shipcompliant.com/services/1.2/coreservice.asmx?WSDL
6
+ body:
7
+ encoding: US-ASCII
8
+ string: ''
9
+ headers:
10
+ Accept-Encoding:
11
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
12
+ Accept:
13
+ - "*/*"
14
+ User-Agent:
15
+ - Ruby
16
+ response:
17
+ status:
18
+ code: 200
19
+ message: OK
20
+ headers:
21
+ Cache-Control:
22
+ - private, max-age=0
23
+ Content-Type:
24
+ - text/xml; charset=utf-8
25
+ Vary:
26
+ - Accept-Encoding
27
+ Server:
28
+ - Microsoft-IIS/7.0
29
+ X-Aspnet-Version:
30
+ - 4.0.30319
31
+ X-Powered-By:
32
+ - ASP.NET
33
+ Date:
34
+ - Thu, 13 Mar 2014 11:59:20 GMT
35
+ Content-Length:
36
+ - '10776'
37
+ body:
38
+ encoding: UTF-8
39
+ string: "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<wsdl:definitions xmlns:s=\"http://www.w3.org/2001/XMLSchema\"
40
+ xmlns:soap12=\"http://schemas.xmlsoap.org/wsdl/soap12/\" xmlns:http=\"http://schemas.xmlsoap.org/wsdl/http/\"
41
+ xmlns:mime=\"http://schemas.xmlsoap.org/wsdl/mime/\" xmlns:tns=\"http://ws.shipcompliant.com/\"
42
+ xmlns:soap=\"http://schemas.xmlsoap.org/wsdl/soap/\" xmlns:tm=\"http://microsoft.com/wsdl/mime/textMatching/\"
43
+ xmlns:soapenc=\"http://schemas.xmlsoap.org/soap/encoding/\" targetNamespace=\"http://ws.shipcompliant.com/\"
44
+ xmlns:wsdl=\"http://schemas.xmlsoap.org/wsdl/\">\r\n <wsdl:types>\r\n <s:schema
45
+ elementFormDefault=\"qualified\" targetNamespace=\"http://ws.shipcompliant.com/\">\r\n
46
+ \ <s:element name=\"CheckComplianceOfSalesOrderWithAddressValidation\">\r\n
47
+ \ <s:complexType>\r\n <s:sequence>\r\n <s:element
48
+ minOccurs=\"0\" maxOccurs=\"1\" name=\"Request\" type=\"tns:CheckComplianceOfSalesOrderWithAddressValidationRequest\"
49
+ />\r\n </s:sequence>\r\n </s:complexType>\r\n </s:element>\r\n
50
+ \ <s:complexType name=\"CheckComplianceOfSalesOrderWithAddressValidationRequest\">\r\n
51
+ \ <s:complexContent mixed=\"false\">\r\n <s:extension base=\"tns:CheckComplianceOfSalesOrderRequest\">\r\n
52
+ \ <s:sequence>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
53
+ name=\"Option\" type=\"s:string\" />\r\n </s:sequence>\r\n </s:extension>\r\n
54
+ \ </s:complexContent>\r\n </s:complexType>\r\n <s:complexType
55
+ name=\"CheckComplianceOfSalesOrderRequest\">\r\n <s:complexContent
56
+ mixed=\"false\">\r\n <s:extension base=\"tns:BaseRequest\">\r\n <s:sequence>\r\n
57
+ \ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"AddressOption\"
58
+ type=\"tns:AddressOption\" />\r\n <s:element minOccurs=\"1\"
59
+ maxOccurs=\"1\" name=\"IncludeSalesTaxRates\" type=\"s:boolean\" />\r\n <s:element
60
+ minOccurs=\"1\" maxOccurs=\"1\" name=\"PersistOption\" type=\"tns:PersistOption\"
61
+ />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"SalesOrder\"
62
+ type=\"tns:SalesOrder\" />\r\n </s:sequence>\r\n </s:extension>\r\n
63
+ \ </s:complexContent>\r\n </s:complexType>\r\n <s:complexType
64
+ name=\"BaseRequest\" abstract=\"true\">\r\n <s:sequence>\r\n <s:element
65
+ minOccurs=\"0\" maxOccurs=\"1\" name=\"Security\" type=\"tns:Security\" />\r\n
66
+ \ </s:sequence>\r\n </s:complexType>\r\n <s:complexType name=\"Security\">\r\n
67
+ \ <s:sequence>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
68
+ name=\"InstanceID\" type=\"s:string\" />\r\n <s:element minOccurs=\"0\"
69
+ maxOccurs=\"1\" name=\"PartnerKey\" type=\"s:string\" />\r\n <s:element
70
+ minOccurs=\"0\" maxOccurs=\"1\" name=\"Password\" type=\"s:string\" />\r\n
71
+ \ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"Username\" type=\"s:string\"
72
+ />\r\n </s:sequence>\r\n </s:complexType>\r\n <s:complexType
73
+ name=\"AddressOption\">\r\n <s:sequence>\r\n <s:element minOccurs=\"1\"
74
+ maxOccurs=\"1\" name=\"IgnoreStreetLevelErrors\" type=\"s:boolean\" />\r\n
75
+ \ <s:element minOccurs=\"1\" maxOccurs=\"1\" name=\"RejectIfAddressSuggested\"
76
+ type=\"s:boolean\" />\r\n </s:sequence>\r\n </s:complexType>\r\n
77
+ \ <s:simpleType name=\"PersistOption\">\r\n <s:restriction base=\"s:string\">\r\n
78
+ \ <s:enumeration value=\"Null\" />\r\n <s:enumeration value=\"OverrideExisting\"
79
+ />\r\n </s:restriction>\r\n </s:simpleType>\r\n <s:complexType
80
+ name=\"SalesOrder\">\r\n <s:sequence>\r\n <s:element minOccurs=\"0\"
81
+ maxOccurs=\"1\" name=\"BillTo\" type=\"tns:Address\" />\r\n <s:element
82
+ minOccurs=\"0\" maxOccurs=\"1\" name=\"CashierKey\" type=\"s:string\" />\r\n
83
+ \ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"CustomerKey\"
84
+ type=\"s:string\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
85
+ name=\"Discounts\" type=\"tns:ArrayOfSalesOrderDiscount\" />\r\n <s:element
86
+ minOccurs=\"0\" maxOccurs=\"1\" name=\"ExternalCustomerKey\" type=\"s:string\"
87
+ />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"ExternalOfferKeys\"
88
+ type=\"tns:ArrayOfString\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
89
+ name=\"ExternalSalesOrderKey\" type=\"s:string\" />\r\n <s:element
90
+ minOccurs=\"1\" maxOccurs=\"1\" name=\"FulfillmentType\" type=\"tns:FulfillmentType\"
91
+ />\r\n <s:element minOccurs=\"1\" maxOccurs=\"1\" name=\"OrderType\"
92
+ type=\"tns:OrderType\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
93
+ name=\"Payments\" type=\"tns:ArrayOfPayment\" />\r\n <s:element minOccurs=\"1\"
94
+ maxOccurs=\"1\" name=\"PurchaseDate\" type=\"s:dateTime\" />\r\n <s:element
95
+ minOccurs=\"0\" maxOccurs=\"1\" name=\"ReferenceNumber\" type=\"s:string\"
96
+ />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"RefundedOrderReference\"
97
+ type=\"s:string\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
98
+ name=\"RegisterID\" type=\"s:string\" />\r\n <s:element minOccurs=\"0\"
99
+ maxOccurs=\"1\" name=\"SalesAssociateKey\" type=\"s:string\" />\r\n <s:element
100
+ minOccurs=\"0\" maxOccurs=\"1\" name=\"SalesOrderKey\" type=\"s:string\" />\r\n
101
+ \ <s:element minOccurs=\"1\" maxOccurs=\"1\" name=\"SalesTaxCollected\"
102
+ type=\"s:decimal\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
103
+ name=\"SettlementBatchNumber\" type=\"s:string\" />\r\n <s:element
104
+ minOccurs=\"0\" maxOccurs=\"1\" name=\"Shipments\" type=\"tns:ArrayOfShipment\"
105
+ />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"Tags\" type=\"tns:ArrayOfTag\"
106
+ />\r\n </s:sequence>\r\n </s:complexType>\r\n <s:complexType
107
+ name=\"Address\">\r\n <s:sequence>\r\n <s:element minOccurs=\"0\"
108
+ maxOccurs=\"1\" name=\"City\" type=\"s:string\" />\r\n <s:element
109
+ minOccurs=\"0\" maxOccurs=\"1\" name=\"Company\" type=\"s:string\" />\r\n
110
+ \ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"Country\" type=\"s:string\"
111
+ />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"County\"
112
+ type=\"s:string\" />\r\n <s:element minOccurs=\"1\" maxOccurs=\"1\"
113
+ name=\"DateOfBirth\" type=\"s:dateTime\" />\r\n <s:element minOccurs=\"0\"
114
+ maxOccurs=\"1\" name=\"Email\" type=\"s:string\" />\r\n <s:element
115
+ minOccurs=\"0\" maxOccurs=\"1\" name=\"Fax\" type=\"s:string\" />\r\n <s:element
116
+ minOccurs=\"0\" maxOccurs=\"1\" name=\"FirstName\" type=\"s:string\" />\r\n
117
+ \ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"LastName\" type=\"s:string\"
118
+ />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"Phone\"
119
+ type=\"s:string\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
120
+ name=\"State\" type=\"s:string\" />\r\n <s:element minOccurs=\"0\"
121
+ maxOccurs=\"1\" name=\"Street1\" type=\"s:string\" />\r\n <s:element
122
+ minOccurs=\"0\" maxOccurs=\"1\" name=\"Street2\" type=\"s:string\" />\r\n
123
+ \ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"Zip1\" type=\"s:string\"
124
+ />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"Zip2\" type=\"s:string\"
125
+ />\r\n </s:sequence>\r\n </s:complexType>\r\n <s:complexType
126
+ name=\"ArrayOfSalesOrderDiscount\">\r\n <s:sequence>\r\n <s:element
127
+ minOccurs=\"0\" maxOccurs=\"unbounded\" name=\"SalesOrderDiscount\" nillable=\"true\"
128
+ type=\"tns:SalesOrderDiscount\" />\r\n </s:sequence>\r\n </s:complexType>\r\n
129
+ \ <s:complexType name=\"SalesOrderDiscount\">\r\n <s:attribute
130
+ name=\"Amount\" type=\"s:decimal\" use=\"required\" />\r\n <s:attribute
131
+ name=\"Code\" type=\"s:string\" />\r\n <s:attribute name=\"Type\" type=\"s:string\"
132
+ />\r\n </s:complexType>\r\n <s:complexType name=\"ArrayOfString\">\r\n
133
+ \ <s:sequence>\r\n <s:element minOccurs=\"0\" maxOccurs=\"unbounded\"
134
+ name=\"string\" nillable=\"true\" type=\"s:string\" />\r\n </s:sequence>\r\n
135
+ \ </s:complexType>\r\n <s:simpleType name=\"FulfillmentType\">\r\n
136
+ \ <s:restriction base=\"s:string\">\r\n <s:enumeration value=\"Null\"
137
+ />\r\n <s:enumeration value=\"Club\" />\r\n <s:enumeration
138
+ value=\"Daily\" />\r\n </s:restriction>\r\n </s:simpleType>\r\n
139
+ \ <s:simpleType name=\"OrderType\">\r\n <s:restriction base=\"s:string\">\r\n
140
+ \ <s:enumeration value=\"Null\" />\r\n <s:enumeration value=\"Club\"
141
+ />\r\n <s:enumeration value=\"Fax\" />\r\n <s:enumeration
142
+ value=\"InPerson\" />\r\n <s:enumeration value=\"Internet\" />\r\n
143
+ \ <s:enumeration value=\"Mail\" />\r\n <s:enumeration value=\"Phone\"
144
+ />\r\n </s:restriction>\r\n </s:simpleType>\r\n <s:complexType
145
+ name=\"ArrayOfPayment\">\r\n <s:sequence>\r\n <s:element minOccurs=\"0\"
146
+ maxOccurs=\"unbounded\" name=\"Payment\" nillable=\"true\" type=\"tns:Payment\"
147
+ />\r\n </s:sequence>\r\n </s:complexType>\r\n <s:complexType
148
+ name=\"Payment\">\r\n <s:sequence>\r\n <s:element minOccurs=\"1\"
149
+ maxOccurs=\"1\" name=\"Amount\" type=\"s:decimal\" />\r\n <s:element
150
+ minOccurs=\"0\" maxOccurs=\"1\" name=\"SubType\" type=\"s:string\" />\r\n
151
+ \ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"TransactionID\"
152
+ type=\"s:string\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
153
+ name=\"Type\" type=\"s:string\" />\r\n </s:sequence>\r\n </s:complexType>\r\n
154
+ \ <s:complexType name=\"ArrayOfShipment\">\r\n <s:sequence>\r\n
155
+ \ <s:element minOccurs=\"0\" maxOccurs=\"unbounded\" name=\"Shipment\"
156
+ nillable=\"true\" type=\"tns:Shipment\" />\r\n </s:sequence>\r\n </s:complexType>\r\n
157
+ \ <s:complexType name=\"Shipment\">\r\n <s:sequence>\r\n <s:element
158
+ minOccurs=\"0\" maxOccurs=\"1\" name=\"Discounts\" type=\"tns:ArrayOfShipmentDiscount\"
159
+ />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"ExternalClubKeys\"
160
+ type=\"tns:ArrayOfString\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
161
+ name=\"FulfillmentAccount\" type=\"s:string\" />\r\n <s:element minOccurs=\"0\"
162
+ maxOccurs=\"1\" name=\"FulfillmentHouse\" type=\"s:string\" />\r\n <s:element
163
+ minOccurs=\"0\" maxOccurs=\"1\" name=\"FulfillmentExceptionReason\" type=\"s:string\"
164
+ />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"FulfillmentExceptionType\"
165
+ type=\"s:string\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
166
+ name=\"FulfillmentStatus\" type=\"s:string\" />\r\n <s:element minOccurs=\"0\"
167
+ maxOccurs=\"1\" name=\"GiftNote\" type=\"s:string\" />\r\n <s:element
168
+ minOccurs=\"1\" maxOccurs=\"1\" name=\"Handling\" nillable=\"true\" type=\"s:double\"
169
+ />\r\n <s:element minOccurs=\"1\" maxOccurs=\"1\" name=\"InsuredAmount\"
170
+ type=\"s:double\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
171
+ name=\"LicenseRelationship\" type=\"s:string\" />\r\n <s:element
172
+ minOccurs=\"0\" maxOccurs=\"1\" name=\"Packages\" type=\"tns:ArrayOfPackage\"
173
+ />\r\n <s:element minOccurs=\"1\" maxOccurs=\"1\" name=\"ShipDate\"
174
+ type=\"s:dateTime\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
175
+ name=\"ShipmentItems\" type=\"tns:ArrayOfShipmentItem\" />\r\n <s:element
176
+ minOccurs=\"0\" maxOccurs=\"1\" name=\"ShipmentKey\" type=\"s:string\" />\r\n
177
+ \ <s:element minOccurs=\"1\" maxOccurs=\"1\" name=\"ShipmentStatus\"
178
+ type=\"tns:ShipmentStatus\" />\r\n <s:element minOccurs=\"1\" maxOccurs=\"1\"
179
+ name=\"Shipping\" nillable=\"true\" type=\"s:double\" />\r\n <s:element
180
+ minOccurs=\"0\" maxOccurs=\"1\" name=\"ShippingService\" type=\"s:string\"
181
+ />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"ShipTo\"
182
+ type=\"tns:Address\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
183
+ name=\"SpecialInstructions\" type=\"s:string\" />\r\n </s:sequence>\r\n
184
+ \ </s:complexType>\r\n <s:complexType name=\"ArrayOfShipmentDiscount\">\r\n
185
+ \ <s:sequence>\r\n <s:element minOccurs=\"0\" maxOccurs=\"unbounded\"
186
+ name=\"ShipmentDiscount\" nillable=\"true\" type=\"tns:ShipmentDiscount\"
187
+ />\r\n </s:sequence>\r\n </s:complexType>\r\n <s:complexType
188
+ name=\"ShipmentDiscount\">\r\n <s:attribute name=\"Amount\" type=\"s:decimal\"
189
+ use=\"required\" />\r\n <s:attribute name=\"Code\" type=\"s:string\"
190
+ />\r\n <s:attribute name=\"Type\" type=\"s:string\" />\r\n </s:complexType>\r\n
191
+ \ <s:complexType name=\"ArrayOfPackage\">\r\n <s:sequence>\r\n
192
+ \ <s:element minOccurs=\"0\" maxOccurs=\"unbounded\" name=\"Package\"
193
+ nillable=\"true\" type=\"tns:Package\" />\r\n </s:sequence>\r\n </s:complexType>\r\n
194
+ \ <s:complexType name=\"Package\">\r\n <s:sequence>\r\n <s:element
195
+ minOccurs=\"0\" maxOccurs=\"1\" name=\"TrackingNumber\" type=\"s:string\"
196
+ />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"TrackingStatus\"
197
+ type=\"s:string\" />\r\n </s:sequence>\r\n </s:complexType>\r\n
198
+ \ <s:complexType name=\"ArrayOfShipmentItem\">\r\n <s:sequence>\r\n
199
+ \ <s:element minOccurs=\"0\" maxOccurs=\"unbounded\" name=\"ShipmentItem\"
200
+ nillable=\"true\" type=\"tns:ShipmentItem\" />\r\n </s:sequence>\r\n
201
+ \ </s:complexType>\r\n <s:complexType name=\"ShipmentItem\">\r\n
202
+ \ <s:sequence>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
203
+ name=\"BrandKey\" type=\"s:string\" />\r\n <s:element minOccurs=\"0\"
204
+ maxOccurs=\"1\" name=\"Discounts\" type=\"tns:ArrayOfShipmentItemDiscount\"
205
+ />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"ProductKey\"
206
+ type=\"s:string\" />\r\n <s:element minOccurs=\"1\" maxOccurs=\"1\"
207
+ name=\"ProductQuantity\" type=\"s:double\" />\r\n <s:element minOccurs=\"1\"
208
+ maxOccurs=\"1\" name=\"ProductUnitPrice\" type=\"s:double\" />\r\n <s:element
209
+ minOccurs=\"0\" maxOccurs=\"1\" name=\"CITB\" type=\"s:string\" />\r\n </s:sequence>\r\n
210
+ \ </s:complexType>\r\n <s:complexType name=\"ArrayOfShipmentItemDiscount\">\r\n
211
+ \ <s:sequence>\r\n <s:element minOccurs=\"0\" maxOccurs=\"unbounded\"
212
+ name=\"ShipmentItemDiscount\" nillable=\"true\" type=\"tns:ShipmentItemDiscount\"
213
+ />\r\n </s:sequence>\r\n </s:complexType>\r\n <s:complexType
214
+ name=\"ShipmentItemDiscount\">\r\n <s:attribute name=\"Amount\" type=\"s:decimal\"
215
+ use=\"required\" />\r\n <s:attribute name=\"Code\" type=\"s:string\"
216
+ />\r\n <s:attribute name=\"Type\" type=\"s:string\" />\r\n </s:complexType>\r\n
217
+ \ <s:simpleType name=\"ShipmentStatus\">\r\n <s:restriction base=\"s:string\">\r\n
218
+ \ <s:enumeration value=\"Null\" />\r\n <s:enumeration value=\"Delivered\"
219
+ />\r\n <s:enumeration value=\"InProcess\" />\r\n <s:enumeration
220
+ value=\"Shipped\" />\r\n <s:enumeration value=\"PaymentAccepted\"
221
+ />\r\n <s:enumeration value=\"SentToFulfillment\" />\r\n <s:enumeration
222
+ value=\"Voided\" />\r\n </s:restriction>\r\n </s:simpleType>\r\n
223
+ \ <s:complexType name=\"ArrayOfTag\">\r\n <s:sequence>\r\n <s:element
224
+ minOccurs=\"0\" maxOccurs=\"unbounded\" name=\"Tag\" nillable=\"true\" type=\"tns:Tag\"
225
+ />\r\n </s:sequence>\r\n </s:complexType>\r\n <s:complexType
226
+ name=\"Tag\">\r\n <s:sequence>\r\n <s:element minOccurs=\"0\"
227
+ maxOccurs=\"1\" name=\"Name\" type=\"s:string\" />\r\n </s:sequence>\r\n
228
+ \ </s:complexType>\r\n <s:element name=\"CheckComplianceOfSalesOrderWithAddressValidationResponse\">\r\n
229
+ \ <s:complexType>\r\n <s:sequence>\r\n <s:element
230
+ minOccurs=\"0\" maxOccurs=\"1\" name=\"CheckComplianceOfSalesOrderWithAddressValidationResult\"
231
+ type=\"tns:CheckComplianceOfSalesOrderWithAddressValidationResponse\" />\r\n
232
+ \ </s:sequence>\r\n </s:complexType>\r\n </s:element>\r\n
233
+ \ <s:complexType name=\"CheckComplianceOfSalesOrderWithAddressValidationResponse\">\r\n
234
+ \ <s:complexContent mixed=\"false\">\r\n <s:extension base=\"tns:CheckComplianceOfSalesOrderResponse\">\r\n
235
+ \ <s:sequence>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
236
+ name=\"AddressValidationResult\" type=\"s:string\" />\r\n <s:element
237
+ minOccurs=\"0\" maxOccurs=\"1\" name=\"SuggestedAddress\" type=\"tns:AddressSuggestion\"
238
+ />\r\n </s:sequence>\r\n </s:extension>\r\n </s:complexContent>\r\n
239
+ \ </s:complexType>\r\n <s:complexType name=\"CheckComplianceOfSalesOrderResponse\">\r\n
240
+ \ <s:sequence>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
241
+ name=\"Errors\" type=\"tns:ArrayOfError\" />\r\n <s:element minOccurs=\"1\"
242
+ maxOccurs=\"1\" name=\"ResponseStatus\" type=\"tns:ResponseStatus\" />\r\n
243
+ \ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"SalesOrder\" type=\"tns:SalesOrderComplianceResponse\"
244
+ />\r\n </s:sequence>\r\n </s:complexType>\r\n <s:complexType
245
+ name=\"ArrayOfError\">\r\n <s:sequence>\r\n <s:element minOccurs=\"0\"
246
+ maxOccurs=\"unbounded\" name=\"Error\" nillable=\"true\" type=\"tns:Error\"
247
+ />\r\n </s:sequence>\r\n </s:complexType>\r\n <s:complexType
248
+ name=\"Error\">\r\n <s:sequence>\r\n <s:element minOccurs=\"0\"
249
+ maxOccurs=\"1\" name=\"Code\" type=\"s:string\" />\r\n <s:element
250
+ minOccurs=\"0\" maxOccurs=\"1\" name=\"Data\" type=\"tns:ErrorData\" />\r\n
251
+ \ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"Key\" type=\"s:string\"
252
+ />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"Message\"
253
+ type=\"s:string\" />\r\n <s:element minOccurs=\"1\" maxOccurs=\"1\"
254
+ name=\"Target\" type=\"tns:ErrorTarget\" />\r\n <s:element minOccurs=\"1\"
255
+ maxOccurs=\"1\" name=\"Type\" type=\"tns:ErrorType\" />\r\n </s:sequence>\r\n
256
+ \ </s:complexType>\r\n <s:complexType name=\"ErrorData\">\r\n <s:sequence>\r\n
257
+ \ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"AddressSuggestion\"
258
+ type=\"tns:AddressSuggestion\" />\r\n </s:sequence>\r\n </s:complexType>\r\n
259
+ \ <s:complexType name=\"AddressSuggestion\">\r\n <s:sequence>\r\n
260
+ \ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"City\" type=\"s:string\"
261
+ />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"County\"
262
+ type=\"s:string\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
263
+ name=\"Details\" type=\"tns:AddressDetails\" />\r\n <s:element minOccurs=\"0\"
264
+ maxOccurs=\"1\" name=\"Parts\" type=\"tns:AddressParts\" />\r\n <s:element
265
+ minOccurs=\"0\" maxOccurs=\"1\" name=\"State\" type=\"s:string\" />\r\n <s:element
266
+ minOccurs=\"0\" maxOccurs=\"1\" name=\"Street1\" type=\"s:string\" />\r\n
267
+ \ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"Street2\" type=\"s:string\"
268
+ />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"Zip1\" type=\"s:string\"
269
+ />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"Zip2\" type=\"s:string\"
270
+ />\r\n </s:sequence>\r\n </s:complexType>\r\n <s:complexType
271
+ name=\"AddressDetails\">\r\n <s:sequence>\r\n <s:element minOccurs=\"0\"
272
+ maxOccurs=\"1\" name=\"CityAbbreviation\" type=\"s:string\" />\r\n <s:element
273
+ minOccurs=\"0\" maxOccurs=\"1\" name=\"CongressionalDistrict\" type=\"s:string\"
274
+ />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"CountyFips\"
275
+ type=\"s:string\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
276
+ name=\"TimeZone\" type=\"s:string\" />\r\n <s:element minOccurs=\"0\"
277
+ maxOccurs=\"1\" name=\"TimeZoneCode\" type=\"s:string\" />\r\n </s:sequence>\r\n
278
+ \ </s:complexType>\r\n <s:complexType name=\"AddressParts\">\r\n
279
+ \ <s:sequence>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
280
+ name=\"Company\" type=\"s:string\" />\r\n <s:element minOccurs=\"0\"
281
+ maxOccurs=\"1\" name=\"MailBoxName\" type=\"s:string\" />\r\n <s:element
282
+ minOccurs=\"0\" maxOccurs=\"1\" name=\"MailBoxNumber\" type=\"s:string\" />\r\n
283
+ \ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"PostDirection\"
284
+ type=\"s:string\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
285
+ name=\"PreDirection\" type=\"s:string\" />\r\n <s:element minOccurs=\"0\"
286
+ maxOccurs=\"1\" name=\"StreetName\" type=\"s:string\" />\r\n <s:element
287
+ minOccurs=\"0\" maxOccurs=\"1\" name=\"StreetNumber\" type=\"s:string\" />\r\n
288
+ \ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"StreetSuffix\"
289
+ type=\"s:string\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
290
+ name=\"SuiteName\" type=\"s:string\" />\r\n <s:element minOccurs=\"0\"
291
+ maxOccurs=\"1\" name=\"SuiteNumber\" type=\"s:string\" />\r\n </s:sequence>\r\n
292
+ \ </s:complexType>\r\n <s:simpleType name=\"ErrorTarget\">\r\n <s:restriction
293
+ base=\"s:string\">\r\n <s:enumeration value=\"Null\" />\r\n <s:enumeration
294
+ value=\"Address\" />\r\n <s:enumeration value=\"Age\" />\r\n <s:enumeration
295
+ value=\"Batch\" />\r\n <s:enumeration value=\"Brand\" />\r\n <s:enumeration
296
+ value=\"Distributor\" />\r\n <s:enumeration value=\"Product\" />\r\n
297
+ \ <s:enumeration value=\"SalesOrder\" />\r\n <s:enumeration
298
+ value=\"Shipment\" />\r\n <s:enumeration value=\"Tax\" />\r\n <s:enumeration
299
+ value=\"SSO\" />\r\n </s:restriction>\r\n </s:simpleType>\r\n
300
+ \ <s:simpleType name=\"ErrorType\">\r\n <s:restriction base=\"s:string\">\r\n
301
+ \ <s:enumeration value=\"Authentication\" />\r\n <s:enumeration
302
+ value=\"Server\" />\r\n <s:enumeration value=\"Validation\" />\r\n
303
+ \ </s:restriction>\r\n </s:simpleType>\r\n <s:simpleType name=\"ResponseStatus\">\r\n
304
+ \ <s:restriction base=\"s:string\">\r\n <s:enumeration value=\"Failure\"
305
+ />\r\n <s:enumeration value=\"Success\" />\r\n </s:restriction>\r\n
306
+ \ </s:simpleType>\r\n <s:complexType name=\"SalesOrderComplianceResponse\">\r\n
307
+ \ <s:sequence>\r\n <s:element minOccurs=\"1\" maxOccurs=\"1\"
308
+ name=\"IsCompliant\" type=\"s:boolean\" />\r\n <s:element minOccurs=\"0\"
309
+ maxOccurs=\"1\" name=\"Key\" type=\"s:string\" />\r\n <s:element
310
+ minOccurs=\"0\" maxOccurs=\"1\" name=\"SalesTaxRates\" type=\"tns:SalesTaxRates\"
311
+ />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"Shipments\"
312
+ type=\"tns:ArrayOfShipmentComplianceResponse\" />\r\n </s:sequence>\r\n
313
+ \ </s:complexType>\r\n <s:complexType name=\"SalesTaxRates\">\r\n
314
+ \ <s:sequence>\r\n <s:element minOccurs=\"1\" maxOccurs=\"1\"
315
+ name=\"RecommendedSalesTaxDue\" type=\"s:decimal\" />\r\n <s:element
316
+ minOccurs=\"0\" maxOccurs=\"1\" name=\"ShipmentSalesTaxRates\" type=\"tns:ArrayOfShipmentSalesTaxRate\"
317
+ />\r\n </s:sequence>\r\n </s:complexType>\r\n <s:complexType
318
+ name=\"ArrayOfShipmentSalesTaxRate\">\r\n <s:sequence>\r\n <s:element
319
+ minOccurs=\"0\" maxOccurs=\"unbounded\" name=\"ShipmentSalesTaxRate\" nillable=\"true\"
320
+ type=\"tns:ShipmentSalesTaxRate\" />\r\n </s:sequence>\r\n </s:complexType>\r\n
321
+ \ <s:complexType name=\"ShipmentSalesTaxRate\">\r\n <s:sequence>\r\n
322
+ \ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"FreightSalesTaxRate\"
323
+ type=\"tns:FreightSalesTaxRate\" />\r\n <s:element minOccurs=\"0\"
324
+ maxOccurs=\"1\" name=\"ProductSalesTaxRates\" type=\"tns:ArrayOfProductSalesTaxRate\"
325
+ />\r\n </s:sequence>\r\n <s:attribute name=\"ShipmentKey\" type=\"s:string\"
326
+ />\r\n </s:complexType>\r\n <s:complexType name=\"FreightSalesTaxRate\">\r\n
327
+ \ <s:attribute name=\"SalesTaxDue\" type=\"s:decimal\" use=\"required\"
328
+ />\r\n <s:attribute name=\"SalesTaxRate\" type=\"s:decimal\" use=\"required\"
329
+ />\r\n </s:complexType>\r\n <s:complexType name=\"ArrayOfProductSalesTaxRate\">\r\n
330
+ \ <s:sequence>\r\n <s:element minOccurs=\"0\" maxOccurs=\"unbounded\"
331
+ name=\"ProductSalesTaxRate\" nillable=\"true\" type=\"tns:ProductSalesTaxRate\"
332
+ />\r\n </s:sequence>\r\n </s:complexType>\r\n <s:complexType
333
+ name=\"ProductSalesTaxRate\">\r\n <s:attribute name=\"BrandKey\" type=\"s:string\"
334
+ />\r\n <s:attribute name=\"ProductKey\" type=\"s:string\" />\r\n <s:attribute
335
+ name=\"SalesTaxDue\" type=\"s:decimal\" use=\"required\" />\r\n <s:attribute
336
+ name=\"SalesTaxRate\" type=\"s:decimal\" use=\"required\" />\r\n </s:complexType>\r\n
337
+ \ <s:complexType name=\"ArrayOfShipmentComplianceResponse\">\r\n <s:sequence>\r\n
338
+ \ <s:element minOccurs=\"0\" maxOccurs=\"unbounded\" name=\"ShipmentComplianceResponse\"
339
+ nillable=\"true\" type=\"tns:ShipmentComplianceResponse\" />\r\n </s:sequence>\r\n
340
+ \ </s:complexType>\r\n <s:complexType name=\"ShipmentComplianceResponse\">\r\n
341
+ \ <s:sequence>\r\n <s:element minOccurs=\"1\" maxOccurs=\"1\"
342
+ name=\"IsCompliant\" type=\"s:boolean\" />\r\n <s:element minOccurs=\"0\"
343
+ maxOccurs=\"1\" name=\"Key\" type=\"s:string\" />\r\n <s:element
344
+ minOccurs=\"0\" maxOccurs=\"1\" name=\"Rules\" type=\"tns:ArrayOfRuleComplianceResponse\"
345
+ />\r\n </s:sequence>\r\n </s:complexType>\r\n <s:complexType
346
+ name=\"ArrayOfRuleComplianceResponse\">\r\n <s:sequence>\r\n <s:element
347
+ minOccurs=\"0\" maxOccurs=\"unbounded\" name=\"RuleComplianceResponse\" nillable=\"true\"
348
+ type=\"tns:RuleComplianceResponse\" />\r\n </s:sequence>\r\n </s:complexType>\r\n
349
+ \ <s:complexType name=\"RuleComplianceResponse\">\r\n <s:sequence>\r\n
350
+ \ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"ComplianceDescription\"
351
+ type=\"s:string\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
352
+ name=\"ComplianceDetails\" type=\"tns:ArrayOfComplianceDetailResponse\" />\r\n
353
+ \ <s:element minOccurs=\"1\" maxOccurs=\"1\" name=\"IsCompliant\"
354
+ type=\"s:boolean\" />\r\n <s:element minOccurs=\"1\" maxOccurs=\"1\"
355
+ name=\"LicenseRelationship\" type=\"tns:LicenseRelationship\" />\r\n <s:element
356
+ minOccurs=\"0\" maxOccurs=\"1\" name=\"RuleDescription\" type=\"s:string\"
357
+ />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"RuleType\"
358
+ type=\"s:string\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
359
+ name=\"Supplier\" type=\"s:string\" />\r\n <s:element minOccurs=\"0\"
360
+ maxOccurs=\"1\" name=\"CustomerAggregateVolumeLimitDetail\" type=\"tns:CustomerAggregateVolumeLimitDetail\"
361
+ />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"PerShipmentVolumeLimitDetail\"
362
+ type=\"tns:PerShipmentVolumeLimitDetail\" />\r\n <s:element minOccurs=\"0\"
363
+ maxOccurs=\"1\" name=\"PerBottleVolumeLimitDetail\" type=\"tns:PerBottleVolumeLimitDetail\"
364
+ />\r\n </s:sequence>\r\n </s:complexType>\r\n <s:complexType
365
+ name=\"ArrayOfComplianceDetailResponse\">\r\n <s:sequence>\r\n <s:element
366
+ minOccurs=\"0\" maxOccurs=\"unbounded\" name=\"ComplianceDetailResponse\"
367
+ nillable=\"true\" type=\"tns:ComplianceDetailResponse\" />\r\n </s:sequence>\r\n
368
+ \ </s:complexType>\r\n <s:complexType name=\"ComplianceDetailResponse\">\r\n
369
+ \ <s:sequence>\r\n <s:element minOccurs=\"1\" maxOccurs=\"1\"
370
+ name=\"Type\" type=\"tns:ComplianceDetailType\" />\r\n <s:element
371
+ minOccurs=\"0\" maxOccurs=\"1\" name=\"Value\" type=\"s:string\" />\r\n </s:sequence>\r\n
372
+ \ </s:complexType>\r\n <s:simpleType name=\"ComplianceDetailType\">\r\n
373
+ \ <s:restriction base=\"s:string\">\r\n <s:enumeration value=\"BrandNameNotRegistered\"
374
+ />\r\n <s:enumeration value=\"LabelNotRegistered\" />\r\n <s:enumeration
375
+ value=\"NextShipDate\" />\r\n <s:enumeration value=\"VolumeOverLimit\"
376
+ />\r\n </s:restriction>\r\n </s:simpleType>\r\n <s:simpleType
377
+ name=\"LicenseRelationship\">\r\n <s:restriction base=\"s:string\">\r\n
378
+ \ <s:enumeration value=\"Null\" />\r\n <s:enumeration value=\"Default\"
379
+ />\r\n <s:enumeration value=\"Pickup\" />\r\n <s:enumeration
380
+ value=\"RetailerToConsumer\" />\r\n <s:enumeration value=\"RetailerToThreeTier\"
381
+ />\r\n <s:enumeration value=\"SupplierToConsumer\" />\r\n <s:enumeration
382
+ value=\"SupplierToDistributor\" />\r\n <s:enumeration value=\"SupplierToThreeTier\"
383
+ />\r\n </s:restriction>\r\n </s:simpleType>\r\n <s:complexType
384
+ name=\"CustomerAggregateVolumeLimitDetail\">\r\n <s:sequence>\r\n <s:element
385
+ minOccurs=\"1\" maxOccurs=\"1\" name=\"CustomerType\" type=\"tns:CustomerType\"
386
+ />\r\n <s:element minOccurs=\"1\" maxOccurs=\"1\" name=\"TimeFrameCount\"
387
+ type=\"s:int\" />\r\n <s:element minOccurs=\"1\" maxOccurs=\"1\"
388
+ name=\"TimeFrameType\" type=\"tns:TimeFrameType\" />\r\n <s:element
389
+ minOccurs=\"1\" maxOccurs=\"1\" name=\"TimeFrameUnit\" type=\"tns:TimeFrameUnit\"
390
+ />\r\n <s:element minOccurs=\"1\" maxOccurs=\"1\" name=\"UnitOfMeasure\"
391
+ type=\"tns:VolumeUnit\" />\r\n <s:element minOccurs=\"1\" maxOccurs=\"1\"
392
+ name=\"VolumeCount\" type=\"s:int\" />\r\n </s:sequence>\r\n </s:complexType>\r\n
393
+ \ <s:simpleType name=\"CustomerType\">\r\n <s:restriction base=\"s:string\">\r\n
394
+ \ <s:enumeration value=\"Null\" />\r\n <s:enumeration value=\"Household\"
395
+ />\r\n <s:enumeration value=\"Individual\" />\r\n </s:restriction>\r\n
396
+ \ </s:simpleType>\r\n <s:simpleType name=\"TimeFrameType\">\r\n <s:restriction
397
+ base=\"s:string\">\r\n <s:enumeration value=\"Calendar\" />\r\n <s:enumeration
398
+ value=\"Rolling\" />\r\n </s:restriction>\r\n </s:simpleType>\r\n
399
+ \ <s:simpleType name=\"TimeFrameUnit\">\r\n <s:restriction base=\"s:string\">\r\n
400
+ \ <s:enumeration value=\"Null\" />\r\n <s:enumeration value=\"Minutes\"
401
+ />\r\n <s:enumeration value=\"Hours\" />\r\n <s:enumeration
402
+ value=\"Days\" />\r\n <s:enumeration value=\"Weeks\" />\r\n <s:enumeration
403
+ value=\"Months\" />\r\n <s:enumeration value=\"Years\" />\r\n </s:restriction>\r\n
404
+ \ </s:simpleType>\r\n <s:simpleType name=\"VolumeUnit\">\r\n <s:restriction
405
+ base=\"s:string\">\r\n <s:enumeration value=\"Null\" />\r\n <s:enumeration
406
+ value=\"Bottle\" />\r\n <s:enumeration value=\"Case\" />\r\n <s:enumeration
407
+ value=\"Gallon\" />\r\n <s:enumeration value=\"Liter\" />\r\n <s:enumeration
408
+ value=\"Milliliter\" />\r\n <s:enumeration value=\"Ounce\" />\r\n
409
+ \ <s:enumeration value=\"Quart\" />\r\n </s:restriction>\r\n
410
+ \ </s:simpleType>\r\n <s:complexType name=\"PerShipmentVolumeLimitDetail\">\r\n
411
+ \ <s:sequence>\r\n <s:element minOccurs=\"1\" maxOccurs=\"1\"
412
+ name=\"VolumeCount\" type=\"s:int\" />\r\n <s:element minOccurs=\"1\"
413
+ maxOccurs=\"1\" name=\"VolumeUnit\" type=\"tns:VolumeUnit\" />\r\n </s:sequence>\r\n
414
+ \ </s:complexType>\r\n <s:complexType name=\"PerBottleVolumeLimitDetail\">\r\n
415
+ \ <s:sequence>\r\n <s:element minOccurs=\"1\" maxOccurs=\"1\"
416
+ name=\"VolumeCount\" type=\"s:int\" />\r\n <s:element minOccurs=\"1\"
417
+ maxOccurs=\"1\" name=\"VolumeUnit\" type=\"tns:VolumeUnit\" />\r\n </s:sequence>\r\n
418
+ \ </s:complexType>\r\n <s:element name=\"CommitSalesOrder\">\r\n
419
+ \ <s:complexType>\r\n <s:sequence>\r\n <s:element
420
+ minOccurs=\"0\" maxOccurs=\"1\" name=\"Request\" type=\"tns:CommitSalesOrderRequest\"
421
+ />\r\n </s:sequence>\r\n </s:complexType>\r\n </s:element>\r\n
422
+ \ <s:complexType name=\"CommitSalesOrderRequest\">\r\n <s:complexContent
423
+ mixed=\"false\">\r\n <s:extension base=\"tns:BaseRequest\">\r\n <s:sequence>\r\n
424
+ \ <s:element minOccurs=\"1\" maxOccurs=\"1\" name=\"CommitOption\"
425
+ type=\"tns:CommitOption\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
426
+ name=\"ExternalSalesOrderKey\" type=\"s:string\" />\r\n <s:element
427
+ minOccurs=\"0\" maxOccurs=\"1\" name=\"Payments\" type=\"tns:ArrayOfPayment\"
428
+ />\r\n <s:element minOccurs=\"1\" maxOccurs=\"1\" name=\"SalesTaxCollected\"
429
+ nillable=\"true\" type=\"s:decimal\" />\r\n <s:element minOccurs=\"0\"
430
+ maxOccurs=\"1\" name=\"SalesOrderKey\" type=\"s:string\" />\r\n </s:sequence>\r\n
431
+ \ </s:extension>\r\n </s:complexContent>\r\n </s:complexType>\r\n
432
+ \ <s:simpleType name=\"CommitOption\">\r\n <s:restriction base=\"s:string\">\r\n
433
+ \ <s:enumeration value=\"Null\" />\r\n <s:enumeration value=\"AllShipments\"
434
+ />\r\n <s:enumeration value=\"CompliantShipments\" />\r\n </s:restriction>\r\n
435
+ \ </s:simpleType>\r\n <s:element name=\"CommitSalesOrderResponse\">\r\n
436
+ \ <s:complexType>\r\n <s:sequence>\r\n <s:element
437
+ minOccurs=\"0\" maxOccurs=\"1\" name=\"CommitSalesOrderResult\" type=\"tns:CommitSalesOrderResponse\"
438
+ />\r\n </s:sequence>\r\n </s:complexType>\r\n </s:element>\r\n
439
+ \ <s:complexType name=\"CommitSalesOrderResponse\">\r\n <s:sequence>\r\n
440
+ \ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"Errors\" type=\"tns:ArrayOfError\"
441
+ />\r\n <s:element minOccurs=\"1\" maxOccurs=\"1\" name=\"ResponseStatus\"
442
+ type=\"tns:ResponseStatus\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
443
+ name=\"Shipments\" type=\"tns:ArrayOfShipmentCommitResponse\" />\r\n </s:sequence>\r\n
444
+ \ </s:complexType>\r\n <s:complexType name=\"ArrayOfShipmentCommitResponse\">\r\n
445
+ \ <s:sequence>\r\n <s:element minOccurs=\"0\" maxOccurs=\"unbounded\"
446
+ name=\"ShipmentCommitResponse\" nillable=\"true\" type=\"tns:ShipmentCommitResponse\"
447
+ />\r\n </s:sequence>\r\n </s:complexType>\r\n <s:complexType
448
+ name=\"ShipmentCommitResponse\">\r\n <s:sequence>\r\n <s:element
449
+ minOccurs=\"0\" maxOccurs=\"1\" name=\"Key\" type=\"s:string\" />\r\n <s:element
450
+ minOccurs=\"1\" maxOccurs=\"1\" name=\"IsCommitted\" type=\"s:boolean\" />\r\n
451
+ \ </s:sequence>\r\n </s:complexType>\r\n <s:element name=\"VoidSalesOrder\">\r\n
452
+ \ <s:complexType>\r\n <s:sequence>\r\n <s:element
453
+ minOccurs=\"0\" maxOccurs=\"1\" name=\"Request\" type=\"tns:VoidSalesOrderRequest\"
454
+ />\r\n </s:sequence>\r\n </s:complexType>\r\n </s:element>\r\n
455
+ \ <s:complexType name=\"VoidSalesOrderRequest\">\r\n <s:complexContent
456
+ mixed=\"false\">\r\n <s:extension base=\"tns:BaseRequest\">\r\n <s:sequence>\r\n
457
+ \ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"SalesOrderKey\"
458
+ type=\"s:string\" />\r\n </s:sequence>\r\n </s:extension>\r\n
459
+ \ </s:complexContent>\r\n </s:complexType>\r\n <s:element
460
+ name=\"VoidSalesOrderResponse\">\r\n <s:complexType>\r\n <s:sequence>\r\n
461
+ \ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"VoidSalesOrderResult\"
462
+ type=\"tns:VoidSalesOrderResponse\" />\r\n </s:sequence>\r\n </s:complexType>\r\n
463
+ \ </s:element>\r\n <s:complexType name=\"VoidSalesOrderResponse\">\r\n
464
+ \ <s:sequence>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
465
+ name=\"Errors\" type=\"tns:ArrayOfError\" />\r\n <s:element minOccurs=\"1\"
466
+ maxOccurs=\"1\" name=\"ResponseStatus\" type=\"tns:ResponseStatus\" />\r\n
467
+ \ </s:sequence>\r\n </s:complexType>\r\n <s:element name=\"SearchSalesOrders\">\r\n
468
+ \ <s:complexType>\r\n <s:sequence>\r\n <s:element
469
+ minOccurs=\"0\" maxOccurs=\"1\" name=\"Request\" type=\"tns:SearchSalesOrdersRequest\"
470
+ />\r\n </s:sequence>\r\n </s:complexType>\r\n </s:element>\r\n
471
+ \ <s:complexType name=\"SearchSalesOrdersRequest\">\r\n <s:complexContent
472
+ mixed=\"false\">\r\n <s:extension base=\"tns:BaseRequest\">\r\n <s:sequence>\r\n
473
+ \ <s:element minOccurs=\"1\" maxOccurs=\"1\" name=\"ComplianceStatus\"
474
+ type=\"tns:ShipmentComplianceStatus\" />\r\n <s:element minOccurs=\"0\"
475
+ maxOccurs=\"1\" name=\"ExternalClubKey\" type=\"s:string\" />\r\n <s:element
476
+ minOccurs=\"0\" maxOccurs=\"1\" name=\"ExternalOfferKey\" type=\"s:string\"
477
+ />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"ExternalSalesOrderKeyMax\"
478
+ type=\"s:string\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
479
+ name=\"ExternalSalesOrderKeyMin\" type=\"s:string\" />\r\n <s:element
480
+ minOccurs=\"0\" maxOccurs=\"1\" name=\"ExternalSalesOrderKeys\" type=\"tns:ArrayOfString\"
481
+ />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"FulfillmentAccount\"
482
+ type=\"s:string\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
483
+ name=\"FulfillmentExceptionType\" type=\"s:string\" />\r\n <s:element
484
+ minOccurs=\"0\" maxOccurs=\"1\" name=\"FulfillmentHouse\" type=\"s:string\"
485
+ />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"FulfillmentStatus\"
486
+ type=\"s:string\" />\r\n <s:element minOccurs=\"1\" maxOccurs=\"1\"
487
+ name=\"LicenseRelationship\" type=\"tns:LicenseRelationship\" />\r\n <s:element
488
+ minOccurs=\"0\" maxOccurs=\"1\" name=\"Partner\" type=\"s:string\" />\r\n
489
+ \ <s:element minOccurs=\"1\" maxOccurs=\"1\" name=\"PurchaseDateMax\"
490
+ type=\"s:dateTime\" />\r\n <s:element minOccurs=\"1\" maxOccurs=\"1\"
491
+ name=\"PurchaseDateMin\" type=\"s:dateTime\" />\r\n <s:element
492
+ minOccurs=\"1\" maxOccurs=\"1\" name=\"RequestedShipDateMax\" type=\"s:dateTime\"
493
+ />\r\n <s:element minOccurs=\"1\" maxOccurs=\"1\" name=\"RequestedShipDateMin\"
494
+ type=\"s:dateTime\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
495
+ name=\"SalesOrderKeyMax\" type=\"s:string\" />\r\n <s:element
496
+ minOccurs=\"0\" maxOccurs=\"1\" name=\"SalesOrderKeyMin\" type=\"s:string\"
497
+ />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"SalesOrderKeys\"
498
+ type=\"tns:ArrayOfString\" />\r\n <s:element minOccurs=\"1\"
499
+ maxOccurs=\"1\" name=\"SaleType\" type=\"tns:SaleType\" />\r\n <s:element
500
+ minOccurs=\"0\" maxOccurs=\"1\" name=\"SettlementBatchNumber\" type=\"s:string\"
501
+ />\r\n <s:element minOccurs=\"1\" maxOccurs=\"1\" name=\"ShipDateMax\"
502
+ type=\"s:dateTime\" />\r\n <s:element minOccurs=\"1\" maxOccurs=\"1\"
503
+ name=\"ShipDateMin\" type=\"s:dateTime\" />\r\n <s:element minOccurs=\"1\"
504
+ maxOccurs=\"1\" name=\"ShipmentStatus\" type=\"tns:ShipmentStatus\" />\r\n
505
+ \ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"ShipToState\"
506
+ type=\"s:string\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
507
+ name=\"Tag\" type=\"s:string\" />\r\n <s:element minOccurs=\"1\"
508
+ maxOccurs=\"1\" name=\"TrackingExistence\" type=\"tns:TrackingExistence\"
509
+ />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"NotTag\"
510
+ type=\"s:string\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
511
+ name=\"Channel\" type=\"s:string\" />\r\n </s:sequence>\r\n </s:extension>\r\n
512
+ \ </s:complexContent>\r\n </s:complexType>\r\n <s:simpleType
513
+ name=\"ShipmentComplianceStatus\">\r\n <s:restriction base=\"s:string\">\r\n
514
+ \ <s:enumeration value=\"Null\" />\r\n <s:enumeration value=\"CompliantCommitted\"
515
+ />\r\n <s:enumeration value=\"LegacyCommitted\" />\r\n </s:restriction>\r\n
516
+ \ </s:simpleType>\r\n <s:simpleType name=\"SaleType\">\r\n <s:restriction
517
+ base=\"s:string\">\r\n <s:enumeration value=\"Null\" />\r\n <s:enumeration
518
+ value=\"Both\" />\r\n <s:enumeration value=\"Offsite\" />\r\n <s:enumeration
519
+ value=\"Onsite\" />\r\n </s:restriction>\r\n </s:simpleType>\r\n
520
+ \ <s:simpleType name=\"TrackingExistence\">\r\n <s:restriction
521
+ base=\"s:string\">\r\n <s:enumeration value=\"Null\" />\r\n <s:enumeration
522
+ value=\"HasTrackingNumbers\" />\r\n <s:enumeration value=\"ZeroTrackingNumbers\"
523
+ />\r\n </s:restriction>\r\n </s:simpleType>\r\n <s:element
524
+ name=\"SearchSalesOrdersResponse\">\r\n <s:complexType>\r\n <s:sequence>\r\n
525
+ \ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"SearchSalesOrdersResult\"
526
+ type=\"tns:SearchSalesOrdersResponse\" />\r\n </s:sequence>\r\n </s:complexType>\r\n
527
+ \ </s:element>\r\n <s:complexType name=\"SearchSalesOrdersResponse\">\r\n
528
+ \ <s:sequence>\r\n <s:element minOccurs=\"1\" maxOccurs=\"1\"
529
+ name=\"CountMoreSalesOrdersAvailable\" type=\"s:int\" />\r\n <s:element
530
+ minOccurs=\"1\" maxOccurs=\"1\" name=\"CountSalesOrdersReturned\" type=\"s:int\"
531
+ />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"Errors\"
532
+ type=\"tns:ArrayOfError\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
533
+ name=\"PagingCookie\" type=\"s:string\" />\r\n <s:element minOccurs=\"1\"
534
+ maxOccurs=\"1\" name=\"PagingCookieExpires\" type=\"s:dateTime\" />\r\n <s:element
535
+ minOccurs=\"1\" maxOccurs=\"1\" name=\"ResponseStatus\" type=\"tns:ResponseStatus\"
536
+ />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"SalesOrders\"
537
+ type=\"tns:ArrayOfSalesOrderSummary\" />\r\n </s:sequence>\r\n </s:complexType>\r\n
538
+ \ <s:complexType name=\"ArrayOfSalesOrderSummary\">\r\n <s:sequence>\r\n
539
+ \ <s:element minOccurs=\"0\" maxOccurs=\"unbounded\" name=\"SalesOrderSummary\"
540
+ nillable=\"true\" type=\"tns:SalesOrderSummary\" />\r\n </s:sequence>\r\n
541
+ \ </s:complexType>\r\n <s:complexType name=\"SalesOrderSummary\">\r\n
542
+ \ <s:sequence>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
543
+ name=\"ExternalCustomerKey\" type=\"s:string\" />\r\n <s:element
544
+ minOccurs=\"0\" maxOccurs=\"1\" name=\"ExternalOfferKeys\" type=\"tns:ArrayOfString\"
545
+ />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"ExternalSalesOrderKey\"
546
+ type=\"s:string\" />\r\n <s:element minOccurs=\"1\" maxOccurs=\"1\"
547
+ name=\"PurchaseDate\" type=\"s:dateTime\" />\r\n <s:element minOccurs=\"0\"
548
+ maxOccurs=\"1\" name=\"SalesOrderKey\" type=\"s:string\" />\r\n <s:element
549
+ minOccurs=\"0\" maxOccurs=\"1\" name=\"SettlementBatchNumber\" type=\"s:string\"
550
+ />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"Shipments\"
551
+ type=\"tns:ArrayOfShipmentSummary\" />\r\n <s:element minOccurs=\"0\"
552
+ maxOccurs=\"1\" name=\"Tags\" type=\"tns:ArrayOfTagSummary\" />\r\n </s:sequence>\r\n
553
+ \ </s:complexType>\r\n <s:complexType name=\"ArrayOfShipmentSummary\">\r\n
554
+ \ <s:sequence>\r\n <s:element minOccurs=\"0\" maxOccurs=\"unbounded\"
555
+ name=\"ShipmentSummary\" nillable=\"true\" type=\"tns:ShipmentSummary\" />\r\n
556
+ \ </s:sequence>\r\n </s:complexType>\r\n <s:complexType name=\"ShipmentSummary\">\r\n
557
+ \ <s:sequence>\r\n <s:element minOccurs=\"1\" maxOccurs=\"1\"
558
+ name=\"ComplianceStatus\" type=\"tns:ShipmentComplianceStatus\" />\r\n <s:element
559
+ minOccurs=\"0\" maxOccurs=\"1\" name=\"ExternalClubKeys\" type=\"tns:ArrayOfString\"
560
+ />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"FulfillmentAccount\"
561
+ type=\"s:string\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
562
+ name=\"FulfillmentExceptionReason\" type=\"s:string\" />\r\n <s:element
563
+ minOccurs=\"0\" maxOccurs=\"1\" name=\"FulfillmentExceptionType\" type=\"s:string\"
564
+ />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"FulfillmentHouse\"
565
+ type=\"s:string\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
566
+ name=\"FulfillmentStatus\" type=\"s:string\" />\r\n <s:element minOccurs=\"0\"
567
+ maxOccurs=\"1\" name=\"Packages\" type=\"tns:ArrayOfPackageSummary\" />\r\n
568
+ \ <s:element minOccurs=\"1\" maxOccurs=\"1\" name=\"RequestedShipDate\"
569
+ type=\"s:dateTime\" />\r\n <s:element minOccurs=\"1\" maxOccurs=\"1\"
570
+ name=\"ShipDate\" type=\"s:dateTime\" />\r\n <s:element minOccurs=\"0\"
571
+ maxOccurs=\"1\" name=\"ShipmentKey\" type=\"s:string\" />\r\n <s:element
572
+ minOccurs=\"1\" maxOccurs=\"1\" name=\"ShipmentStatus\" type=\"tns:ShipmentStatus\"
573
+ />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"ShipTo\"
574
+ type=\"tns:AddressSummary\" />\r\n </s:sequence>\r\n </s:complexType>\r\n
575
+ \ <s:complexType name=\"ArrayOfPackageSummary\">\r\n <s:sequence>\r\n
576
+ \ <s:element minOccurs=\"0\" maxOccurs=\"unbounded\" name=\"PackageSummary\"
577
+ nillable=\"true\" type=\"tns:PackageSummary\" />\r\n </s:sequence>\r\n
578
+ \ </s:complexType>\r\n <s:complexType name=\"PackageSummary\">\r\n
579
+ \ <s:sequence>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
580
+ name=\"Carrier\" type=\"s:string\" />\r\n <s:element minOccurs=\"0\"
581
+ maxOccurs=\"1\" name=\"TrackingNumber\" type=\"s:string\" />\r\n <s:element
582
+ minOccurs=\"0\" maxOccurs=\"1\" name=\"TrackingStatus\" type=\"s:string\"
583
+ />\r\n </s:sequence>\r\n </s:complexType>\r\n <s:complexType
584
+ name=\"AddressSummary\">\r\n <s:sequence>\r\n <s:element minOccurs=\"0\"
585
+ maxOccurs=\"1\" name=\"FirstName\" type=\"s:string\" />\r\n <s:element
586
+ minOccurs=\"0\" maxOccurs=\"1\" name=\"LastName\" type=\"s:string\" />\r\n
587
+ \ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"Zip1\" type=\"s:string\"
588
+ />\r\n </s:sequence>\r\n </s:complexType>\r\n <s:complexType
589
+ name=\"ArrayOfTagSummary\">\r\n <s:sequence>\r\n <s:element
590
+ minOccurs=\"0\" maxOccurs=\"unbounded\" name=\"TagSummary\" nillable=\"true\"
591
+ type=\"tns:TagSummary\" />\r\n </s:sequence>\r\n </s:complexType>\r\n
592
+ \ <s:complexType name=\"TagSummary\">\r\n <s:sequence>\r\n <s:element
593
+ minOccurs=\"0\" maxOccurs=\"1\" name=\"Name\" type=\"s:string\" />\r\n </s:sequence>\r\n
594
+ \ </s:complexType>\r\n <s:element name=\"SearchMoreSalesOrders\">\r\n
595
+ \ <s:complexType>\r\n <s:sequence>\r\n <s:element
596
+ minOccurs=\"0\" maxOccurs=\"1\" name=\"Request\" type=\"tns:SearchMoreSalesOrdersRequest\"
597
+ />\r\n </s:sequence>\r\n </s:complexType>\r\n </s:element>\r\n
598
+ \ <s:complexType name=\"SearchMoreSalesOrdersRequest\">\r\n <s:complexContent
599
+ mixed=\"false\">\r\n <s:extension base=\"tns:BaseRequest\">\r\n <s:sequence>\r\n
600
+ \ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"PagingCookie\"
601
+ type=\"s:string\" />\r\n </s:sequence>\r\n </s:extension>\r\n
602
+ \ </s:complexContent>\r\n </s:complexType>\r\n <s:element
603
+ name=\"SearchMoreSalesOrdersResponse\">\r\n <s:complexType>\r\n <s:sequence>\r\n
604
+ \ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"SearchMoreSalesOrdersResult\"
605
+ type=\"tns:SearchSalesOrdersResponse\" />\r\n </s:sequence>\r\n </s:complexType>\r\n
606
+ \ </s:element>\r\n <s:element name=\"GetSalesOrderExtended\">\r\n
607
+ \ <s:complexType>\r\n <s:sequence>\r\n <s:element
608
+ minOccurs=\"0\" maxOccurs=\"1\" name=\"Request\" type=\"tns:GetSalesOrderRequest\"
609
+ />\r\n </s:sequence>\r\n </s:complexType>\r\n </s:element>\r\n
610
+ \ <s:complexType name=\"GetSalesOrderRequest\">\r\n <s:complexContent
611
+ mixed=\"false\">\r\n <s:extension base=\"tns:BaseRequest\">\r\n <s:sequence>\r\n
612
+ \ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"SalesOrderKey\"
613
+ type=\"s:string\" />\r\n </s:sequence>\r\n </s:extension>\r\n
614
+ \ </s:complexContent>\r\n </s:complexType>\r\n <s:element
615
+ name=\"GetSalesOrderExtendedResponse\">\r\n <s:complexType>\r\n <s:sequence>\r\n
616
+ \ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"GetSalesOrderExtendedResult\"
617
+ type=\"tns:GetSalesOrderExtendedResponse\" />\r\n </s:sequence>\r\n
618
+ \ </s:complexType>\r\n </s:element>\r\n <s:complexType name=\"GetSalesOrderExtendedResponse\">\r\n
619
+ \ <s:sequence>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
620
+ name=\"ComplianceResults\" type=\"tns:ComplianceResponse\" />\r\n <s:element
621
+ minOccurs=\"0\" maxOccurs=\"1\" name=\"Errors\" type=\"tns:ArrayOfError\"
622
+ />\r\n <s:element minOccurs=\"1\" maxOccurs=\"1\" name=\"ResponseStatus\"
623
+ type=\"tns:ResponseStatus\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
624
+ name=\"SalesOrder\" type=\"tns:SalesOrder\" />\r\n <s:element minOccurs=\"0\"
625
+ maxOccurs=\"1\" name=\"OrderChannelDetails\" type=\"tns:OrderChannelDetails\"
626
+ />\r\n </s:sequence>\r\n </s:complexType>\r\n <s:complexType
627
+ name=\"ComplianceResponse\">\r\n <s:sequence>\r\n <s:element
628
+ minOccurs=\"0\" maxOccurs=\"1\" name=\"SalesOrder\" type=\"tns:SalesOrderComplianceResponse\"
629
+ />\r\n </s:sequence>\r\n </s:complexType>\r\n <s:complexType
630
+ name=\"OrderChannelDetails\">\r\n <s:sequence>\r\n <s:element
631
+ minOccurs=\"0\" maxOccurs=\"1\" name=\"OrderChannel\" type=\"s:string\" />\r\n
632
+ \ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"AdvertiserKey\"
633
+ type=\"s:string\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
634
+ name=\"AdvertiserName\" type=\"s:string\" />\r\n <s:element minOccurs=\"0\"
635
+ maxOccurs=\"1\" name=\"Meta\" type=\"s:string\" />\r\n </s:sequence>\r\n
636
+ \ </s:complexType>\r\n <s:element name=\"AddUpdateBrand\">\r\n <s:complexType>\r\n
637
+ \ <s:sequence>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
638
+ name=\"Request\" type=\"tns:AddUpdateBrandRequest\" />\r\n </s:sequence>\r\n
639
+ \ </s:complexType>\r\n </s:element>\r\n <s:complexType name=\"AddUpdateBrandRequest\">\r\n
640
+ \ <s:complexContent mixed=\"false\">\r\n <s:extension base=\"tns:BaseRequest\">\r\n
641
+ \ <s:sequence>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
642
+ name=\"Brand\" type=\"tns:Brand\" />\r\n <s:element minOccurs=\"1\"
643
+ maxOccurs=\"1\" name=\"UpdateMode\" nillable=\"true\" type=\"tns:BrandUpdateMode\"
644
+ />\r\n </s:sequence>\r\n </s:extension>\r\n </s:complexContent>\r\n
645
+ \ </s:complexType>\r\n <s:complexType name=\"Brand\">\r\n <s:sequence>\r\n
646
+ \ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"Key\" type=\"s:string\"
647
+ />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"Name\" type=\"s:string\"
648
+ />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"Owner\"
649
+ type=\"tns:BrandOwner\" />\r\n <s:element minOccurs=\"1\" maxOccurs=\"1\"
650
+ name=\"ThisBrandIsBottledByAThirdParty\" nillable=\"true\" type=\"s:boolean\"
651
+ />\r\n <s:element minOccurs=\"1\" maxOccurs=\"1\" name=\"ThisBrandIsProducedByAThirdParty\"
652
+ nillable=\"true\" type=\"s:boolean\" />\r\n <s:element minOccurs=\"1\"
653
+ maxOccurs=\"1\" name=\"ThisBrandOperatesUnderATradeName\" nillable=\"true\"
654
+ type=\"s:boolean\" />\r\n <s:element minOccurs=\"1\" maxOccurs=\"1\"
655
+ name=\"ThisBrandWasAcquiredFromAThirdParty\" nillable=\"true\" type=\"s:boolean\"
656
+ />\r\n </s:sequence>\r\n </s:complexType>\r\n <s:complexType
657
+ name=\"BrandOwner\">\r\n <s:sequence>\r\n <s:element minOccurs=\"0\"
658
+ maxOccurs=\"1\" name=\"City\" type=\"s:string\" />\r\n <s:element
659
+ minOccurs=\"0\" maxOccurs=\"1\" name=\"Country\" type=\"s:string\" />\r\n
660
+ \ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"Name\" type=\"s:string\"
661
+ />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"State\"
662
+ type=\"s:string\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
663
+ name=\"Street1\" type=\"s:string\" />\r\n <s:element minOccurs=\"0\"
664
+ maxOccurs=\"1\" name=\"Street2\" type=\"s:string\" />\r\n <s:element
665
+ minOccurs=\"0\" maxOccurs=\"1\" name=\"Zip\" type=\"s:string\" />\r\n </s:sequence>\r\n
666
+ \ </s:complexType>\r\n <s:simpleType name=\"BrandUpdateMode\">\r\n
667
+ \ <s:restriction base=\"s:string\">\r\n <s:enumeration value=\"UpdateExisting\"
668
+ />\r\n <s:enumeration value=\"IgnoreExisting\" />\r\n <s:enumeration
669
+ value=\"ErrorOnExisting\" />\r\n </s:restriction>\r\n </s:simpleType>\r\n
670
+ \ <s:element name=\"AddUpdateBrandResponse\">\r\n <s:complexType>\r\n
671
+ \ <s:sequence>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
672
+ name=\"AddUpdateBrandResult\" type=\"tns:AddUpdateBrandResponse\" />\r\n </s:sequence>\r\n
673
+ \ </s:complexType>\r\n </s:element>\r\n <s:complexType name=\"AddUpdateBrandResponse\">\r\n
674
+ \ <s:sequence>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
675
+ name=\"Errors\" type=\"tns:ArrayOfError\" />\r\n <s:element minOccurs=\"1\"
676
+ maxOccurs=\"1\" name=\"ResponseStatus\" type=\"tns:ResponseStatus\" />\r\n
677
+ \ </s:sequence>\r\n </s:complexType>\r\n <s:element name=\"AddUpdateProduct\">\r\n
678
+ \ <s:complexType>\r\n <s:sequence>\r\n <s:element
679
+ minOccurs=\"0\" maxOccurs=\"1\" name=\"Request\" type=\"tns:AddUpdateProductRequest\"
680
+ />\r\n </s:sequence>\r\n </s:complexType>\r\n </s:element>\r\n
681
+ \ <s:complexType name=\"AddUpdateProductRequest\">\r\n <s:complexContent
682
+ mixed=\"false\">\r\n <s:extension base=\"tns:BaseRequest\">\r\n <s:sequence>\r\n
683
+ \ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"Product\"
684
+ type=\"tns:ProductInput\" />\r\n <s:element minOccurs=\"1\" maxOccurs=\"1\"
685
+ name=\"UpdateMode\" nillable=\"true\" type=\"tns:ProductUpdateMode\" />\r\n
686
+ \ </s:sequence>\r\n </s:extension>\r\n </s:complexContent>\r\n
687
+ \ </s:complexType>\r\n <s:complexType name=\"ProductInput\">\r\n
688
+ \ <s:sequence>\r\n <s:element minOccurs=\"1\" maxOccurs=\"1\"
689
+ name=\"Age\" nillable=\"true\" type=\"s:int\" />\r\n <s:element minOccurs=\"1\"
690
+ maxOccurs=\"1\" name=\"BottleSizeML\" nillable=\"true\" type=\"s:int\" />\r\n
691
+ \ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"BrandKey\" type=\"s:string\"
692
+ />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"DefaultCase\"
693
+ type=\"s:string\" />\r\n <s:element minOccurs=\"1\" maxOccurs=\"1\"
694
+ name=\"DefaultRetailUnitPrice\" nillable=\"true\" type=\"s:double\" />\r\n
695
+ \ <s:element minOccurs=\"1\" maxOccurs=\"1\" name=\"DefaultWholesaleCasePrice\"
696
+ nillable=\"true\" type=\"s:double\" />\r\n <s:element minOccurs=\"0\"
697
+ maxOccurs=\"1\" name=\"Description\" type=\"s:string\" />\r\n <s:element
698
+ minOccurs=\"0\" maxOccurs=\"1\" name=\"Flavor\" type=\"s:string\" />\r\n <s:element
699
+ minOccurs=\"0\" maxOccurs=\"1\" name=\"Style\" type=\"s:string\" />\r\n <s:element
700
+ minOccurs=\"0\" maxOccurs=\"1\" name=\"GTIN\" type=\"s:string\" />\r\n <s:element
701
+ minOccurs=\"0\" maxOccurs=\"1\" name=\"Label\" type=\"s:string\" />\r\n <s:element
702
+ minOccurs=\"0\" maxOccurs=\"1\" name=\"NABCA\" type=\"s:string\" />\r\n <s:element
703
+ minOccurs=\"1\" maxOccurs=\"1\" name=\"PercentAlcohol\" type=\"s:double\"
704
+ />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"ProductDistribution\"
705
+ type=\"s:string\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
706
+ name=\"ProductKey\" type=\"s:string\" />\r\n <s:element minOccurs=\"0\"
707
+ maxOccurs=\"1\" name=\"ProductType\" type=\"s:string\" />\r\n <s:element
708
+ minOccurs=\"0\" maxOccurs=\"1\" name=\"SCC\" type=\"s:string\" />\r\n <s:element
709
+ minOccurs=\"0\" maxOccurs=\"1\" name=\"UNIMERC\" type=\"s:string\" />\r\n
710
+ \ <s:element minOccurs=\"1\" maxOccurs=\"1\" name=\"UnitPrice\" nillable=\"true\"
711
+ type=\"s:double\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
712
+ name=\"UPC\" type=\"s:string\" />\r\n <s:element minOccurs=\"0\"
713
+ maxOccurs=\"1\" name=\"Varietal\" type=\"s:string\" />\r\n <s:element
714
+ minOccurs=\"1\" maxOccurs=\"1\" name=\"Vintage\" nillable=\"true\" type=\"s:int\"
715
+ />\r\n <s:element minOccurs=\"1\" maxOccurs=\"1\" name=\"VolumeAmount\"
716
+ type=\"s:double\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
717
+ name=\"VolumeUnit\" type=\"s:string\" />\r\n <s:element minOccurs=\"0\"
718
+ maxOccurs=\"1\" name=\"SubBrand\" type=\"s:string\" />\r\n <s:element
719
+ minOccurs=\"0\" maxOccurs=\"1\" name=\"ContainerType\" type=\"s:string\" />\r\n
720
+ \ <s:element minOccurs=\"1\" maxOccurs=\"1\" name=\"ContainersPerSellingUnit\"
721
+ nillable=\"true\" type=\"s:int\" />\r\n </s:sequence>\r\n </s:complexType>\r\n
722
+ \ <s:simpleType name=\"ProductUpdateMode\">\r\n <s:restriction
723
+ base=\"s:string\">\r\n <s:enumeration value=\"UpdateExisting\" />\r\n
724
+ \ <s:enumeration value=\"IgnoreExisting\" />\r\n <s:enumeration
725
+ value=\"ErrorOnExisting\" />\r\n </s:restriction>\r\n </s:simpleType>\r\n
726
+ \ <s:element name=\"AddUpdateProductResponse\">\r\n <s:complexType>\r\n
727
+ \ <s:sequence>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
728
+ name=\"AddUpdateProductResult\" type=\"tns:AddUpdateProductResponse\" />\r\n
729
+ \ </s:sequence>\r\n </s:complexType>\r\n </s:element>\r\n
730
+ \ <s:complexType name=\"AddUpdateProductResponse\">\r\n <s:sequence>\r\n
731
+ \ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"Errors\" type=\"tns:ArrayOfError\"
732
+ />\r\n <s:element minOccurs=\"1\" maxOccurs=\"1\" name=\"ResponseStatus\"
733
+ type=\"tns:ResponseStatus\" />\r\n </s:sequence>\r\n </s:complexType>\r\n
734
+ \ <s:element name=\"GetInventoryDetails\">\r\n <s:complexType>\r\n
735
+ \ <s:sequence>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
736
+ name=\"Request\" type=\"tns:GetInventoryDetailsRequest\" />\r\n </s:sequence>\r\n
737
+ \ </s:complexType>\r\n </s:element>\r\n <s:complexType name=\"GetInventoryDetailsRequest\">\r\n
738
+ \ <s:complexContent mixed=\"false\">\r\n <s:extension base=\"tns:BaseRequest\">\r\n
739
+ \ <s:sequence>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
740
+ name=\"BrandKey\" type=\"s:string\" />\r\n <s:element minOccurs=\"0\"
741
+ maxOccurs=\"1\" name=\"FulfillmentAccount\" type=\"s:string\" />\r\n <s:element
742
+ minOccurs=\"0\" maxOccurs=\"1\" name=\"FulfillmentLocation\" type=\"s:string\"
743
+ />\r\n <s:element minOccurs=\"1\" maxOccurs=\"1\" name=\"InventoryType\"
744
+ type=\"tns:InventoryType\" />\r\n <s:element minOccurs=\"0\"
745
+ maxOccurs=\"1\" name=\"ProductKey\" type=\"s:string\" />\r\n </s:sequence>\r\n
746
+ \ </s:extension>\r\n </s:complexContent>\r\n </s:complexType>\r\n
747
+ \ <s:simpleType name=\"InventoryType\">\r\n <s:restriction base=\"s:string\">\r\n
748
+ \ <s:enumeration value=\"Null\" />\r\n <s:enumeration value=\"All\"
749
+ />\r\n <s:enumeration value=\"Available\" />\r\n <s:enumeration
750
+ value=\"BackOrder\" />\r\n <s:enumeration value=\"Cosmetic\" />\r\n
751
+ \ <s:enumeration value=\"Custom1\" />\r\n <s:enumeration
752
+ value=\"Custom2\" />\r\n <s:enumeration value=\"Custom3\" />\r\n
753
+ \ <s:enumeration value=\"Damage\" />\r\n <s:enumeration value=\"Held\"
754
+ />\r\n <s:enumeration value=\"OnHand\" />\r\n <s:enumeration
755
+ value=\"OnOrder\" />\r\n <s:enumeration value=\"Reserved\" />\r\n
756
+ \ </s:restriction>\r\n </s:simpleType>\r\n <s:element name=\"GetInventoryDetailsResponse\">\r\n
757
+ \ <s:complexType>\r\n <s:sequence>\r\n <s:element
758
+ minOccurs=\"0\" maxOccurs=\"1\" name=\"GetInventoryDetailsResult\" type=\"tns:GetInventoryDetailsResponse\"
759
+ />\r\n </s:sequence>\r\n </s:complexType>\r\n </s:element>\r\n
760
+ \ <s:complexType name=\"GetInventoryDetailsResponse\">\r\n <s:sequence>\r\n
761
+ \ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"Errors\" type=\"tns:ArrayOfError\"
762
+ />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"InventoryLocations\"
763
+ type=\"tns:ArrayOfInventoryLocation\" />\r\n <s:element minOccurs=\"1\"
764
+ maxOccurs=\"1\" name=\"ResponseStatus\" type=\"tns:ResponseStatus\" />\r\n
765
+ \ </s:sequence>\r\n </s:complexType>\r\n <s:complexType name=\"ArrayOfInventoryLocation\">\r\n
766
+ \ <s:sequence>\r\n <s:element minOccurs=\"0\" maxOccurs=\"unbounded\"
767
+ name=\"InventoryLocation\" nillable=\"true\" type=\"tns:InventoryLocation\"
768
+ />\r\n </s:sequence>\r\n </s:complexType>\r\n <s:complexType
769
+ name=\"InventoryLocation\">\r\n <s:sequence>\r\n <s:element
770
+ minOccurs=\"0\" maxOccurs=\"1\" name=\"FulfillmentAccount\" type=\"s:string\"
771
+ />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"FulfillmentLocation\"
772
+ type=\"s:string\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
773
+ name=\"InventoryProducts\" type=\"tns:ArrayOfInventoryProduct\" />\r\n <s:element
774
+ minOccurs=\"0\" maxOccurs=\"1\" name=\"SubInventoryCode\" type=\"s:string\"
775
+ />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"Supplier\"
776
+ type=\"s:string\" />\r\n </s:sequence>\r\n </s:complexType>\r\n
777
+ \ <s:complexType name=\"ArrayOfInventoryProduct\">\r\n <s:sequence>\r\n
778
+ \ <s:element minOccurs=\"0\" maxOccurs=\"unbounded\" name=\"InventoryProduct\"
779
+ nillable=\"true\" type=\"tns:InventoryProduct\" />\r\n </s:sequence>\r\n
780
+ \ </s:complexType>\r\n <s:complexType name=\"InventoryProduct\">\r\n
781
+ \ <s:sequence>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
782
+ name=\"BrandKey\" type=\"s:string\" />\r\n <s:element minOccurs=\"0\"
783
+ maxOccurs=\"1\" name=\"DefaultCase\" type=\"s:string\" />\r\n <s:element
784
+ minOccurs=\"0\" maxOccurs=\"1\" name=\"Description\" type=\"s:string\" />\r\n
785
+ \ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"FulfillmentSku\"
786
+ type=\"s:string\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
787
+ name=\"InventoryLevels\" type=\"tns:ArrayOfInventoryLevel\" />\r\n <s:element
788
+ minOccurs=\"1\" maxOccurs=\"1\" name=\"PercentAlcohol\" type=\"s:double\"
789
+ />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"ProductKey\"
790
+ type=\"s:string\" />\r\n <s:element minOccurs=\"1\" maxOccurs=\"1\"
791
+ name=\"ProductType\" type=\"tns:ProductType\" />\r\n <s:element minOccurs=\"1\"
792
+ maxOccurs=\"1\" name=\"UnitPrice\" type=\"s:double\" />\r\n <s:element
793
+ minOccurs=\"0\" maxOccurs=\"1\" name=\"Varietal\" type=\"s:string\" />\r\n
794
+ \ <s:element minOccurs=\"1\" maxOccurs=\"1\" name=\"Vintage\" type=\"s:int\"
795
+ />\r\n <s:element minOccurs=\"1\" maxOccurs=\"1\" name=\"VolumeAmount\"
796
+ type=\"s:double\" />\r\n <s:element minOccurs=\"1\" maxOccurs=\"1\"
797
+ name=\"VolumeML\" type=\"s:double\" />\r\n <s:element minOccurs=\"1\"
798
+ maxOccurs=\"1\" name=\"VolumeUnit\" type=\"tns:VolumeUnit\" />\r\n </s:sequence>\r\n
799
+ \ </s:complexType>\r\n <s:complexType name=\"ArrayOfInventoryLevel\">\r\n
800
+ \ <s:sequence>\r\n <s:element minOccurs=\"0\" maxOccurs=\"unbounded\"
801
+ name=\"InventoryLevel\" nillable=\"true\" type=\"tns:InventoryLevel\" />\r\n
802
+ \ </s:sequence>\r\n </s:complexType>\r\n <s:complexType name=\"InventoryLevel\">\r\n
803
+ \ <s:sequence>\r\n <s:element minOccurs=\"1\" maxOccurs=\"1\"
804
+ name=\"EffectiveDate\" type=\"s:dateTime\" />\r\n <s:element minOccurs=\"1\"
805
+ maxOccurs=\"1\" name=\"InventoryType\" type=\"tns:InventoryType\" />\r\n <s:element
806
+ minOccurs=\"1\" maxOccurs=\"1\" name=\"Quantity\" type=\"s:double\" />\r\n
807
+ \ <s:element minOccurs=\"1\" maxOccurs=\"1\" name=\"SynchronizationDate\"
808
+ type=\"s:dateTime\" />\r\n </s:sequence>\r\n </s:complexType>\r\n
809
+ \ <s:simpleType name=\"ProductType\">\r\n <s:restriction base=\"s:string\">\r\n
810
+ \ <s:enumeration value=\"Null\" />\r\n <s:enumeration value=\"Ale\"
811
+ />\r\n <s:enumeration value=\"AppleCider\" />\r\n <s:enumeration
812
+ value=\"Beer\" />\r\n <s:enumeration value=\"BottleBeer\" />\r\n
813
+ \ <s:enumeration value=\"CanBeer\" />\r\n <s:enumeration
814
+ value=\"Cider\" />\r\n <s:enumeration value=\"DraughtBeer\" />\r\n
815
+ \ <s:enumeration value=\"Food\" />\r\n <s:enumeration value=\"KegBeer\"
816
+ />\r\n <s:enumeration value=\"MaltLiquor\" />\r\n <s:enumeration
817
+ value=\"MerchandiseNonTaxable\" />\r\n <s:enumeration value=\"MerchandiseTaxable\"
818
+ />\r\n <s:enumeration value=\"SparklingWine\" />\r\n <s:enumeration
819
+ value=\"Spirits\" />\r\n <s:enumeration value=\"Wine\" />\r\n <s:enumeration
820
+ value=\"WineCooler\" />\r\n </s:restriction>\r\n </s:simpleType>\r\n
821
+ \ </s:schema>\r\n </wsdl:types>\r\n <wsdl:message name=\"CheckComplianceOfSalesOrderWithAddressValidationSoapIn\">\r\n
822
+ \ <wsdl:part name=\"parameters\" element=\"tns:CheckComplianceOfSalesOrderWithAddressValidation\"
823
+ />\r\n </wsdl:message>\r\n <wsdl:message name=\"CheckComplianceOfSalesOrderWithAddressValidationSoapOut\">\r\n
824
+ \ <wsdl:part name=\"parameters\" element=\"tns:CheckComplianceOfSalesOrderWithAddressValidationResponse\"
825
+ />\r\n </wsdl:message>\r\n <wsdl:message name=\"CommitSalesOrderSoapIn\">\r\n
826
+ \ <wsdl:part name=\"parameters\" element=\"tns:CommitSalesOrder\" />\r\n
827
+ \ </wsdl:message>\r\n <wsdl:message name=\"CommitSalesOrderSoapOut\">\r\n
828
+ \ <wsdl:part name=\"parameters\" element=\"tns:CommitSalesOrderResponse\"
829
+ />\r\n </wsdl:message>\r\n <wsdl:message name=\"VoidSalesOrderSoapIn\">\r\n
830
+ \ <wsdl:part name=\"parameters\" element=\"tns:VoidSalesOrder\" />\r\n </wsdl:message>\r\n
831
+ \ <wsdl:message name=\"VoidSalesOrderSoapOut\">\r\n <wsdl:part name=\"parameters\"
832
+ element=\"tns:VoidSalesOrderResponse\" />\r\n </wsdl:message>\r\n <wsdl:message
833
+ name=\"SearchSalesOrdersSoapIn\">\r\n <wsdl:part name=\"parameters\" element=\"tns:SearchSalesOrders\"
834
+ />\r\n </wsdl:message>\r\n <wsdl:message name=\"SearchSalesOrdersSoapOut\">\r\n
835
+ \ <wsdl:part name=\"parameters\" element=\"tns:SearchSalesOrdersResponse\"
836
+ />\r\n </wsdl:message>\r\n <wsdl:message name=\"SearchMoreSalesOrdersSoapIn\">\r\n
837
+ \ <wsdl:part name=\"parameters\" element=\"tns:SearchMoreSalesOrders\" />\r\n
838
+ \ </wsdl:message>\r\n <wsdl:message name=\"SearchMoreSalesOrdersSoapOut\">\r\n
839
+ \ <wsdl:part name=\"parameters\" element=\"tns:SearchMoreSalesOrdersResponse\"
840
+ />\r\n </wsdl:message>\r\n <wsdl:message name=\"GetSalesOrderExtendedSoapIn\">\r\n
841
+ \ <wsdl:part name=\"parameters\" element=\"tns:GetSalesOrderExtended\" />\r\n
842
+ \ </wsdl:message>\r\n <wsdl:message name=\"GetSalesOrderExtendedSoapOut\">\r\n
843
+ \ <wsdl:part name=\"parameters\" element=\"tns:GetSalesOrderExtendedResponse\"
844
+ />\r\n </wsdl:message>\r\n <wsdl:message name=\"AddUpdateBrandSoapIn\">\r\n
845
+ \ <wsdl:part name=\"parameters\" element=\"tns:AddUpdateBrand\" />\r\n </wsdl:message>\r\n
846
+ \ <wsdl:message name=\"AddUpdateBrandSoapOut\">\r\n <wsdl:part name=\"parameters\"
847
+ element=\"tns:AddUpdateBrandResponse\" />\r\n </wsdl:message>\r\n <wsdl:message
848
+ name=\"AddUpdateProductSoapIn\">\r\n <wsdl:part name=\"parameters\" element=\"tns:AddUpdateProduct\"
849
+ />\r\n </wsdl:message>\r\n <wsdl:message name=\"AddUpdateProductSoapOut\">\r\n
850
+ \ <wsdl:part name=\"parameters\" element=\"tns:AddUpdateProductResponse\"
851
+ />\r\n </wsdl:message>\r\n <wsdl:message name=\"GetInventoryDetailsSoapIn\">\r\n
852
+ \ <wsdl:part name=\"parameters\" element=\"tns:GetInventoryDetails\" />\r\n
853
+ \ </wsdl:message>\r\n <wsdl:message name=\"GetInventoryDetailsSoapOut\">\r\n
854
+ \ <wsdl:part name=\"parameters\" element=\"tns:GetInventoryDetailsResponse\"
855
+ />\r\n </wsdl:message>\r\n <wsdl:portType name=\"CoreServiceSoap\">\r\n
856
+ \ <wsdl:operation name=\"CheckComplianceOfSalesOrderWithAddressValidation\">\r\n
857
+ \ <wsdl:documentation xmlns:wsdl=\"http://schemas.xmlsoap.org/wsdl/\">Checks
858
+ the compliance of the specified salesorder and includes address suggestions.</wsdl:documentation>\r\n
859
+ \ <wsdl:input message=\"tns:CheckComplianceOfSalesOrderWithAddressValidationSoapIn\"
860
+ />\r\n <wsdl:output message=\"tns:CheckComplianceOfSalesOrderWithAddressValidationSoapOut\"
861
+ />\r\n </wsdl:operation>\r\n <wsdl:operation name=\"CommitSalesOrder\">\r\n
862
+ \ <wsdl:documentation xmlns:wsdl=\"http://schemas.xmlsoap.org/wsdl/\">Commits
863
+ the specified salesorder.</wsdl:documentation>\r\n <wsdl:input message=\"tns:CommitSalesOrderSoapIn\"
864
+ />\r\n <wsdl:output message=\"tns:CommitSalesOrderSoapOut\" />\r\n </wsdl:operation>\r\n
865
+ \ <wsdl:operation name=\"VoidSalesOrder\">\r\n <wsdl:documentation
866
+ xmlns:wsdl=\"http://schemas.xmlsoap.org/wsdl/\">Voids each shipment in the
867
+ specified salesorder.</wsdl:documentation>\r\n <wsdl:input message=\"tns:VoidSalesOrderSoapIn\"
868
+ />\r\n <wsdl:output message=\"tns:VoidSalesOrderSoapOut\" />\r\n </wsdl:operation>\r\n
869
+ \ <wsdl:operation name=\"SearchSalesOrders\">\r\n <wsdl:documentation
870
+ xmlns:wsdl=\"http://schemas.xmlsoap.org/wsdl/\">Retrieves the first page of
871
+ salesorder results based on the given search parameters.</wsdl:documentation>\r\n
872
+ \ <wsdl:input message=\"tns:SearchSalesOrdersSoapIn\" />\r\n <wsdl:output
873
+ message=\"tns:SearchSalesOrdersSoapOut\" />\r\n </wsdl:operation>\r\n <wsdl:operation
874
+ name=\"SearchMoreSalesOrders\">\r\n <wsdl:documentation xmlns:wsdl=\"http://schemas.xmlsoap.org/wsdl/\">Retrieves
875
+ the next page of salesorder results based on a previous search.</wsdl:documentation>\r\n
876
+ \ <wsdl:input message=\"tns:SearchMoreSalesOrdersSoapIn\" />\r\n <wsdl:output
877
+ message=\"tns:SearchMoreSalesOrdersSoapOut\" />\r\n </wsdl:operation>\r\n
878
+ \ <wsdl:operation name=\"GetSalesOrderExtended\">\r\n <wsdl:documentation
879
+ xmlns:wsdl=\"http://schemas.xmlsoap.org/wsdl/\">Retrieves the specified salesorder
880
+ with extended third-party advertiser details (when available).</wsdl:documentation>\r\n
881
+ \ <wsdl:input message=\"tns:GetSalesOrderExtendedSoapIn\" />\r\n <wsdl:output
882
+ message=\"tns:GetSalesOrderExtendedSoapOut\" />\r\n </wsdl:operation>\r\n
883
+ \ <wsdl:operation name=\"AddUpdateBrand\">\r\n <wsdl:documentation
884
+ xmlns:wsdl=\"http://schemas.xmlsoap.org/wsdl/\">Adds the specified brand to
885
+ the system; if the specified brand already exists, it is updated.</wsdl:documentation>\r\n
886
+ \ <wsdl:input message=\"tns:AddUpdateBrandSoapIn\" />\r\n <wsdl:output
887
+ message=\"tns:AddUpdateBrandSoapOut\" />\r\n </wsdl:operation>\r\n <wsdl:operation
888
+ name=\"AddUpdateProduct\">\r\n <wsdl:documentation xmlns:wsdl=\"http://schemas.xmlsoap.org/wsdl/\">Adds
889
+ the specified product to the system; if the specified product already exists,
890
+ it is updated.</wsdl:documentation>\r\n <wsdl:input message=\"tns:AddUpdateProductSoapIn\"
891
+ />\r\n <wsdl:output message=\"tns:AddUpdateProductSoapOut\" />\r\n </wsdl:operation>\r\n
892
+ \ <wsdl:operation name=\"GetInventoryDetails\">\r\n <wsdl:documentation
893
+ xmlns:wsdl=\"http://schemas.xmlsoap.org/wsdl/\">Retrieves inventory information.</wsdl:documentation>\r\n
894
+ \ <wsdl:input message=\"tns:GetInventoryDetailsSoapIn\" />\r\n <wsdl:output
895
+ message=\"tns:GetInventoryDetailsSoapOut\" />\r\n </wsdl:operation>\r\n
896
+ \ </wsdl:portType>\r\n <wsdl:binding name=\"CoreServiceSoap\" type=\"tns:CoreServiceSoap\">\r\n
897
+ \ <soap:binding transport=\"http://schemas.xmlsoap.org/soap/http\" />\r\n
898
+ \ <wsdl:operation name=\"CheckComplianceOfSalesOrderWithAddressValidation\">\r\n
899
+ \ <soap:operation soapAction=\"http://ws.shipcompliant.com/CheckComplianceOfSalesOrderWithAddressValidation\"
900
+ style=\"document\" />\r\n <wsdl:input>\r\n <soap:body use=\"literal\"
901
+ />\r\n </wsdl:input>\r\n <wsdl:output>\r\n <soap:body use=\"literal\"
902
+ />\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
903
+ name=\"CommitSalesOrder\">\r\n <soap:operation soapAction=\"http://ws.shipcompliant.com/CommitSalesOrder\"
904
+ style=\"document\" />\r\n <wsdl:input>\r\n <soap:body use=\"literal\"
905
+ />\r\n </wsdl:input>\r\n <wsdl:output>\r\n <soap:body use=\"literal\"
906
+ />\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
907
+ name=\"VoidSalesOrder\">\r\n <soap:operation soapAction=\"http://ws.shipcompliant.com/VoidSalesOrder\"
908
+ style=\"document\" />\r\n <wsdl:input>\r\n <soap:body use=\"literal\"
909
+ />\r\n </wsdl:input>\r\n <wsdl:output>\r\n <soap:body use=\"literal\"
910
+ />\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
911
+ name=\"SearchSalesOrders\">\r\n <soap:operation soapAction=\"http://ws.shipcompliant.com/SearchSalesOrders\"
912
+ style=\"document\" />\r\n <wsdl:input>\r\n <soap:body use=\"literal\"
913
+ />\r\n </wsdl:input>\r\n <wsdl:output>\r\n <soap:body use=\"literal\"
914
+ />\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
915
+ name=\"SearchMoreSalesOrders\">\r\n <soap:operation soapAction=\"http://ws.shipcompliant.com/SearchMoreSalesOrders\"
916
+ style=\"document\" />\r\n <wsdl:input>\r\n <soap:body use=\"literal\"
917
+ />\r\n </wsdl:input>\r\n <wsdl:output>\r\n <soap:body use=\"literal\"
918
+ />\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
919
+ name=\"GetSalesOrderExtended\">\r\n <soap:operation soapAction=\"http://ws.shipcompliant.com/GetSalesOrderExtended\"
920
+ style=\"document\" />\r\n <wsdl:input>\r\n <soap:body use=\"literal\"
921
+ />\r\n </wsdl:input>\r\n <wsdl:output>\r\n <soap:body use=\"literal\"
922
+ />\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
923
+ name=\"AddUpdateBrand\">\r\n <soap:operation soapAction=\"http://ws.shipcompliant.com/AddUpdateBrand\"
924
+ style=\"document\" />\r\n <wsdl:input>\r\n <soap:body use=\"literal\"
925
+ />\r\n </wsdl:input>\r\n <wsdl:output>\r\n <soap:body use=\"literal\"
926
+ />\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
927
+ name=\"AddUpdateProduct\">\r\n <soap:operation soapAction=\"http://ws.shipcompliant.com/AddUpdateProduct\"
928
+ style=\"document\" />\r\n <wsdl:input>\r\n <soap:body use=\"literal\"
929
+ />\r\n </wsdl:input>\r\n <wsdl:output>\r\n <soap:body use=\"literal\"
930
+ />\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
931
+ name=\"GetInventoryDetails\">\r\n <soap:operation soapAction=\"http://ws.shipcompliant.com/GetInventoryDetails\"
932
+ style=\"document\" />\r\n <wsdl:input>\r\n <soap:body use=\"literal\"
933
+ />\r\n </wsdl:input>\r\n <wsdl:output>\r\n <soap:body use=\"literal\"
934
+ />\r\n </wsdl:output>\r\n </wsdl:operation>\r\n </wsdl:binding>\r\n
935
+ \ <wsdl:binding name=\"CoreServiceSoap12\" type=\"tns:CoreServiceSoap\">\r\n
936
+ \ <soap12:binding transport=\"http://schemas.xmlsoap.org/soap/http\" />\r\n
937
+ \ <wsdl:operation name=\"CheckComplianceOfSalesOrderWithAddressValidation\">\r\n
938
+ \ <soap12:operation soapAction=\"http://ws.shipcompliant.com/CheckComplianceOfSalesOrderWithAddressValidation\"
939
+ style=\"document\" />\r\n <wsdl:input>\r\n <soap12:body use=\"literal\"
940
+ />\r\n </wsdl:input>\r\n <wsdl:output>\r\n <soap12:body use=\"literal\"
941
+ />\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
942
+ name=\"CommitSalesOrder\">\r\n <soap12:operation soapAction=\"http://ws.shipcompliant.com/CommitSalesOrder\"
943
+ style=\"document\" />\r\n <wsdl:input>\r\n <soap12:body use=\"literal\"
944
+ />\r\n </wsdl:input>\r\n <wsdl:output>\r\n <soap12:body use=\"literal\"
945
+ />\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
946
+ name=\"VoidSalesOrder\">\r\n <soap12:operation soapAction=\"http://ws.shipcompliant.com/VoidSalesOrder\"
947
+ style=\"document\" />\r\n <wsdl:input>\r\n <soap12:body use=\"literal\"
948
+ />\r\n </wsdl:input>\r\n <wsdl:output>\r\n <soap12:body use=\"literal\"
949
+ />\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
950
+ name=\"SearchSalesOrders\">\r\n <soap12:operation soapAction=\"http://ws.shipcompliant.com/SearchSalesOrders\"
951
+ style=\"document\" />\r\n <wsdl:input>\r\n <soap12:body use=\"literal\"
952
+ />\r\n </wsdl:input>\r\n <wsdl:output>\r\n <soap12:body use=\"literal\"
953
+ />\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
954
+ name=\"SearchMoreSalesOrders\">\r\n <soap12:operation soapAction=\"http://ws.shipcompliant.com/SearchMoreSalesOrders\"
955
+ style=\"document\" />\r\n <wsdl:input>\r\n <soap12:body use=\"literal\"
956
+ />\r\n </wsdl:input>\r\n <wsdl:output>\r\n <soap12:body use=\"literal\"
957
+ />\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
958
+ name=\"GetSalesOrderExtended\">\r\n <soap12:operation soapAction=\"http://ws.shipcompliant.com/GetSalesOrderExtended\"
959
+ style=\"document\" />\r\n <wsdl:input>\r\n <soap12:body use=\"literal\"
960
+ />\r\n </wsdl:input>\r\n <wsdl:output>\r\n <soap12:body use=\"literal\"
961
+ />\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
962
+ name=\"AddUpdateBrand\">\r\n <soap12:operation soapAction=\"http://ws.shipcompliant.com/AddUpdateBrand\"
963
+ style=\"document\" />\r\n <wsdl:input>\r\n <soap12:body use=\"literal\"
964
+ />\r\n </wsdl:input>\r\n <wsdl:output>\r\n <soap12:body use=\"literal\"
965
+ />\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
966
+ name=\"AddUpdateProduct\">\r\n <soap12:operation soapAction=\"http://ws.shipcompliant.com/AddUpdateProduct\"
967
+ style=\"document\" />\r\n <wsdl:input>\r\n <soap12:body use=\"literal\"
968
+ />\r\n </wsdl:input>\r\n <wsdl:output>\r\n <soap12:body use=\"literal\"
969
+ />\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
970
+ name=\"GetInventoryDetails\">\r\n <soap12:operation soapAction=\"http://ws.shipcompliant.com/GetInventoryDetails\"
971
+ style=\"document\" />\r\n <wsdl:input>\r\n <soap12:body use=\"literal\"
972
+ />\r\n </wsdl:input>\r\n <wsdl:output>\r\n <soap12:body use=\"literal\"
973
+ />\r\n </wsdl:output>\r\n </wsdl:operation>\r\n </wsdl:binding>\r\n
974
+ \ <wsdl:service name=\"CoreService\">\r\n <wsdl:port name=\"CoreServiceSoap\"
975
+ binding=\"tns:CoreServiceSoap\">\r\n <soap:address location=\"https://ws-dev.shipcompliant.com/services/1.2/coreservice.asmx\"
976
+ />\r\n </wsdl:port>\r\n <wsdl:port name=\"CoreServiceSoap12\" binding=\"tns:CoreServiceSoap12\">\r\n
977
+ \ <soap12:address location=\"https://ws-dev.shipcompliant.com/services/1.2/coreservice.asmx\"
978
+ />\r\n </wsdl:port>\r\n </wsdl:service>\r\n</wsdl:definitions>"
979
+ http_version:
980
+ recorded_at: Thu, 13 Mar 2014 11:59:21 GMT
981
+ - request:
982
+ method: post
983
+ uri: https://ws-dev.shipcompliant.com/services/1.2/coreservice.asmx
984
+ body:
985
+ encoding: UTF-8
986
+ string: "<?xml version=\"1.0\" encoding=\"UTF-8\"?><env:Envelope xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\"
987
+ xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns:tns=\"http://ws.shipcompliant.com/\"
988
+ xmlns:env=\"http://schemas.xmlsoap.org/soap/envelope/\"><env:Body><tns:CheckComplianceOfSalesOrderWithAddressValidation><tns:Request><tns:AddressOption><tns:IgnoreStreetLevelErrors>true</tns:IgnoreStreetLevelErrors><tns:RejectIfAddressSuggested>false</tns:RejectIfAddressSuggested></tns:AddressOption><tns:IncludeSalesTaxRates>true</tns:IncludeSalesTaxRates><tns:PersistOption>Null</tns:PersistOption><tns:SalesOrder><tns:BillTo><tns:City>Boulder</tns:City><tns:Company>ShipCompliant</tns:Company><tns:Country>US</tns:Country><tns:DateOfBirth>1987-08-06T00:00:00+00:00</tns:DateOfBirth><tns:Email>emily@six88.com</tns:Email><tns:FirstName>Emily</tns:FirstName><tns:LastName>Sheehan</tns:LastName><tns:Phone>303-996-1626</tns:Phone><tns:State>CO</tns:State><tns:Street1>1877
989
+ Broadway St</tns:Street1><tns:Street2>SUITE 703</tns:Street2><tns:Zip1>80304</tns:Zip1></tns:BillTo><tns:CustomerKey>d23c963b</tns:CustomerKey><tns:Discounts
990
+ xsi:nil=\"true\"/><tns:FulfillmentType>Daily</tns:FulfillmentType><tns:OrderType>Internet</tns:OrderType><tns:Payments
991
+ xsi:nil=\"true\"/><tns:PurchaseDate>2014-03-12T00:00:00+00:00</tns:PurchaseDate><tns:RegisterId>cf3ee9</tns:RegisterId><tns:SalesOrderKey>1006891</tns:SalesOrderKey><tns:SalesTaxCollected>0</tns:SalesTaxCollected><tns:Shipments><tns:Shipment><tns:Discounts
992
+ xsi:nil=\"true\"/><tns:FulfillmentHouse>InHouse</tns:FulfillmentHouse><tns:Handling>0</tns:Handling><tns:InsuredAmount>0</tns:InsuredAmount><tns:LicenseRelationship>Default</tns:LicenseRelationship><tns:Packages
993
+ xsi:nil=\"true\"/><tns:ShipDate>2014-03-15T00:00:00+00:00</tns:ShipDate><tns:ShippingService>UPS</tns:ShippingService><tns:ShipmentItems><tns:ShipmentItem><tns:BrandKey>DEN</tns:BrandKey><tns:Discounts
994
+ xsi:nil=\"true\"/><tns:ProductKey>04CHRCAB75</tns:ProductKey><tns:ProductQuantity>6</tns:ProductQuantity><tns:ProductUnitPrice>76</tns:ProductUnitPrice></tns:ShipmentItem></tns:ShipmentItems><tns:ShipmentItems><tns:ShipmentItem><tns:BrandKey>DEN</tns:BrandKey><tns:Discounts
995
+ xsi:nil=\"true\"/><tns:ProductKey>TShirt</tns:ProductKey><tns:ProductQuantity>1</tns:ProductQuantity><tns:ProductUnitPrice>25.99</tns:ProductUnitPrice></tns:ShipmentItem></tns:ShipmentItems><tns:ShipmentKey>1</tns:ShipmentKey><tns:ShipmentStatus>SentToFulfillment</tns:ShipmentStatus><tns:Shipping>15</tns:Shipping><tns:ShipTo><tns:City>New
996
+ York</tns:City><tns:Company xsi:nil=\"true\"/><tns:Country>US</tns:Country><tns:County
997
+ xsi:nil=\"true\"/><tns:DateOfBirth>1987-08-06T00:00:00+00:00</tns:DateOfBirth><tns:Email>emily@six88.com</tns:Email><tns:Fax
998
+ xsi:nil=\"true\"/><tns:FirstName>Emily</tns:FirstName><tns:LastName>Sheehan</tns:LastName><tns:Phone>7209375005</tns:Phone><tns:State>NY</tns:State><tns:Street1>253
999
+ Broadway Ave</tns:Street1><tns:Street2>Floor 9</tns:Street2><tns:Zip1>10007</tns:Zip1><tns:Zip2
1000
+ xsi:nil=\"true\"/></tns:ShipTo></tns:Shipment></tns:Shipments><tns:Tags xsi:nil=\"true\"/></tns:SalesOrder><tns:Security><tns:PartnerKey><PARTNER_KEY></tns:PartnerKey><tns:Username><USERNAME></tns:Username><tns:Password><PASSWORD></tns:Password></tns:Security></tns:Request></tns:CheckComplianceOfSalesOrderWithAddressValidation></env:Body></env:Envelope>"
1001
+ headers:
1002
+ Soapaction:
1003
+ - "\"http://ws.shipcompliant.com/CheckComplianceOfSalesOrderWithAddressValidation\""
1004
+ Content-Type:
1005
+ - text/xml;charset=UTF-8
1006
+ Content-Length:
1007
+ - '3367'
1008
+ Accept-Encoding:
1009
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1010
+ Accept:
1011
+ - "*/*"
1012
+ User-Agent:
1013
+ - Ruby
1014
+ response:
1015
+ status:
1016
+ code: 200
1017
+ message: OK
1018
+ headers:
1019
+ Cache-Control:
1020
+ - private, max-age=0
1021
+ Content-Type:
1022
+ - text/xml; charset=utf-8
1023
+ Vary:
1024
+ - Accept-Encoding
1025
+ Server:
1026
+ - Microsoft-IIS/7.0
1027
+ X-Aspnet-Version:
1028
+ - 4.0.30319
1029
+ X-Powered-By:
1030
+ - ASP.NET
1031
+ Date:
1032
+ - Thu, 13 Mar 2014 11:59:22 GMT
1033
+ Content-Length:
1034
+ - '2183'
1035
+ body:
1036
+ encoding: UTF-8
1037
+ string: "<?xml version=\"1.0\" encoding=\"utf-8\"?><soap:Envelope xmlns:soap=\"http://schemas.xmlsoap.org/soap/envelope/\"
1038
+ xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\"
1039
+ xmlns:wsa=\"http://schemas.xmlsoap.org/ws/2004/03/addressing\" xmlns:wsse=\"http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd\"
1040
+ xmlns:wsu=\"http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd\"><soap:Header><wsa:Action>http://ws.shipcompliant.com/CheckComplianceOfSalesOrderWithAddressValidationResponse</wsa:Action><wsa:MessageID>uuid:3cb20151-7acd-4708-ac09-92ea6c9f7c79</wsa:MessageID><wsa:RelatesTo>uuid:8a66b3d7-c72b-4d0c-8e07-f2eb803626ef</wsa:RelatesTo><wsa:To>http://schemas.xmlsoap.org/ws/2004/03/addressing/role/anonymous</wsa:To><wsse:Security><wsu:Timestamp
1041
+ wsu:Id=\"Timestamp-7d7c444e-56d1-4100-be35-a98969f8a510\"><wsu:Created>2014-03-13T11:59:22Z</wsu:Created><wsu:Expires>2014-03-13T12:04:22Z</wsu:Expires></wsu:Timestamp></wsse:Security></soap:Header><soap:Body><CheckComplianceOfSalesOrderWithAddressValidationResponse
1042
+ xmlns=\"http://ws.shipcompliant.com/\"><CheckComplianceOfSalesOrderWithAddressValidationResult><ResponseStatus>Success</ResponseStatus><SalesOrder><IsCompliant>true</IsCompliant><Key>1006891</Key><SalesTaxRates><RecommendedSalesTaxDue>44.1</RecommendedSalesTaxDue><ShipmentSalesTaxRates><ShipmentSalesTaxRate
1043
+ ShipmentKey=\"1\"><FreightSalesTaxRate SalesTaxDue=\"1.33125\" SalesTaxRate=\"8.875\"
1044
+ /><ProductSalesTaxRates><ProductSalesTaxRate BrandKey=\"DEN\" ProductKey=\"04CHRCAB75\"
1045
+ SalesTaxDue=\"40.47000\" SalesTaxRate=\"8.875\" /><ProductSalesTaxRate BrandKey=\"DEN\"
1046
+ ProductKey=\"TShirt\" SalesTaxDue=\"2.30661\" SalesTaxRate=\"8.875\" /></ProductSalesTaxRates></ShipmentSalesTaxRate></ShipmentSalesTaxRates></SalesTaxRates><Shipments><ShipmentComplianceResponse><IsCompliant>true</IsCompliant><Key>1</Key><Rules><RuleComplianceResponse><ComplianceDescription>No
1047
+ prohibited products in shipment.</ComplianceDescription><IsCompliant>true</IsCompliant><LicenseRelationship>SupplierToConsumer</LicenseRelationship><RuleDescription>Some
1048
+ Products are always non-compliant.</RuleDescription><RuleType>ValidProductsRequired</RuleType></RuleComplianceResponse><RuleComplianceResponse><ComplianceDescription>You
1049
+ have 1 current license in this region for the time of this shipment.</ComplianceDescription><IsCompliant>true</IsCompliant><LicenseRelationship>SupplierToConsumer</LicenseRelationship><RuleDescription>A
1050
+ license is required for shipping offsite sales and must be renewed every 1
1051
+ year. The cost of this license is $125.00.</RuleDescription><RuleType>DirectShippingLicenseRequired</RuleType></RuleComplianceResponse><RuleComplianceResponse><ComplianceDescription>Rule
1052
+ has been acknowledged.</ComplianceDescription><IsCompliant>true</IsCompliant><LicenseRelationship>SupplierToConsumer</LicenseRelationship><RuleDescription>Shipments
1053
+ to this region require an excise tax of $.30 per 1 gallon on offsite sales
1054
+ of wine less than or equal to 24% alcohol due within 20 days after every month.
1055
+ For a summary of the taxes in the state, click here.</RuleDescription><RuleType>TaxRequired</RuleType></RuleComplianceResponse><RuleComplianceResponse><ComplianceDescription>Rule
1056
+ has been acknowledged.</ComplianceDescription><IsCompliant>true</IsCompliant><LicenseRelationship>SupplierToConsumer</LicenseRelationship><RuleDescription>Shipments
1057
+ to this region require sales tax for offsite sales shipments. For a summary
1058
+ of the taxes in the state, click here.</RuleDescription><RuleType>TaxRequired</RuleType></RuleComplianceResponse><RuleComplianceResponse><ComplianceDescription>All
1059
+ products within this shipment belong to self-produced brands.</ComplianceDescription><IsCompliant>true</IsCompliant><LicenseRelationship>SupplierToConsumer</LicenseRelationship><RuleDescription>Only
1060
+ wines of your own production are allowed to be shipped to this region. Note:
1061
+ The license holder must produce the wine being shipped..</RuleDescription><RuleType>WinesNotOfOwnProductionProhibited</RuleType></RuleComplianceResponse><RuleComplianceResponse><ComplianceDescription>You
1062
+ have shipped 1.00 cases to this individual between 1/1/2014 and 12/31/2014
1063
+ and thus are under the customer aggregate volume limit of 36 cases per calendar
1064
+ year.</ComplianceDescription><IsCompliant>true</IsCompliant><LicenseRelationship>SupplierToConsumer</LicenseRelationship><RuleDescription>Shipments
1065
+ to this region have a per customer volume limit of 36 cases per individual
1066
+ per calendar year. The volume will be calculated from combined onsite and
1067
+ offsite sales.</RuleDescription><RuleType>CustomerAggregateVolumeLimit</RuleType><CustomerAggregateVolumeLimitDetail><CustomerType>Individual</CustomerType><TimeFrameCount>1</TimeFrameCount><TimeFrameType>Calendar</TimeFrameType><TimeFrameUnit>Years</TimeFrameUnit><UnitOfMeasure>Case</UnitOfMeasure><VolumeCount>36</VolumeCount></CustomerAggregateVolumeLimitDetail></RuleComplianceResponse></Rules></ShipmentComplianceResponse></Shipments></SalesOrder><AddressValidationResult>ValidatedWithStreetLevelNormalization</AddressValidationResult><SuggestedAddress><City>New
1068
+ York</City><County>New York</County><Details><CityAbbreviation>New York</CityAbbreviation><CongressionalDistrict>10</CongressionalDistrict><CountyFips>36061</CountyFips><TimeZone>Eastern
1069
+ Time</TimeZone><TimeZoneCode>05</TimeZoneCode></Details><Parts><Company /><MailBoxName
1070
+ /><MailBoxNumber /><PostDirection /><PreDirection /><StreetName>Broadway</StreetName><StreetNumber>253</StreetNumber><StreetSuffix
1071
+ /><SuiteName>Fl</SuiteName><SuiteNumber>9</SuiteNumber></Parts><State>NY</State><Street1>253
1072
+ Broadway</Street1><Street2>Fl 9</Street2><Zip1>10007</Zip1><Zip2>2326</Zip2></SuggestedAddress></CheckComplianceOfSalesOrderWithAddressValidationResult></CheckComplianceOfSalesOrderWithAddressValidationResponse></soap:Body></soap:Envelope>"
1073
+ http_version:
1074
+ recorded_at: Thu, 13 Mar 2014 11:59:23 GMT
1075
+ recorded_with: VCR 2.5.0