docs/ItemEmailNotifications.md in ultracart_api-3.10.220 vs docs/ItemEmailNotifications.md in ultracart_api-4.0.32.rc

- old
+ new

@@ -1,9 +1,20 @@ -# UltracartClient::ItemEmailNotifications - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**skip_receipt** | **BOOLEAN** | Skip receipt email to customer | [optional] -**skip_shipment_notification** | **BOOLEAN** | Skip shipment notification to customer | [optional] - - +# UltracartClient::ItemEmailNotifications + +## Properties + +| Name | Type | Description | Notes | +| ---- | ---- | ----------- | ----- | +| **skip_receipt** | **Boolean** | Skip receipt email to customer | [optional] | +| **skip_shipment_notification** | **Boolean** | Skip shipment notification to customer | [optional] | + +## Example + +```ruby +require 'ultracart_api' + +instance = UltracartClient::ItemEmailNotifications.new( + skip_receipt: null, + skip_shipment_notification: null +) +``` +