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

- old
+ new

@@ -1,11 +1,24 @@ -# UltracartClient::CustomerAffiliate - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**affiliate_oid** | **Integer** | Affiliate object identifier | [optional] -**email** | **String** | email | [optional] -**first_name** | **String** | First name | [optional] -**last_name** | **String** | Last name | [optional] - - +# UltracartClient::CustomerAffiliate + +## Properties + +| Name | Type | Description | Notes | +| ---- | ---- | ----------- | ----- | +| **affiliate_oid** | **Integer** | Affiliate object identifier | [optional] | +| **email** | **String** | email | [optional] | +| **first_name** | **String** | First name | [optional] | +| **last_name** | **String** | Last name | [optional] | + +## Example + +```ruby +require 'ultracart_api' + +instance = UltracartClient::CustomerAffiliate.new( + affiliate_oid: null, + email: null, + first_name: null, + last_name: null +) +``` +