ultracart_api 4.1.16 → 4.1.18
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.
- checksums.yaml +4 -4
- data/README.md +21 -2
- data/docs/CustomDashboard.md +24 -0
- data/docs/CustomDashboardPage.md +22 -0
- data/docs/CustomDashboardPageReport.md +26 -0
- data/docs/CustomDashboardResponse.md +26 -0
- data/docs/CustomDashboardsResponse.md +26 -0
- data/docs/CustomReportExecutionResponse.md +32 -0
- data/docs/CustomReportsExecutionReportData.md +22 -0
- data/docs/CustomReportsExecutionRequest.md +20 -0
- data/docs/CustomReportsExecutionResponse.md +28 -0
- data/docs/DatawarehouseApi.md +327 -4
- data/docs/EmailEditorValuesResponse.md +26 -0
- data/docs/StorefrontApi.md +52 -0
- data/lib/ultracart_api/api/datawarehouse_api.rb +402 -3
- data/lib/ultracart_api/api/storefront_api.rb +62 -0
- data/lib/ultracart_api/models/custom_dashboard.rb +248 -0
- data/lib/ultracart_api/models/custom_dashboard_page.rb +239 -0
- data/lib/ultracart_api/models/custom_dashboard_page_report.rb +255 -0
- data/lib/ultracart_api/models/custom_dashboard_response.rb +256 -0
- data/lib/ultracart_api/models/custom_dashboards_response.rb +259 -0
- data/lib/ultracart_api/models/custom_report_execution_response.rb +285 -0
- data/lib/ultracart_api/models/custom_reports_execution_report_data.rb +237 -0
- data/lib/ultracart_api/models/custom_reports_execution_request.rb +232 -0
- data/lib/ultracart_api/models/custom_reports_execution_response.rb +269 -0
- data/lib/ultracart_api/models/email_editor_values_response.rb +258 -0
- data/lib/ultracart_api/version.rb +1 -1
- data/lib/ultracart_api.rb +10 -0
- metadata +22 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 608097960d36f44a87222e211204808a5e6e5d4cd424893aade7ca4b9df44a19
|
4
|
+
data.tar.gz: 647dcf56829dc2ad988d87819aa122dd806890ae8a4d9757cbbac8a1c28319d0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e724414081b88762ef4e9c0b05417b5fb749df199a46f5a81d35a242ec7bfa056291acb51e253b08bf5619283a7bb5bf9fb66281b169cc6b7459b01cb0e71184
|
7
|
+
data.tar.gz: 35b55506a3f6c3217e0f6fd121aa376198ed22d86402479da4331ba71869396107eec2d87dfe897b053430a2f1d9b109b63f4b1a2c2a685cb08ad688f8a6cf37
|
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.
|
10
|
+
- Package version: 4.1.18
|
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.
|
19
|
+
gem 'ultracart_api', '4.1.18'
|
20
20
|
```
|
21
21
|
|
22
22
|
install:
|
@@ -265,11 +265,15 @@ 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_dashboard**](docs/DatawarehouseApi.md#delete_custom_dashboard) | **DELETE** /datawarehouse/custom_dashboards/{custom_dashboard_oid} | Delete a custom dashboard
|
268
269
|
*UltracartClient::DatawarehouseApi* | [**delete_custom_report**](docs/DatawarehouseApi.md#delete_custom_report) | **DELETE** /datawarehouse/custom_reports/{custom_report_oid} | Delete a custom report
|
269
270
|
*UltracartClient::DatawarehouseApi* | [**delete_report**](docs/DatawarehouseApi.md#delete_report) | **DELETE** /datawarehouse/reports/{report_oid} | Delete a report
|
270
271
|
*UltracartClient::DatawarehouseApi* | [**dry_run_report_queries**](docs/DatawarehouseApi.md#dry_run_report_queries) | **PUT** /datawarehouse/reports/dryrun | Dry run the report queries
|
271
272
|
*UltracartClient::DatawarehouseApi* | [**execute_custom_report**](docs/DatawarehouseApi.md#execute_custom_report) | **PUT** /datawarehouse/custom_reports/{custom_report_oid}/execute | Execute a custom report
|
273
|
+
*UltracartClient::DatawarehouseApi* | [**execute_custom_reports**](docs/DatawarehouseApi.md#execute_custom_reports) | **PUT** /datawarehouse/custom_reports/execute | Execute a custom reports
|
272
274
|
*UltracartClient::DatawarehouseApi* | [**execute_report_queries**](docs/DatawarehouseApi.md#execute_report_queries) | **PUT** /datawarehouse/reports/execute | Execute the report queries
|
275
|
+
*UltracartClient::DatawarehouseApi* | [**get_custom_dashboard**](docs/DatawarehouseApi.md#get_custom_dashboard) | **GET** /datawarehouse/custom_dashboards/{custom_dashboard_oid} | Get a custom dashboard
|
276
|
+
*UltracartClient::DatawarehouseApi* | [**get_custom_dashboards**](docs/DatawarehouseApi.md#get_custom_dashboards) | **GET** /datawarehouse/custom_dashboards | Get custom dashboards
|
273
277
|
*UltracartClient::DatawarehouseApi* | [**get_custom_report**](docs/DatawarehouseApi.md#get_custom_report) | **GET** /datawarehouse/custom_reports/{custom_report_oid} | Get a custom report
|
274
278
|
*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
279
|
*UltracartClient::DatawarehouseApi* | [**get_custom_reports**](docs/DatawarehouseApi.md#get_custom_reports) | **GET** /datawarehouse/custom_reports | Get custom reports
|
@@ -278,8 +282,10 @@ Class | Method | HTTP request | Description
|
|
278
282
|
*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
|
279
283
|
*UltracartClient::DatawarehouseApi* | [**get_report_websocket_authorization**](docs/DatawarehouseApi.md#get_report_websocket_authorization) | **PUT** /datawarehouse/reports/auth | Get report websocket authorization
|
280
284
|
*UltracartClient::DatawarehouseApi* | [**get_reports**](docs/DatawarehouseApi.md#get_reports) | **GET** /datawarehouse/reports | Get list of reports available
|
285
|
+
*UltracartClient::DatawarehouseApi* | [**insert_custom_dashboard**](docs/DatawarehouseApi.md#insert_custom_dashboard) | **POST** /datawarehouse/custom_dashboards | Create a custom dashboard
|
281
286
|
*UltracartClient::DatawarehouseApi* | [**insert_custom_report**](docs/DatawarehouseApi.md#insert_custom_report) | **POST** /datawarehouse/custom_reports | Create a custom report
|
282
287
|
*UltracartClient::DatawarehouseApi* | [**insert_report**](docs/DatawarehouseApi.md#insert_report) | **POST** /datawarehouse/reports | Create a report
|
288
|
+
*UltracartClient::DatawarehouseApi* | [**update_custom_dashboard**](docs/DatawarehouseApi.md#update_custom_dashboard) | **PUT** /datawarehouse/custom_dashboards/{custom_dashboard_oid} | Update a custom dashboard
|
283
289
|
*UltracartClient::DatawarehouseApi* | [**update_custom_report**](docs/DatawarehouseApi.md#update_custom_report) | **PUT** /datawarehouse/custom_reports/{custom_report_oid} | Update a custom report
|
284
290
|
*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
|
285
291
|
*UltracartClient::DatawarehouseApi* | [**update_report**](docs/DatawarehouseApi.md#update_report) | **PUT** /datawarehouse/reports/{report_oid} | Update a report
|
@@ -400,6 +406,7 @@ Class | Method | HTTP request | Description
|
|
400
406
|
*UltracartClient::StorefrontApi* | [**get_email_campaigns**](docs/StorefrontApi.md#get_email_campaigns) | **GET** /storefront/{storefront_oid}/email/campaigns | Get email campaigns
|
401
407
|
*UltracartClient::StorefrontApi* | [**get_email_campaigns_with_stats**](docs/StorefrontApi.md#get_email_campaigns_with_stats) | **GET** /storefront/{storefront_oid}/email/campaignsWithStats/{stat_days} | Get email campaigns with stats
|
402
408
|
*UltracartClient::StorefrontApi* | [**get_email_commseq**](docs/StorefrontApi.md#get_email_commseq) | **GET** /storefront/{storefront_oid}/email/commseqs/{commseq_uuid} | Get email commseq
|
409
|
+
*UltracartClient::StorefrontApi* | [**get_email_commseq_editor_values**](docs/StorefrontApi.md#get_email_commseq_editor_values) | **GET** /storefront/{storefront_oid}/email/commseqs/editorValues | Get email merchant specific editor values
|
403
410
|
*UltracartClient::StorefrontApi* | [**get_email_commseq_email_stats**](docs/StorefrontApi.md#get_email_commseq_email_stats) | **POST** /storefront/{storefront_oid}/email/commseqs/{commseq_uuid}/emailStats | Get email communication sequence emails stats
|
404
411
|
*UltracartClient::StorefrontApi* | [**get_email_commseq_postcard_stats**](docs/StorefrontApi.md#get_email_commseq_postcard_stats) | **POST** /storefront/{storefront_oid}/email/commseqs/{commseq_uuid}/postcardStats | Get email communication sequence postcard stats
|
405
412
|
*UltracartClient::StorefrontApi* | [**get_email_commseq_postcard_tracking**](docs/StorefrontApi.md#get_email_commseq_postcard_tracking) | **GET** /storefront/{storefront_oid}/email/postcards/{commseq_postcard_uuid}/tracking | Get email communication postcard tracking
|
@@ -905,16 +912,25 @@ Class | Method | HTTP request | Description
|
|
905
912
|
- [UltracartClient::CouponsRequest](docs/CouponsRequest.md)
|
906
913
|
- [UltracartClient::CouponsResponse](docs/CouponsResponse.md)
|
907
914
|
- [UltracartClient::Currency](docs/Currency.md)
|
915
|
+
- [UltracartClient::CustomDashboard](docs/CustomDashboard.md)
|
916
|
+
- [UltracartClient::CustomDashboardPage](docs/CustomDashboardPage.md)
|
917
|
+
- [UltracartClient::CustomDashboardPageReport](docs/CustomDashboardPageReport.md)
|
918
|
+
- [UltracartClient::CustomDashboardResponse](docs/CustomDashboardResponse.md)
|
919
|
+
- [UltracartClient::CustomDashboardsResponse](docs/CustomDashboardsResponse.md)
|
908
920
|
- [UltracartClient::CustomReport](docs/CustomReport.md)
|
909
921
|
- [UltracartClient::CustomReportAccountConfig](docs/CustomReportAccountConfig.md)
|
910
922
|
- [UltracartClient::CustomReportAccountConfigResponse](docs/CustomReportAccountConfigResponse.md)
|
911
923
|
- [UltracartClient::CustomReportExecutionParameter](docs/CustomReportExecutionParameter.md)
|
912
924
|
- [UltracartClient::CustomReportExecutionRequest](docs/CustomReportExecutionRequest.md)
|
925
|
+
- [UltracartClient::CustomReportExecutionResponse](docs/CustomReportExecutionResponse.md)
|
913
926
|
- [UltracartClient::CustomReportParameter](docs/CustomReportParameter.md)
|
914
927
|
- [UltracartClient::CustomReportParameterOption](docs/CustomReportParameterOption.md)
|
915
928
|
- [UltracartClient::CustomReportQuery](docs/CustomReportQuery.md)
|
916
929
|
- [UltracartClient::CustomReportResponse](docs/CustomReportResponse.md)
|
917
930
|
- [UltracartClient::CustomReportTooltip](docs/CustomReportTooltip.md)
|
931
|
+
- [UltracartClient::CustomReportsExecutionReportData](docs/CustomReportsExecutionReportData.md)
|
932
|
+
- [UltracartClient::CustomReportsExecutionRequest](docs/CustomReportsExecutionRequest.md)
|
933
|
+
- [UltracartClient::CustomReportsExecutionResponse](docs/CustomReportsExecutionResponse.md)
|
918
934
|
- [UltracartClient::CustomReportsResponse](docs/CustomReportsResponse.md)
|
919
935
|
- [UltracartClient::Customer](docs/Customer.md)
|
920
936
|
- [UltracartClient::CustomerActivity](docs/CustomerActivity.md)
|
@@ -998,6 +1014,7 @@ Class | Method | HTTP request | Description
|
|
998
1014
|
- [UltracartClient::EmailDashboardStatsResponse](docs/EmailDashboardStatsResponse.md)
|
999
1015
|
- [UltracartClient::EmailDomain](docs/EmailDomain.md)
|
1000
1016
|
- [UltracartClient::EmailEditorTokenResponse](docs/EmailEditorTokenResponse.md)
|
1017
|
+
- [UltracartClient::EmailEditorValuesResponse](docs/EmailEditorValuesResponse.md)
|
1001
1018
|
- [UltracartClient::EmailFlow](docs/EmailFlow.md)
|
1002
1019
|
- [UltracartClient::EmailFlowBackPopulateRequest](docs/EmailFlowBackPopulateRequest.md)
|
1003
1020
|
- [UltracartClient::EmailFlowBackPopulateResponse](docs/EmailFlowBackPopulateResponse.md)
|
@@ -1550,6 +1567,8 @@ Not every change is committed to every SDK.
|
|
1550
1567
|
|
1551
1568
|
| Version | Date | Comments |
|
1552
1569
|
| --: | :-: | --- |
|
1570
|
+
| 4.1.18 | 08/04/2025 | more internal development on loyalty step for storefront flows |
|
1571
|
+
| 4.1.17 | 08/04/2025 | small changes to internal flow app to support loyalty tier moves |
|
1553
1572
|
| 4.1.16 | 07/28/2025 | updated doc samples |
|
1554
1573
|
| 4.1.15 | 07/28/2025 | new order methods for blocking and unblocking refunds |
|
1555
1574
|
| 4.1.14 | 07/10/2025 | automation test |
|
@@ -0,0 +1,24 @@
|
|
1
|
+
# UltracartClient::CustomDashboard
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
|
5
|
+
| Name | Type | Description | Notes |
|
6
|
+
| ---- | ---- | ----------- | ----- |
|
7
|
+
| **data_warehouse_custom_dashboard_oid** | **Integer** | | [optional] |
|
8
|
+
| **merchant_id** | **String** | | [optional] |
|
9
|
+
| **name** | **String** | | [optional] |
|
10
|
+
| **pages** | [**Array<CustomDashboardPage>**](CustomDashboardPage.md) | | [optional] |
|
11
|
+
|
12
|
+
## Example
|
13
|
+
|
14
|
+
```ruby
|
15
|
+
require 'ultracart_api'
|
16
|
+
|
17
|
+
instance = UltracartClient::CustomDashboard.new(
|
18
|
+
data_warehouse_custom_dashboard_oid: null,
|
19
|
+
merchant_id: null,
|
20
|
+
name: null,
|
21
|
+
pages: null
|
22
|
+
)
|
23
|
+
```
|
24
|
+
|
@@ -0,0 +1,22 @@
|
|
1
|
+
# UltracartClient::CustomDashboardPage
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
|
5
|
+
| Name | Type | Description | Notes |
|
6
|
+
| ---- | ---- | ----------- | ----- |
|
7
|
+
| **page_height_inches** | **Float** | | [optional] |
|
8
|
+
| **page_width_inches** | **Float** | | [optional] |
|
9
|
+
| **reports** | [**Array<CustomDashboardPageReport>**](CustomDashboardPageReport.md) | | [optional] |
|
10
|
+
|
11
|
+
## Example
|
12
|
+
|
13
|
+
```ruby
|
14
|
+
require 'ultracart_api'
|
15
|
+
|
16
|
+
instance = UltracartClient::CustomDashboardPage.new(
|
17
|
+
page_height_inches: null,
|
18
|
+
page_width_inches: null,
|
19
|
+
reports: null
|
20
|
+
)
|
21
|
+
```
|
22
|
+
|
@@ -0,0 +1,26 @@
|
|
1
|
+
# UltracartClient::CustomDashboardPageReport
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
|
5
|
+
| Name | Type | Description | Notes |
|
6
|
+
| ---- | ---- | ----------- | ----- |
|
7
|
+
| **data_warehouse_report_config_oid** | **Integer** | | [optional] |
|
8
|
+
| **grid_height** | **Integer** | | [optional] |
|
9
|
+
| **grid_width** | **Integer** | | [optional] |
|
10
|
+
| **grid_x** | **Integer** | | [optional] |
|
11
|
+
| **grid_y** | **Integer** | | [optional] |
|
12
|
+
|
13
|
+
## Example
|
14
|
+
|
15
|
+
```ruby
|
16
|
+
require 'ultracart_api'
|
17
|
+
|
18
|
+
instance = UltracartClient::CustomDashboardPageReport.new(
|
19
|
+
data_warehouse_report_config_oid: null,
|
20
|
+
grid_height: null,
|
21
|
+
grid_width: null,
|
22
|
+
grid_x: null,
|
23
|
+
grid_y: null
|
24
|
+
)
|
25
|
+
```
|
26
|
+
|
@@ -0,0 +1,26 @@
|
|
1
|
+
# UltracartClient::CustomDashboardResponse
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
|
5
|
+
| Name | Type | Description | Notes |
|
6
|
+
| ---- | ---- | ----------- | ----- |
|
7
|
+
| **dashboard** | [**CustomDashboard**](CustomDashboard.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::CustomDashboardResponse.new(
|
19
|
+
dashboard: null,
|
20
|
+
error: null,
|
21
|
+
metadata: null,
|
22
|
+
success: null,
|
23
|
+
warning: null
|
24
|
+
)
|
25
|
+
```
|
26
|
+
|
@@ -0,0 +1,26 @@
|
|
1
|
+
# UltracartClient::CustomDashboardsResponse
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
|
5
|
+
| Name | Type | Description | Notes |
|
6
|
+
| ---- | ---- | ----------- | ----- |
|
7
|
+
| **dashboards** | [**Array<CustomDashboard>**](CustomDashboard.md) | reports | [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::CustomDashboardsResponse.new(
|
19
|
+
dashboards: null,
|
20
|
+
error: null,
|
21
|
+
metadata: null,
|
22
|
+
success: null,
|
23
|
+
warning: null
|
24
|
+
)
|
25
|
+
```
|
26
|
+
|
@@ -0,0 +1,32 @@
|
|
1
|
+
# UltracartClient::CustomReportExecutionResponse
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
|
5
|
+
| Name | Type | Description | Notes |
|
6
|
+
| ---- | ---- | ----------- | ----- |
|
7
|
+
| **error** | [**Error**](Error.md) | | [optional] |
|
8
|
+
| **metadata** | [**ResponseMetadata**](ResponseMetadata.md) | | [optional] |
|
9
|
+
| **parameters** | [**Array<CustomReportExecutionParameter>**](CustomReportExecutionParameter.md) | | [optional] |
|
10
|
+
| **report** | [**CustomReport**](CustomReport.md) | | [optional] |
|
11
|
+
| **result_schema_json** | **String** | | [optional] |
|
12
|
+
| **result_url** | **String** | | [optional] |
|
13
|
+
| **success** | **Boolean** | Indicates if API call was successful | [optional] |
|
14
|
+
| **warning** | [**Warning**](Warning.md) | | [optional] |
|
15
|
+
|
16
|
+
## Example
|
17
|
+
|
18
|
+
```ruby
|
19
|
+
require 'ultracart_api'
|
20
|
+
|
21
|
+
instance = UltracartClient::CustomReportExecutionResponse.new(
|
22
|
+
error: null,
|
23
|
+
metadata: null,
|
24
|
+
parameters: null,
|
25
|
+
report: null,
|
26
|
+
result_schema_json: null,
|
27
|
+
result_url: null,
|
28
|
+
success: null,
|
29
|
+
warning: null
|
30
|
+
)
|
31
|
+
```
|
32
|
+
|
@@ -0,0 +1,22 @@
|
|
1
|
+
# UltracartClient::CustomReportsExecutionReportData
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
|
5
|
+
| Name | Type | Description | Notes |
|
6
|
+
| ---- | ---- | ----------- | ----- |
|
7
|
+
| **data_warehouse_report_config_oid** | **Integer** | | [optional] |
|
8
|
+
| **error_message** | **String** | | [optional] |
|
9
|
+
| **result_url** | **String** | | [optional] |
|
10
|
+
|
11
|
+
## Example
|
12
|
+
|
13
|
+
```ruby
|
14
|
+
require 'ultracart_api'
|
15
|
+
|
16
|
+
instance = UltracartClient::CustomReportsExecutionReportData.new(
|
17
|
+
data_warehouse_report_config_oid: null,
|
18
|
+
error_message: null,
|
19
|
+
result_url: null
|
20
|
+
)
|
21
|
+
```
|
22
|
+
|
@@ -0,0 +1,20 @@
|
|
1
|
+
# UltracartClient::CustomReportsExecutionRequest
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
|
5
|
+
| Name | Type | Description | Notes |
|
6
|
+
| ---- | ---- | ----------- | ----- |
|
7
|
+
| **data_warehouse_report_config_oids** | **Array<Integer>** | | [optional] |
|
8
|
+
| **parameters** | [**Array<CustomReportExecutionParameter>**](CustomReportExecutionParameter.md) | | [optional] |
|
9
|
+
|
10
|
+
## Example
|
11
|
+
|
12
|
+
```ruby
|
13
|
+
require 'ultracart_api'
|
14
|
+
|
15
|
+
instance = UltracartClient::CustomReportsExecutionRequest.new(
|
16
|
+
data_warehouse_report_config_oids: null,
|
17
|
+
parameters: null
|
18
|
+
)
|
19
|
+
```
|
20
|
+
|
@@ -0,0 +1,28 @@
|
|
1
|
+
# UltracartClient::CustomReportsExecutionResponse
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
|
5
|
+
| Name | Type | Description | Notes |
|
6
|
+
| ---- | ---- | ----------- | ----- |
|
7
|
+
| **error** | [**Error**](Error.md) | | [optional] |
|
8
|
+
| **metadata** | [**ResponseMetadata**](ResponseMetadata.md) | | [optional] |
|
9
|
+
| **parameters** | [**Array<CustomReportExecutionParameter>**](CustomReportExecutionParameter.md) | | [optional] |
|
10
|
+
| **reports** | [**Array<CustomReportsExecutionReportData>**](CustomReportsExecutionReportData.md) | | [optional] |
|
11
|
+
| **success** | **Boolean** | Indicates if API call was successful | [optional] |
|
12
|
+
| **warning** | [**Warning**](Warning.md) | | [optional] |
|
13
|
+
|
14
|
+
## Example
|
15
|
+
|
16
|
+
```ruby
|
17
|
+
require 'ultracart_api'
|
18
|
+
|
19
|
+
instance = UltracartClient::CustomReportsExecutionResponse.new(
|
20
|
+
error: null,
|
21
|
+
metadata: null,
|
22
|
+
parameters: null,
|
23
|
+
reports: null,
|
24
|
+
success: null,
|
25
|
+
warning: null
|
26
|
+
)
|
27
|
+
```
|
28
|
+
|