diff --git a/README.md b/README.md index 409e255..d929b18 100644 --- a/README.md +++ b/README.md @@ -1,9 +1,9 @@ # databox -Push API resources Open API documentation +Push API resources Open API documentation asdas 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.2 - 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..d929b18 100644 --- a/src/README.md +++ b/src/README.md @@ -1,9 +1,9 @@ # databox -Push API resources Open API documentation +Push API resources Open API documentation asdas 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.2 - 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..6531174 100644 --- a/src/databox/__init__.py +++ b/src/databox/__init__.py @@ -5,9 +5,9 @@ """ Static OpenAPI document of Push API resource - Push API resources Open API documentation + Push API resources Open API documentation asdas - The version of the OpenAPI document: 0.4.1 + The version of the OpenAPI document: 0.4.4-alpha.2 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..3b3b253 100644 --- a/src/databox/api/default_api.py +++ b/src/databox/api/default_api.py @@ -3,9 +3,9 @@ """ Static OpenAPI document of Push API resource - Push API resources Open API documentation + Push API resources Open API documentation asdas - The version of the OpenAPI document: 0.4.1 + The version of the OpenAPI document: 0.4.4-alpha.2 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..6cb6267 100644 --- a/src/databox/api_client.py +++ b/src/databox/api_client.py @@ -3,9 +3,9 @@ """ Static OpenAPI document of Push API resource - Push API resources Open API documentation + Push API resources Open API documentation asdas - The version of the OpenAPI document: 0.4.1 + The version of the OpenAPI document: 0.4.4-alpha.2 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..c20d189 100644 --- a/src/databox/configuration.py +++ b/src/databox/configuration.py @@ -3,9 +3,9 @@ """ Static OpenAPI document of Push API resource - Push API resources Open API documentation + Push API resources Open API documentation asdas - The version of the OpenAPI document: 0.4.1 + The version of the OpenAPI document: 0.4.4-alpha.2 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.2\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..704bb03 100644 --- a/src/databox/exceptions.py +++ b/src/databox/exceptions.py @@ -3,9 +3,9 @@ """ Static OpenAPI document of Push API resource - Push API resources Open API documentation + Push API resources Open API documentation asdas - The version of the OpenAPI document: 0.4.1 + The version of the OpenAPI document: 0.4.4-alpha.2 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..9316a51 100644 --- a/src/databox/models/__init__.py +++ b/src/databox/models/__init__.py @@ -4,9 +4,9 @@ """ Static OpenAPI document of Push API resource - Push API resources Open API documentation + Push API resources Open API documentation asdas - The version of the OpenAPI document: 0.4.1 + The version of the OpenAPI document: 0.4.4-alpha.2 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..5ba145f 100644 --- a/src/databox/models/api_response.py +++ b/src/databox/models/api_response.py @@ -3,9 +3,9 @@ """ Static OpenAPI document of Push API resource - Push API resources Open API documentation + Push API resources Open API documentation asdas - The version of the OpenAPI document: 0.4.1 + The version of the OpenAPI document: 0.4.4-alpha.2 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..b014a8d 100644 --- a/src/databox/models/push_data.py +++ b/src/databox/models/push_data.py @@ -3,9 +3,9 @@ """ Static OpenAPI document of Push API resource - Push API resources Open API documentation + Push API resources Open API documentation asdas - The version of the OpenAPI document: 0.4.1 + The version of the OpenAPI document: 0.4.4-alpha.2 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..0fbcf81 100644 --- a/src/databox/models/push_data_attribute.py +++ b/src/databox/models/push_data_attribute.py @@ -3,9 +3,9 @@ """ Static OpenAPI document of Push API resource - Push API resources Open API documentation + Push API resources Open API documentation asdas - The version of the OpenAPI document: 0.4.1 + The version of the OpenAPI document: 0.4.4-alpha.2 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..04539eb 100644 --- a/src/databox/models/state.py +++ b/src/databox/models/state.py @@ -3,9 +3,9 @@ """ Static OpenAPI document of Push API resource - Push API resources Open API documentation + Push API resources Open API documentation asdas - The version of the OpenAPI document: 0.4.1 + The version of the OpenAPI document: 0.4.4-alpha.2 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..2d714b7 100644 --- a/src/databox/rest.py +++ b/src/databox/rest.py @@ -3,9 +3,9 @@ """ Static OpenAPI document of Push API resource - Push API resources Open API documentation + Push API resources Open API documentation asdas - The version of the OpenAPI document: 0.4.1 + The version of the OpenAPI document: 0.4.4-alpha.2 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..3cf7700 100644 --- a/src/setup.py +++ b/src/setup.py @@ -3,9 +3,9 @@ """ Static OpenAPI document of Push API resource - Push API resources Open API documentation + Push API resources Open API documentation asdas - The version of the OpenAPI document: 0.4.1 + The version of the OpenAPI document: 0.4.4-alpha.2 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. @@ -43,7 +43,7 @@ include_package_data=True, long_description_content_type='text/markdown', long_description="""\ - Push API resources Open API documentation + Push API resources Open API documentation asdas """, # noqa: E501 package_data={"databox": ["py.typed"]}, ) diff --git a/src/test/test_api_response.py b/src/test/test_api_response.py index 6a80796..dce63d4 100644 --- a/src/test/test_api_response.py +++ b/src/test/test_api_response.py @@ -3,9 +3,9 @@ """ Static OpenAPI document of Push API resource - Push API resources Open API documentation + Push API resources Open API documentation asdas - The version of the OpenAPI document: 0.4.1 + The version of the OpenAPI document: 0.4.4-alpha.2 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..d78bded 100644 --- a/src/test/test_default_api.py +++ b/src/test/test_default_api.py @@ -3,9 +3,9 @@ """ Static OpenAPI document of Push API resource - Push API resources Open API documentation + Push API resources Open API documentation asdas - The version of the OpenAPI document: 0.4.1 + The version of the OpenAPI document: 0.4.4-alpha.2 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..dd95d73 100644 --- a/src/test/test_push_data.py +++ b/src/test/test_push_data.py @@ -3,9 +3,9 @@ """ Static OpenAPI document of Push API resource - Push API resources Open API documentation + Push API resources Open API documentation asdas - The version of the OpenAPI document: 0.4.1 + The version of the OpenAPI document: 0.4.4-alpha.2 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..31df126 100644 --- a/src/test/test_push_data_attribute.py +++ b/src/test/test_push_data_attribute.py @@ -3,9 +3,9 @@ """ Static OpenAPI document of Push API resource - Push API resources Open API documentation + Push API resources Open API documentation asdas - The version of the OpenAPI document: 0.4.1 + The version of the OpenAPI document: 0.4.4-alpha.2 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..3b9c718 100644 --- a/src/test/test_state.py +++ b/src/test/test_state.py @@ -3,9 +3,9 @@ """ Static OpenAPI document of Push API resource - Push API resources Open API documentation + Push API resources Open API documentation asdas - The version of the OpenAPI document: 0.4.1 + The version of the OpenAPI document: 0.4.4-alpha.2 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually.