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

- old
+ new

@@ -1,18 +1,38 @@ -# UltracartClient::OrderChannelPartner - -## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**auto_approve_purchase_order** | **BOOLEAN** | If true, any purchase order submitted is automatically approved | [optional] -**channel_partner_code** | **String** | The code of the channel partner | [optional] -**channel_partner_data** | **String** | Additional data provided by the channel partner, read-only | [optional] -**channel_partner_oid** | **Integer** | Channel partner object identifier, read-only and available on existing channel orders only. | [optional] -**channel_partner_order_id** | **String** | The order ID assigned by the channel partner for this order. | [optional] -**ignore_invalid_shipping_method** | **BOOLEAN** | Set to true to ignore invalid shipping method being specified. Only applicable on inserting orders. | [optional] -**no_realtime_payment_processing** | **BOOLEAN** | Indicates this order should be placed in Account Receivable for later payment processing | [optional] -**skip_payment_processing** | **BOOLEAN** | Indicates this order was already paid for via a channel purchase and no payment collection should be attempted | [optional] -**store_completed** | **BOOLEAN** | Instructs UltraCart to skip shipping department and mark this order as fully complete. This flag defaults to true. Set this flag to false to shipped product for this order. | [optional] -**store_if_payment_declines** | **BOOLEAN** | If true, any failed payment will place the order in Accounts Receivable rather than rejecting it. | [optional] -**treat_warnings_as_errors** | **BOOLEAN** | Any warnings are raised as errors and halt the import of the order | [optional] - - +# UltracartClient::OrderChannelPartner + +## Properties + +| Name | Type | Description | Notes | +| ---- | ---- | ----------- | ----- | +| **auto_approve_purchase_order** | **Boolean** | If true, any purchase order submitted is automatically approved | [optional] | +| **channel_partner_code** | **String** | The code of the channel partner | [optional] | +| **channel_partner_data** | **String** | Additional data provided by the channel partner, read-only | [optional] | +| **channel_partner_oid** | **Integer** | Channel partner object identifier, read-only and available on existing channel orders only. | [optional] | +| **channel_partner_order_id** | **String** | The order ID assigned by the channel partner for this order. | [optional] | +| **ignore_invalid_shipping_method** | **Boolean** | Set to true to ignore invalid shipping method being specified. Only applicable on inserting orders. | [optional] | +| **no_realtime_payment_processing** | **Boolean** | Indicates this order should be placed in Account Receivable for later payment processing | [optional] | +| **skip_payment_processing** | **Boolean** | Indicates this order was already paid for via a channel purchase and no payment collection should be attempted | [optional] | +| **store_completed** | **Boolean** | Instructs UltraCart to skip shipping department and mark this order as fully complete. This flag defaults to true. Set this flag to false to shipped product for this order. | [optional] | +| **store_if_payment_declines** | **Boolean** | If true, any failed payment will place the order in Accounts Receivable rather than rejecting it. | [optional] | +| **treat_warnings_as_errors** | **Boolean** | Any warnings are raised as errors and halt the import of the order | [optional] | + +## Example + +```ruby +require 'ultracart_api' + +instance = UltracartClient::OrderChannelPartner.new( + auto_approve_purchase_order: null, + channel_partner_code: null, + channel_partner_data: null, + channel_partner_oid: null, + channel_partner_order_id: null, + ignore_invalid_shipping_method: null, + no_realtime_payment_processing: null, + skip_payment_processing: null, + store_completed: null, + store_if_payment_declines: null, + treat_warnings_as_errors: null +) +``` +