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

- old
+ new

@@ -1,14 +1,30 @@ -# UltracartClient::ChannelPartnerImportResponse - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**error** | [**Error**](Error.md) | | [optional] -**import_errors** | **Array<String>** | Array of errors if errors occurred | [optional] -**import_warnings** | **Array<String>** | Array of warnings if warnings occurred | [optional] -**metadata** | [**ResponseMetadata**](ResponseMetadata.md) | | [optional] -**order_id** | **String** | The order id of the newly imported order if successful | [optional] -**success** | **BOOLEAN** | Indicates if API call was successful | [optional] -**warning** | [**Warning**](Warning.md) | | [optional] - - +# UltracartClient::ChannelPartnerImportResponse + +## Properties + +| Name | Type | Description | Notes | +| ---- | ---- | ----------- | ----- | +| **error** | [**Error**](Error.md) | | [optional] | +| **import_errors** | **Array<String>** | Array of errors if errors occurred | [optional] | +| **import_warnings** | **Array<String>** | Array of warnings if warnings occurred | [optional] | +| **metadata** | [**ResponseMetadata**](ResponseMetadata.md) | | [optional] | +| **order_id** | **String** | The order id of the newly imported order if successful | [optional] | +| **success** | **Boolean** | Indicates if API call was successful | [optional] | +| **warning** | [**Warning**](Warning.md) | | [optional] | + +## Example + +```ruby +require 'ultracart_api' + +instance = UltracartClient::ChannelPartnerImportResponse.new( + error: null, + import_errors: null, + import_warnings: null, + metadata: null, + order_id: null, + success: null, + warning: null +) +``` +