docs/CartSettingsShippingCalendar.md in ultracart_api-3.10.220 vs docs/CartSettingsShippingCalendar.md in ultracart_api-4.0.32.rc
- old
+ new
@@ -1,12 +1,26 @@
-# UltracartClient::CartSettingsShippingCalendar
-
-## Properties
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**blackouts** | **Array<String>** | Specified dates that are blacked out on the calendar in ISO8601 format | [optional]
-**days_of_week** | **Array<BOOLEAN>** | Days of week that should be enabled on the calendar (0 - Sunday through 6 - Saturday) | [optional]
-**earliest** | **String** | The earliest date that can be selected on the calendar | [optional]
-**require** | **BOOLEAN** | True if the customer is required to select a date | [optional]
-**show** | **BOOLEAN** | True if this calendar should be shown to the customer | [optional]
-
-
+# UltracartClient::CartSettingsShippingCalendar
+
+## Properties
+
+| Name | Type | Description | Notes |
+| ---- | ---- | ----------- | ----- |
+| **blackouts** | **Array<String>** | Specified dates that are blacked out on the calendar in ISO8601 format | [optional] |
+| **days_of_week** | **Array<Boolean>** | Days of week that should be enabled on the calendar (0 - Sunday through 6 - Saturday) | [optional] |
+| **earliest** | **String** | The earliest date that can be selected on the calendar | [optional] |
+| **require** | **Boolean** | True if the customer is required to select a date | [optional] |
+| **show** | **Boolean** | True if this calendar should be shown to the customer | [optional] |
+
+## Example
+
+```ruby
+require 'ultracart_api'
+
+instance = UltracartClient::CartSettingsShippingCalendar.new(
+ blackouts: null,
+ days_of_week: null,
+ earliest: null,
+ require: null,
+ show: null
+)
+```
+