docs/ItemShippingDestinationRestriction.md in ultracart_api-3.10.220 vs docs/ItemShippingDestinationRestriction.md in ultracart_api-4.0.32.rc
- old
+ new
@@ -1,10 +1,22 @@
-# UltracartClient::ItemShippingDestinationRestriction
-
-## Properties
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**country_code** | **String** | Country code (ISO-3166 two letter) | [optional]
-**state** | **String** | State | [optional]
-**validity** | **String** | Validity | [optional]
-
-
+# UltracartClient::ItemShippingDestinationRestriction
+
+## Properties
+
+| Name | Type | Description | Notes |
+| ---- | ---- | ----------- | ----- |
+| **country_code** | **String** | Country code (ISO-3166 two letter) | [optional] |
+| **state** | **String** | State | [optional] |
+| **validity** | **String** | Validity | [optional] |
+
+## Example
+
+```ruby
+require 'ultracart_api'
+
+instance = UltracartClient::ItemShippingDestinationRestriction.new(
+ country_code: null,
+ state: null,
+ validity: null
+)
+```
+