diff --git a/README.md b/README.md index 7afc2d6..13293e3 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ No description provided (generated by Openapi Generator https://github.com/opena This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project: - API version: 0.1.0 -- Package version: 4.0.17 +- Package version: 4.1.2 - Generator version: 7.9.0 - Build package: org.openapitools.codegen.languages.PythonClientCodegen @@ -104,7 +104,6 @@ Class | Method | HTTP request | Description *EXTERNALApi* | [**create_new_organization_organizations_post**](docs/EXTERNALApi.md#create_new_organization_organizations_post) | **POST** /organizations | Create New Organization *EXTERNALApi* | [**create_rag_deployment_deployments_rag_post**](docs/EXTERNALApi.md#create_rag_deployment_deployments_rag_post) | **POST** /deployments/rag | Create Rag Deployment *EXTERNALApi* | [**create_setup_payments_setup_checkout_post**](docs/EXTERNALApi.md#create_setup_payments_setup_checkout_post) | **POST** /payments/setup_checkout | Create Setup -*EXTERNALApi* | [**create_support_ticket_support_post**](docs/EXTERNALApi.md#create_support_ticket_support_post) | **POST** /support | Create Support Ticket *EXTERNALApi* | [**delete_api_key_credentials_api_key_id_delete**](docs/EXTERNALApi.md#delete_api_key_credentials_api_key_id_delete) | **DELETE** /credentials/api-key/{id} | Delete Api Key *EXTERNALApi* | [**delete_autocharge_preferences_autocharge_preferences_delete**](docs/EXTERNALApi.md#delete_autocharge_preferences_autocharge_preferences_delete) | **DELETE** /autocharge/preferences | Delete Autocharge Preferences *EXTERNALApi* | [**delete_payment_method_payments_methods_delete**](docs/EXTERNALApi.md#delete_payment_method_payments_methods_delete) | **DELETE** /payments/methods | Delete Payment Method @@ -205,8 +204,6 @@ Class | Method | HTTP request | Description - [PodStatus](docs/PodStatus.md) - [PrebuiltImageResponse](docs/PrebuiltImageResponse.md) - [ServiceStatus](docs/ServiceStatus.md) - - [TicketCategory](docs/TicketCategory.md) - - [TicketPriority](docs/TicketPriority.md) - [UpdateAutochargePreferencesRequest](docs/UpdateAutochargePreferencesRequest.md) - [UpdateDeploymentResponse](docs/UpdateDeploymentResponse.md) - [UserVaultItem](docs/UserVaultItem.md) diff --git a/docs/EXTERNALApi.md b/docs/EXTERNALApi.md index c2c7ce3..8c60237 100644 --- a/docs/EXTERNALApi.md +++ b/docs/EXTERNALApi.md @@ -14,7 +14,6 @@ Method | HTTP request | Description [**create_new_organization_organizations_post**](EXTERNALApi.md#create_new_organization_organizations_post) | **POST** /organizations | Create New Organization [**create_rag_deployment_deployments_rag_post**](EXTERNALApi.md#create_rag_deployment_deployments_rag_post) | **POST** /deployments/rag | Create Rag Deployment [**create_setup_payments_setup_checkout_post**](EXTERNALApi.md#create_setup_payments_setup_checkout_post) | **POST** /payments/setup_checkout | Create Setup -[**create_support_ticket_support_post**](EXTERNALApi.md#create_support_ticket_support_post) | **POST** /support | Create Support Ticket [**delete_api_key_credentials_api_key_id_delete**](EXTERNALApi.md#delete_api_key_credentials_api_key_id_delete) | **DELETE** /credentials/api-key/{id} | Delete Api Key [**delete_autocharge_preferences_autocharge_preferences_delete**](EXTERNALApi.md#delete_autocharge_preferences_autocharge_preferences_delete) | **DELETE** /autocharge/preferences | Delete Autocharge Preferences [**delete_payment_method_payments_methods_delete**](EXTERNALApi.md#delete_payment_method_payments_methods_delete) | **DELETE** /payments/methods | Delete Payment Method @@ -834,90 +833,6 @@ Name | Type | Description | Notes [[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) -# **create_support_ticket_support_post** -> object create_support_ticket_support_post(message, category, priority, upload_file=upload_file) - -Create Support Ticket - -### Example - -* Bearer Authentication (HTTPBearer): - -```python -import platform_api_python_client -from platform_api_python_client.models.ticket_category import TicketCategory -from platform_api_python_client.models.ticket_priority import TicketPriority -from platform_api_python_client.rest import ApiException -from pprint import pprint - -# Defining the host is optional and defaults to http://localhost -# See configuration.py for a list of all supported configuration parameters. -configuration = platform_api_python_client.Configuration( - host = "http://localhost" -) - -# 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 Bearer authorization: HTTPBearer -configuration = platform_api_python_client.Configuration( - access_token = os.environ["BEARER_TOKEN"] -) - -# Enter a context with an instance of the API client -with platform_api_python_client.ApiClient(configuration) as api_client: - # Create an instance of the API class - api_instance = platform_api_python_client.EXTERNALApi(api_client) - message = 'message_example' # str | - category = platform_api_python_client.TicketCategory() # TicketCategory | - priority = platform_api_python_client.TicketPriority() # TicketPriority | - upload_file = None # bytearray | (optional) - - try: - # Create Support Ticket - api_response = api_instance.create_support_ticket_support_post(message, category, priority, upload_file=upload_file) - print("The response of EXTERNALApi->create_support_ticket_support_post:\n") - pprint(api_response) - except Exception as e: - print("Exception when calling EXTERNALApi->create_support_ticket_support_post: %s\n" % e) -``` - - - -### Parameters - - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **message** | **str**| | - **category** | [**TicketCategory**](TicketCategory.md)| | - **priority** | [**TicketPriority**](TicketPriority.md)| | - **upload_file** | **bytearray**| | [optional] - -### Return type - -**object** - -### Authorization - -[HTTPBearer](../README.md#HTTPBearer) - -### HTTP request headers - - - **Content-Type**: multipart/form-data - - **Accept**: application/json - -### HTTP response details - -| Status code | Description | Response headers | -|-------------|-------------|------------------| -**200** | Successful Response | - | -**422** | Validation Error | - | - -[[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) - # **delete_api_key_credentials_api_key_id_delete** > object delete_api_key_credentials_api_key_id_delete(id) diff --git a/docs/TicketCategory.md b/docs/TicketCategory.md deleted file mode 100644 index 6895670..0000000 --- a/docs/TicketCategory.md +++ /dev/null @@ -1,24 +0,0 @@ -# TicketCategory - - -## Enum - -* `GENERAL_QUESTIONS` (value: `'general_questions'`) - -* `SALES_QUESTIONS` (value: `'sales_questions'`) - -* `PERFORMANCE_QUESTIONS` (value: `'performance_questions'`) - -* `BILLING_AND_FINANCE` (value: `'billing_and_finance'`) - -* `DATA_PRIVACY_ACCOUNT_DELETION` (value: `'data_privacy_account_deletion'`) - -* `ADD_A_NEW_CLUSTER` (value: `'add_a_new_cluster'`) - -* `REQUEST_A_NEW_SERVERLESS_MODEL` (value: `'request_a_new_serverless_model'`) - -* `OTHER` (value: `'other'`) - -[[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/TicketPriority.md b/docs/TicketPriority.md deleted file mode 100644 index b3c09d8..0000000 --- a/docs/TicketPriority.md +++ /dev/null @@ -1,16 +0,0 @@ -# TicketPriority - - -## Enum - -* `URGENT` (value: `'urgent'`) - -* `HIGH` (value: `'high'`) - -* `NORMAL` (value: `'normal'`) - -* `LOW` (value: `'low'`) - -[[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/platform_api_python_client/__init__.py b/platform_api_python_client/__init__.py index 52d1ff6..17cd37c 100644 --- a/platform_api_python_client/__init__.py +++ b/platform_api_python_client/__init__.py @@ -14,8 +14,7 @@ """ # noqa: E501 -__version__ = "4.0.17" - +__version__ = "4.1.2" # import apis into sdk package from platform_api_python_client.api.external_api import EXTERNALApi @@ -91,8 +90,6 @@ from platform_api_python_client.models.pod_status import PodStatus from platform_api_python_client.models.prebuilt_image_response import PrebuiltImageResponse from platform_api_python_client.models.service_status import ServiceStatus -from platform_api_python_client.models.ticket_category import TicketCategory -from platform_api_python_client.models.ticket_priority import TicketPriority from platform_api_python_client.models.update_autocharge_preferences_request import UpdateAutochargePreferencesRequest from platform_api_python_client.models.update_deployment_response import UpdateDeploymentResponse from platform_api_python_client.models.user_vault_item import UserVaultItem diff --git a/platform_api_python_client/api/external_api.py b/platform_api_python_client/api/external_api.py index 4dc185a..c692474 100644 --- a/platform_api_python_client/api/external_api.py +++ b/platform_api_python_client/api/external_api.py @@ -17,8 +17,8 @@ from typing_extensions import Annotated from datetime import date -from pydantic import StrictBool, StrictBytes, StrictInt, StrictStr -from typing import Any, Optional, Tuple, Union +from pydantic import StrictBool, StrictInt, StrictStr +from typing import Any, Optional from platform_api_python_client.models.api_key_request import APIKeyRequest from platform_api_python_client.models.api_key_response import APIKeyResponse from platform_api_python_client.models.create_c_serve_v2_deployment_request import CreateCServeV2DeploymentRequest @@ -63,8 +63,6 @@ from platform_api_python_client.models.list_user_vault_items_response import ListUserVaultItemsResponse from platform_api_python_client.models.metric import Metric from platform_api_python_client.models.payment_method_response import PaymentMethodResponse -from platform_api_python_client.models.ticket_category import TicketCategory -from platform_api_python_client.models.ticket_priority import TicketPriority from platform_api_python_client.models.update_autocharge_preferences_request import UpdateAutochargePreferencesRequest from platform_api_python_client.models.update_deployment_response import UpdateDeploymentResponse from platform_api_python_client.models.user_vault_item import UserVaultItem @@ -2828,325 +2826,6 @@ def _create_setup_payments_setup_checkout_post_serialize( - @validate_call - def create_support_ticket_support_post( - self, - message: StrictStr, - category: TicketCategory, - priority: TicketPriority, - upload_file: Optional[Union[StrictBytes, StrictStr, Tuple[StrictStr, StrictBytes]]] = None, - _request_timeout: Union[ - None, - Annotated[StrictFloat, Field(gt=0)], - Tuple[ - Annotated[StrictFloat, Field(gt=0)], - Annotated[StrictFloat, Field(gt=0)] - ] - ] = None, - _request_auth: Optional[Dict[StrictStr, Any]] = None, - _content_type: Optional[StrictStr] = None, - _headers: Optional[Dict[StrictStr, Any]] = None, - _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0, - ) -> object: - """Create Support Ticket - - - :param message: (required) - :type message: str - :param category: (required) - :type category: TicketCategory - :param priority: (required) - :type priority: TicketPriority - :param upload_file: - :type upload_file: bytearray - :param _request_timeout: timeout setting for this request. If one - number provided, it will be total request - timeout. It can also be a pair (tuple) of - (connection, read) timeouts. - :type _request_timeout: int, tuple(int, int), optional - :param _request_auth: set to override the auth_settings for an a single - request; this effectively ignores the - authentication in the spec for a single request. - :type _request_auth: dict, optional - :param _content_type: force content-type for the request. - :type _content_type: str, Optional - :param _headers: set to override the headers for a single - request; this effectively ignores the headers - in the spec for a single request. - :type _headers: dict, optional - :param _host_index: set to override the host_index for a single - request; this effectively ignores the host_index - in the spec for a single request. - :type _host_index: int, optional - :return: Returns the result object. - """ # noqa: E501 - - _param = self._create_support_ticket_support_post_serialize( - message=message, - category=category, - priority=priority, - upload_file=upload_file, - _request_auth=_request_auth, - _content_type=_content_type, - _headers=_headers, - _host_index=_host_index - ) - - _response_types_map: Dict[str, Optional[str]] = { - '200': "object", - '422': "HTTPValidationError", - } - response_data = self.api_client.call_api( - *_param, - _request_timeout=_request_timeout - ) - response_data.read() - return self.api_client.response_deserialize( - response_data=response_data, - response_types_map=_response_types_map, - ).data - - - @validate_call - def create_support_ticket_support_post_with_http_info( - self, - message: StrictStr, - category: TicketCategory, - priority: TicketPriority, - upload_file: Optional[Union[StrictBytes, StrictStr, Tuple[StrictStr, StrictBytes]]] = None, - _request_timeout: Union[ - None, - Annotated[StrictFloat, Field(gt=0)], - Tuple[ - Annotated[StrictFloat, Field(gt=0)], - Annotated[StrictFloat, Field(gt=0)] - ] - ] = None, - _request_auth: Optional[Dict[StrictStr, Any]] = None, - _content_type: Optional[StrictStr] = None, - _headers: Optional[Dict[StrictStr, Any]] = None, - _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0, - ) -> ApiResponse[object]: - """Create Support Ticket - - - :param message: (required) - :type message: str - :param category: (required) - :type category: TicketCategory - :param priority: (required) - :type priority: TicketPriority - :param upload_file: - :type upload_file: bytearray - :param _request_timeout: timeout setting for this request. If one - number provided, it will be total request - timeout. It can also be a pair (tuple) of - (connection, read) timeouts. - :type _request_timeout: int, tuple(int, int), optional - :param _request_auth: set to override the auth_settings for an a single - request; this effectively ignores the - authentication in the spec for a single request. - :type _request_auth: dict, optional - :param _content_type: force content-type for the request. - :type _content_type: str, Optional - :param _headers: set to override the headers for a single - request; this effectively ignores the headers - in the spec for a single request. - :type _headers: dict, optional - :param _host_index: set to override the host_index for a single - request; this effectively ignores the host_index - in the spec for a single request. - :type _host_index: int, optional - :return: Returns the result object. - """ # noqa: E501 - - _param = self._create_support_ticket_support_post_serialize( - message=message, - category=category, - priority=priority, - upload_file=upload_file, - _request_auth=_request_auth, - _content_type=_content_type, - _headers=_headers, - _host_index=_host_index - ) - - _response_types_map: Dict[str, Optional[str]] = { - '200': "object", - '422': "HTTPValidationError", - } - response_data = self.api_client.call_api( - *_param, - _request_timeout=_request_timeout - ) - response_data.read() - return self.api_client.response_deserialize( - response_data=response_data, - response_types_map=_response_types_map, - ) - - - @validate_call - def create_support_ticket_support_post_without_preload_content( - self, - message: StrictStr, - category: TicketCategory, - priority: TicketPriority, - upload_file: Optional[Union[StrictBytes, StrictStr, Tuple[StrictStr, StrictBytes]]] = None, - _request_timeout: Union[ - None, - Annotated[StrictFloat, Field(gt=0)], - Tuple[ - Annotated[StrictFloat, Field(gt=0)], - Annotated[StrictFloat, Field(gt=0)] - ] - ] = None, - _request_auth: Optional[Dict[StrictStr, Any]] = None, - _content_type: Optional[StrictStr] = None, - _headers: Optional[Dict[StrictStr, Any]] = None, - _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0, - ) -> RESTResponseType: - """Create Support Ticket - - - :param message: (required) - :type message: str - :param category: (required) - :type category: TicketCategory - :param priority: (required) - :type priority: TicketPriority - :param upload_file: - :type upload_file: bytearray - :param _request_timeout: timeout setting for this request. If one - number provided, it will be total request - timeout. It can also be a pair (tuple) of - (connection, read) timeouts. - :type _request_timeout: int, tuple(int, int), optional - :param _request_auth: set to override the auth_settings for an a single - request; this effectively ignores the - authentication in the spec for a single request. - :type _request_auth: dict, optional - :param _content_type: force content-type for the request. - :type _content_type: str, Optional - :param _headers: set to override the headers for a single - request; this effectively ignores the headers - in the spec for a single request. - :type _headers: dict, optional - :param _host_index: set to override the host_index for a single - request; this effectively ignores the host_index - in the spec for a single request. - :type _host_index: int, optional - :return: Returns the result object. - """ # noqa: E501 - - _param = self._create_support_ticket_support_post_serialize( - message=message, - category=category, - priority=priority, - upload_file=upload_file, - _request_auth=_request_auth, - _content_type=_content_type, - _headers=_headers, - _host_index=_host_index - ) - - _response_types_map: Dict[str, Optional[str]] = { - '200': "object", - '422': "HTTPValidationError", - } - response_data = self.api_client.call_api( - *_param, - _request_timeout=_request_timeout - ) - return response_data.response - - - def _create_support_ticket_support_post_serialize( - self, - message, - category, - priority, - upload_file, - _request_auth, - _content_type, - _headers, - _host_index, - ) -> RequestSerialized: - - _host = None - - _collection_formats: Dict[str, str] = { - } - - _path_params: Dict[str, str] = {} - _query_params: List[Tuple[str, str]] = [] - _header_params: Dict[str, Optional[str]] = _headers or {} - _form_params: List[Tuple[str, str]] = [] - _files: Dict[ - str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]] - ] = {} - _body_params: Optional[bytes] = None - - # process the path parameters - # process the query parameters - # process the header parameters - # process the form parameters - if message is not None: - _form_params.append(('message', message)) - if category is not None: - _form_params.append(('category', category)) - if priority is not None: - _form_params.append(('priority', priority)) - if upload_file is not None: - _files['upload_file'] = upload_file - # process the body parameter - - - # set the HTTP header `Accept` - if 'Accept' not in _header_params: - _header_params['Accept'] = self.api_client.select_header_accept( - [ - 'application/json' - ] - ) - - # set the HTTP header `Content-Type` - if _content_type: - _header_params['Content-Type'] = _content_type - else: - _default_content_type = ( - self.api_client.select_header_content_type( - [ - 'multipart/form-data' - ] - ) - ) - if _default_content_type is not None: - _header_params['Content-Type'] = _default_content_type - - # authentication setting - _auth_settings: List[str] = [ - 'HTTPBearer' - ] - - return self.api_client.param_serialize( - method='POST', - resource_path='/support', - path_params=_path_params, - query_params=_query_params, - header_params=_header_params, - body=_body_params, - post_params=_form_params, - files=_files, - auth_settings=_auth_settings, - collection_formats=_collection_formats, - _host=_host, - _request_auth=_request_auth - ) - - - - @validate_call def delete_api_key_credentials_api_key_id_delete( self, diff --git a/platform_api_python_client/api_client.py b/platform_api_python_client/api_client.py index 390a166..9165a7e 100644 --- a/platform_api_python_client/api_client.py +++ b/platform_api_python_client/api_client.py @@ -90,8 +90,7 @@ def __init__( self.default_headers[header_name] = header_value self.cookie = cookie # Set default User-Agent. - self.user_agent = 'OpenAPI-Generator/4.0.17/python' - + self.user_agent = 'OpenAPI-Generator/4.1.2/python' self.client_side_validation = configuration.client_side_validation def __enter__(self): diff --git a/platform_api_python_client/configuration.py b/platform_api_python_client/configuration.py index 42eaa33..02003b6 100644 --- a/platform_api_python_client/configuration.py +++ b/platform_api_python_client/configuration.py @@ -392,7 +392,7 @@ def to_debug_report(self): "OS: {env}\n"\ "Python Version: {pyversion}\n"\ "Version of the API: 0.1.0\n"\ - "SDK Package Version: 4.0.17".\ + "SDK Package Version: 4.1.2".\ format(env=sys.platform, pyversion=sys.version) def get_host_settings(self): diff --git a/platform_api_python_client/models/__init__.py b/platform_api_python_client/models/__init__.py index 3310f09..b19ce7b 100644 --- a/platform_api_python_client/models/__init__.py +++ b/platform_api_python_client/models/__init__.py @@ -73,8 +73,6 @@ from platform_api_python_client.models.pod_status import PodStatus from platform_api_python_client.models.prebuilt_image_response import PrebuiltImageResponse from platform_api_python_client.models.service_status import ServiceStatus -from platform_api_python_client.models.ticket_category import TicketCategory -from platform_api_python_client.models.ticket_priority import TicketPriority from platform_api_python_client.models.update_autocharge_preferences_request import UpdateAutochargePreferencesRequest from platform_api_python_client.models.update_deployment_response import UpdateDeploymentResponse from platform_api_python_client.models.user_vault_item import UserVaultItem diff --git a/platform_api_python_client/models/ticket_category.py b/platform_api_python_client/models/ticket_category.py deleted file mode 100644 index d3a10d9..0000000 --- a/platform_api_python_client/models/ticket_category.py +++ /dev/null @@ -1,43 +0,0 @@ -# coding: utf-8 - -""" - Platform External API - - No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) - - The version of the OpenAPI document: 0.1.0 - Generated by OpenAPI Generator (https://openapi-generator.tech) - - Do not edit the class manually. -""" # noqa: E501 - - -from __future__ import annotations -import json -from enum import Enum -from typing_extensions import Self - - -class TicketCategory(str, Enum): - """ - TicketCategory - """ - - """ - allowed enum values - """ - GENERAL_QUESTIONS = 'general_questions' - SALES_QUESTIONS = 'sales_questions' - PERFORMANCE_QUESTIONS = 'performance_questions' - BILLING_AND_FINANCE = 'billing_and_finance' - DATA_PRIVACY_ACCOUNT_DELETION = 'data_privacy_account_deletion' - ADD_A_NEW_CLUSTER = 'add_a_new_cluster' - REQUEST_A_NEW_SERVERLESS_MODEL = 'request_a_new_serverless_model' - OTHER = 'other' - - @classmethod - def from_json(cls, json_str: str) -> Self: - """Create an instance of TicketCategory from a JSON string""" - return cls(json.loads(json_str)) - - diff --git a/platform_api_python_client/models/ticket_priority.py b/platform_api_python_client/models/ticket_priority.py deleted file mode 100644 index 180704a..0000000 --- a/platform_api_python_client/models/ticket_priority.py +++ /dev/null @@ -1,39 +0,0 @@ -# coding: utf-8 - -""" - Platform External API - - No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) - - The version of the OpenAPI document: 0.1.0 - Generated by OpenAPI Generator (https://openapi-generator.tech) - - Do not edit the class manually. -""" # noqa: E501 - - -from __future__ import annotations -import json -from enum import Enum -from typing_extensions import Self - - -class TicketPriority(str, Enum): - """ - TicketPriority - """ - - """ - allowed enum values - """ - URGENT = 'urgent' - HIGH = 'high' - NORMAL = 'normal' - LOW = 'low' - - @classmethod - def from_json(cls, json_str: str) -> Self: - """Create an instance of TicketPriority from a JSON string""" - return cls(json.loads(json_str)) - - diff --git a/pyproject.toml b/pyproject.toml index ce59f9d..6e1aed4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "platform_api_python_client" -version = "4.0.17" +version = "4.1.2" description = "Platform External API" authors = ["OpenAPI Generator Community "] license = "NoLicense" diff --git a/setup.py b/setup.py index 28a282a..722d676 100644 --- a/setup.py +++ b/setup.py @@ -21,7 +21,7 @@ # prerequisite: setuptools # http://pypi.python.org/pypi/setuptools NAME = "platform-api-python-client" -VERSION = "4.0.17" +VERSION = "4.1.2" PYTHON_REQUIRES = ">= 3.8" REQUIRES = [ "urllib3 >= 1.25.3, < 3.0.0", diff --git a/test/test_external_api.py b/test/test_external_api.py index abca876..28fdf3d 100644 --- a/test/test_external_api.py +++ b/test/test_external_api.py @@ -96,13 +96,6 @@ def test_create_setup_payments_setup_checkout_post(self) -> None: """ pass - def test_create_support_ticket_support_post(self) -> None: - """Test case for create_support_ticket_support_post - - Create Support Ticket - """ - pass - def test_delete_api_key_credentials_api_key_id_delete(self) -> None: """Test case for delete_api_key_credentials_api_key_id_delete diff --git a/test/test_ticket_category.py b/test/test_ticket_category.py deleted file mode 100644 index d53294a..0000000 --- a/test/test_ticket_category.py +++ /dev/null @@ -1,33 +0,0 @@ -# coding: utf-8 - -""" - Platform External API - - No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) - - The version of the OpenAPI document: 0.1.0 - Generated by OpenAPI Generator (https://openapi-generator.tech) - - Do not edit the class manually. -""" # noqa: E501 - - -import unittest - -from platform_api_python_client.models.ticket_category import TicketCategory - -class TestTicketCategory(unittest.TestCase): - """TicketCategory unit test stubs""" - - def setUp(self): - pass - - def tearDown(self): - pass - - def testTicketCategory(self): - """Test TicketCategory""" - # inst = TicketCategory() - -if __name__ == '__main__': - unittest.main() diff --git a/test/test_ticket_priority.py b/test/test_ticket_priority.py deleted file mode 100644 index e534903..0000000 --- a/test/test_ticket_priority.py +++ /dev/null @@ -1,33 +0,0 @@ -# coding: utf-8 - -""" - Platform External API - - No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) - - The version of the OpenAPI document: 0.1.0 - Generated by OpenAPI Generator (https://openapi-generator.tech) - - Do not edit the class manually. -""" # noqa: E501 - - -import unittest - -from platform_api_python_client.models.ticket_priority import TicketPriority - -class TestTicketPriority(unittest.TestCase): - """TicketPriority unit test stubs""" - - def setUp(self): - pass - - def tearDown(self): - pass - - def testTicketPriority(self): - """Test TicketPriority""" - # inst = TicketPriority() - -if __name__ == '__main__': - unittest.main()