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

- old
+ new

@@ -1,17 +1,36 @@ -# UltracartClient::TaxProviderUltraCartState - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**enabled** | **BOOLEAN** | True if this state taxes are managed by UltraCart | [optional] -**exempt_digital_items** | **BOOLEAN** | True if digital items are exempt from sales tax in this state. | [optional] -**exempt_physical_items** | **BOOLEAN** | True if physical items are exempt from sales tax in this state. | [optional] -**exempt_service_items** | **BOOLEAN** | True if service items are exempt from sales tax in this state. | [optional] -**state_code** | **String** | State Code (2 digits) | [optional] -**state_name** | **String** | Fully spelled out state name | [optional] -**tax_gift_charge** | **BOOLEAN** | True if gift charges should be taxed in this state. | [optional] -**tax_gift_wrap** | **BOOLEAN** | True if gift wrap should be taxed in this state. | [optional] -**tax_rate_formatted** | **String** | State tax rate formatted for display | [optional] -**tax_shipping** | **BOOLEAN** | True if shipping should be taxed in this state. | [optional] - - +# UltracartClient::TaxProviderUltraCartState + +## Properties + +| Name | Type | Description | Notes | +| ---- | ---- | ----------- | ----- | +| **enabled** | **Boolean** | True if this state taxes are managed by UltraCart | [optional] | +| **exempt_digital_items** | **Boolean** | True if digital items are exempt from sales tax in this state. | [optional] | +| **exempt_physical_items** | **Boolean** | True if physical items are exempt from sales tax in this state. | [optional] | +| **exempt_service_items** | **Boolean** | True if service items are exempt from sales tax in this state. | [optional] | +| **state_code** | **String** | State Code (2 digits) | [optional] | +| **state_name** | **String** | Fully spelled out state name | [optional] | +| **tax_gift_charge** | **Boolean** | True if gift charges should be taxed in this state. | [optional] | +| **tax_gift_wrap** | **Boolean** | True if gift wrap should be taxed in this state. | [optional] | +| **tax_rate_formatted** | **String** | State tax rate formatted for display | [optional] | +| **tax_shipping** | **Boolean** | True if shipping should be taxed in this state. | [optional] | + +## Example + +```ruby +require 'ultracart_api' + +instance = UltracartClient::TaxProviderUltraCartState.new( + enabled: null, + exempt_digital_items: null, + exempt_physical_items: null, + exempt_service_items: null, + state_code: null, + state_name: null, + tax_gift_charge: null, + tax_gift_wrap: null, + tax_rate_formatted: null, + tax_shipping: null +) +``` +