From 8c38adb07662e7ec20537b5557f75c3d4f7c71d6 Mon Sep 17 00:00:00 2001 From: slavkor <30171206+slavkor@users.noreply.github.com> Date: Mon, 2 Sep 2024 08:41:07 +0000 Subject: [PATCH] chore: release data-link SDK --- README.md | 2 +- docs/ApiResponse.md | 30 ++ docs/DefaultApi.md | 441 ++++++++++++++++++++++ docs/PushData.md | 35 ++ docs/PushDataAttribute.md | 30 ++ docs/State.md | 11 + src/README.md | 2 +- src/databox/__init__.py | 2 +- src/databox/api/default_api.py | 2 +- src/databox/api_client.py | 2 +- src/databox/configuration.py | 4 +- src/databox/exceptions.py | 2 +- src/databox/models/__init__.py | 2 +- src/databox/models/api_response.py | 2 +- src/databox/models/push_data.py | 2 +- src/databox/models/push_data_attribute.py | 2 +- src/databox/models/state.py | 2 +- src/databox/rest.py | 2 +- src/setup.py | 2 +- src/test/test_api_response.py | 2 +- src/test/test_default_api.py | 2 +- src/test/test_push_data.py | 2 +- src/test/test_push_data_attribute.py | 2 +- src/test/test_state.py | 2 +- 24 files changed, 567 insertions(+), 20 deletions(-) create mode 100644 docs/ApiResponse.md create mode 100644 docs/DefaultApi.md create mode 100644 docs/PushData.md create mode 100644 docs/PushDataAttribute.md create mode 100644 docs/State.md diff --git a/README.md b/README.md index 409e255..30b0cd9 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ Push API resources Open API documentation This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project: -- API version: 0.4.1 +- API version: 0.4.4-alpha.4 - Package version: 2.2.2 - Generator version: 7.6.0 - Build package: org.openapitools.codegen.languages.PythonClientCodegen diff --git a/docs/ApiResponse.md b/docs/ApiResponse.md new file mode 100644 index 0000000..5daba95 --- /dev/null +++ b/docs/ApiResponse.md @@ -0,0 +1,30 @@ +# ApiResponse + + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**status** | **str** | | [optional] +**message** | **str** | | [optional] + +## Example + +```python +from databox.models.api_response import ApiResponse + +# TODO update the JSON string below +json = "{}" +# create an instance of ApiResponse from a JSON string +api_response_instance = ApiResponse.from_json(json) +# print the JSON string representation of the object +print(ApiResponse.to_json()) + +# convert the object into a dict +api_response_dict = api_response_instance.to_dict() +# create an instance of ApiResponse from a dict +api_response_from_dict = ApiResponse.from_dict(api_response_dict) +``` +[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) + + diff --git a/docs/DefaultApi.md b/docs/DefaultApi.md new file mode 100644 index 0000000..b863966 --- /dev/null +++ b/docs/DefaultApi.md @@ -0,0 +1,441 @@ +# databox.DefaultApi + +All URIs are relative to *https://push.databox.com* + +Method | HTTP request | Description +------------- | ------------- | ------------- +[**data_delete**](DefaultApi.md#data_delete) | **DELETE** /data | +[**data_metric_key_delete**](DefaultApi.md#data_metric_key_delete) | **DELETE** /data/{metricKey} | +[**data_post**](DefaultApi.md#data_post) | **POST** /data | +[**metrickeys_get**](DefaultApi.md#metrickeys_get) | **GET** /metrickeys | +[**metrickeys_post**](DefaultApi.md#metrickeys_post) | **POST** /metrickeys | +[**ping_get**](DefaultApi.md#ping_get) | **GET** /ping | + + +# **data_delete** +> data_delete() + + + +### Example + +* Basic Authentication (basicAuth): + +```python +import databox +from databox.rest import ApiException +from pprint import pprint + +# Defining the host is optional and defaults to https://push.databox.com +# See configuration.py for a list of all supported configuration parameters. +configuration = databox.Configuration( + host = "https://push.databox.com" +) + +# The client must configure the authentication and authorization parameters +# in accordance with the API server security policy. +# Examples for each auth method are provided below, use the example that +# satisfies your auth use case. + +# Configure HTTP basic authorization: basicAuth +configuration = databox.Configuration( + username = os.environ["USERNAME"], + password = os.environ["PASSWORD"] +) + +# Enter a context with an instance of the API client +with databox.ApiClient(configuration) as api_client: + # Create an instance of the API class + api_instance = databox.DefaultApi(api_client) + + try: + api_instance.data_delete() + except Exception as e: + print("Exception when calling DefaultApi->data_delete: %s\n" % e) +``` + + + +### Parameters + +This endpoint does not need any parameter. + +### Return type + +void (empty response body) + +### Authorization + +[basicAuth](../README.md#basicAuth) + +### HTTP request headers + + - **Content-Type**: Not defined + - **Accept**: Not defined + +### HTTP response details + +| Status code | Description | Response headers | +|-------------|-------------|------------------| +**200** | OK | - | + +[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) + +# **data_metric_key_delete** +> data_metric_key_delete(metric_key) + + + +### Example + +* Basic Authentication (basicAuth): + +```python +import databox +from databox.rest import ApiException +from pprint import pprint + +# Defining the host is optional and defaults to https://push.databox.com +# See configuration.py for a list of all supported configuration parameters. +configuration = databox.Configuration( + host = "https://push.databox.com" +) + +# The client must configure the authentication and authorization parameters +# in accordance with the API server security policy. +# Examples for each auth method are provided below, use the example that +# satisfies your auth use case. + +# Configure HTTP basic authorization: basicAuth +configuration = databox.Configuration( + username = os.environ["USERNAME"], + password = os.environ["PASSWORD"] +) + +# Enter a context with an instance of the API client +with databox.ApiClient(configuration) as api_client: + # Create an instance of the API class + api_instance = databox.DefaultApi(api_client) + metric_key = 'metric_key_example' # str | + + try: + api_instance.data_metric_key_delete(metric_key) + except Exception as e: + print("Exception when calling DefaultApi->data_metric_key_delete: %s\n" % e) +``` + + + +### Parameters + + +Name | Type | Description | Notes +------------- | ------------- | ------------- | ------------- + **metric_key** | **str**| | + +### Return type + +void (empty response body) + +### Authorization + +[basicAuth](../README.md#basicAuth) + +### HTTP request headers + + - **Content-Type**: Not defined + - **Accept**: Not defined + +### HTTP response details + +| Status code | Description | Response headers | +|-------------|-------------|------------------| +**200** | OK | - | + +[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) + +# **data_post** +> data_post(push_data=push_data) + + + +### Example + +* Basic Authentication (basicAuth): + +```python +import databox +from databox.models.push_data import PushData +from databox.rest import ApiException +from pprint import pprint + +# Defining the host is optional and defaults to https://push.databox.com +# See configuration.py for a list of all supported configuration parameters. +configuration = databox.Configuration( + host = "https://push.databox.com" +) + +# The client must configure the authentication and authorization parameters +# in accordance with the API server security policy. +# Examples for each auth method are provided below, use the example that +# satisfies your auth use case. + +# Configure HTTP basic authorization: basicAuth +configuration = databox.Configuration( + username = os.environ["USERNAME"], + password = os.environ["PASSWORD"] +) + +# Enter a context with an instance of the API client +with databox.ApiClient(configuration) as api_client: + # Create an instance of the API class + api_instance = databox.DefaultApi(api_client) + push_data = [databox.PushData()] # List[PushData] | (optional) + + try: + api_instance.data_post(push_data=push_data) + except Exception as e: + print("Exception when calling DefaultApi->data_post: %s\n" % e) +``` + + + +### Parameters + + +Name | Type | Description | Notes +------------- | ------------- | ------------- | ------------- + **push_data** | [**List[PushData]**](PushData.md)| | [optional] + +### Return type + +void (empty response body) + +### Authorization + +[basicAuth](../README.md#basicAuth) + +### HTTP request headers + + - **Content-Type**: application/json, application/vnd.databox.v2+json + - **Accept**: Not defined + +### HTTP response details + +| Status code | Description | Response headers | +|-------------|-------------|------------------| +**200** | OK | - | + +[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) + +# **metrickeys_get** +> metrickeys_get() + + + +### Example + +* Basic Authentication (basicAuth): + +```python +import databox +from databox.rest import ApiException +from pprint import pprint + +# Defining the host is optional and defaults to https://push.databox.com +# See configuration.py for a list of all supported configuration parameters. +configuration = databox.Configuration( + host = "https://push.databox.com" +) + +# The client must configure the authentication and authorization parameters +# in accordance with the API server security policy. +# Examples for each auth method are provided below, use the example that +# satisfies your auth use case. + +# Configure HTTP basic authorization: basicAuth +configuration = databox.Configuration( + username = os.environ["USERNAME"], + password = os.environ["PASSWORD"] +) + +# Enter a context with an instance of the API client +with databox.ApiClient(configuration) as api_client: + # Create an instance of the API class + api_instance = databox.DefaultApi(api_client) + + try: + api_instance.metrickeys_get() + except Exception as e: + print("Exception when calling DefaultApi->metrickeys_get: %s\n" % e) +``` + + + +### Parameters + +This endpoint does not need any parameter. + +### Return type + +void (empty response body) + +### Authorization + +[basicAuth](../README.md#basicAuth) + +### HTTP request headers + + - **Content-Type**: Not defined + - **Accept**: Not defined + +### HTTP response details + +| Status code | Description | Response headers | +|-------------|-------------|------------------| +**200** | OK | - | + +[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) + +# **metrickeys_post** +> metrickeys_post(body=body) + + + +### Example + +* Basic Authentication (basicAuth): + +```python +import databox +from databox.rest import ApiException +from pprint import pprint + +# Defining the host is optional and defaults to https://push.databox.com +# See configuration.py for a list of all supported configuration parameters. +configuration = databox.Configuration( + host = "https://push.databox.com" +) + +# The client must configure the authentication and authorization parameters +# in accordance with the API server security policy. +# Examples for each auth method are provided below, use the example that +# satisfies your auth use case. + +# Configure HTTP basic authorization: basicAuth +configuration = databox.Configuration( + username = os.environ["USERNAME"], + password = os.environ["PASSWORD"] +) + +# Enter a context with an instance of the API client +with databox.ApiClient(configuration) as api_client: + # Create an instance of the API class + api_instance = databox.DefaultApi(api_client) + body = None # object | (optional) + + try: + api_instance.metrickeys_post(body=body) + except Exception as e: + print("Exception when calling DefaultApi->metrickeys_post: %s\n" % e) +``` + + + +### Parameters + + +Name | Type | Description | Notes +------------- | ------------- | ------------- | ------------- + **body** | **object**| | [optional] + +### Return type + +void (empty response body) + +### Authorization + +[basicAuth](../README.md#basicAuth) + +### HTTP request headers + + - **Content-Type**: application/json, application/vnd.databox.v2+json + - **Accept**: Not defined + +### HTTP response details + +| Status code | Description | Response headers | +|-------------|-------------|------------------| +**200** | OK | - | + +[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) + +# **ping_get** +> ping_get() + + + +### Example + +* Basic Authentication (basicAuth): + +```python +import databox +from databox.rest import ApiException +from pprint import pprint + +# Defining the host is optional and defaults to https://push.databox.com +# See configuration.py for a list of all supported configuration parameters. +configuration = databox.Configuration( + host = "https://push.databox.com" +) + +# The client must configure the authentication and authorization parameters +# in accordance with the API server security policy. +# Examples for each auth method are provided below, use the example that +# satisfies your auth use case. + +# Configure HTTP basic authorization: basicAuth +configuration = databox.Configuration( + username = os.environ["USERNAME"], + password = os.environ["PASSWORD"] +) + +# Enter a context with an instance of the API client +with databox.ApiClient(configuration) as api_client: + # Create an instance of the API class + api_instance = databox.DefaultApi(api_client) + + try: + api_instance.ping_get() + except Exception as e: + print("Exception when calling DefaultApi->ping_get: %s\n" % e) +``` + + + +### Parameters + +This endpoint does not need any parameter. + +### Return type + +void (empty response body) + +### Authorization + +[basicAuth](../README.md#basicAuth) + +### HTTP request headers + + - **Content-Type**: Not defined + - **Accept**: Not defined + +### HTTP response details + +| Status code | Description | Response headers | +|-------------|-------------|------------------| +**200** | OK | - | + +[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) + diff --git a/docs/PushData.md b/docs/PushData.md new file mode 100644 index 0000000..50cc21b --- /dev/null +++ b/docs/PushData.md @@ -0,0 +1,35 @@ +# PushData + + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**attributes** | [**List[PushDataAttribute]**](PushDataAttribute.md) | | [optional] +**var_date** | **str** | | [optional] +**key** | **str** | | [optional] +**period_from** | **str** | | [optional] +**period_to** | **str** | | [optional] +**unit** | **str** | | [optional] +**value** | **float** | | [optional] + +## Example + +```python +from databox.models.push_data import PushData + +# TODO update the JSON string below +json = "{}" +# create an instance of PushData from a JSON string +push_data_instance = PushData.from_json(json) +# print the JSON string representation of the object +print(PushData.to_json()) + +# convert the object into a dict +push_data_dict = push_data_instance.to_dict() +# create an instance of PushData from a dict +push_data_from_dict = PushData.from_dict(push_data_dict) +``` +[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) + + diff --git a/docs/PushDataAttribute.md b/docs/PushDataAttribute.md new file mode 100644 index 0000000..7200a64 --- /dev/null +++ b/docs/PushDataAttribute.md @@ -0,0 +1,30 @@ +# PushDataAttribute + + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**key** | **str** | | [optional] +**value** | **str** | | [optional] + +## Example + +```python +from databox.models.push_data_attribute import PushDataAttribute + +# TODO update the JSON string below +json = "{}" +# create an instance of PushDataAttribute from a JSON string +push_data_attribute_instance = PushDataAttribute.from_json(json) +# print the JSON string representation of the object +print(PushDataAttribute.to_json()) + +# convert the object into a dict +push_data_attribute_dict = push_data_attribute_instance.to_dict() +# create an instance of PushDataAttribute from a dict +push_data_attribute_from_dict = PushDataAttribute.from_dict(push_data_attribute_dict) +``` +[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) + + diff --git a/docs/State.md b/docs/State.md new file mode 100644 index 0000000..49b0f6f --- /dev/null +++ b/docs/State.md @@ -0,0 +1,11 @@ +# State + + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- + +[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) + + diff --git a/src/README.md b/src/README.md index 409e255..30b0cd9 100644 --- a/src/README.md +++ b/src/README.md @@ -3,7 +3,7 @@ Push API resources Open API documentation This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project: -- API version: 0.4.1 +- API version: 0.4.4-alpha.4 - Package version: 2.2.2 - Generator version: 7.6.0 - Build package: org.openapitools.codegen.languages.PythonClientCodegen diff --git a/src/databox/__init__.py b/src/databox/__init__.py index f73580a..b85c521 100644 --- a/src/databox/__init__.py +++ b/src/databox/__init__.py @@ -7,7 +7,7 @@ Push API resources Open API documentation - The version of the OpenAPI document: 0.4.1 + The version of the OpenAPI document: 0.4.4-alpha.4 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/databox/api/default_api.py b/src/databox/api/default_api.py index 5a1b36e..74630a0 100644 --- a/src/databox/api/default_api.py +++ b/src/databox/api/default_api.py @@ -5,7 +5,7 @@ Push API resources Open API documentation - The version of the OpenAPI document: 0.4.1 + The version of the OpenAPI document: 0.4.4-alpha.4 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/databox/api_client.py b/src/databox/api_client.py index 3fc924e..2f00d4a 100644 --- a/src/databox/api_client.py +++ b/src/databox/api_client.py @@ -5,7 +5,7 @@ Push API resources Open API documentation - The version of the OpenAPI document: 0.4.1 + The version of the OpenAPI document: 0.4.4-alpha.4 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/databox/configuration.py b/src/databox/configuration.py index e899b97..ebbd17a 100644 --- a/src/databox/configuration.py +++ b/src/databox/configuration.py @@ -5,7 +5,7 @@ Push API resources Open API documentation - The version of the OpenAPI document: 0.4.1 + The version of the OpenAPI document: 0.4.4-alpha.4 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. @@ -393,7 +393,7 @@ def to_debug_report(self): return "Python SDK Debug Report:\n"\ "OS: {env}\n"\ "Python Version: {pyversion}\n"\ - "Version of the API: 0.4.1\n"\ + "Version of the API: 0.4.4-alpha.4\n"\ "SDK Package Version: 2.2.2".\ format(env=sys.platform, pyversion=sys.version) diff --git a/src/databox/exceptions.py b/src/databox/exceptions.py index b54deb0..91fcc66 100644 --- a/src/databox/exceptions.py +++ b/src/databox/exceptions.py @@ -5,7 +5,7 @@ Push API resources Open API documentation - The version of the OpenAPI document: 0.4.1 + The version of the OpenAPI document: 0.4.4-alpha.4 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/databox/models/__init__.py b/src/databox/models/__init__.py index 294c5f8..70014c4 100644 --- a/src/databox/models/__init__.py +++ b/src/databox/models/__init__.py @@ -6,7 +6,7 @@ Push API resources Open API documentation - The version of the OpenAPI document: 0.4.1 + The version of the OpenAPI document: 0.4.4-alpha.4 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/databox/models/api_response.py b/src/databox/models/api_response.py index f922e01..cc27bde 100644 --- a/src/databox/models/api_response.py +++ b/src/databox/models/api_response.py @@ -5,7 +5,7 @@ Push API resources Open API documentation - The version of the OpenAPI document: 0.4.1 + The version of the OpenAPI document: 0.4.4-alpha.4 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/databox/models/push_data.py b/src/databox/models/push_data.py index 0963ed9..07980ac 100644 --- a/src/databox/models/push_data.py +++ b/src/databox/models/push_data.py @@ -5,7 +5,7 @@ Push API resources Open API documentation - The version of the OpenAPI document: 0.4.1 + The version of the OpenAPI document: 0.4.4-alpha.4 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/databox/models/push_data_attribute.py b/src/databox/models/push_data_attribute.py index 4a3794c..96a16a0 100644 --- a/src/databox/models/push_data_attribute.py +++ b/src/databox/models/push_data_attribute.py @@ -5,7 +5,7 @@ Push API resources Open API documentation - The version of the OpenAPI document: 0.4.1 + The version of the OpenAPI document: 0.4.4-alpha.4 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/databox/models/state.py b/src/databox/models/state.py index c7f284a..c893bc0 100644 --- a/src/databox/models/state.py +++ b/src/databox/models/state.py @@ -5,7 +5,7 @@ Push API resources Open API documentation - The version of the OpenAPI document: 0.4.1 + The version of the OpenAPI document: 0.4.4-alpha.4 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/databox/rest.py b/src/databox/rest.py index f43f483..e399ec7 100644 --- a/src/databox/rest.py +++ b/src/databox/rest.py @@ -5,7 +5,7 @@ Push API resources Open API documentation - The version of the OpenAPI document: 0.4.1 + The version of the OpenAPI document: 0.4.4-alpha.4 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/setup.py b/src/setup.py index 1e88545..43d8611 100644 --- a/src/setup.py +++ b/src/setup.py @@ -5,7 +5,7 @@ Push API resources Open API documentation - The version of the OpenAPI document: 0.4.1 + The version of the OpenAPI document: 0.4.4-alpha.4 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/test/test_api_response.py b/src/test/test_api_response.py index 6a80796..21128b8 100644 --- a/src/test/test_api_response.py +++ b/src/test/test_api_response.py @@ -5,7 +5,7 @@ Push API resources Open API documentation - The version of the OpenAPI document: 0.4.1 + The version of the OpenAPI document: 0.4.4-alpha.4 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/test/test_default_api.py b/src/test/test_default_api.py index 9424e4a..54f5198 100644 --- a/src/test/test_default_api.py +++ b/src/test/test_default_api.py @@ -5,7 +5,7 @@ Push API resources Open API documentation - The version of the OpenAPI document: 0.4.1 + The version of the OpenAPI document: 0.4.4-alpha.4 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/test/test_push_data.py b/src/test/test_push_data.py index 2a8e6d3..d2f3899 100644 --- a/src/test/test_push_data.py +++ b/src/test/test_push_data.py @@ -5,7 +5,7 @@ Push API resources Open API documentation - The version of the OpenAPI document: 0.4.1 + The version of the OpenAPI document: 0.4.4-alpha.4 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/test/test_push_data_attribute.py b/src/test/test_push_data_attribute.py index 6277365..4539a6f 100644 --- a/src/test/test_push_data_attribute.py +++ b/src/test/test_push_data_attribute.py @@ -5,7 +5,7 @@ Push API resources Open API documentation - The version of the OpenAPI document: 0.4.1 + The version of the OpenAPI document: 0.4.4-alpha.4 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. diff --git a/src/test/test_state.py b/src/test/test_state.py index 8148721..9e1d513 100644 --- a/src/test/test_state.py +++ b/src/test/test_state.py @@ -5,7 +5,7 @@ Push API resources Open API documentation - The version of the OpenAPI document: 0.4.1 + The version of the OpenAPI document: 0.4.4-alpha.4 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually.