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

- old
+ new

@@ -1,25 +1,48 @@ -# UltracartClient::OrderBilling - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**address1** | **String** | Address line 1 | [optional] -**address2** | **String** | Address line 2 | [optional] -**cc_emails** | **Array<String>** | CC emails. Multiple allowed, but total length of all emails can not exceed 100 characters. | [optional] -**cell_phone** | **String** | Cell phone | [optional] -**cell_phone_e164** | **String** | Cell phone (E164 format) | [optional] -**city** | **String** | City | [optional] -**company** | **String** | Company | [optional] -**country_code** | **String** | ISO-3166 two letter country code | [optional] -**day_phone** | **String** | Day time phone | [optional] -**day_phone_e164** | **String** | Day time phone (E164 format) | [optional] -**email** | **String** | Email | [optional] -**evening_phone** | **String** | Evening phone | [optional] -**evening_phone_e164** | **String** | Evening phone (E164 format) | [optional] -**first_name** | **String** | First name | [optional] -**last_name** | **String** | Last name | [optional] -**postal_code** | **String** | Postal code | [optional] -**state_region** | **String** | State for United States otherwise region or province for other countries | [optional] -**title** | **String** | Title | [optional] - - +# UltracartClient::OrderBilling + +## Properties + +| Name | Type | Description | Notes | +| ---- | ---- | ----------- | ----- | +| **address1** | **String** | Address line 1 | [optional] | +| **address2** | **String** | Address line 2 | [optional] | +| **cc_emails** | **Array<String>** | CC emails. Multiple allowed, but total length of all emails can not exceed 100 characters. | [optional] | +| **city** | **String** | City | [optional] | +| **company** | **String** | Company | [optional] | +| **country_code** | **String** | ISO-3166 two letter country code | [optional] | +| **day_phone** | **String** | Day time phone | [optional] | +| **day_phone_e164** | **String** | Day time phone (E164 format) | [optional] | +| **email** | **String** | Email | [optional] | +| **evening_phone** | **String** | Evening phone | [optional] | +| **evening_phone_e164** | **String** | Evening phone (E164 format) | [optional] | +| **first_name** | **String** | First name | [optional] | +| **last_name** | **String** | Last name | [optional] | +| **postal_code** | **String** | Postal code | [optional] | +| **state_region** | **String** | State for United States otherwise region or province for other countries | [optional] | +| **title** | **String** | Title | [optional] | + +## Example + +```ruby +require 'ultracart_api' + +instance = UltracartClient::OrderBilling.new( + address1: null, + address2: null, + cc_emails: null, + city: null, + company: null, + country_code: null, + day_phone: null, + day_phone_e164: null, + email: null, + evening_phone: null, + evening_phone_e164: null, + first_name: null, + last_name: null, + postal_code: null, + state_region: null, + title: null +) +``` +