docs/CartSettingsPayment.md in ultracart_api-3.10.220 vs docs/CartSettingsPayment.md in ultracart_api-4.0.32.rc
- old
+ new
@@ -1,20 +1,42 @@
-# UltracartClient::CartSettingsPayment
-
-## Properties
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**amazon** | [**CartSettingsPaymentAmazon**](CartSettingsPaymentAmazon.md) | | [optional]
-**credit_card** | [**CartSettingsPaymentCreditCard**](CartSettingsPaymentCreditCard.md) | | [optional]
-**need_payment** | **BOOLEAN** | True if this card requires a payment from the customer | [optional]
-**paypal** | [**CartSettingsPaymentPayPal**](CartSettingsPaymentPayPal.md) | | [optional]
-**supports_amazon** | **BOOLEAN** | True if Amazon payments are available on this order | [optional]
-**supports_check** | **BOOLEAN** | True if check payments are available on this order | [optional]
-**supports_cod** | **BOOLEAN** | True if COD payments are available on this order | [optional]
-**supports_credit_card** | **BOOLEAN** | True if credit card payments are available on this order | [optional]
-**supports_money_order** | **BOOLEAN** | True if money order payments are available on this order | [optional]
-**supports_paypal** | **BOOLEAN** | True if PayPal payments are available on this order | [optional]
-**supports_purchase_order** | **BOOLEAN** | True if purchase order payments are available on this order | [optional]
-**supports_quote_request** | **BOOLEAN** | True if quote requests payments are available on this order | [optional]
-**supports_wire_transfer** | **BOOLEAN** | True if wire transfer payments are available on this order | [optional]
-
-
+# UltracartClient::CartSettingsPayment
+
+## Properties
+
+| Name | Type | Description | Notes |
+| ---- | ---- | ----------- | ----- |
+| **amazon** | [**CartSettingsPaymentAmazon**](CartSettingsPaymentAmazon.md) | | [optional] |
+| **credit_card** | [**CartSettingsPaymentCreditCard**](CartSettingsPaymentCreditCard.md) | | [optional] |
+| **need_payment** | **Boolean** | True if this card requires a payment from the customer | [optional] |
+| **paypal** | [**CartSettingsPaymentPayPal**](CartSettingsPaymentPayPal.md) | | [optional] |
+| **supports_amazon** | **Boolean** | True if Amazon payments are available on this order | [optional] |
+| **supports_check** | **Boolean** | True if check payments are available on this order | [optional] |
+| **supports_cod** | **Boolean** | True if COD payments are available on this order | [optional] |
+| **supports_credit_card** | **Boolean** | True if credit card payments are available on this order | [optional] |
+| **supports_money_order** | **Boolean** | True if money order payments are available on this order | [optional] |
+| **supports_paypal** | **Boolean** | True if PayPal payments are available on this order | [optional] |
+| **supports_purchase_order** | **Boolean** | True if purchase order payments are available on this order | [optional] |
+| **supports_quote_request** | **Boolean** | True if quote requests payments are available on this order | [optional] |
+| **supports_wire_transfer** | **Boolean** | True if wire transfer payments are available on this order | [optional] |
+
+## Example
+
+```ruby
+require 'ultracart_api'
+
+instance = UltracartClient::CartSettingsPayment.new(
+ amazon: null,
+ credit_card: null,
+ need_payment: null,
+ paypal: null,
+ supports_amazon: null,
+ supports_check: null,
+ supports_cod: null,
+ supports_credit_card: null,
+ supports_money_order: null,
+ supports_paypal: null,
+ supports_purchase_order: null,
+ supports_quote_request: null,
+ supports_wire_transfer: null
+)
+```
+