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

- old
+ new

@@ -1,13 +1,28 @@ -# UltracartClient::CartBuysafe - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**bond_available** | **BOOLEAN** | True if buySAFE is willing to bond the order | [optional] -**bond_cost** | [**Currency**](Currency.md) | | [optional] -**bond_free** | **BOOLEAN** | True if the bond is free (merchant paying for it) | [optional] -**bond_wanted** | **BOOLEAN** | True if the customer wants the bond | [optional] -**cart_display_text** | **String** | Recommend text to display to the customer | [optional] -**cart_display_url** | **String** | URL associated with the recommended text | [optional] - - +# UltracartClient::CartBuysafe + +## Properties + +| Name | Type | Description | Notes | +| ---- | ---- | ----------- | ----- | +| **bond_available** | **Boolean** | True if buySAFE is willing to bond the order | [optional] | +| **bond_cost** | [**Currency**](Currency.md) | | [optional] | +| **bond_free** | **Boolean** | True if the bond is free (merchant paying for it) | [optional] | +| **bond_wanted** | **Boolean** | True if the customer wants the bond | [optional] | +| **cart_display_text** | **String** | Recommend text to display to the customer | [optional] | +| **cart_display_url** | **String** | URL associated with the recommended text | [optional] | + +## Example + +```ruby +require 'ultracart_api' + +instance = UltracartClient::CartBuysafe.new( + bond_available: null, + bond_cost: null, + bond_free: null, + bond_wanted: null, + cart_display_text: null, + cart_display_url: null +) +``` +