docs/ItemReporting.md in ultracart_api-3.10.220 vs docs/ItemReporting.md in ultracart_api-4.0.32.rc
- old
+ new
@@ -1,9 +1,20 @@
-# UltracartClient::ItemReporting
-
-## Properties
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**report_as_upsell** | **BOOLEAN** | Report as an upsell | [optional]
-**report_pickable_quantities** | **Array<Integer>** | Report pickable quantities (deprecated) | [optional]
-
-
+# UltracartClient::ItemReporting
+
+## Properties
+
+| Name | Type | Description | Notes |
+| ---- | ---- | ----------- | ----- |
+| **report_as_upsell** | **Boolean** | Report as an upsell | [optional] |
+| **report_pickable_quantities** | **Array<Integer>** | Report pickable quantities | [optional] |
+
+## Example
+
+```ruby
+require 'ultracart_api'
+
+instance = UltracartClient::ItemReporting.new(
+ report_as_upsell: null,
+ report_pickable_quantities: null
+)
+```
+