docs/OrderEdi.md in ultracart_api-3.10.220 vs docs/OrderEdi.md in ultracart_api-4.0.32.rc
- old
+ new
@@ -1,11 +1,24 @@
-# UltracartClient::OrderEdi
-
-## Properties
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**bill_to_edi_code** | **String** | Billing address identification code from the EDI order. Typically DUNS or DUNS+4 | [optional]
-**edi_department** | **String** | Department number associated with this EDI order | [optional]
-**edi_internal_vendor_number** | **String** | Internal vendor number associated with this EDI order | [optional]
-**ship_to_edi_code** | **String** | Shipping address identification code from the EDI order. Typically DUNS or DUNS+4 | [optional]
-
-
+# UltracartClient::OrderEdi
+
+## Properties
+
+| Name | Type | Description | Notes |
+| ---- | ---- | ----------- | ----- |
+| **bill_to_edi_code** | **String** | Billing address identification code from the EDI order. Typically DUNS or DUNS+4 | [optional] |
+| **edi_department** | **String** | Department number associated with this EDI order | [optional] |
+| **edi_internal_vendor_number** | **String** | Internal vendor number associated with this EDI order | [optional] |
+| **ship_to_edi_code** | **String** | Shipping address identification code from the EDI order. Typically DUNS or DUNS+4 | [optional] |
+
+## Example
+
+```ruby
+require 'ultracart_api'
+
+instance = UltracartClient::OrderEdi.new(
+ bill_to_edi_code: null,
+ edi_department: null,
+ edi_internal_vendor_number: null,
+ ship_to_edi_code: null
+)
+```
+