docs/OrderBuysafe.md in ultracart_api-3.10.220 vs docs/OrderBuysafe.md in ultracart_api-4.0.32.rc
- old
+ new
@@ -1,13 +1,28 @@
-# UltracartClient::OrderBuysafe
-
-## Properties
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**buysafe_bond_available** | **BOOLEAN** | True if a buySAFE bond was available for purchase on this order | [optional]
-**buysafe_bond_cost** | [**Currency**](Currency.md) | | [optional]
-**buysafe_bond_free** | **BOOLEAN** | True if the buySAFE bond was free for this order | [optional]
-**buysafe_bond_refunded** | [**Currency**](Currency.md) | | [optional]
-**buysafe_bond_wanted** | **BOOLEAN** | True if the buySAFE bond was wanted by the customer | [optional]
-**buysafe_shopping_cart_id** | **String** | Shopping cart ID associated with the buySAFE bond | [optional]
-
-
+# UltracartClient::OrderBuysafe
+
+## Properties
+
+| Name | Type | Description | Notes |
+| ---- | ---- | ----------- | ----- |
+| **buysafe_bond_available** | **Boolean** | True if a buySAFE bond was available for purchase on this order | [optional] |
+| **buysafe_bond_cost** | [**Currency**](Currency.md) | | [optional] |
+| **buysafe_bond_free** | **Boolean** | True if the buySAFE bond was free for this order | [optional] |
+| **buysafe_bond_refunded** | [**Currency**](Currency.md) | | [optional] |
+| **buysafe_bond_wanted** | **Boolean** | True if the buySAFE bond was wanted by the customer | [optional] |
+| **buysafe_shopping_cart_id** | **String** | Shopping cart ID associated with the buySAFE bond | [optional] |
+
+## Example
+
+```ruby
+require 'ultracart_api'
+
+instance = UltracartClient::OrderBuysafe.new(
+ buysafe_bond_available: null,
+ buysafe_bond_cost: null,
+ buysafe_bond_free: null,
+ buysafe_bond_refunded: null,
+ buysafe_bond_wanted: null,
+ buysafe_shopping_cart_id: null
+)
+```
+