ultracart_api 3.3.0 → 3.4.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (85) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +62 -4
  3. data/docs/ConfigurationApi.md +756 -0
  4. data/docs/DelayAutoOrdersResponse.md +12 -0
  5. data/docs/IntegrationLogApi.md +51 -0
  6. data/docs/IntegrationLogSummary.md +16 -0
  7. data/docs/IntegrationLogSummaryQueryRequest.md +9 -0
  8. data/docs/IntegrationLogSummaryQueryResponse.md +12 -0
  9. data/docs/PaymentsConfiguration.md +23 -0
  10. data/docs/PaymentsConfigurationAffirm.md +15 -0
  11. data/docs/PaymentsConfigurationAmazon.md +15 -0
  12. data/docs/PaymentsConfigurationCOD.md +13 -0
  13. data/docs/PaymentsConfigurationCash.md +9 -0
  14. data/docs/PaymentsConfigurationCheck.md +25 -0
  15. data/docs/PaymentsConfigurationCreditCard.md +16 -0
  16. data/docs/PaymentsConfigurationLoanHero.md +12 -0
  17. data/docs/PaymentsConfigurationPayPal.md +36 -0
  18. data/docs/PaymentsConfigurationPurchaseOrder.md +11 -0
  19. data/docs/PaymentsConfigurationQuoteRequest.md +10 -0
  20. data/docs/PaymentsConfigurationResponse.md +12 -0
  21. data/docs/PaymentsConfigurationRestrictions.md +19 -0
  22. data/docs/PaymentsConfigurationSezzle.md +15 -0
  23. data/docs/PaymentsConfigurationWePay.md +35 -0
  24. data/docs/PaymentsConfigurationWireTransfer.md +18 -0
  25. data/docs/PaymentsThemeTransactionType.md +10 -0
  26. data/docs/PaymentsWepayEnroll.md +22 -0
  27. data/docs/RotatingTransactionGateway.md +50 -0
  28. data/docs/RotatingTransactionGatewaysResponse.md +12 -0
  29. data/docs/RtgCurrency.md +10 -0
  30. data/docs/RtgDayOfMonthRestriction.md +9 -0
  31. data/docs/RtgDayOfWeekRestriction.md +10 -0
  32. data/docs/RtgSummary.md +14 -0
  33. data/docs/RtgSummaryGateway.md +24 -0
  34. data/docs/RtgThemeRestriction.md +10 -0
  35. data/docs/ScreenRecordingPageViewEvent.md +1 -0
  36. data/docs/SingleSignOnAuthorizeResponse.md +9 -0
  37. data/docs/SingleSignOnTokenResponse.md +10 -0
  38. data/docs/SsoApi.md +4 -4
  39. data/docs/StripeConnectResponse.md +12 -0
  40. data/docs/TransactionGateway.md +71 -0
  41. data/docs/TransactionGatewaysRequest.md +10 -0
  42. data/docs/TransactionGatewaysResponse.md +12 -0
  43. data/lib/ultracart_api.rb +37 -0
  44. data/lib/ultracart_api/api/configuration_api.rb +843 -0
  45. data/lib/ultracart_api/api/integration_log_api.rb +55 -0
  46. data/lib/ultracart_api/api/sso_api.rb +6 -6
  47. data/lib/ultracart_api/models/delay_auto_orders_response.rb +221 -0
  48. data/lib/ultracart_api/models/integration_log_summary.rb +256 -0
  49. data/lib/ultracart_api/models/integration_log_summary_query_request.rb +195 -0
  50. data/lib/ultracart_api/models/integration_log_summary_query_response.rb +223 -0
  51. data/lib/ultracart_api/models/payments_configuration.rb +319 -0
  52. data/lib/ultracart_api/models/payments_configuration_affirm.rb +247 -0
  53. data/lib/ultracart_api/models/payments_configuration_amazon.rb +247 -0
  54. data/lib/ultracart_api/models/payments_configuration_cash.rb +193 -0
  55. data/lib/ultracart_api/models/payments_configuration_check.rb +337 -0
  56. data/lib/ultracart_api/models/payments_configuration_cod.rb +229 -0
  57. data/lib/ultracart_api/models/payments_configuration_credit_card.rb +256 -0
  58. data/lib/ultracart_api/models/payments_configuration_loan_hero.rb +220 -0
  59. data/lib/ultracart_api/models/payments_configuration_pay_pal.rb +436 -0
  60. data/lib/ultracart_api/models/payments_configuration_purchase_order.rb +211 -0
  61. data/lib/ultracart_api/models/payments_configuration_quote_request.rb +202 -0
  62. data/lib/ultracart_api/models/payments_configuration_response.rb +221 -0
  63. data/lib/ultracart_api/models/payments_configuration_restrictions.rb +283 -0
  64. data/lib/ultracart_api/models/payments_configuration_sezzle.rb +247 -0
  65. data/lib/ultracart_api/models/payments_configuration_we_pay.rb +427 -0
  66. data/lib/ultracart_api/models/payments_configuration_wire_transfer.rb +274 -0
  67. data/lib/ultracart_api/models/payments_theme_transaction_type.rb +239 -0
  68. data/lib/ultracart_api/models/payments_wepay_enroll.rb +310 -0
  69. data/lib/ultracart_api/models/rotating_transaction_gateway.rb +665 -0
  70. data/lib/ultracart_api/models/rotating_transaction_gateways_response.rb +223 -0
  71. data/lib/ultracart_api/models/rtg_currency.rb +205 -0
  72. data/lib/ultracart_api/models/rtg_day_of_month_restriction.rb +195 -0
  73. data/lib/ultracart_api/models/rtg_day_of_week_restriction.rb +205 -0
  74. data/lib/ultracart_api/models/rtg_summary.rb +240 -0
  75. data/lib/ultracart_api/models/rtg_summary_gateway.rb +329 -0
  76. data/lib/ultracart_api/models/rtg_theme_restriction.rb +239 -0
  77. data/lib/ultracart_api/models/screen_recording_page_view_event.rb +10 -1
  78. data/lib/ultracart_api/models/single_sign_on_authorize_response.rb +195 -0
  79. data/lib/ultracart_api/models/single_sign_on_token_response.rb +205 -0
  80. data/lib/ultracart_api/models/stripe_connect_response.rb +221 -0
  81. data/lib/ultracart_api/models/transaction_gateway.rb +823 -0
  82. data/lib/ultracart_api/models/transaction_gateways_request.rb +242 -0
  83. data/lib/ultracart_api/models/transaction_gateways_response.rb +223 -0
  84. data/lib/ultracart_api/version.rb +1 -1
  85. metadata +76 -2
@@ -0,0 +1,12 @@
1
+ # UltracartClient::DelayAutoOrdersResponse
2
+
3
+ ## Properties
4
+ Name | Type | Description | Notes
5
+ ------------ | ------------- | ------------- | -------------
6
+ **error** | [**Error**](Error.md) | | [optional]
7
+ **message** | **String** | | [optional]
8
+ **metadata** | [**ResponseMetadata**](ResponseMetadata.md) | | [optional]
9
+ **success** | **BOOLEAN** | Indicates if API call was successful | [optional]
10
+ **warning** | [**Warning**](Warning.md) | | [optional]
11
+
12
+
@@ -6,6 +6,7 @@ Method | HTTP request | Description
6
6
  ------------- | ------------- | -------------
7
7
  [**get_integration_log**](IntegrationLogApi.md#get_integration_log) | **GET** /integration_log/query/{pk}/{sk} | Retrieve an integration log
8
8
  [**get_integration_log_file**](IntegrationLogApi.md#get_integration_log_file) | **GET** /integration_log/query/{pk}/{sk}/{uuid} | Retrieve an integration log file
9
+ [**get_integration_log_summaries_query**](IntegrationLogApi.md#get_integration_log_summaries_query) | **POST** /integration_log/summary/query | Retrieve integration log summaries
9
10
  [**get_integration_logs_query**](IntegrationLogApi.md#get_integration_logs_query) | **POST** /integration_log/query | Retrieve integration logs
10
11
 
11
12
 
@@ -118,6 +119,56 @@ Name | Type | Description | Notes
118
119
 
119
120
 
120
121
 
122
+ # **get_integration_log_summaries_query**
123
+ > IntegrationLogSummaryQueryResponse get_integration_log_summaries_query(integration_log_summaries_query)
124
+
125
+ Retrieve integration log summaries
126
+
127
+ Retrieves a set of integration log summaries from the account based on a query object.
128
+
129
+ ### Example
130
+ ```ruby
131
+ # load the gem
132
+ require 'ultracart_api'
133
+
134
+ # Create a Simple Key: https://ultracart.atlassian.net/wiki/spaces/ucdoc/pages/38688545/API+Simple+Key
135
+ simple_key = '109ee846ee69f50177018ab12f008a00748a25aa28dbdc0177018ab12f008a00'
136
+ api_instance = UltracartClient::IntegrationLogApi.new_using_api_key(simple_key, false, false)
137
+
138
+
139
+ integration_log_summaries_query = UltracartClient::IntegrationLogSummaryQueryRequest.new # IntegrationLogSummaryQueryRequest | Integration log summaries query
140
+
141
+
142
+ begin
143
+ #Retrieve integration log summaries
144
+ result = api_instance.get_integration_log_summaries_query(integration_log_summaries_query)
145
+ p result
146
+ rescue UltracartClient::ApiError => e
147
+ puts "Exception when calling IntegrationLogApi->get_integration_log_summaries_query: #{e}"
148
+ end
149
+ ```
150
+
151
+ ### Parameters
152
+
153
+ Name | Type | Description | Notes
154
+ ------------- | ------------- | ------------- | -------------
155
+ **integration_log_summaries_query** | [**IntegrationLogSummaryQueryRequest**](IntegrationLogSummaryQueryRequest.md)| Integration log summaries query |
156
+
157
+ ### Return type
158
+
159
+ [**IntegrationLogSummaryQueryResponse**](IntegrationLogSummaryQueryResponse.md)
160
+
161
+ ### Authorization
162
+
163
+ [ultraCartOauth](../README.md#ultraCartOauth), [ultraCartSimpleApiKey](../README.md#ultraCartSimpleApiKey)
164
+
165
+ ### HTTP request headers
166
+
167
+ - **Content-Type**: application/json
168
+ - **Accept**: application/json
169
+
170
+
171
+
121
172
  # **get_integration_logs_query**
122
173
  > IntegrationLogQueryResponse get_integration_logs_query(integration_log_query, opts)
123
174
 
@@ -0,0 +1,16 @@
1
+ # UltracartClient::IntegrationLogSummary
2
+
3
+ ## Properties
4
+ Name | Type | Description | Notes
5
+ ------------ | ------------- | ------------- | -------------
6
+ **critical** | **Integer** | | [optional]
7
+ **error** | **Integer** | | [optional]
8
+ **events** | **Integer** | | [optional]
9
+ **log_type** | **String** | | [optional]
10
+ **logger_id** | **String** | | [optional]
11
+ **logger_name** | **String** | | [optional]
12
+ **success** | **Integer** | | [optional]
13
+ **view_url** | **String** | | [optional]
14
+ **warning** | **Integer** | | [optional]
15
+
16
+
@@ -0,0 +1,9 @@
1
+ # UltracartClient::IntegrationLogSummaryQueryRequest
2
+
3
+ ## Properties
4
+ Name | Type | Description | Notes
5
+ ------------ | ------------- | ------------- | -------------
6
+ **log_dts_begin** | **String** | Log date/time begin | [optional]
7
+ **log_dts_end** | **String** | Log date/time end | [optional]
8
+
9
+
@@ -0,0 +1,12 @@
1
+ # UltracartClient::IntegrationLogSummaryQueryResponse
2
+
3
+ ## Properties
4
+ Name | Type | Description | Notes
5
+ ------------ | ------------- | ------------- | -------------
6
+ **error** | [**Error**](Error.md) | | [optional]
7
+ **integration_log_summaries** | [**Array<IntegrationLogSummary>**](IntegrationLogSummary.md) | | [optional]
8
+ **metadata** | [**ResponseMetadata**](ResponseMetadata.md) | | [optional]
9
+ **success** | **BOOLEAN** | Indicates if API call was successful | [optional]
10
+ **warning** | [**Warning**](Warning.md) | | [optional]
11
+
12
+
@@ -0,0 +1,23 @@
1
+ # UltracartClient::PaymentsConfiguration
2
+
3
+ ## Properties
4
+ Name | Type | Description | Notes
5
+ ------------ | ------------- | ------------- | -------------
6
+ **affirm** | [**PaymentsConfigurationAffirm**](PaymentsConfigurationAffirm.md) | | [optional]
7
+ **amazon** | [**PaymentsConfigurationAmazon**](PaymentsConfigurationAmazon.md) | | [optional]
8
+ **cash** | [**PaymentsConfigurationCash**](PaymentsConfigurationCash.md) | | [optional]
9
+ **check** | [**PaymentsConfigurationCheck**](PaymentsConfigurationCheck.md) | | [optional]
10
+ **cod** | [**PaymentsConfigurationCOD**](PaymentsConfigurationCOD.md) | | [optional]
11
+ **credit_card** | [**PaymentsConfigurationCreditCard**](PaymentsConfigurationCreditCard.md) | | [optional]
12
+ **loan_hero** | [**PaymentsConfigurationLoanHero**](PaymentsConfigurationLoanHero.md) | | [optional]
13
+ **pay_pal** | [**PaymentsConfigurationPayPal**](PaymentsConfigurationPayPal.md) | | [optional]
14
+ **purchase_order** | [**PaymentsConfigurationPurchaseOrder**](PaymentsConfigurationPurchaseOrder.md) | | [optional]
15
+ **quote_request** | [**PaymentsConfigurationQuoteRequest**](PaymentsConfigurationQuoteRequest.md) | | [optional]
16
+ **sezzle** | [**PaymentsConfigurationSezzle**](PaymentsConfigurationSezzle.md) | | [optional]
17
+ **show_accounting_code** | **BOOLEAN** | | [optional]
18
+ **switch_to_sub_tab** | **String** | | [optional]
19
+ **switch_to_tab** | **String** | | [optional]
20
+ **we_pay** | [**PaymentsConfigurationWePay**](PaymentsConfigurationWePay.md) | | [optional]
21
+ **wire_transfer** | [**PaymentsConfigurationWireTransfer**](PaymentsConfigurationWireTransfer.md) | | [optional]
22
+
23
+
@@ -0,0 +1,15 @@
1
+ # UltracartClient::PaymentsConfigurationAffirm
2
+
3
+ ## Properties
4
+ Name | Type | Description | Notes
5
+ ------------ | ------------- | ------------- | -------------
6
+ **accept_affirm** | **BOOLEAN** | | [optional]
7
+ **affirm_accounting_code** | **String** | | [optional]
8
+ **affirm_deposit_to_account** | **String** | | [optional]
9
+ **affirm_environment** | **String** | | [optional]
10
+ **affirm_financial_product_key** | **String** | | [optional]
11
+ **affirm_private_api_key** | **String** | | [optional]
12
+ **affirm_public_api_key** | **String** | | [optional]
13
+ **restrictions** | [**PaymentsConfigurationRestrictions**](PaymentsConfigurationRestrictions.md) | | [optional]
14
+
15
+
@@ -0,0 +1,15 @@
1
+ # UltracartClient::PaymentsConfigurationAmazon
2
+
3
+ ## Properties
4
+ Name | Type | Description | Notes
5
+ ------------ | ------------- | ------------- | -------------
6
+ **accept_amazon** | **BOOLEAN** | | [optional]
7
+ **amazon_access_key_id** | **String** | | [optional]
8
+ **amazon_accounting_code** | **String** | | [optional]
9
+ **amazon_deposit_to_account** | **String** | | [optional]
10
+ **amazon_merchant_id** | **String** | | [optional]
11
+ **amazon_sandbox** | **BOOLEAN** | | [optional]
12
+ **amazon_secret_access_key** | **String** | | [optional]
13
+ **restrictions** | [**PaymentsConfigurationRestrictions**](PaymentsConfigurationRestrictions.md) | | [optional]
14
+
15
+
@@ -0,0 +1,13 @@
1
+ # UltracartClient::PaymentsConfigurationCOD
2
+
3
+ ## Properties
4
+ Name | Type | Description | Notes
5
+ ------------ | ------------- | ------------- | -------------
6
+ **accept_cod** | **BOOLEAN** | | [optional]
7
+ **cod_approved_customers_only** | **BOOLEAN** | | [optional]
8
+ **cod_surcharge_accounting_code** | **String** | | [optional]
9
+ **cod_surcharge_fee** | **String** | | [optional]
10
+ **cod_surcharge_perc** | **String** | | [optional]
11
+ **restrictions** | [**PaymentsConfigurationRestrictions**](PaymentsConfigurationRestrictions.md) | | [optional]
12
+
13
+
@@ -0,0 +1,9 @@
1
+ # UltracartClient::PaymentsConfigurationCash
2
+
3
+ ## Properties
4
+ Name | Type | Description | Notes
5
+ ------------ | ------------- | ------------- | -------------
6
+ **accept_cash** | **BOOLEAN** | | [optional]
7
+ **restrictions** | [**PaymentsConfigurationRestrictions**](PaymentsConfigurationRestrictions.md) | | [optional]
8
+
9
+
@@ -0,0 +1,25 @@
1
+ # UltracartClient::PaymentsConfigurationCheck
2
+
3
+ ## Properties
4
+ Name | Type | Description | Notes
5
+ ------------ | ------------- | ------------- | -------------
6
+ **accept_check_orders** | **BOOLEAN** | | [optional]
7
+ **accept_e_check** | **BOOLEAN** | | [optional]
8
+ **accept_money_orders** | **BOOLEAN** | | [optional]
9
+ **check_accounting_code** | **String** | | [optional]
10
+ **check_deposit_to_account** | **String** | | [optional]
11
+ **checks_payable_to** | **String** | | [optional]
12
+ **e_check_accounting_code** | **String** | | [optional]
13
+ **e_check_deposit_to_account** | **String** | | [optional]
14
+ **mail_to_address1** | **String** | | [optional]
15
+ **mail_to_address2** | **String** | | [optional]
16
+ **mail_to_city** | **String** | | [optional]
17
+ **mail_to_country** | **String** | | [optional]
18
+ **mail_to_name** | **String** | | [optional]
19
+ **mail_to_state** | **String** | | [optional]
20
+ **mail_to_zip** | **String** | | [optional]
21
+ **money_order_accounting_code** | **String** | | [optional]
22
+ **money_order_deposit_to_account** | **String** | | [optional]
23
+ **restrictions** | [**PaymentsConfigurationRestrictions**](PaymentsConfigurationRestrictions.md) | | [optional]
24
+
25
+
@@ -0,0 +1,16 @@
1
+ # UltracartClient::PaymentsConfigurationCreditCard
2
+
3
+ ## Properties
4
+ Name | Type | Description | Notes
5
+ ------------ | ------------- | ------------- | -------------
6
+ **accept_credit_cards** | **BOOLEAN** | | [optional]
7
+ **billed_by** | **String** | | [optional]
8
+ **charge_during_checkout** | **BOOLEAN** | | [optional]
9
+ **collect_cvv2** | **BOOLEAN** | | [optional]
10
+ **configured_gateways_details** | **String** | | [optional]
11
+ **failed_attempts** | **String** | | [optional]
12
+ **hide_connect_single_gateway** | **BOOLEAN** | | [optional]
13
+ **immediate_finalize_domains** | **String** | | [optional]
14
+ **send_customer_billing_update_on_decline** | **BOOLEAN** | | [optional]
15
+
16
+
@@ -0,0 +1,12 @@
1
+ # UltracartClient::PaymentsConfigurationLoanHero
2
+
3
+ ## Properties
4
+ Name | Type | Description | Notes
5
+ ------------ | ------------- | ------------- | -------------
6
+ **accept_loan_hero** | **BOOLEAN** | | [optional]
7
+ **loan_hero_accounting_code** | **String** | | [optional]
8
+ **loan_hero_deposit_to_account** | **String** | | [optional]
9
+ **restrictions** | [**PaymentsConfigurationRestrictions**](PaymentsConfigurationRestrictions.md) | | [optional]
10
+ **show_loan_hero** | **BOOLEAN** | | [optional]
11
+
12
+
@@ -0,0 +1,36 @@
1
+ # UltracartClient::PaymentsConfigurationPayPal
2
+
3
+ ## Properties
4
+ Name | Type | Description | Notes
5
+ ------------ | ------------- | ------------- | -------------
6
+ **accept_pay_pal** | **BOOLEAN** | | [optional]
7
+ **paypal_accounting_code** | **String** | | [optional]
8
+ **paypal_api_password** | **String** | | [optional]
9
+ **paypal_api_user_name** | **String** | | [optional]
10
+ **paypal_certificate_on_file** | **BOOLEAN** | | [optional]
11
+ **paypal_deposit_to_account** | **String** | | [optional]
12
+ **paypal_email** | **String** | | [optional]
13
+ **paypal_environment** | **String** | | [optional]
14
+ **paypal_header_image_url** | **String** | | [optional]
15
+ **paypal_hide_bill_me_later** | **BOOLEAN** | | [optional]
16
+ **paypal_hide_express_checkout_on_view_cart** | **BOOLEAN** | | [optional]
17
+ **paypal_hide_for_unshipped_orders** | **BOOLEAN** | | [optional]
18
+ **paypal_hold_in_ar** | **BOOLEAN** | | [optional]
19
+ **paypal_landing_page** | **String** | | [optional]
20
+ **paypal_mode** | **String** | | [optional]
21
+ **paypal_private_key_password** | **String** | | [optional]
22
+ **paypal_processing_fee** | **String** | | [optional]
23
+ **paypal_processing_perc** | **String** | | [optional]
24
+ **paypal_send_recurring** | **String** | | [optional]
25
+ **paypal_show_card_logos_not_directly_supported** | **BOOLEAN** | | [optional]
26
+ **paypal_show_signature** | **BOOLEAN** | | [optional]
27
+ **paypal_signature** | **String** | | [optional]
28
+ **paypal_solution_type** | **String** | | [optional]
29
+ **paypal_summary_email** | **String** | | [optional]
30
+ **paypal_summary_mode** | **String** | | [optional]
31
+ **paypal_zero_dollar_penny** | **BOOLEAN** | | [optional]
32
+ **push_pay_pal** | **BOOLEAN** | | [optional]
33
+ **restrictions** | [**PaymentsConfigurationRestrictions**](PaymentsConfigurationRestrictions.md) | | [optional]
34
+ **short_pay_pal_marketing_text** | **BOOLEAN** | | [optional]
35
+
36
+
@@ -0,0 +1,11 @@
1
+ # UltracartClient::PaymentsConfigurationPurchaseOrder
2
+
3
+ ## Properties
4
+ Name | Type | Description | Notes
5
+ ------------ | ------------- | ------------- | -------------
6
+ **accept_purchase_orders** | **BOOLEAN** | | [optional]
7
+ **purchase_order_approved_customers_only** | **BOOLEAN** | | [optional]
8
+ **purchase_order_prevent_duplicate_number** | **BOOLEAN** | | [optional]
9
+ **restrictions** | [**PaymentsConfigurationRestrictions**](PaymentsConfigurationRestrictions.md) | | [optional]
10
+
11
+
@@ -0,0 +1,10 @@
1
+ # UltracartClient::PaymentsConfigurationQuoteRequest
2
+
3
+ ## Properties
4
+ Name | Type | Description | Notes
5
+ ------------ | ------------- | ------------- | -------------
6
+ **accept_quote_requests** | **BOOLEAN** | | [optional]
7
+ **quote_request_approved_customers_only** | **BOOLEAN** | | [optional]
8
+ **restrictions** | [**PaymentsConfigurationRestrictions**](PaymentsConfigurationRestrictions.md) | | [optional]
9
+
10
+
@@ -0,0 +1,12 @@
1
+ # UltracartClient::PaymentsConfigurationResponse
2
+
3
+ ## Properties
4
+ Name | Type | Description | Notes
5
+ ------------ | ------------- | ------------- | -------------
6
+ **error** | [**Error**](Error.md) | | [optional]
7
+ **metadata** | [**ResponseMetadata**](ResponseMetadata.md) | | [optional]
8
+ **payments_configuration** | [**PaymentsConfiguration**](PaymentsConfiguration.md) | | [optional]
9
+ **success** | **BOOLEAN** | Indicates if API call was successful | [optional]
10
+ **warning** | [**Warning**](Warning.md) | | [optional]
11
+
12
+
@@ -0,0 +1,19 @@
1
+ # UltracartClient::PaymentsConfigurationRestrictions
2
+
3
+ ## Properties
4
+ Name | Type | Description | Notes
5
+ ------------ | ------------- | ------------- | -------------
6
+ **maximum_subtotal** | **String** | | [optional]
7
+ **minimum_subtotal** | **String** | | [optional]
8
+ **payment_method** | **String** | | [optional]
9
+ **restriction_alaska_hawaii** | **String** | | [optional]
10
+ **restriction_apo_fpo** | **String** | | [optional]
11
+ **restriction_canada** | **String** | | [optional]
12
+ **restriction_continental_us** | **String** | | [optional]
13
+ **restriction_domestic_only** | **String** | | [optional]
14
+ **restriction_international_only** | **String** | | [optional]
15
+ **restriction_po_box** | **String** | | [optional]
16
+ **restriction_puerto_rico** | **String** | | [optional]
17
+ **restriction_us_territories** | **String** | | [optional]
18
+
19
+
@@ -0,0 +1,15 @@
1
+ # UltracartClient::PaymentsConfigurationSezzle
2
+
3
+ ## Properties
4
+ Name | Type | Description | Notes
5
+ ------------ | ------------- | ------------- | -------------
6
+ **accept_sezzle** | **BOOLEAN** | | [optional]
7
+ **restrictions** | [**PaymentsConfigurationRestrictions**](PaymentsConfigurationRestrictions.md) | | [optional]
8
+ **sezzle_accounting_code** | **String** | | [optional]
9
+ **sezzle_business_id** | **String** | | [optional]
10
+ **sezzle_deposit_to_account** | **String** | | [optional]
11
+ **sezzle_environment** | **String** | | [optional]
12
+ **sezzle_private_api_key** | **String** | | [optional]
13
+ **sezzle_public_api_key** | **String** | | [optional]
14
+
15
+
@@ -0,0 +1,35 @@
1
+ # UltracartClient::PaymentsConfigurationWePay
2
+
3
+ ## Properties
4
+ Name | Type | Description | Notes
5
+ ------------ | ------------- | ------------- | -------------
6
+ **accept_wepay** | **BOOLEAN** | | [optional]
7
+ **hide_credit_cards_non_ultra_cart_payments** | **BOOLEAN** | | [optional]
8
+ **hide_surcharge_content** | **BOOLEAN** | | [optional]
9
+ **remove_pay_pal_pro** | **BOOLEAN** | | [optional]
10
+ **restrictions** | [**PaymentsConfigurationRestrictions**](PaymentsConfigurationRestrictions.md) | | [optional]
11
+ **short_pay_pal_marketing_text** | **BOOLEAN** | | [optional]
12
+ **show_ultra_cart_payments_disabled** | **BOOLEAN** | | [optional]
13
+ **show_ultra_cart_payments_intro** | **BOOLEAN** | | [optional]
14
+ **show_ultra_cart_payments_verification** | **BOOLEAN** | | [optional]
15
+ **show_ultra_cart_payments_verified** | **BOOLEAN** | | [optional]
16
+ **wepay_account_update_uri** | **String** | | [optional]
17
+ **wepay_address1** | **String** | | [optional]
18
+ **wepay_address2** | **String** | | [optional]
19
+ **wepay_canada_accept_debit_cards** | **BOOLEAN** | | [optional]
20
+ **wepay_city** | **String** | | [optional]
21
+ **wepay_company** | **String** | | [optional]
22
+ **wepay_company_description** | **String** | | [optional]
23
+ **wepay_console_hostname** | **String** | | [optional]
24
+ **wepay_country** | **String** | | [optional]
25
+ **wepay_currency** | **String** | | [optional]
26
+ **wepay_expected_revenue** | **String** | | [optional]
27
+ **wepay_industry** | **String** | | [optional]
28
+ **wepay_owner_email** | **String** | | [optional]
29
+ **wepay_owner_name** | **String** | | [optional]
30
+ **wepay_owner_phone** | **String** | | [optional]
31
+ **wepay_state** | **String** | | [optional]
32
+ **wepay_website_url** | **String** | | [optional]
33
+ **wepay_zip** | **String** | | [optional]
34
+
35
+
@@ -0,0 +1,18 @@
1
+ # UltracartClient::PaymentsConfigurationWireTransfer
2
+
3
+ ## Properties
4
+ Name | Type | Description | Notes
5
+ ------------ | ------------- | ------------- | -------------
6
+ **accept_wire_transfer** | **BOOLEAN** | | [optional]
7
+ **restrictions** | [**PaymentsConfigurationRestrictions**](PaymentsConfigurationRestrictions.md) | | [optional]
8
+ **wire_transfer_accounting_code** | **String** | | [optional]
9
+ **wire_transfer_account_number** | **String** | | [optional]
10
+ **wire_transfer_bank_address** | **String** | | [optional]
11
+ **wire_transfer_deposit_to_account** | **String** | | [optional]
12
+ **wire_transfer_intermediate_routing_number** | **String** | | [optional]
13
+ **wire_transfer_routing_number** | **String** | | [optional]
14
+ **wire_transfer_surcharge_accounting_code** | **String** | | [optional]
15
+ **wire_transfer_surcharge_fee** | **String** | | [optional]
16
+ **wire_transfer_surcharge_perc** | **String** | | [optional]
17
+
18
+
@@ -0,0 +1,10 @@
1
+ # UltracartClient::PaymentsThemeTransactionType
2
+
3
+ ## Properties
4
+ Name | Type | Description | Notes
5
+ ------------ | ------------- | ------------- | -------------
6
+ **code** | **String** | External human readable identifier for a theme | [optional]
7
+ **credit_card_transaction_type** | **String** | The credit card transaction type for this theme | [optional]
8
+ **screen_branding_theme_oid** | **Integer** | Internal identifier for a theme | [optional]
9
+
10
+