docs/OrderFormat.md in ultracart_api-3.10.220 vs docs/OrderFormat.md in ultracart_api-4.0.32.rc
- old
+ new
@@ -1,23 +1,48 @@
-# UltracartClient::OrderFormat
-
-## Properties
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**context** | **String** | The context to generate the order view for. | [optional]
-**dont_link_email_to_search** | **BOOLEAN** | True to not link the email address to the order search | [optional]
-**email_as_link** | **BOOLEAN** | True to make the email address a clickable mailto link | [optional]
-**filter_distribution_center_oid** | **Integer** | Specify a distribution center oid to filter the items displayed to that particular distribution center. | [optional]
-**filter_to_items_in_container_oid** | **Integer** | The container oid to filter items to. | [optional]
-**format** | **String** | The desired format. | [optional]
-**hide_bill_to_address** | **BOOLEAN** | True to ide the bill to address | [optional]
-**hide_price_information** | **BOOLEAN** | True to hide price information | [optional]
-**link_file_attachments** | **BOOLEAN** | True to link file attachments for download | [optional]
-**show_contact_info** | **BOOLEAN** | True to show contact information | [optional]
-**show_in_merchant_currency** | **BOOLEAN** | True to show the order in the merchant currency | [optional]
-**show_internal_information** | **BOOLEAN** | True to show internal information about the order | [optional]
-**show_merchant_notes** | **BOOLEAN** | True to show merchant notes | [optional]
-**show_non_sensitive_payment_info** | **BOOLEAN** | True to show non-sensitive payment information | [optional]
-**show_payment_info** | **BOOLEAN** | True to show payment information | [optional]
-**translate** | **BOOLEAN** | True to translate the order into the native language of the customer | [optional]
-
-
+# UltracartClient::OrderFormat
+
+## Properties
+
+| Name | Type | Description | Notes |
+| ---- | ---- | ----------- | ----- |
+| **context** | **String** | The context to generate the order view for. | [optional] |
+| **dont_link_email_to_search** | **Boolean** | True to not link the email address to the order search | [optional] |
+| **email_as_link** | **Boolean** | True to make the email address a clickable mailto link | [optional] |
+| **filter_distribution_center_oid** | **Integer** | Specify a distribution center oid to filter the items displayed to that particular distribution center. | [optional] |
+| **filter_to_items_in_container_oid** | **Integer** | The container oid to filter items to. | [optional] |
+| **format** | **String** | The desired format. | [optional] |
+| **hide_bill_to_address** | **Boolean** | True to ide the bill to address | [optional] |
+| **hide_price_information** | **Boolean** | True to hide price information | [optional] |
+| **link_file_attachments** | **Boolean** | True to link file attachments for download | [optional] |
+| **show_contact_info** | **Boolean** | True to show contact information | [optional] |
+| **show_in_merchant_currency** | **Boolean** | True to show the order in the merchant currency | [optional] |
+| **show_internal_information** | **Boolean** | True to show internal information about the order | [optional] |
+| **show_merchant_notes** | **Boolean** | True to show merchant notes | [optional] |
+| **show_non_sensitive_payment_info** | **Boolean** | True to show non-sensitive payment information | [optional] |
+| **show_payment_info** | **Boolean** | True to show payment information | [optional] |
+| **translate** | **Boolean** | True to translate the order into the native language of the customer | [optional] |
+
+## Example
+
+```ruby
+require 'ultracart_api'
+
+instance = UltracartClient::OrderFormat.new(
+ context: null,
+ dont_link_email_to_search: null,
+ email_as_link: null,
+ filter_distribution_center_oid: null,
+ filter_to_items_in_container_oid: null,
+ format: null,
+ hide_bill_to_address: null,
+ hide_price_information: null,
+ link_file_attachments: null,
+ show_contact_info: null,
+ show_in_merchant_currency: null,
+ show_internal_information: null,
+ show_merchant_notes: null,
+ show_non_sensitive_payment_info: null,
+ show_payment_info: null,
+ translate: null
+)
+```
+