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

- old
+ new

@@ -1,11 +1,24 @@ -# UltracartClient::DataTablesServerSideResponse - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**data** | [**Array<Customer>**](Customer.md) | | [optional] -**draw** | **Integer** | | [optional] -**records_filtered** | **Integer** | | [optional] -**records_total** | **Integer** | | [optional] - - +# UltracartClient::DataTablesServerSideResponse + +## Properties + +| Name | Type | Description | Notes | +| ---- | ---- | ----------- | ----- | +| **data** | [**Array<Customer>**](Customer.md) | | [optional] | +| **draw** | **Integer** | | [optional] | +| **records_filtered** | **Integer** | | [optional] | +| **records_total** | **Integer** | | [optional] | + +## Example + +```ruby +require 'ultracart_api' + +instance = UltracartClient::DataTablesServerSideResponse.new( + data: null, + draw: null, + records_filtered: null, + records_total: null +) +``` +