generate samples and docs

This commit is contained in:
Tim Selman
2023-06-09 16:24:53 +02:00
parent 67a2ccc67f
commit 9714f12d5d
64 changed files with 273 additions and 273 deletions

View File

@@ -4,11 +4,11 @@ All URIs are relative to *http://localhost:3000*
Method | HTTP request | Description
------------- | ------------- | -------------
[**tests_path_string_path_string_integer_path_integer**](PathApi.md#tests_path_string_path_string_integer_path_integer) | **GET** /path/string/{path_string}/integer/{path_integer} | Test path parameter(s)
[**tests_path_stringpath_string_integer_path_integer**](PathApi.md#tests_path_stringpath_string_integer_path_integer) | **GET** /path/string/{path_string}/integer/{path_integer} | Test path parameter(s)
# **tests_path_string_path_string_integer_path_integer**
> str tests_path_string_path_string_integer_path_integer(path_string, path_integer)
# **tests_path_stringpath_string_integer_path_integer**
> str tests_path_stringpath_string_integer_path_integer(path_string, path_integer)
Test path parameter(s)
@@ -39,11 +39,11 @@ with openapi_client.ApiClient(configuration) as api_client:
try:
# Test path parameter(s)
api_response = api_instance.tests_path_string_path_string_integer_path_integer(path_string, path_integer)
print("The response of PathApi->tests_path_string_path_string_integer_path_integer:\n")
api_response = api_instance.tests_path_stringpath_string_integer_path_integer(path_string, path_integer)
print("The response of PathApi->tests_path_stringpath_string_integer_path_integer:\n")
pprint(api_response)
except Exception as e:
print("Exception when calling PathApi->tests_path_string_path_string_integer_path_integer: %s\n" % e)
print("Exception when calling PathApi->tests_path_stringpath_string_integer_path_integer: %s\n" % e)
```