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

- old
+ new

@@ -1,9 +1,20 @@ -# UltracartClient::HTTPHeader - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**name** | **String** | Name of the HTTP header | [optional] -**value** | **String** | Value of the HTTP header | [optional] - - +# UltracartClient::HTTPHeader + +## Properties + +| Name | Type | Description | Notes | +| ---- | ---- | ----------- | ----- | +| **name** | **String** | Name of the HTTP header | [optional] | +| **value** | **String** | Value of the HTTP header | [optional] | + +## Example + +```ruby +require 'ultracart_api' + +instance = UltracartClient::HTTPHeader.new( + name: null, + value: null +) +``` +