ultracart_api 4.1.14 → 4.1.16

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (39) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +25 -3
  3. data/docs/CartUpsellAfter.md +6 -2
  4. data/docs/ConversationVirtualAgentCapabilities.md +4 -0
  5. data/docs/CustomReport.md +36 -0
  6. data/docs/CustomReportAccountConfig.md +34 -0
  7. data/docs/CustomReportAccountConfigResponse.md +26 -0
  8. data/docs/CustomReportExecutionParameter.md +22 -0
  9. data/docs/CustomReportExecutionRequest.md +18 -0
  10. data/docs/CustomReportParameter.md +28 -0
  11. data/docs/CustomReportParameterOption.md +20 -0
  12. data/docs/CustomReportQuery.md +28 -0
  13. data/docs/CustomReportResponse.md +26 -0
  14. data/docs/CustomReportTooltip.md +20 -0
  15. data/docs/CustomReportsResponse.md +26 -0
  16. data/docs/DatawarehouseApi.md +430 -0
  17. data/docs/Item.md +1 -1
  18. data/docs/OrderApi.md +137 -63
  19. data/docs/WebhookApi.md +0 -8
  20. data/lib/ultracart_api/api/datawarehouse_api.rb +532 -0
  21. data/lib/ultracart_api/api/order_api.rb +131 -91
  22. data/lib/ultracart_api/api/webhook_api.rb +0 -24
  23. data/lib/ultracart_api/models/cart_upsell_after.rb +25 -5
  24. data/lib/ultracart_api/models/conversation_virtual_agent_capabilities.rb +55 -1
  25. data/lib/ultracart_api/models/custom_report.rb +306 -0
  26. data/lib/ultracart_api/models/custom_report_account_config.rb +296 -0
  27. data/lib/ultracart_api/models/custom_report_account_config_response.rb +256 -0
  28. data/lib/ultracart_api/models/custom_report_execution_parameter.rb +237 -0
  29. data/lib/ultracart_api/models/custom_report_execution_request.rb +221 -0
  30. data/lib/ultracart_api/models/custom_report_parameter.rb +266 -0
  31. data/lib/ultracart_api/models/custom_report_parameter_option.rb +228 -0
  32. data/lib/ultracart_api/models/custom_report_query.rb +266 -0
  33. data/lib/ultracart_api/models/custom_report_response.rb +256 -0
  34. data/lib/ultracart_api/models/custom_report_tooltip.rb +228 -0
  35. data/lib/ultracart_api/models/custom_reports_response.rb +259 -0
  36. data/lib/ultracart_api/models/item.rb +1 -1
  37. data/lib/ultracart_api/version.rb +1 -1
  38. data/lib/ultracart_api.rb +11 -0
  39. metadata +24 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b073dc578c5fc9b1a007943543ef1adfb8bf174e461fcafdd0a626693d14aca9
4
- data.tar.gz: d4ec73507692ecef97202e4052ec75da5b046934af88ac8b71572cfa0d38e74d
3
+ metadata.gz: ba315b7e97b3e9067d6a15640d3cdb873006d13bd8f53f48cc2d0c40c4db11af
4
+ data.tar.gz: a159dbb08abcf2d9ff720194ddc58bd4206ee57978371297b0198308e45cc98e
5
5
  SHA512:
6
- metadata.gz: 88b516f0ce50dd7987d960b2041cd8b12ca3c8dd9e63c7b67186a4718d7b2312219d31664e852996f5e9b906f26e35a9da97da7d9d7dfb7e755b58fb70438981
7
- data.tar.gz: db3451cc4c6896f7f22bbc937bd4c935faea478ddd425f21cf26d6ce811e96d401aaaeda11d405a2ba265a042bbd4b5c10f4e076f176a926b2009818dff3c419
6
+ metadata.gz: 7454402c148af2ee31f596640dce2191980bb65364017921129a8611ea360f7ee948461de64941c83be30d13dd04d5d43a3fe2577be6e4bfdfdbce7453080fa7
7
+ data.tar.gz: 2df955c52f353b0990ca11d1e6deb381bdf98033c45ff2ad60fc7326f2803f8540c553db78287a6b854d1241e432d361338e6dae419c65b40c064e0386d957ae
data/README.md CHANGED
@@ -7,7 +7,7 @@ Note: Every method has a sample for every language. See https://github.com/Ultr
7
7
  This SDK is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
8
8
 
9
9
  - API version: 2.0.0
10
- - Package version: 4.1.14
10
+ - Package version: 4.1.16
11
11
  - Build package: org.openapitools.codegen.languages.RubyClientCodegen
12
12
  - For more information, please visit [http://www.ultracart.com/api/](http://www.ultracart.com/api/)
13
13
 
@@ -16,7 +16,7 @@ This SDK is automatically generated by the [OpenAPI Generator](https://openapi-g
16
16
  gemfile:
17
17
 
18
18
  ```shell
19
- gem 'ultracart_api', '4.1.14'
19
+ gem 'ultracart_api', '4.1.16'
20
20
  ```
21
21
 
22
22
  install:
@@ -265,15 +265,23 @@ Class | Method | HTTP request | Description
265
265
  *UltracartClient::CustomerApi* | [**update_customer_email_lists**](docs/CustomerApi.md#update_customer_email_lists) | **POST** /customer/customers/{customer_profile_oid}/email_lists | Update email list subscriptions for a customer
266
266
  *UltracartClient::CustomerApi* | [**update_wish_list_item**](docs/CustomerApi.md#update_wish_list_item) | **PUT** /customer/customers/{customer_profile_oid}/wishlist/{customer_wishlist_item_oid} | Update a customer wishlist item
267
267
  *UltracartClient::CustomerApi* | [**validate_email_verification_token**](docs/CustomerApi.md#validate_email_verification_token) | **POST** /customer/customers/email_verify/validate_token | Validate a token that can be used to verify a customer email address
268
+ *UltracartClient::DatawarehouseApi* | [**delete_custom_report**](docs/DatawarehouseApi.md#delete_custom_report) | **DELETE** /datawarehouse/custom_reports/{custom_report_oid} | Delete a custom report
268
269
  *UltracartClient::DatawarehouseApi* | [**delete_report**](docs/DatawarehouseApi.md#delete_report) | **DELETE** /datawarehouse/reports/{report_oid} | Delete a report
269
270
  *UltracartClient::DatawarehouseApi* | [**dry_run_report_queries**](docs/DatawarehouseApi.md#dry_run_report_queries) | **PUT** /datawarehouse/reports/dryrun | Dry run the report queries
271
+ *UltracartClient::DatawarehouseApi* | [**execute_custom_report**](docs/DatawarehouseApi.md#execute_custom_report) | **PUT** /datawarehouse/custom_reports/{custom_report_oid}/execute | Execute a custom report
270
272
  *UltracartClient::DatawarehouseApi* | [**execute_report_queries**](docs/DatawarehouseApi.md#execute_report_queries) | **PUT** /datawarehouse/reports/execute | Execute the report queries
273
+ *UltracartClient::DatawarehouseApi* | [**get_custom_report**](docs/DatawarehouseApi.md#get_custom_report) | **GET** /datawarehouse/custom_reports/{custom_report_oid} | Get a custom report
274
+ *UltracartClient::DatawarehouseApi* | [**get_custom_report_account_config**](docs/DatawarehouseApi.md#get_custom_report_account_config) | **GET** /datawarehouse/custom_reports/account_config | Get custom report account configuration
275
+ *UltracartClient::DatawarehouseApi* | [**get_custom_reports**](docs/DatawarehouseApi.md#get_custom_reports) | **GET** /datawarehouse/custom_reports | Get custom reports
271
276
  *UltracartClient::DatawarehouseApi* | [**get_report**](docs/DatawarehouseApi.md#get_report) | **GET** /datawarehouse/reports/{report_oid} | Get a report
272
277
  *UltracartClient::DatawarehouseApi* | [**get_report_data_set**](docs/DatawarehouseApi.md#get_report_data_set) | **GET** /datawarehouse/reports/dataset/{dataset_uuid} | Get a report data set
273
278
  *UltracartClient::DatawarehouseApi* | [**get_report_data_set_page**](docs/DatawarehouseApi.md#get_report_data_set_page) | **GET** /datawarehouse/reports/dataset/{dataset_uuid}/pages/{page_number} | Get a report data set page
274
279
  *UltracartClient::DatawarehouseApi* | [**get_report_websocket_authorization**](docs/DatawarehouseApi.md#get_report_websocket_authorization) | **PUT** /datawarehouse/reports/auth | Get report websocket authorization
275
280
  *UltracartClient::DatawarehouseApi* | [**get_reports**](docs/DatawarehouseApi.md#get_reports) | **GET** /datawarehouse/reports | Get list of reports available
281
+ *UltracartClient::DatawarehouseApi* | [**insert_custom_report**](docs/DatawarehouseApi.md#insert_custom_report) | **POST** /datawarehouse/custom_reports | Create a custom report
276
282
  *UltracartClient::DatawarehouseApi* | [**insert_report**](docs/DatawarehouseApi.md#insert_report) | **POST** /datawarehouse/reports | Create a report
283
+ *UltracartClient::DatawarehouseApi* | [**update_custom_report**](docs/DatawarehouseApi.md#update_custom_report) | **PUT** /datawarehouse/custom_reports/{custom_report_oid} | Update a custom report
284
+ *UltracartClient::DatawarehouseApi* | [**update_custom_report_account_config**](docs/DatawarehouseApi.md#update_custom_report_account_config) | **PUT** /datawarehouse/custom_reports/account_config | Update custom report account config
277
285
  *UltracartClient::DatawarehouseApi* | [**update_report**](docs/DatawarehouseApi.md#update_report) | **PUT** /datawarehouse/reports/{report_oid} | Update a report
278
286
  *UltracartClient::FulfillmentApi* | [**acknowledge_orders**](docs/FulfillmentApi.md#acknowledge_orders) | **PUT** /fulfillment/distribution_centers/{distribution_center_code}/acknowledgements | Acknowledge receipt of orders.
279
287
  *UltracartClient::FulfillmentApi* | [**generate_packing_slip**](docs/FulfillmentApi.md#generate_packing_slip) | **GET** /fulfillment/distribution_centers/{distribution_center_code}/orders/{order_id} | Generate a packing slip for this order for the given distribution center.
@@ -320,6 +328,7 @@ Class | Method | HTTP request | Description
320
328
  *UltracartClient::OauthApi* | [**oauth_access_token**](docs/OauthApi.md#oauth_access_token) | **POST** /oauth/token | Exchange authorization code for access token.
321
329
  *UltracartClient::OauthApi* | [**oauth_revoke**](docs/OauthApi.md#oauth_revoke) | **POST** /oauth/revoke | Revoke this OAuth application.
322
330
  *UltracartClient::OrderApi* | [**adjust_order_total**](docs/OrderApi.md#adjust_order_total) | **POST** /order/orders/{order_id}/adjust_order_total/{desired_total} | Adjusts an order total
331
+ *UltracartClient::OrderApi* | [**block_refund_on_order**](docs/OrderApi.md#block_refund_on_order) | **GET** /order/orders/{order_id}/refund_block | Set a refund block on an order
323
332
  *UltracartClient::OrderApi* | [**cancel_order**](docs/OrderApi.md#cancel_order) | **POST** /order/orders/{order_id}/cancel | Cancel an order
324
333
  *UltracartClient::OrderApi* | [**delete_order**](docs/OrderApi.md#delete_order) | **DELETE** /order/orders/{order_id} | Delete an order
325
334
  *UltracartClient::OrderApi* | [**duplicate_order**](docs/OrderApi.md#duplicate_order) | **POST** /order/orders/{order_id}/duplicate | Duplicate an order
@@ -340,10 +349,10 @@ Class | Method | HTTP request | Description
340
349
  *UltracartClient::OrderApi* | [**is_refundable_order**](docs/OrderApi.md#is_refundable_order) | **GET** /order/orders/{order_id}/refundable | Determine if an order can be refunded
341
350
  *UltracartClient::OrderApi* | [**process_payment**](docs/OrderApi.md#process_payment) | **POST** /order/orders/{order_id}/process_payment | Process payment
342
351
  *UltracartClient::OrderApi* | [**refund_order**](docs/OrderApi.md#refund_order) | **PUT** /order/orders/{order_id}/refund | Refund an order
343
- *UltracartClient::OrderApi* | [**refund_order_completely**](docs/OrderApi.md#refund_order_completely) | **PUT** /order/orders/{order_id}/refund_completely | Refund an order completely
344
352
  *UltracartClient::OrderApi* | [**replacement**](docs/OrderApi.md#replacement) | **POST** /order/orders/{order_id}/replacement | Replacement order
345
353
  *UltracartClient::OrderApi* | [**resend_receipt**](docs/OrderApi.md#resend_receipt) | **POST** /order/orders/{order_id}/resend_receipt | Resend receipt
346
354
  *UltracartClient::OrderApi* | [**resend_shipment_confirmation**](docs/OrderApi.md#resend_shipment_confirmation) | **POST** /order/orders/{order_id}/resend_shipment_confirmation | Resend shipment confirmation
355
+ *UltracartClient::OrderApi* | [**unblock_refund_on_order**](docs/OrderApi.md#unblock_refund_on_order) | **GET** /order/orders/{order_id}/refund_unblock | Remove a refund block on an order
347
356
  *UltracartClient::OrderApi* | [**update_accounts_receivable_retry_config**](docs/OrderApi.md#update_accounts_receivable_retry_config) | **POST** /order/accountsReceivableRetryConfig | Update A/R Retry Configuration
348
357
  *UltracartClient::OrderApi* | [**update_order**](docs/OrderApi.md#update_order) | **PUT** /order/orders/{order_id} | Update an order
349
358
  *UltracartClient::OrderApi* | [**validate_order**](docs/OrderApi.md#validate_order) | **POST** /order/validate | Validate
@@ -896,6 +905,17 @@ Class | Method | HTTP request | Description
896
905
  - [UltracartClient::CouponsRequest](docs/CouponsRequest.md)
897
906
  - [UltracartClient::CouponsResponse](docs/CouponsResponse.md)
898
907
  - [UltracartClient::Currency](docs/Currency.md)
908
+ - [UltracartClient::CustomReport](docs/CustomReport.md)
909
+ - [UltracartClient::CustomReportAccountConfig](docs/CustomReportAccountConfig.md)
910
+ - [UltracartClient::CustomReportAccountConfigResponse](docs/CustomReportAccountConfigResponse.md)
911
+ - [UltracartClient::CustomReportExecutionParameter](docs/CustomReportExecutionParameter.md)
912
+ - [UltracartClient::CustomReportExecutionRequest](docs/CustomReportExecutionRequest.md)
913
+ - [UltracartClient::CustomReportParameter](docs/CustomReportParameter.md)
914
+ - [UltracartClient::CustomReportParameterOption](docs/CustomReportParameterOption.md)
915
+ - [UltracartClient::CustomReportQuery](docs/CustomReportQuery.md)
916
+ - [UltracartClient::CustomReportResponse](docs/CustomReportResponse.md)
917
+ - [UltracartClient::CustomReportTooltip](docs/CustomReportTooltip.md)
918
+ - [UltracartClient::CustomReportsResponse](docs/CustomReportsResponse.md)
899
919
  - [UltracartClient::Customer](docs/Customer.md)
900
920
  - [UltracartClient::CustomerActivity](docs/CustomerActivity.md)
901
921
  - [UltracartClient::CustomerAffiliate](docs/CustomerAffiliate.md)
@@ -1530,6 +1550,8 @@ Not every change is committed to every SDK.
1530
1550
 
1531
1551
  | Version | Date | Comments |
1532
1552
  | --: | :-: | --- |
1553
+ | 4.1.16 | 07/28/2025 | updated doc samples |
1554
+ | 4.1.15 | 07/28/2025 | new order methods for blocking and unblocking refunds |
1533
1555
  | 4.1.14 | 07/10/2025 | automation test |
1534
1556
  | 4.1.13 | 05/20/2025 | conversation - virtual agent flag and virtual agent cost |
1535
1557
  | 4.1.12 | 05/19/2025 | conversations - AI agent capabilities method |
@@ -6,7 +6,9 @@
6
6
  | ---- | ---- | ----------- | ----- |
7
7
  | **finalize_after_dts** | **String** | The date/time after which the cart will finalize into an order. | [optional] |
8
8
  | **finalize_after_minutes** | **Integer** | The amount of inactivity in minutes after which the cart should be finalized into an order. This will calculate the finalize_after_dts field. | [optional] |
9
- | **upsell_path_code** | **String** | Upsell path code | [optional] |
9
+ | **upsell_path_code** | **String** | Upsell path code (this is for legacy upsells only) | [optional] |
10
+ | **upsell_path_name** | **String** | Upsell path name to start on (StoreFront Upsells). Will only be respected on a handoff API call. | [optional] |
11
+ | **upsell_path_variation** | **String** | Upsell path variation to start on (StoreFront Upsells). Will only be respected on a handoff API call. | [optional] |
10
12
 
11
13
  ## Example
12
14
 
@@ -16,7 +18,9 @@ require 'ultracart_api'
16
18
  instance = UltracartClient::CartUpsellAfter.new(
17
19
  finalize_after_dts: null,
18
20
  finalize_after_minutes: null,
19
- upsell_path_code: null
21
+ upsell_path_code: null,
22
+ upsell_path_name: null,
23
+ upsell_path_variation: null
20
24
  )
21
25
  ```
22
26
 
@@ -9,6 +9,8 @@
9
9
  | **lookup_order_information** | **Boolean** | | [optional] |
10
10
  | **lookup_subscription_information** | **Boolean** | | [optional] |
11
11
  | **open_support_ticket** | **Boolean** | | [optional] |
12
+ | **open_support_ticket_channel** | **String** | Channel to use to open the support ticket | [optional] |
13
+ | **open_support_ticket_channel_email** | **String** | Email to send support ticket to | [optional] |
12
14
  | **pause_subscription** | **Boolean** | | [optional] |
13
15
  | **resume_subscription** | **Boolean** | | [optional] |
14
16
  | **transfer_chat_to_live_agent** | **Boolean** | | [optional] |
@@ -25,6 +27,8 @@ instance = UltracartClient::ConversationVirtualAgentCapabilities.new(
25
27
  lookup_order_information: null,
26
28
  lookup_subscription_information: null,
27
29
  open_support_ticket: null,
30
+ open_support_ticket_channel: null,
31
+ open_support_ticket_channel_email: null,
28
32
  pause_subscription: null,
29
33
  resume_subscription: null,
30
34
  transfer_chat_to_live_agent: null,
@@ -0,0 +1,36 @@
1
+ # UltracartClient::CustomReport
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **chart_javascript** | **String** | | [optional] |
8
+ | **chart_javascript_url** | **String** | | [optional] |
9
+ | **data_warehouse_report_config_oid** | **Integer** | | [optional] |
10
+ | **dataset_security_level** | **String** | | [optional] |
11
+ | **group_name** | **String** | | [optional] |
12
+ | **merchant_id** | **String** | | [optional] |
13
+ | **name** | **String** | | [optional] |
14
+ | **parameters** | [**Array<CustomReportParameter>**](CustomReportParameter.md) | | [optional] |
15
+ | **queries** | [**Array<CustomReportQuery>**](CustomReportQuery.md) | | [optional] |
16
+ | **tooltips** | [**Array<CustomReportTooltip>**](CustomReportTooltip.md) | | [optional] |
17
+
18
+ ## Example
19
+
20
+ ```ruby
21
+ require 'ultracart_api'
22
+
23
+ instance = UltracartClient::CustomReport.new(
24
+ chart_javascript: null,
25
+ chart_javascript_url: null,
26
+ data_warehouse_report_config_oid: null,
27
+ dataset_security_level: null,
28
+ group_name: null,
29
+ merchant_id: null,
30
+ name: null,
31
+ parameters: null,
32
+ queries: null,
33
+ tooltips: null
34
+ )
35
+ ```
36
+
@@ -0,0 +1,34 @@
1
+ # UltracartClient::CustomReportAccountConfig
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **ai_budget** | **Float** | | [optional] |
8
+ | **ai_usage** | **Float** | Current AI usage creating reports | [optional] |
9
+ | **merchant_id** | **String** | Current BigQuery SQL usage running reports | [optional] |
10
+ | **novice_sql_comments** | **Boolean** | | [optional] |
11
+ | **opt_in** | **Boolean** | True if they have opted into custom reports | [optional] |
12
+ | **opt_in_by_user** | **String** | User that opted into custom reporting | [optional] |
13
+ | **opt_in_date** | **String** | Date/time that custom reporting was opted in to | [optional] |
14
+ | **sql_budget** | **Float** | | [optional] |
15
+ | **sql_usage** | **Float** | | [optional] |
16
+
17
+ ## Example
18
+
19
+ ```ruby
20
+ require 'ultracart_api'
21
+
22
+ instance = UltracartClient::CustomReportAccountConfig.new(
23
+ ai_budget: null,
24
+ ai_usage: null,
25
+ merchant_id: null,
26
+ novice_sql_comments: null,
27
+ opt_in: null,
28
+ opt_in_by_user: null,
29
+ opt_in_date: null,
30
+ sql_budget: null,
31
+ sql_usage: null
32
+ )
33
+ ```
34
+
@@ -0,0 +1,26 @@
1
+ # UltracartClient::CustomReportAccountConfigResponse
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **account_config** | [**CustomReportAccountConfig**](CustomReportAccountConfig.md) | | [optional] |
8
+ | **error** | [**Error**](Error.md) | | [optional] |
9
+ | **metadata** | [**ResponseMetadata**](ResponseMetadata.md) | | [optional] |
10
+ | **success** | **Boolean** | Indicates if API call was successful | [optional] |
11
+ | **warning** | [**Warning**](Warning.md) | | [optional] |
12
+
13
+ ## Example
14
+
15
+ ```ruby
16
+ require 'ultracart_api'
17
+
18
+ instance = UltracartClient::CustomReportAccountConfigResponse.new(
19
+ account_config: null,
20
+ error: null,
21
+ metadata: null,
22
+ success: null,
23
+ warning: null
24
+ )
25
+ ```
26
+
@@ -0,0 +1,22 @@
1
+ # UltracartClient::CustomReportExecutionParameter
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **name** | **String** | | [optional] |
8
+ | **type** | **String** | | [optional] |
9
+ | **value** | **String** | | [optional] |
10
+
11
+ ## Example
12
+
13
+ ```ruby
14
+ require 'ultracart_api'
15
+
16
+ instance = UltracartClient::CustomReportExecutionParameter.new(
17
+ name: null,
18
+ type: null,
19
+ value: null
20
+ )
21
+ ```
22
+
@@ -0,0 +1,18 @@
1
+ # UltracartClient::CustomReportExecutionRequest
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **parameters** | [**Array<CustomReportExecutionParameter>**](CustomReportExecutionParameter.md) | | [optional] |
8
+
9
+ ## Example
10
+
11
+ ```ruby
12
+ require 'ultracart_api'
13
+
14
+ instance = UltracartClient::CustomReportExecutionRequest.new(
15
+ parameters: null
16
+ )
17
+ ```
18
+
@@ -0,0 +1,28 @@
1
+ # UltracartClient::CustomReportParameter
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **display_name** | **String** | | [optional] |
8
+ | **meta** | **String** | | [optional] |
9
+ | **name** | **String** | | [optional] |
10
+ | **options** | [**Array<CustomReportParameterOption>**](CustomReportParameterOption.md) | | [optional] |
11
+ | **required** | **Boolean** | | [optional] |
12
+ | **type** | **String** | | [optional] |
13
+
14
+ ## Example
15
+
16
+ ```ruby
17
+ require 'ultracart_api'
18
+
19
+ instance = UltracartClient::CustomReportParameter.new(
20
+ display_name: null,
21
+ meta: null,
22
+ name: null,
23
+ options: null,
24
+ required: null,
25
+ type: null
26
+ )
27
+ ```
28
+
@@ -0,0 +1,20 @@
1
+ # UltracartClient::CustomReportParameterOption
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **description** | **String** | | [optional] |
8
+ | **value** | **String** | | [optional] |
9
+
10
+ ## Example
11
+
12
+ ```ruby
13
+ require 'ultracart_api'
14
+
15
+ instance = UltracartClient::CustomReportParameterOption.new(
16
+ description: null,
17
+ value: null
18
+ )
19
+ ```
20
+
@@ -0,0 +1,28 @@
1
+ # UltracartClient::CustomReportQuery
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **conditional_formatting_start_column** | **Integer** | | [optional] |
8
+ | **freeze_columns** | **Integer** | | [optional] |
9
+ | **pii_columns** | **Array<String>** | | [optional] |
10
+ | **query** | **String** | | [optional] |
11
+ | **sheet_name** | **String** | | [optional] |
12
+ | **title** | **String** | | [optional] |
13
+
14
+ ## Example
15
+
16
+ ```ruby
17
+ require 'ultracart_api'
18
+
19
+ instance = UltracartClient::CustomReportQuery.new(
20
+ conditional_formatting_start_column: null,
21
+ freeze_columns: null,
22
+ pii_columns: null,
23
+ query: null,
24
+ sheet_name: null,
25
+ title: null
26
+ )
27
+ ```
28
+
@@ -0,0 +1,26 @@
1
+ # UltracartClient::CustomReportResponse
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **error** | [**Error**](Error.md) | | [optional] |
8
+ | **metadata** | [**ResponseMetadata**](ResponseMetadata.md) | | [optional] |
9
+ | **report** | [**CustomReport**](CustomReport.md) | | [optional] |
10
+ | **success** | **Boolean** | Indicates if API call was successful | [optional] |
11
+ | **warning** | [**Warning**](Warning.md) | | [optional] |
12
+
13
+ ## Example
14
+
15
+ ```ruby
16
+ require 'ultracart_api'
17
+
18
+ instance = UltracartClient::CustomReportResponse.new(
19
+ error: null,
20
+ metadata: null,
21
+ report: null,
22
+ success: null,
23
+ warning: null
24
+ )
25
+ ```
26
+
@@ -0,0 +1,20 @@
1
+ # UltracartClient::CustomReportTooltip
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **column_name** | **String** | | [optional] |
8
+ | **tooltip** | **String** | | [optional] |
9
+
10
+ ## Example
11
+
12
+ ```ruby
13
+ require 'ultracart_api'
14
+
15
+ instance = UltracartClient::CustomReportTooltip.new(
16
+ column_name: null,
17
+ tooltip: null
18
+ )
19
+ ```
20
+
@@ -0,0 +1,26 @@
1
+ # UltracartClient::CustomReportsResponse
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **error** | [**Error**](Error.md) | | [optional] |
8
+ | **metadata** | [**ResponseMetadata**](ResponseMetadata.md) | | [optional] |
9
+ | **reports** | [**Array<CustomReport>**](CustomReport.md) | reports | [optional] |
10
+ | **success** | **Boolean** | Indicates if API call was successful | [optional] |
11
+ | **warning** | [**Warning**](Warning.md) | | [optional] |
12
+
13
+ ## Example
14
+
15
+ ```ruby
16
+ require 'ultracart_api'
17
+
18
+ instance = UltracartClient::CustomReportsResponse.new(
19
+ error: null,
20
+ metadata: null,
21
+ reports: null,
22
+ success: null,
23
+ warning: null
24
+ )
25
+ ```
26
+