diff --git a/modules/openapi-generator/src/main/resources/python-legacy/common_README.mustache b/modules/openapi-generator/src/main/resources/python-legacy/common_README.mustache
index 6052fe3d20..21b5bc89f4 100644
--- a/modules/openapi-generator/src/main/resources/python-legacy/common_README.mustache
+++ b/modules/openapi-generator/src/main/resources/python-legacy/common_README.mustache
@@ -38,14 +38,14 @@ Class | Method | HTTP request | Description
{{#models}}{{#model}} - [{{{classname}}}]({{modelDocPath}}{{{classname}}}.md)
{{/model}}{{/models}}
+
## Documentation For Authorization
-{{^authMethods}}
- All endpoints do not require authorization.
-{{/authMethods}}
+{{^authMethods}}Endpoints do not require authorization.{{/authMethods}}
+{{#hasAuthMethods}}Authentication schemes defined for the API:{{/hasAuthMethods}}
{{#authMethods}}
-{{#last}} Authentication schemes defined for the API:{{/last}}
-## {{{name}}}
+
+### {{{name}}}
{{#isApiKey}}
- **Type**: API key
diff --git a/modules/openapi-generator/src/main/resources/python-nextgen/common_README.mustache b/modules/openapi-generator/src/main/resources/python-nextgen/common_README.mustache
index 2691d06273..d3f626ac60 100644
--- a/modules/openapi-generator/src/main/resources/python-nextgen/common_README.mustache
+++ b/modules/openapi-generator/src/main/resources/python-nextgen/common_README.mustache
@@ -43,14 +43,14 @@ Class | Method | HTTP request | Description
{{#models}}{{#model}} - [{{{classname}}}]({{modelDocPath}}{{{classname}}}.md)
{{/model}}{{/models}}
+
## Documentation For Authorization
-{{^authMethods}}
- All endpoints do not require authorization.
-{{/authMethods}}
+{{^authMethods}}Endpoints do not require authorization.{{/authMethods}}
+{{#hasAuthMethods}}Authentication schemes defined for the API:{{/hasAuthMethods}}
{{#authMethods}}
-{{#last}} Authentication schemes defined for the API:{{/last}}
-## {{{name}}}
+
+### {{{name}}}
{{#isApiKey}}
- **Type**: API key
diff --git a/modules/openapi-generator/src/main/resources/python-prior/README_common.mustache b/modules/openapi-generator/src/main/resources/python-prior/README_common.mustache
index e9eca9c5f6..97577a411a 100644
--- a/modules/openapi-generator/src/main/resources/python-prior/README_common.mustache
+++ b/modules/openapi-generator/src/main/resources/python-prior/README_common.mustache
@@ -51,14 +51,14 @@ Class | Method | HTTP request | Description
{{#models}}{{#model}} - [{{{classname}}}]({{modelDocPath}}{{{classname}}}.md)
{{/model}}{{/models}}
+
## Documentation For Authorization
-{{^authMethods}}
- All endpoints do not require authorization.
-{{/authMethods}}
+{{^authMethods}}Endpoints do not require authorization.{{/authMethods}}
+{{#hasAuthMethods}}Authentication schemes defined for the API:{{/hasAuthMethods}}
{{#authMethods}}
-{{#last}} Authentication schemes defined for the API:{{/last}}
-## {{{name}}}
+
+### {{{name}}}
{{#isApiKey}}
- **Type**: API key
diff --git a/modules/openapi-generator/src/main/resources/python/README_common.handlebars b/modules/openapi-generator/src/main/resources/python/README_common.handlebars
index bb33cc728d..69b27f4c48 100644
--- a/modules/openapi-generator/src/main/resources/python/README_common.handlebars
+++ b/modules/openapi-generator/src/main/resources/python/README_common.handlebars
@@ -53,11 +53,12 @@ Class | Method | HTTP request | Description
## Documentation For Authorization
{{#unless authMethods}}
- All endpoints do not require authorization.
+ Endpoints do not require authorization.
{{/unless}}
+{{#if hasAuthMethods}}Authentication schemes defined for the API:{{/if}}
{{#each authMethods}}
-{{#if @last}} Authentication schemes defined for the API:{{/if}}
-## {{{name}}}
+
+### {{{name}}}
{{#if isApiKey}}
- **Type**: API key
diff --git a/modules/openapi-generator/src/main/resources/python/api_doc.handlebars b/modules/openapi-generator/src/main/resources/python/api_doc.handlebars
index 1c279b5a37..258110fbf0 100644
--- a/modules/openapi-generator/src/main/resources/python/api_doc.handlebars
+++ b/modules/openapi-generator/src/main/resources/python/api_doc.handlebars
@@ -1,4 +1,4 @@
-
+
# {{packageName}}.{{apiPackage}}.tags.{{classFilename}}.{{classname}}{{#if description}}
{{description}}{{/if}}
@@ -12,7 +12,7 @@ Method | HTTP request | Description
{{#with operations}}
{{#each operation}}
# **{{{operationId}}}**
-
+
> {{#if returnType}}{{{returnType}}} {{/if}}{{{operationId}}}({{#each requiredParams}}{{#unless defaultValue}}{{paramName}}{{#if hasMore}}, {{/if}}{{/unless}}{{/each}})
{{#if summary}}{{{summary}}}{{/if}}{{#if notes}}
diff --git a/samples/client/echo_api/python-nextgen/README.md b/samples/client/echo_api/python-nextgen/README.md
index 2d44a510f4..3916ff8455 100644
--- a/samples/client/echo_api/python-nextgen/README.md
+++ b/samples/client/echo_api/python-nextgen/README.md
@@ -119,9 +119,11 @@ Class | Method | HTTP request | Description
- [TestQueryStyleFormExplodeTrueArrayStringQueryObjectParameter](docs/TestQueryStyleFormExplodeTrueArrayStringQueryObjectParameter.md)
+
## Documentation For Authorization
- All endpoints do not require authorization.
+Endpoints do not require authorization.
+
## Author
diff --git a/samples/client/petstore/python-asyncio/README.md b/samples/client/petstore/python-asyncio/README.md
index 968e6776b0..5b956c1816 100644
--- a/samples/client/petstore/python-asyncio/README.md
+++ b/samples/client/petstore/python-asyncio/README.md
@@ -172,10 +172,13 @@ Class | Method | HTTP request | Description
- [XmlItem](docs/XmlItem.md)
+
## Documentation For Authorization
-## petstore_auth
+Authentication schemes defined for the API:
+
+### petstore_auth
- **Type**: OAuth
- **Flow**: implicit
@@ -184,22 +187,22 @@ Class | Method | HTTP request | Description
- **write:pets**: modify pets in your account
- **read:pets**: read your pets
-
-## api_key
+
+### api_key
- **Type**: API key
- **API key parameter name**: api_key
- **Location**: HTTP header
-
-## api_key_query
+
+### api_key_query
- **Type**: API key
- **API key parameter name**: api_key_query
- **Location**: URL query string
-
-## http_basic_test
+
+### http_basic_test
- **Type**: HTTP basic authentication
diff --git a/samples/client/petstore/python-legacy/README.md b/samples/client/petstore/python-legacy/README.md
index 432fa7b08c..3d5bdd3343 100644
--- a/samples/client/petstore/python-legacy/README.md
+++ b/samples/client/petstore/python-legacy/README.md
@@ -172,10 +172,13 @@ Class | Method | HTTP request | Description
- [XmlItem](docs/XmlItem.md)
+
## Documentation For Authorization
-## petstore_auth
+Authentication schemes defined for the API:
+
+### petstore_auth
- **Type**: OAuth
- **Flow**: implicit
@@ -184,22 +187,22 @@ Class | Method | HTTP request | Description
- **write:pets**: modify pets in your account
- **read:pets**: read your pets
-
-## api_key
+
+### api_key
- **Type**: API key
- **API key parameter name**: api_key
- **Location**: HTTP header
-
-## api_key_query
+
+### api_key_query
- **Type**: API key
- **API key parameter name**: api_key_query
- **Location**: URL query string
-
-## http_basic_test
+
+### http_basic_test
- **Type**: HTTP basic authentication
diff --git a/samples/client/petstore/python-prior/README.md b/samples/client/petstore/python-prior/README.md
index f74c3e5a4f..ba6cb7bbf8 100644
--- a/samples/client/petstore/python-prior/README.md
+++ b/samples/client/petstore/python-prior/README.md
@@ -196,10 +196,13 @@ Class | Method | HTTP request | Description
- [XmlItem](docs/XmlItem.md)
+
## Documentation For Authorization
-## petstore_auth
+Authentication schemes defined for the API:
+
+### petstore_auth
- **Type**: OAuth
- **Flow**: implicit
@@ -208,22 +211,22 @@ Class | Method | HTTP request | Description
- **write:pets**: modify pets in your account
- **read:pets**: read your pets
-
-## api_key
+
+### api_key
- **Type**: API key
- **API key parameter name**: api_key
- **Location**: HTTP header
-
-## api_key_query
+
+### api_key_query
- **Type**: API key
- **API key parameter name**: api_key_query
- **Location**: URL query string
-
-## http_basic_test
+
+### http_basic_test
- **Type**: HTTP basic authentication
diff --git a/samples/client/petstore/python-prior_disallowAdditionalPropertiesIfNotPresent/README.md b/samples/client/petstore/python-prior_disallowAdditionalPropertiesIfNotPresent/README.md
index f74c3e5a4f..ba6cb7bbf8 100644
--- a/samples/client/petstore/python-prior_disallowAdditionalPropertiesIfNotPresent/README.md
+++ b/samples/client/petstore/python-prior_disallowAdditionalPropertiesIfNotPresent/README.md
@@ -196,10 +196,13 @@ Class | Method | HTTP request | Description
- [XmlItem](docs/XmlItem.md)
+
## Documentation For Authorization
-## petstore_auth
+Authentication schemes defined for the API:
+
+### petstore_auth
- **Type**: OAuth
- **Flow**: implicit
@@ -208,22 +211,22 @@ Class | Method | HTTP request | Description
- **write:pets**: modify pets in your account
- **read:pets**: read your pets
-
-## api_key
+
+### api_key
- **Type**: API key
- **API key parameter name**: api_key
- **Location**: HTTP header
-
-## api_key_query
+
+### api_key_query
- **Type**: API key
- **API key parameter name**: api_key_query
- **Location**: URL query string
-
-## http_basic_test
+
+### http_basic_test
- **Type**: HTTP basic authentication
diff --git a/samples/client/petstore/python-tornado/README.md b/samples/client/petstore/python-tornado/README.md
index 432fa7b08c..3d5bdd3343 100644
--- a/samples/client/petstore/python-tornado/README.md
+++ b/samples/client/petstore/python-tornado/README.md
@@ -172,10 +172,13 @@ Class | Method | HTTP request | Description
- [XmlItem](docs/XmlItem.md)
+
## Documentation For Authorization
-## petstore_auth
+Authentication schemes defined for the API:
+
+### petstore_auth
- **Type**: OAuth
- **Flow**: implicit
@@ -184,22 +187,22 @@ Class | Method | HTTP request | Description
- **write:pets**: modify pets in your account
- **read:pets**: read your pets
-
-## api_key
+
+### api_key
- **Type**: API key
- **API key parameter name**: api_key
- **Location**: HTTP header
-
-## api_key_query
+
+### api_key_query
- **Type**: API key
- **API key parameter name**: api_key_query
- **Location**: URL query string
-
-## http_basic_test
+
+### http_basic_test
- **Type**: HTTP basic authentication
diff --git a/samples/openapi3/client/3_0_3_unit_test/python/README.md b/samples/openapi3/client/3_0_3_unit_test/python/README.md
index 3c71a079b1..108b2923a9 100644
--- a/samples/openapi3/client/3_0_3_unit_test/python/README.md
+++ b/samples/openapi3/client/3_0_3_unit_test/python/README.md
@@ -961,7 +961,8 @@ Class | Method | HTTP request | Description
## Documentation For Authorization
- All endpoints do not require authorization.
+ Endpoints do not require authorization.
+
## Author
diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/AdditionalPropertiesApi.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/AdditionalPropertiesApi.md
index 6b758ccf2b..7fb4cec497 100644
--- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/AdditionalPropertiesApi.md
+++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/AdditionalPropertiesApi.md
@@ -1,4 +1,4 @@
-
+
# unit_test_api.apis.tags.additional_properties_api.AdditionalPropertiesApi
All URIs are relative to *https://someserver.com/v1*
@@ -15,7 +15,7 @@ Method | HTTP request | Description
[**post_additionalproperties_should_not_look_in_applicators_response_body_for_content_types**](#post_additionalproperties_should_not_look_in_applicators_response_body_for_content_types) | **post** /responseBody/postAdditionalpropertiesShouldNotLookInApplicatorsResponseBodyForContentTypes |
# **post_additionalproperties_allows_a_schema_which_should_validate_request_body**
-
+
> post_additionalproperties_allows_a_schema_which_should_validate_request_body(additionalproperties_allows_a_schema_which_should_validate)
@@ -89,7 +89,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_additionalproperties_allows_a_schema_which_should_validate_response_body_for_content_types**
-
+
> AdditionalpropertiesAllowsASchemaWhichShouldValidate post_additionalproperties_allows_a_schema_which_should_validate_response_body_for_content_types()
@@ -149,7 +149,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_additionalproperties_are_allowed_by_default_request_body**
-
+
> post_additionalproperties_are_allowed_by_default_request_body(additionalproperties_are_allowed_by_default)
@@ -220,7 +220,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_additionalproperties_are_allowed_by_default_response_body_for_content_types**
-
+
> AdditionalpropertiesAreAllowedByDefault post_additionalproperties_are_allowed_by_default_response_body_for_content_types()
@@ -280,7 +280,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_additionalproperties_can_exist_by_itself_request_body**
-
+
> post_additionalproperties_can_exist_by_itself_request_body(additionalproperties_can_exist_by_itself)
@@ -353,7 +353,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_additionalproperties_can_exist_by_itself_response_body_for_content_types**
-
+
> AdditionalpropertiesCanExistByItself post_additionalproperties_can_exist_by_itself_response_body_for_content_types()
@@ -413,7 +413,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_additionalproperties_should_not_look_in_applicators_request_body**
-
+
> post_additionalproperties_should_not_look_in_applicators_request_body(additionalproperties_should_not_look_in_applicators)
@@ -484,7 +484,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_additionalproperties_should_not_look_in_applicators_response_body_for_content_types**
-
+
> AdditionalpropertiesShouldNotLookInApplicators post_additionalproperties_should_not_look_in_applicators_response_body_for_content_types()
diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/AllOfApi.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/AllOfApi.md
index 16996cfc81..610cef7e4e 100644
--- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/AllOfApi.md
+++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/AllOfApi.md
@@ -1,4 +1,4 @@
-
+
# unit_test_api.apis.tags.all_of_api.AllOfApi
All URIs are relative to *https://someserver.com/v1*
@@ -25,7 +25,7 @@ Method | HTTP request | Description
[**post_nested_allof_to_check_validation_semantics_response_body_for_content_types**](#post_nested_allof_to_check_validation_semantics_response_body_for_content_types) | **post** /responseBody/postNestedAllofToCheckValidationSemanticsResponseBodyForContentTypes |
# **post_allof_combined_with_anyof_oneof_request_body**
-
+
> post_allof_combined_with_anyof_oneof_request_body(allof_combined_with_anyof_oneof)
@@ -96,7 +96,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_allof_combined_with_anyof_oneof_response_body_for_content_types**
-
+
> AllofCombinedWithAnyofOneof post_allof_combined_with_anyof_oneof_response_body_for_content_types()
@@ -156,7 +156,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_allof_request_body**
-
+
> post_allof_request_body(allof)
@@ -227,7 +227,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_allof_response_body_for_content_types**
-
+
> Allof post_allof_response_body_for_content_types()
@@ -287,7 +287,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_allof_simple_types_request_body**
-
+
> post_allof_simple_types_request_body(allof_simple_types)
@@ -358,7 +358,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_allof_simple_types_response_body_for_content_types**
-
+
> AllofSimpleTypes post_allof_simple_types_response_body_for_content_types()
@@ -418,7 +418,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_allof_with_base_schema_request_body**
-
+
> post_allof_with_base_schema_request_body(allof_with_base_schema)
@@ -489,7 +489,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_allof_with_base_schema_response_body_for_content_types**
-
+
> AllofWithBaseSchema post_allof_with_base_schema_response_body_for_content_types()
@@ -549,7 +549,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_allof_with_one_empty_schema_request_body**
-
+
> post_allof_with_one_empty_schema_request_body(allof_with_one_empty_schema)
@@ -620,7 +620,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_allof_with_one_empty_schema_response_body_for_content_types**
-
+
> AllofWithOneEmptySchema post_allof_with_one_empty_schema_response_body_for_content_types()
@@ -680,7 +680,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_allof_with_the_first_empty_schema_request_body**
-
+
> post_allof_with_the_first_empty_schema_request_body(allof_with_the_first_empty_schema)
@@ -751,7 +751,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_allof_with_the_first_empty_schema_response_body_for_content_types**
-
+
> AllofWithTheFirstEmptySchema post_allof_with_the_first_empty_schema_response_body_for_content_types()
@@ -811,7 +811,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_allof_with_the_last_empty_schema_request_body**
-
+
> post_allof_with_the_last_empty_schema_request_body(allof_with_the_last_empty_schema)
@@ -882,7 +882,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_allof_with_the_last_empty_schema_response_body_for_content_types**
-
+
> AllofWithTheLastEmptySchema post_allof_with_the_last_empty_schema_response_body_for_content_types()
@@ -942,7 +942,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_allof_with_two_empty_schemas_request_body**
-
+
> post_allof_with_two_empty_schemas_request_body(allof_with_two_empty_schemas)
@@ -1013,7 +1013,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_allof_with_two_empty_schemas_response_body_for_content_types**
-
+
> AllofWithTwoEmptySchemas post_allof_with_two_empty_schemas_response_body_for_content_types()
@@ -1073,7 +1073,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_nested_allof_to_check_validation_semantics_request_body**
-
+
> post_nested_allof_to_check_validation_semantics_request_body(nested_allof_to_check_validation_semantics)
@@ -1144,7 +1144,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_nested_allof_to_check_validation_semantics_response_body_for_content_types**
-
+
> NestedAllofToCheckValidationSemantics post_nested_allof_to_check_validation_semantics_response_body_for_content_types()
diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/AnyOfApi.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/AnyOfApi.md
index 8f0a035a81..628785c5e6 100644
--- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/AnyOfApi.md
+++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/AnyOfApi.md
@@ -1,4 +1,4 @@
-
+
# unit_test_api.apis.tags.any_of_api.AnyOfApi
All URIs are relative to *https://someserver.com/v1*
@@ -17,7 +17,7 @@ Method | HTTP request | Description
[**post_nested_anyof_to_check_validation_semantics_response_body_for_content_types**](#post_nested_anyof_to_check_validation_semantics_response_body_for_content_types) | **post** /responseBody/postNestedAnyofToCheckValidationSemanticsResponseBodyForContentTypes |
# **post_anyof_complex_types_request_body**
-
+
> post_anyof_complex_types_request_body(anyof_complex_types)
@@ -88,7 +88,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_anyof_complex_types_response_body_for_content_types**
-
+
> AnyofComplexTypes post_anyof_complex_types_response_body_for_content_types()
@@ -148,7 +148,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_anyof_request_body**
-
+
> post_anyof_request_body(anyof)
@@ -219,7 +219,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_anyof_response_body_for_content_types**
-
+
> Anyof post_anyof_response_body_for_content_types()
@@ -279,7 +279,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_anyof_with_base_schema_request_body**
-
+
> post_anyof_with_base_schema_request_body(body)
@@ -350,7 +350,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_anyof_with_base_schema_response_body_for_content_types**
-
+
> AnyofWithBaseSchema post_anyof_with_base_schema_response_body_for_content_types()
@@ -410,7 +410,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_anyof_with_one_empty_schema_request_body**
-
+
> post_anyof_with_one_empty_schema_request_body(anyof_with_one_empty_schema)
@@ -481,7 +481,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_anyof_with_one_empty_schema_response_body_for_content_types**
-
+
> AnyofWithOneEmptySchema post_anyof_with_one_empty_schema_response_body_for_content_types()
@@ -541,7 +541,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_nested_anyof_to_check_validation_semantics_request_body**
-
+
> post_nested_anyof_to_check_validation_semantics_request_body(nested_anyof_to_check_validation_semantics)
@@ -612,7 +612,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_nested_anyof_to_check_validation_semantics_response_body_for_content_types**
-
+
> NestedAnyofToCheckValidationSemantics post_nested_anyof_to_check_validation_semantics_response_body_for_content_types()
diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/ContentTypeJsonApi.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/ContentTypeJsonApi.md
index 0a1a6bd184..f7c13b27e1 100644
--- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/ContentTypeJsonApi.md
+++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/ContentTypeJsonApi.md
@@ -1,4 +1,4 @@
-
+
# unit_test_api.apis.tags.content_type_json_api.ContentTypeJsonApi
All URIs are relative to *https://someserver.com/v1*
@@ -181,7 +181,7 @@ Method | HTTP request | Description
[**post_uri_template_format_response_body_for_content_types**](#post_uri_template_format_response_body_for_content_types) | **post** /responseBody/postUriTemplateFormatResponseBodyForContentTypes |
# **post_additionalproperties_allows_a_schema_which_should_validate_request_body**
-
+
> post_additionalproperties_allows_a_schema_which_should_validate_request_body(additionalproperties_allows_a_schema_which_should_validate)
@@ -255,7 +255,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_additionalproperties_allows_a_schema_which_should_validate_response_body_for_content_types**
-
+
> AdditionalpropertiesAllowsASchemaWhichShouldValidate post_additionalproperties_allows_a_schema_which_should_validate_response_body_for_content_types()
@@ -315,7 +315,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_additionalproperties_are_allowed_by_default_request_body**
-
+
> post_additionalproperties_are_allowed_by_default_request_body(additionalproperties_are_allowed_by_default)
@@ -386,7 +386,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_additionalproperties_are_allowed_by_default_response_body_for_content_types**
-
+
> AdditionalpropertiesAreAllowedByDefault post_additionalproperties_are_allowed_by_default_response_body_for_content_types()
@@ -446,7 +446,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_additionalproperties_can_exist_by_itself_request_body**
-
+
> post_additionalproperties_can_exist_by_itself_request_body(additionalproperties_can_exist_by_itself)
@@ -519,7 +519,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_additionalproperties_can_exist_by_itself_response_body_for_content_types**
-
+
> AdditionalpropertiesCanExistByItself post_additionalproperties_can_exist_by_itself_response_body_for_content_types()
@@ -579,7 +579,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_additionalproperties_should_not_look_in_applicators_request_body**
-
+
> post_additionalproperties_should_not_look_in_applicators_request_body(additionalproperties_should_not_look_in_applicators)
@@ -650,7 +650,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_additionalproperties_should_not_look_in_applicators_response_body_for_content_types**
-
+
> AdditionalpropertiesShouldNotLookInApplicators post_additionalproperties_should_not_look_in_applicators_response_body_for_content_types()
@@ -710,7 +710,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_allof_combined_with_anyof_oneof_request_body**
-
+
> post_allof_combined_with_anyof_oneof_request_body(allof_combined_with_anyof_oneof)
@@ -781,7 +781,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_allof_combined_with_anyof_oneof_response_body_for_content_types**
-
+
> AllofCombinedWithAnyofOneof post_allof_combined_with_anyof_oneof_response_body_for_content_types()
@@ -841,7 +841,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_allof_request_body**
-
+
> post_allof_request_body(allof)
@@ -912,7 +912,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_allof_response_body_for_content_types**
-
+
> Allof post_allof_response_body_for_content_types()
@@ -972,7 +972,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_allof_simple_types_request_body**
-
+
> post_allof_simple_types_request_body(allof_simple_types)
@@ -1043,7 +1043,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_allof_simple_types_response_body_for_content_types**
-
+
> AllofSimpleTypes post_allof_simple_types_response_body_for_content_types()
@@ -1103,7 +1103,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_allof_with_base_schema_request_body**
-
+
> post_allof_with_base_schema_request_body(allof_with_base_schema)
@@ -1174,7 +1174,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_allof_with_base_schema_response_body_for_content_types**
-
+
> AllofWithBaseSchema post_allof_with_base_schema_response_body_for_content_types()
@@ -1234,7 +1234,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_allof_with_one_empty_schema_request_body**
-
+
> post_allof_with_one_empty_schema_request_body(allof_with_one_empty_schema)
@@ -1305,7 +1305,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_allof_with_one_empty_schema_response_body_for_content_types**
-
+
> AllofWithOneEmptySchema post_allof_with_one_empty_schema_response_body_for_content_types()
@@ -1365,7 +1365,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_allof_with_the_first_empty_schema_request_body**
-
+
> post_allof_with_the_first_empty_schema_request_body(allof_with_the_first_empty_schema)
@@ -1436,7 +1436,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_allof_with_the_first_empty_schema_response_body_for_content_types**
-
+
> AllofWithTheFirstEmptySchema post_allof_with_the_first_empty_schema_response_body_for_content_types()
@@ -1496,7 +1496,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_allof_with_the_last_empty_schema_request_body**
-
+
> post_allof_with_the_last_empty_schema_request_body(allof_with_the_last_empty_schema)
@@ -1567,7 +1567,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_allof_with_the_last_empty_schema_response_body_for_content_types**
-
+
> AllofWithTheLastEmptySchema post_allof_with_the_last_empty_schema_response_body_for_content_types()
@@ -1627,7 +1627,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_allof_with_two_empty_schemas_request_body**
-
+
> post_allof_with_two_empty_schemas_request_body(allof_with_two_empty_schemas)
@@ -1698,7 +1698,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_allof_with_two_empty_schemas_response_body_for_content_types**
-
+
> AllofWithTwoEmptySchemas post_allof_with_two_empty_schemas_response_body_for_content_types()
@@ -1758,7 +1758,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_anyof_complex_types_request_body**
-
+
> post_anyof_complex_types_request_body(anyof_complex_types)
@@ -1829,7 +1829,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_anyof_complex_types_response_body_for_content_types**
-
+
> AnyofComplexTypes post_anyof_complex_types_response_body_for_content_types()
@@ -1889,7 +1889,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_anyof_request_body**
-
+
> post_anyof_request_body(anyof)
@@ -1960,7 +1960,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_anyof_response_body_for_content_types**
-
+
> Anyof post_anyof_response_body_for_content_types()
@@ -2020,7 +2020,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_anyof_with_base_schema_request_body**
-
+
> post_anyof_with_base_schema_request_body(body)
@@ -2091,7 +2091,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_anyof_with_base_schema_response_body_for_content_types**
-
+
> AnyofWithBaseSchema post_anyof_with_base_schema_response_body_for_content_types()
@@ -2151,7 +2151,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_anyof_with_one_empty_schema_request_body**
-
+
> post_anyof_with_one_empty_schema_request_body(anyof_with_one_empty_schema)
@@ -2222,7 +2222,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_anyof_with_one_empty_schema_response_body_for_content_types**
-
+
> AnyofWithOneEmptySchema post_anyof_with_one_empty_schema_response_body_for_content_types()
@@ -2282,7 +2282,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_array_type_matches_arrays_request_body**
-
+
> post_array_type_matches_arrays_request_body(array_type_matches_arrays)
@@ -2355,7 +2355,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_array_type_matches_arrays_response_body_for_content_types**
-
+
> ArrayTypeMatchesArrays post_array_type_matches_arrays_response_body_for_content_types()
@@ -2415,7 +2415,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_boolean_type_matches_booleans_request_body**
-
+
> post_boolean_type_matches_booleans_request_body(body)
@@ -2486,7 +2486,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_boolean_type_matches_booleans_response_body_for_content_types**
-
+
> bool post_boolean_type_matches_booleans_response_body_for_content_types()
@@ -2546,7 +2546,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_by_int_request_body**
-
+
> post_by_int_request_body(body)
@@ -2617,7 +2617,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_by_int_response_body_for_content_types**
-
+
> ByInt post_by_int_response_body_for_content_types()
@@ -2677,7 +2677,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_by_number_request_body**
-
+
> post_by_number_request_body(body)
@@ -2748,7 +2748,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_by_number_response_body_for_content_types**
-
+
> ByNumber post_by_number_response_body_for_content_types()
@@ -2808,7 +2808,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_by_small_number_request_body**
-
+
> post_by_small_number_request_body(body)
@@ -2879,7 +2879,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_by_small_number_response_body_for_content_types**
-
+
> BySmallNumber post_by_small_number_response_body_for_content_types()
@@ -2939,7 +2939,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_date_time_format_request_body**
-
+
> post_date_time_format_request_body(body)
@@ -3010,7 +3010,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_date_time_format_response_body_for_content_types**
-
+
> bool, date, datetime, dict, float, int, list, str, none_type post_date_time_format_response_body_for_content_types()
@@ -3070,7 +3070,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_email_format_request_body**
-
+
> post_email_format_request_body(body)
@@ -3141,7 +3141,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_email_format_response_body_for_content_types**
-
+
> bool, date, datetime, dict, float, int, list, str, none_type post_email_format_response_body_for_content_types()
@@ -3201,7 +3201,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_enum_with0_does_not_match_false_request_body**
-
+
> post_enum_with0_does_not_match_false_request_body(body)
@@ -3272,7 +3272,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_enum_with0_does_not_match_false_response_body_for_content_types**
-
+
> EnumWith0DoesNotMatchFalse post_enum_with0_does_not_match_false_response_body_for_content_types()
@@ -3332,7 +3332,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_enum_with1_does_not_match_true_request_body**
-
+
> post_enum_with1_does_not_match_true_request_body(body)
@@ -3403,7 +3403,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_enum_with1_does_not_match_true_response_body_for_content_types**
-
+
> EnumWith1DoesNotMatchTrue post_enum_with1_does_not_match_true_response_body_for_content_types()
@@ -3463,7 +3463,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_enum_with_escaped_characters_request_body**
-
+
> post_enum_with_escaped_characters_request_body(body)
@@ -3534,7 +3534,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_enum_with_escaped_characters_response_body_for_content_types**
-
+
> EnumWithEscapedCharacters post_enum_with_escaped_characters_response_body_for_content_types()
@@ -3594,7 +3594,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_enum_with_false_does_not_match0_request_body**
-
+
> post_enum_with_false_does_not_match0_request_body(body)
@@ -3665,7 +3665,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_enum_with_false_does_not_match0_response_body_for_content_types**
-
+
> EnumWithFalseDoesNotMatch0 post_enum_with_false_does_not_match0_response_body_for_content_types()
@@ -3725,7 +3725,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_enum_with_true_does_not_match1_request_body**
-
+
> post_enum_with_true_does_not_match1_request_body(body)
@@ -3796,7 +3796,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_enum_with_true_does_not_match1_response_body_for_content_types**
-
+
> EnumWithTrueDoesNotMatch1 post_enum_with_true_does_not_match1_response_body_for_content_types()
@@ -3856,7 +3856,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_enums_in_properties_request_body**
-
+
> post_enums_in_properties_request_body(enums_in_properties)
@@ -3930,7 +3930,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_enums_in_properties_response_body_for_content_types**
-
+
> EnumsInProperties post_enums_in_properties_response_body_for_content_types()
@@ -3990,7 +3990,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_forbidden_property_request_body**
-
+
> post_forbidden_property_request_body(forbidden_property)
@@ -4061,7 +4061,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_forbidden_property_response_body_for_content_types**
-
+
> ForbiddenProperty post_forbidden_property_response_body_for_content_types()
@@ -4121,7 +4121,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_hostname_format_request_body**
-
+
> post_hostname_format_request_body(body)
@@ -4192,7 +4192,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_hostname_format_response_body_for_content_types**
-
+
> bool, date, datetime, dict, float, int, list, str, none_type post_hostname_format_response_body_for_content_types()
@@ -4252,7 +4252,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_integer_type_matches_integers_request_body**
-
+
> post_integer_type_matches_integers_request_body(body)
@@ -4323,7 +4323,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_integer_type_matches_integers_response_body_for_content_types**
-
+
> int post_integer_type_matches_integers_response_body_for_content_types()
@@ -4383,7 +4383,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_invalid_instance_should_not_raise_error_when_float_division_inf_request_body**
-
+
> post_invalid_instance_should_not_raise_error_when_float_division_inf_request_body(body)
@@ -4454,7 +4454,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_invalid_instance_should_not_raise_error_when_float_division_inf_response_body_for_content_types**
-
+
> InvalidInstanceShouldNotRaiseErrorWhenFloatDivisionInf post_invalid_instance_should_not_raise_error_when_float_division_inf_response_body_for_content_types()
@@ -4514,7 +4514,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_invalid_string_value_for_default_request_body**
-
+
> post_invalid_string_value_for_default_request_body(invalid_string_value_for_default)
@@ -4585,7 +4585,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_invalid_string_value_for_default_response_body_for_content_types**
-
+
> InvalidStringValueForDefault post_invalid_string_value_for_default_response_body_for_content_types()
@@ -4645,7 +4645,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_ipv4_format_request_body**
-
+
> post_ipv4_format_request_body(body)
@@ -4716,7 +4716,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_ipv4_format_response_body_for_content_types**
-
+
> bool, date, datetime, dict, float, int, list, str, none_type post_ipv4_format_response_body_for_content_types()
@@ -4776,7 +4776,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_ipv6_format_request_body**
-
+
> post_ipv6_format_request_body(body)
@@ -4847,7 +4847,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_ipv6_format_response_body_for_content_types**
-
+
> bool, date, datetime, dict, float, int, list, str, none_type post_ipv6_format_response_body_for_content_types()
@@ -4907,7 +4907,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_json_pointer_format_request_body**
-
+
> post_json_pointer_format_request_body(body)
@@ -4978,7 +4978,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_json_pointer_format_response_body_for_content_types**
-
+
> bool, date, datetime, dict, float, int, list, str, none_type post_json_pointer_format_response_body_for_content_types()
@@ -5038,7 +5038,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_maximum_validation_request_body**
-
+
> post_maximum_validation_request_body(body)
@@ -5109,7 +5109,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_maximum_validation_response_body_for_content_types**
-
+
> MaximumValidation post_maximum_validation_response_body_for_content_types()
@@ -5169,7 +5169,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_maximum_validation_with_unsigned_integer_request_body**
-
+
> post_maximum_validation_with_unsigned_integer_request_body(body)
@@ -5240,7 +5240,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_maximum_validation_with_unsigned_integer_response_body_for_content_types**
-
+
> MaximumValidationWithUnsignedInteger post_maximum_validation_with_unsigned_integer_response_body_for_content_types()
@@ -5300,7 +5300,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_maxitems_validation_request_body**
-
+
> post_maxitems_validation_request_body(body)
@@ -5371,7 +5371,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_maxitems_validation_response_body_for_content_types**
-
+
> MaxitemsValidation post_maxitems_validation_response_body_for_content_types()
@@ -5431,7 +5431,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_maxlength_validation_request_body**
-
+
> post_maxlength_validation_request_body(body)
@@ -5502,7 +5502,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_maxlength_validation_response_body_for_content_types**
-
+
> MaxlengthValidation post_maxlength_validation_response_body_for_content_types()
@@ -5562,7 +5562,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_maxproperties0_means_the_object_is_empty_request_body**
-
+
> post_maxproperties0_means_the_object_is_empty_request_body(body)
@@ -5633,7 +5633,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_maxproperties0_means_the_object_is_empty_response_body_for_content_types**
-
+
> Maxproperties0MeansTheObjectIsEmpty post_maxproperties0_means_the_object_is_empty_response_body_for_content_types()
@@ -5693,7 +5693,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_maxproperties_validation_request_body**
-
+
> post_maxproperties_validation_request_body(body)
@@ -5764,7 +5764,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_maxproperties_validation_response_body_for_content_types**
-
+
> MaxpropertiesValidation post_maxproperties_validation_response_body_for_content_types()
@@ -5824,7 +5824,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_minimum_validation_request_body**
-
+
> post_minimum_validation_request_body(body)
@@ -5895,7 +5895,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_minimum_validation_response_body_for_content_types**
-
+
> MinimumValidation post_minimum_validation_response_body_for_content_types()
@@ -5955,7 +5955,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_minimum_validation_with_signed_integer_request_body**
-
+
> post_minimum_validation_with_signed_integer_request_body(body)
@@ -6026,7 +6026,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_minimum_validation_with_signed_integer_response_body_for_content_types**
-
+
> MinimumValidationWithSignedInteger post_minimum_validation_with_signed_integer_response_body_for_content_types()
@@ -6086,7 +6086,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_minitems_validation_request_body**
-
+
> post_minitems_validation_request_body(body)
@@ -6157,7 +6157,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_minitems_validation_response_body_for_content_types**
-
+
> MinitemsValidation post_minitems_validation_response_body_for_content_types()
@@ -6217,7 +6217,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_minlength_validation_request_body**
-
+
> post_minlength_validation_request_body(body)
@@ -6288,7 +6288,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_minlength_validation_response_body_for_content_types**
-
+
> MinlengthValidation post_minlength_validation_response_body_for_content_types()
@@ -6348,7 +6348,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_minproperties_validation_request_body**
-
+
> post_minproperties_validation_request_body(body)
@@ -6419,7 +6419,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_minproperties_validation_response_body_for_content_types**
-
+
> MinpropertiesValidation post_minproperties_validation_response_body_for_content_types()
@@ -6479,7 +6479,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_nested_allof_to_check_validation_semantics_request_body**
-
+
> post_nested_allof_to_check_validation_semantics_request_body(nested_allof_to_check_validation_semantics)
@@ -6550,7 +6550,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_nested_allof_to_check_validation_semantics_response_body_for_content_types**
-
+
> NestedAllofToCheckValidationSemantics post_nested_allof_to_check_validation_semantics_response_body_for_content_types()
@@ -6610,7 +6610,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_nested_anyof_to_check_validation_semantics_request_body**
-
+
> post_nested_anyof_to_check_validation_semantics_request_body(nested_anyof_to_check_validation_semantics)
@@ -6681,7 +6681,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_nested_anyof_to_check_validation_semantics_response_body_for_content_types**
-
+
> NestedAnyofToCheckValidationSemantics post_nested_anyof_to_check_validation_semantics_response_body_for_content_types()
@@ -6741,7 +6741,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_nested_items_request_body**
-
+
> post_nested_items_request_body(nested_items)
@@ -6820,7 +6820,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_nested_items_response_body_for_content_types**
-
+
> NestedItems post_nested_items_response_body_for_content_types()
@@ -6880,7 +6880,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_nested_oneof_to_check_validation_semantics_request_body**
-
+
> post_nested_oneof_to_check_validation_semantics_request_body(nested_oneof_to_check_validation_semantics)
@@ -6951,7 +6951,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_nested_oneof_to_check_validation_semantics_response_body_for_content_types**
-
+
> NestedOneofToCheckValidationSemantics post_nested_oneof_to_check_validation_semantics_response_body_for_content_types()
@@ -7011,7 +7011,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_not_more_complex_schema_request_body**
-
+
> post_not_more_complex_schema_request_body(body)
@@ -7101,7 +7101,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_not_more_complex_schema_response_body_for_content_types**
-
+
> bool, date, datetime, dict, float, int, list, str, none_type post_not_more_complex_schema_response_body_for_content_types()
@@ -7180,7 +7180,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_not_request_body**
-
+
> post_not_request_body(body)
@@ -7264,7 +7264,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_not_response_body_for_content_types**
-
+
> bool, date, datetime, dict, float, int, list, str, none_type post_not_response_body_for_content_types()
@@ -7337,7 +7337,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_nul_characters_in_strings_request_body**
-
+
> post_nul_characters_in_strings_request_body(body)
@@ -7408,7 +7408,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_nul_characters_in_strings_response_body_for_content_types**
-
+
> NulCharactersInStrings post_nul_characters_in_strings_response_body_for_content_types()
@@ -7468,7 +7468,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_null_type_matches_only_the_null_object_request_body**
-
+
> post_null_type_matches_only_the_null_object_request_body(body)
@@ -7539,7 +7539,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_null_type_matches_only_the_null_object_response_body_for_content_types**
-
+
> none_type post_null_type_matches_only_the_null_object_response_body_for_content_types()
@@ -7599,7 +7599,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_number_type_matches_numbers_request_body**
-
+
> post_number_type_matches_numbers_request_body(body)
@@ -7670,7 +7670,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_number_type_matches_numbers_response_body_for_content_types**
-
+
> int, float post_number_type_matches_numbers_response_body_for_content_types()
@@ -7730,7 +7730,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_object_properties_validation_request_body**
-
+
> post_object_properties_validation_request_body(object_properties_validation)
@@ -7801,7 +7801,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_object_properties_validation_response_body_for_content_types**
-
+
> ObjectPropertiesValidation post_object_properties_validation_response_body_for_content_types()
@@ -7861,7 +7861,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_object_type_matches_objects_request_body**
-
+
> post_object_type_matches_objects_request_body(body)
@@ -7932,7 +7932,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_object_type_matches_objects_response_body_for_content_types**
-
+
> {str: (bool, date, datetime, dict, float, int, list, str, none_type)} post_object_type_matches_objects_response_body_for_content_types()
@@ -7992,7 +7992,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_oneof_complex_types_request_body**
-
+
> post_oneof_complex_types_request_body(oneof_complex_types)
@@ -8063,7 +8063,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_oneof_complex_types_response_body_for_content_types**
-
+
> OneofComplexTypes post_oneof_complex_types_response_body_for_content_types()
@@ -8123,7 +8123,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_oneof_request_body**
-
+
> post_oneof_request_body(oneof)
@@ -8194,7 +8194,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_oneof_response_body_for_content_types**
-
+
> Oneof post_oneof_response_body_for_content_types()
@@ -8254,7 +8254,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_oneof_with_base_schema_request_body**
-
+
> post_oneof_with_base_schema_request_body(body)
@@ -8325,7 +8325,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_oneof_with_base_schema_response_body_for_content_types**
-
+
> OneofWithBaseSchema post_oneof_with_base_schema_response_body_for_content_types()
@@ -8385,7 +8385,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_oneof_with_empty_schema_request_body**
-
+
> post_oneof_with_empty_schema_request_body(oneof_with_empty_schema)
@@ -8456,7 +8456,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_oneof_with_empty_schema_response_body_for_content_types**
-
+
> OneofWithEmptySchema post_oneof_with_empty_schema_response_body_for_content_types()
@@ -8516,7 +8516,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_oneof_with_required_request_body**
-
+
> post_oneof_with_required_request_body(oneof_with_required)
@@ -8587,7 +8587,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_oneof_with_required_response_body_for_content_types**
-
+
> OneofWithRequired post_oneof_with_required_response_body_for_content_types()
@@ -8647,7 +8647,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_pattern_is_not_anchored_request_body**
-
+
> post_pattern_is_not_anchored_request_body(body)
@@ -8718,7 +8718,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_pattern_is_not_anchored_response_body_for_content_types**
-
+
> PatternIsNotAnchored post_pattern_is_not_anchored_response_body_for_content_types()
@@ -8778,7 +8778,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_pattern_validation_request_body**
-
+
> post_pattern_validation_request_body(body)
@@ -8849,7 +8849,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_pattern_validation_response_body_for_content_types**
-
+
> PatternValidation post_pattern_validation_response_body_for_content_types()
@@ -8909,7 +8909,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_properties_with_escaped_characters_request_body**
-
+
> post_properties_with_escaped_characters_request_body(properties_with_escaped_characters)
@@ -8980,7 +8980,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_properties_with_escaped_characters_response_body_for_content_types**
-
+
> PropertiesWithEscapedCharacters post_properties_with_escaped_characters_response_body_for_content_types()
@@ -9040,7 +9040,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_property_named_ref_that_is_not_a_reference_request_body**
-
+
> post_property_named_ref_that_is_not_a_reference_request_body(property_named_ref_that_is_not_a_reference)
@@ -9111,7 +9111,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_property_named_ref_that_is_not_a_reference_response_body_for_content_types**
-
+
> PropertyNamedRefThatIsNotAReference post_property_named_ref_that_is_not_a_reference_response_body_for_content_types()
@@ -9171,7 +9171,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_ref_in_additionalproperties_request_body**
-
+
> post_ref_in_additionalproperties_request_body(ref_in_additionalproperties)
@@ -9244,7 +9244,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_ref_in_additionalproperties_response_body_for_content_types**
-
+
> RefInAdditionalproperties post_ref_in_additionalproperties_response_body_for_content_types()
@@ -9304,7 +9304,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_ref_in_allof_request_body**
-
+
> post_ref_in_allof_request_body(ref_in_allof)
@@ -9375,7 +9375,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_ref_in_allof_response_body_for_content_types**
-
+
> RefInAllof post_ref_in_allof_response_body_for_content_types()
@@ -9435,7 +9435,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_ref_in_anyof_request_body**
-
+
> post_ref_in_anyof_request_body(ref_in_anyof)
@@ -9506,7 +9506,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_ref_in_anyof_response_body_for_content_types**
-
+
> RefInAnyof post_ref_in_anyof_response_body_for_content_types()
@@ -9566,7 +9566,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_ref_in_items_request_body**
-
+
> post_ref_in_items_request_body(ref_in_items)
@@ -9639,7 +9639,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_ref_in_items_response_body_for_content_types**
-
+
> RefInItems post_ref_in_items_response_body_for_content_types()
@@ -9699,7 +9699,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_ref_in_not_request_body**
-
+
> post_ref_in_not_request_body(body)
@@ -9777,7 +9777,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_ref_in_not_response_body_for_content_types**
-
+
> bool, date, datetime, dict, float, int, list, str, none_type post_ref_in_not_response_body_for_content_types()
@@ -9844,7 +9844,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_ref_in_oneof_request_body**
-
+
> post_ref_in_oneof_request_body(ref_in_oneof)
@@ -9915,7 +9915,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_ref_in_oneof_response_body_for_content_types**
-
+
> RefInOneof post_ref_in_oneof_response_body_for_content_types()
@@ -9975,7 +9975,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_ref_in_property_request_body**
-
+
> post_ref_in_property_request_body(ref_in_property)
@@ -10046,7 +10046,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_ref_in_property_response_body_for_content_types**
-
+
> RefInProperty post_ref_in_property_response_body_for_content_types()
@@ -10106,7 +10106,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_required_default_validation_request_body**
-
+
> post_required_default_validation_request_body(required_default_validation)
@@ -10177,7 +10177,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_required_default_validation_response_body_for_content_types**
-
+
> RequiredDefaultValidation post_required_default_validation_response_body_for_content_types()
@@ -10237,7 +10237,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_required_validation_request_body**
-
+
> post_required_validation_request_body(required_validation)
@@ -10308,7 +10308,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_required_validation_response_body_for_content_types**
-
+
> RequiredValidation post_required_validation_response_body_for_content_types()
@@ -10368,7 +10368,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_required_with_empty_array_request_body**
-
+
> post_required_with_empty_array_request_body(required_with_empty_array)
@@ -10439,7 +10439,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_required_with_empty_array_response_body_for_content_types**
-
+
> RequiredWithEmptyArray post_required_with_empty_array_response_body_for_content_types()
@@ -10499,7 +10499,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_required_with_escaped_characters_request_body**
-
+
> post_required_with_escaped_characters_request_body(body)
@@ -10570,7 +10570,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_required_with_escaped_characters_response_body_for_content_types**
-
+
> bool, date, datetime, dict, float, int, list, str, none_type post_required_with_escaped_characters_response_body_for_content_types()
@@ -10630,7 +10630,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_simple_enum_validation_request_body**
-
+
> post_simple_enum_validation_request_body(body)
@@ -10701,7 +10701,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_simple_enum_validation_response_body_for_content_types**
-
+
> SimpleEnumValidation post_simple_enum_validation_response_body_for_content_types()
@@ -10761,7 +10761,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_string_type_matches_strings_request_body**
-
+
> post_string_type_matches_strings_request_body(body)
@@ -10832,7 +10832,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_string_type_matches_strings_response_body_for_content_types**
-
+
> str post_string_type_matches_strings_response_body_for_content_types()
@@ -10892,7 +10892,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_the_default_keyword_does_not_do_anything_if_the_property_is_missing_request_body**
-
+
> post_the_default_keyword_does_not_do_anything_if_the_property_is_missing_request_body(the_default_keyword_does_not_do_anything_if_the_property_is_missing)
@@ -10965,7 +10965,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_the_default_keyword_does_not_do_anything_if_the_property_is_missing_response_body_for_content_types**
-
+
> TheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissing post_the_default_keyword_does_not_do_anything_if_the_property_is_missing_response_body_for_content_types()
@@ -11025,7 +11025,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_uniqueitems_false_validation_request_body**
-
+
> post_uniqueitems_false_validation_request_body(body)
@@ -11096,7 +11096,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_uniqueitems_false_validation_response_body_for_content_types**
-
+
> UniqueitemsFalseValidation post_uniqueitems_false_validation_response_body_for_content_types()
@@ -11156,7 +11156,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_uniqueitems_validation_request_body**
-
+
> post_uniqueitems_validation_request_body(body)
@@ -11227,7 +11227,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_uniqueitems_validation_response_body_for_content_types**
-
+
> UniqueitemsValidation post_uniqueitems_validation_response_body_for_content_types()
@@ -11287,7 +11287,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_uri_format_request_body**
-
+
> post_uri_format_request_body(body)
@@ -11358,7 +11358,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_uri_format_response_body_for_content_types**
-
+
> bool, date, datetime, dict, float, int, list, str, none_type post_uri_format_response_body_for_content_types()
@@ -11418,7 +11418,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_uri_reference_format_request_body**
-
+
> post_uri_reference_format_request_body(body)
@@ -11489,7 +11489,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_uri_reference_format_response_body_for_content_types**
-
+
> bool, date, datetime, dict, float, int, list, str, none_type post_uri_reference_format_response_body_for_content_types()
@@ -11549,7 +11549,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_uri_template_format_request_body**
-
+
> post_uri_template_format_request_body(body)
@@ -11620,7 +11620,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_uri_template_format_response_body_for_content_types**
-
+
> bool, date, datetime, dict, float, int, list, str, none_type post_uri_template_format_response_body_for_content_types()
diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/DefaultApi.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/DefaultApi.md
index 4fb214ed39..19d9fd308b 100644
--- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/DefaultApi.md
+++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/DefaultApi.md
@@ -1,4 +1,4 @@
-
+
# unit_test_api.apis.tags.default_api.DefaultApi
All URIs are relative to *https://someserver.com/v1*
@@ -11,7 +11,7 @@ Method | HTTP request | Description
[**post_the_default_keyword_does_not_do_anything_if_the_property_is_missing_response_body_for_content_types**](#post_the_default_keyword_does_not_do_anything_if_the_property_is_missing_response_body_for_content_types) | **post** /responseBody/postTheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissingResponseBodyForContentTypes |
# **post_invalid_string_value_for_default_request_body**
-
+
> post_invalid_string_value_for_default_request_body(invalid_string_value_for_default)
@@ -82,7 +82,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_invalid_string_value_for_default_response_body_for_content_types**
-
+
> InvalidStringValueForDefault post_invalid_string_value_for_default_response_body_for_content_types()
@@ -142,7 +142,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_the_default_keyword_does_not_do_anything_if_the_property_is_missing_request_body**
-
+
> post_the_default_keyword_does_not_do_anything_if_the_property_is_missing_request_body(the_default_keyword_does_not_do_anything_if_the_property_is_missing)
@@ -215,7 +215,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_the_default_keyword_does_not_do_anything_if_the_property_is_missing_response_body_for_content_types**
-
+
> TheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissing post_the_default_keyword_does_not_do_anything_if_the_property_is_missing_response_body_for_content_types()
diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/EnumApi.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/EnumApi.md
index ec34586909..fb97ba1ba3 100644
--- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/EnumApi.md
+++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/EnumApi.md
@@ -1,4 +1,4 @@
-
+
# unit_test_api.apis.tags.enum_api.EnumApi
All URIs are relative to *https://someserver.com/v1*
@@ -23,7 +23,7 @@ Method | HTTP request | Description
[**post_simple_enum_validation_response_body_for_content_types**](#post_simple_enum_validation_response_body_for_content_types) | **post** /responseBody/postSimpleEnumValidationResponseBodyForContentTypes |
# **post_enum_with0_does_not_match_false_request_body**
-
+
> post_enum_with0_does_not_match_false_request_body(body)
@@ -94,7 +94,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_enum_with0_does_not_match_false_response_body_for_content_types**
-
+
> EnumWith0DoesNotMatchFalse post_enum_with0_does_not_match_false_response_body_for_content_types()
@@ -154,7 +154,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_enum_with1_does_not_match_true_request_body**
-
+
> post_enum_with1_does_not_match_true_request_body(body)
@@ -225,7 +225,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_enum_with1_does_not_match_true_response_body_for_content_types**
-
+
> EnumWith1DoesNotMatchTrue post_enum_with1_does_not_match_true_response_body_for_content_types()
@@ -285,7 +285,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_enum_with_escaped_characters_request_body**
-
+
> post_enum_with_escaped_characters_request_body(body)
@@ -356,7 +356,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_enum_with_escaped_characters_response_body_for_content_types**
-
+
> EnumWithEscapedCharacters post_enum_with_escaped_characters_response_body_for_content_types()
@@ -416,7 +416,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_enum_with_false_does_not_match0_request_body**
-
+
> post_enum_with_false_does_not_match0_request_body(body)
@@ -487,7 +487,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_enum_with_false_does_not_match0_response_body_for_content_types**
-
+
> EnumWithFalseDoesNotMatch0 post_enum_with_false_does_not_match0_response_body_for_content_types()
@@ -547,7 +547,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_enum_with_true_does_not_match1_request_body**
-
+
> post_enum_with_true_does_not_match1_request_body(body)
@@ -618,7 +618,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_enum_with_true_does_not_match1_response_body_for_content_types**
-
+
> EnumWithTrueDoesNotMatch1 post_enum_with_true_does_not_match1_response_body_for_content_types()
@@ -678,7 +678,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_enums_in_properties_request_body**
-
+
> post_enums_in_properties_request_body(enums_in_properties)
@@ -752,7 +752,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_enums_in_properties_response_body_for_content_types**
-
+
> EnumsInProperties post_enums_in_properties_response_body_for_content_types()
@@ -812,7 +812,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_nul_characters_in_strings_request_body**
-
+
> post_nul_characters_in_strings_request_body(body)
@@ -883,7 +883,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_nul_characters_in_strings_response_body_for_content_types**
-
+
> NulCharactersInStrings post_nul_characters_in_strings_response_body_for_content_types()
@@ -943,7 +943,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_simple_enum_validation_request_body**
-
+
> post_simple_enum_validation_request_body(body)
@@ -1014,7 +1014,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_simple_enum_validation_response_body_for_content_types**
-
+
> SimpleEnumValidation post_simple_enum_validation_response_body_for_content_types()
diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/FormatApi.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/FormatApi.md
index 08431f22e6..b1b6b115e7 100644
--- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/FormatApi.md
+++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/FormatApi.md
@@ -1,4 +1,4 @@
-
+
# unit_test_api.apis.tags.format_api.FormatApi
All URIs are relative to *https://someserver.com/v1*
@@ -25,7 +25,7 @@ Method | HTTP request | Description
[**post_uri_template_format_response_body_for_content_types**](#post_uri_template_format_response_body_for_content_types) | **post** /responseBody/postUriTemplateFormatResponseBodyForContentTypes |
# **post_date_time_format_request_body**
-
+
> post_date_time_format_request_body(body)
@@ -96,7 +96,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_date_time_format_response_body_for_content_types**
-
+
> bool, date, datetime, dict, float, int, list, str, none_type post_date_time_format_response_body_for_content_types()
@@ -156,7 +156,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_email_format_request_body**
-
+
> post_email_format_request_body(body)
@@ -227,7 +227,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_email_format_response_body_for_content_types**
-
+
> bool, date, datetime, dict, float, int, list, str, none_type post_email_format_response_body_for_content_types()
@@ -287,7 +287,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_hostname_format_request_body**
-
+
> post_hostname_format_request_body(body)
@@ -358,7 +358,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_hostname_format_response_body_for_content_types**
-
+
> bool, date, datetime, dict, float, int, list, str, none_type post_hostname_format_response_body_for_content_types()
@@ -418,7 +418,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_ipv4_format_request_body**
-
+
> post_ipv4_format_request_body(body)
@@ -489,7 +489,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_ipv4_format_response_body_for_content_types**
-
+
> bool, date, datetime, dict, float, int, list, str, none_type post_ipv4_format_response_body_for_content_types()
@@ -549,7 +549,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_ipv6_format_request_body**
-
+
> post_ipv6_format_request_body(body)
@@ -620,7 +620,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_ipv6_format_response_body_for_content_types**
-
+
> bool, date, datetime, dict, float, int, list, str, none_type post_ipv6_format_response_body_for_content_types()
@@ -680,7 +680,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_json_pointer_format_request_body**
-
+
> post_json_pointer_format_request_body(body)
@@ -751,7 +751,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_json_pointer_format_response_body_for_content_types**
-
+
> bool, date, datetime, dict, float, int, list, str, none_type post_json_pointer_format_response_body_for_content_types()
@@ -811,7 +811,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_uri_format_request_body**
-
+
> post_uri_format_request_body(body)
@@ -882,7 +882,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_uri_format_response_body_for_content_types**
-
+
> bool, date, datetime, dict, float, int, list, str, none_type post_uri_format_response_body_for_content_types()
@@ -942,7 +942,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_uri_reference_format_request_body**
-
+
> post_uri_reference_format_request_body(body)
@@ -1013,7 +1013,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_uri_reference_format_response_body_for_content_types**
-
+
> bool, date, datetime, dict, float, int, list, str, none_type post_uri_reference_format_response_body_for_content_types()
@@ -1073,7 +1073,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_uri_template_format_request_body**
-
+
> post_uri_template_format_request_body(body)
@@ -1144,7 +1144,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_uri_template_format_response_body_for_content_types**
-
+
> bool, date, datetime, dict, float, int, list, str, none_type post_uri_template_format_response_body_for_content_types()
diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/ItemsApi.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/ItemsApi.md
index a3892956f1..1bc05726e2 100644
--- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/ItemsApi.md
+++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/ItemsApi.md
@@ -1,4 +1,4 @@
-
+
# unit_test_api.apis.tags.items_api.ItemsApi
All URIs are relative to *https://someserver.com/v1*
@@ -9,7 +9,7 @@ Method | HTTP request | Description
[**post_nested_items_response_body_for_content_types**](#post_nested_items_response_body_for_content_types) | **post** /responseBody/postNestedItemsResponseBodyForContentTypes |
# **post_nested_items_request_body**
-
+
> post_nested_items_request_body(nested_items)
@@ -88,7 +88,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_nested_items_response_body_for_content_types**
-
+
> NestedItems post_nested_items_response_body_for_content_types()
diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/MaxItemsApi.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/MaxItemsApi.md
index 481d933e61..6f26aa95c7 100644
--- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/MaxItemsApi.md
+++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/MaxItemsApi.md
@@ -1,4 +1,4 @@
-
+
# unit_test_api.apis.tags.max_items_api.MaxItemsApi
All URIs are relative to *https://someserver.com/v1*
@@ -9,7 +9,7 @@ Method | HTTP request | Description
[**post_maxitems_validation_response_body_for_content_types**](#post_maxitems_validation_response_body_for_content_types) | **post** /responseBody/postMaxitemsValidationResponseBodyForContentTypes |
# **post_maxitems_validation_request_body**
-
+
> post_maxitems_validation_request_body(body)
@@ -80,7 +80,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_maxitems_validation_response_body_for_content_types**
-
+
> MaxitemsValidation post_maxitems_validation_response_body_for_content_types()
diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/MaxLengthApi.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/MaxLengthApi.md
index 98d63d4924..ceef7d4b58 100644
--- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/MaxLengthApi.md
+++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/MaxLengthApi.md
@@ -1,4 +1,4 @@
-
+
# unit_test_api.apis.tags.max_length_api.MaxLengthApi
All URIs are relative to *https://someserver.com/v1*
@@ -9,7 +9,7 @@ Method | HTTP request | Description
[**post_maxlength_validation_response_body_for_content_types**](#post_maxlength_validation_response_body_for_content_types) | **post** /responseBody/postMaxlengthValidationResponseBodyForContentTypes |
# **post_maxlength_validation_request_body**
-
+
> post_maxlength_validation_request_body(body)
@@ -80,7 +80,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_maxlength_validation_response_body_for_content_types**
-
+
> MaxlengthValidation post_maxlength_validation_response_body_for_content_types()
diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/MaxPropertiesApi.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/MaxPropertiesApi.md
index 30bb70e217..09318128a1 100644
--- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/MaxPropertiesApi.md
+++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/MaxPropertiesApi.md
@@ -1,4 +1,4 @@
-
+
# unit_test_api.apis.tags.max_properties_api.MaxPropertiesApi
All URIs are relative to *https://someserver.com/v1*
@@ -11,7 +11,7 @@ Method | HTTP request | Description
[**post_maxproperties_validation_response_body_for_content_types**](#post_maxproperties_validation_response_body_for_content_types) | **post** /responseBody/postMaxpropertiesValidationResponseBodyForContentTypes |
# **post_maxproperties0_means_the_object_is_empty_request_body**
-
+
> post_maxproperties0_means_the_object_is_empty_request_body(body)
@@ -82,7 +82,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_maxproperties0_means_the_object_is_empty_response_body_for_content_types**
-
+
> Maxproperties0MeansTheObjectIsEmpty post_maxproperties0_means_the_object_is_empty_response_body_for_content_types()
@@ -142,7 +142,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_maxproperties_validation_request_body**
-
+
> post_maxproperties_validation_request_body(body)
@@ -213,7 +213,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_maxproperties_validation_response_body_for_content_types**
-
+
> MaxpropertiesValidation post_maxproperties_validation_response_body_for_content_types()
diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/MaximumApi.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/MaximumApi.md
index 388aa8b796..ba2295a390 100644
--- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/MaximumApi.md
+++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/MaximumApi.md
@@ -1,4 +1,4 @@
-
+
# unit_test_api.apis.tags.maximum_api.MaximumApi
All URIs are relative to *https://someserver.com/v1*
@@ -11,7 +11,7 @@ Method | HTTP request | Description
[**post_maximum_validation_with_unsigned_integer_response_body_for_content_types**](#post_maximum_validation_with_unsigned_integer_response_body_for_content_types) | **post** /responseBody/postMaximumValidationWithUnsignedIntegerResponseBodyForContentTypes |
# **post_maximum_validation_request_body**
-
+
> post_maximum_validation_request_body(body)
@@ -82,7 +82,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_maximum_validation_response_body_for_content_types**
-
+
> MaximumValidation post_maximum_validation_response_body_for_content_types()
@@ -142,7 +142,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_maximum_validation_with_unsigned_integer_request_body**
-
+
> post_maximum_validation_with_unsigned_integer_request_body(body)
@@ -213,7 +213,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_maximum_validation_with_unsigned_integer_response_body_for_content_types**
-
+
> MaximumValidationWithUnsignedInteger post_maximum_validation_with_unsigned_integer_response_body_for_content_types()
diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/MinItemsApi.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/MinItemsApi.md
index 47fece8482..aec6ce2b7b 100644
--- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/MinItemsApi.md
+++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/MinItemsApi.md
@@ -1,4 +1,4 @@
-
+
# unit_test_api.apis.tags.min_items_api.MinItemsApi
All URIs are relative to *https://someserver.com/v1*
@@ -9,7 +9,7 @@ Method | HTTP request | Description
[**post_minitems_validation_response_body_for_content_types**](#post_minitems_validation_response_body_for_content_types) | **post** /responseBody/postMinitemsValidationResponseBodyForContentTypes |
# **post_minitems_validation_request_body**
-
+
> post_minitems_validation_request_body(body)
@@ -80,7 +80,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_minitems_validation_response_body_for_content_types**
-
+
> MinitemsValidation post_minitems_validation_response_body_for_content_types()
diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/MinLengthApi.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/MinLengthApi.md
index 918d02f43e..965b90d10d 100644
--- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/MinLengthApi.md
+++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/MinLengthApi.md
@@ -1,4 +1,4 @@
-
+
# unit_test_api.apis.tags.min_length_api.MinLengthApi
All URIs are relative to *https://someserver.com/v1*
@@ -9,7 +9,7 @@ Method | HTTP request | Description
[**post_minlength_validation_response_body_for_content_types**](#post_minlength_validation_response_body_for_content_types) | **post** /responseBody/postMinlengthValidationResponseBodyForContentTypes |
# **post_minlength_validation_request_body**
-
+
> post_minlength_validation_request_body(body)
@@ -80,7 +80,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_minlength_validation_response_body_for_content_types**
-
+
> MinlengthValidation post_minlength_validation_response_body_for_content_types()
diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/MinPropertiesApi.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/MinPropertiesApi.md
index 7d44da6f0b..987f0f50ec 100644
--- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/MinPropertiesApi.md
+++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/MinPropertiesApi.md
@@ -1,4 +1,4 @@
-
+
# unit_test_api.apis.tags.min_properties_api.MinPropertiesApi
All URIs are relative to *https://someserver.com/v1*
@@ -9,7 +9,7 @@ Method | HTTP request | Description
[**post_minproperties_validation_response_body_for_content_types**](#post_minproperties_validation_response_body_for_content_types) | **post** /responseBody/postMinpropertiesValidationResponseBodyForContentTypes |
# **post_minproperties_validation_request_body**
-
+
> post_minproperties_validation_request_body(body)
@@ -80,7 +80,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_minproperties_validation_response_body_for_content_types**
-
+
> MinpropertiesValidation post_minproperties_validation_response_body_for_content_types()
diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/MinimumApi.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/MinimumApi.md
index b176533c96..cb7a4411b2 100644
--- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/MinimumApi.md
+++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/MinimumApi.md
@@ -1,4 +1,4 @@
-
+
# unit_test_api.apis.tags.minimum_api.MinimumApi
All URIs are relative to *https://someserver.com/v1*
@@ -11,7 +11,7 @@ Method | HTTP request | Description
[**post_minimum_validation_with_signed_integer_response_body_for_content_types**](#post_minimum_validation_with_signed_integer_response_body_for_content_types) | **post** /responseBody/postMinimumValidationWithSignedIntegerResponseBodyForContentTypes |
# **post_minimum_validation_request_body**
-
+
> post_minimum_validation_request_body(body)
@@ -82,7 +82,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_minimum_validation_response_body_for_content_types**
-
+
> MinimumValidation post_minimum_validation_response_body_for_content_types()
@@ -142,7 +142,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_minimum_validation_with_signed_integer_request_body**
-
+
> post_minimum_validation_with_signed_integer_request_body(body)
@@ -213,7 +213,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_minimum_validation_with_signed_integer_response_body_for_content_types**
-
+
> MinimumValidationWithSignedInteger post_minimum_validation_with_signed_integer_response_body_for_content_types()
diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/ModelNotApi.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/ModelNotApi.md
index 0c1ab7ec02..37556fb591 100644
--- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/ModelNotApi.md
+++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/ModelNotApi.md
@@ -1,4 +1,4 @@
-
+
# unit_test_api.apis.tags.model_not_api.ModelNotApi
All URIs are relative to *https://someserver.com/v1*
@@ -13,7 +13,7 @@ Method | HTTP request | Description
[**post_not_response_body_for_content_types**](#post_not_response_body_for_content_types) | **post** /responseBody/postNotResponseBodyForContentTypes |
# **post_forbidden_property_request_body**
-
+
> post_forbidden_property_request_body(forbidden_property)
@@ -84,7 +84,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_forbidden_property_response_body_for_content_types**
-
+
> ForbiddenProperty post_forbidden_property_response_body_for_content_types()
@@ -144,7 +144,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_not_more_complex_schema_request_body**
-
+
> post_not_more_complex_schema_request_body(body)
@@ -234,7 +234,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_not_more_complex_schema_response_body_for_content_types**
-
+
> bool, date, datetime, dict, float, int, list, str, none_type post_not_more_complex_schema_response_body_for_content_types()
@@ -313,7 +313,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_not_request_body**
-
+
> post_not_request_body(body)
@@ -397,7 +397,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_not_response_body_for_content_types**
-
+
> bool, date, datetime, dict, float, int, list, str, none_type post_not_response_body_for_content_types()
diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/MultipleOfApi.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/MultipleOfApi.md
index dae45d4773..570a9d62f7 100644
--- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/MultipleOfApi.md
+++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/MultipleOfApi.md
@@ -1,4 +1,4 @@
-
+
# unit_test_api.apis.tags.multiple_of_api.MultipleOfApi
All URIs are relative to *https://someserver.com/v1*
@@ -15,7 +15,7 @@ Method | HTTP request | Description
[**post_invalid_instance_should_not_raise_error_when_float_division_inf_response_body_for_content_types**](#post_invalid_instance_should_not_raise_error_when_float_division_inf_response_body_for_content_types) | **post** /responseBody/postInvalidInstanceShouldNotRaiseErrorWhenFloatDivisionInfResponseBodyForContentTypes |
# **post_by_int_request_body**
-
+
> post_by_int_request_body(body)
@@ -86,7 +86,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_by_int_response_body_for_content_types**
-
+
> ByInt post_by_int_response_body_for_content_types()
@@ -146,7 +146,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_by_number_request_body**
-
+
> post_by_number_request_body(body)
@@ -217,7 +217,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_by_number_response_body_for_content_types**
-
+
> ByNumber post_by_number_response_body_for_content_types()
@@ -277,7 +277,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_by_small_number_request_body**
-
+
> post_by_small_number_request_body(body)
@@ -348,7 +348,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_by_small_number_response_body_for_content_types**
-
+
> BySmallNumber post_by_small_number_response_body_for_content_types()
@@ -408,7 +408,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_invalid_instance_should_not_raise_error_when_float_division_inf_request_body**
-
+
> post_invalid_instance_should_not_raise_error_when_float_division_inf_request_body(body)
@@ -479,7 +479,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_invalid_instance_should_not_raise_error_when_float_division_inf_response_body_for_content_types**
-
+
> InvalidInstanceShouldNotRaiseErrorWhenFloatDivisionInf post_invalid_instance_should_not_raise_error_when_float_division_inf_response_body_for_content_types()
diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/OneOfApi.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/OneOfApi.md
index 9f6c2b244d..eb6c99ccbc 100644
--- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/OneOfApi.md
+++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/OneOfApi.md
@@ -1,4 +1,4 @@
-
+
# unit_test_api.apis.tags.one_of_api.OneOfApi
All URIs are relative to *https://someserver.com/v1*
@@ -19,7 +19,7 @@ Method | HTTP request | Description
[**post_oneof_with_required_response_body_for_content_types**](#post_oneof_with_required_response_body_for_content_types) | **post** /responseBody/postOneofWithRequiredResponseBodyForContentTypes |
# **post_nested_oneof_to_check_validation_semantics_request_body**
-
+
> post_nested_oneof_to_check_validation_semantics_request_body(nested_oneof_to_check_validation_semantics)
@@ -90,7 +90,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_nested_oneof_to_check_validation_semantics_response_body_for_content_types**
-
+
> NestedOneofToCheckValidationSemantics post_nested_oneof_to_check_validation_semantics_response_body_for_content_types()
@@ -150,7 +150,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_oneof_complex_types_request_body**
-
+
> post_oneof_complex_types_request_body(oneof_complex_types)
@@ -221,7 +221,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_oneof_complex_types_response_body_for_content_types**
-
+
> OneofComplexTypes post_oneof_complex_types_response_body_for_content_types()
@@ -281,7 +281,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_oneof_request_body**
-
+
> post_oneof_request_body(oneof)
@@ -352,7 +352,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_oneof_response_body_for_content_types**
-
+
> Oneof post_oneof_response_body_for_content_types()
@@ -412,7 +412,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_oneof_with_base_schema_request_body**
-
+
> post_oneof_with_base_schema_request_body(body)
@@ -483,7 +483,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_oneof_with_base_schema_response_body_for_content_types**
-
+
> OneofWithBaseSchema post_oneof_with_base_schema_response_body_for_content_types()
@@ -543,7 +543,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_oneof_with_empty_schema_request_body**
-
+
> post_oneof_with_empty_schema_request_body(oneof_with_empty_schema)
@@ -614,7 +614,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_oneof_with_empty_schema_response_body_for_content_types**
-
+
> OneofWithEmptySchema post_oneof_with_empty_schema_response_body_for_content_types()
@@ -674,7 +674,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_oneof_with_required_request_body**
-
+
> post_oneof_with_required_request_body(oneof_with_required)
@@ -745,7 +745,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_oneof_with_required_response_body_for_content_types**
-
+
> OneofWithRequired post_oneof_with_required_response_body_for_content_types()
diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/OperationRequestBodyApi.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/OperationRequestBodyApi.md
index b483f613cc..1e4a96248e 100644
--- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/OperationRequestBodyApi.md
+++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/OperationRequestBodyApi.md
@@ -1,4 +1,4 @@
-
+
# unit_test_api.apis.tags.operation_request_body_api.OperationRequestBodyApi
All URIs are relative to *https://someserver.com/v1*
@@ -94,7 +94,7 @@ Method | HTTP request | Description
[**post_uri_template_format_request_body**](#post_uri_template_format_request_body) | **post** /requestBody/postUriTemplateFormatRequestBody |
# **post_additionalproperties_allows_a_schema_which_should_validate_request_body**
-
+
> post_additionalproperties_allows_a_schema_which_should_validate_request_body(additionalproperties_allows_a_schema_which_should_validate)
@@ -168,7 +168,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_additionalproperties_are_allowed_by_default_request_body**
-
+
> post_additionalproperties_are_allowed_by_default_request_body(additionalproperties_are_allowed_by_default)
@@ -239,7 +239,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_additionalproperties_can_exist_by_itself_request_body**
-
+
> post_additionalproperties_can_exist_by_itself_request_body(additionalproperties_can_exist_by_itself)
@@ -312,7 +312,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_additionalproperties_should_not_look_in_applicators_request_body**
-
+
> post_additionalproperties_should_not_look_in_applicators_request_body(additionalproperties_should_not_look_in_applicators)
@@ -383,7 +383,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_allof_combined_with_anyof_oneof_request_body**
-
+
> post_allof_combined_with_anyof_oneof_request_body(allof_combined_with_anyof_oneof)
@@ -454,7 +454,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_allof_request_body**
-
+
> post_allof_request_body(allof)
@@ -525,7 +525,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_allof_simple_types_request_body**
-
+
> post_allof_simple_types_request_body(allof_simple_types)
@@ -596,7 +596,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_allof_with_base_schema_request_body**
-
+
> post_allof_with_base_schema_request_body(allof_with_base_schema)
@@ -667,7 +667,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_allof_with_one_empty_schema_request_body**
-
+
> post_allof_with_one_empty_schema_request_body(allof_with_one_empty_schema)
@@ -738,7 +738,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_allof_with_the_first_empty_schema_request_body**
-
+
> post_allof_with_the_first_empty_schema_request_body(allof_with_the_first_empty_schema)
@@ -809,7 +809,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_allof_with_the_last_empty_schema_request_body**
-
+
> post_allof_with_the_last_empty_schema_request_body(allof_with_the_last_empty_schema)
@@ -880,7 +880,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_allof_with_two_empty_schemas_request_body**
-
+
> post_allof_with_two_empty_schemas_request_body(allof_with_two_empty_schemas)
@@ -951,7 +951,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_anyof_complex_types_request_body**
-
+
> post_anyof_complex_types_request_body(anyof_complex_types)
@@ -1022,7 +1022,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_anyof_request_body**
-
+
> post_anyof_request_body(anyof)
@@ -1093,7 +1093,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_anyof_with_base_schema_request_body**
-
+
> post_anyof_with_base_schema_request_body(body)
@@ -1164,7 +1164,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_anyof_with_one_empty_schema_request_body**
-
+
> post_anyof_with_one_empty_schema_request_body(anyof_with_one_empty_schema)
@@ -1235,7 +1235,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_array_type_matches_arrays_request_body**
-
+
> post_array_type_matches_arrays_request_body(array_type_matches_arrays)
@@ -1308,7 +1308,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_boolean_type_matches_booleans_request_body**
-
+
> post_boolean_type_matches_booleans_request_body(body)
@@ -1379,7 +1379,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_by_int_request_body**
-
+
> post_by_int_request_body(body)
@@ -1450,7 +1450,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_by_number_request_body**
-
+
> post_by_number_request_body(body)
@@ -1521,7 +1521,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_by_small_number_request_body**
-
+
> post_by_small_number_request_body(body)
@@ -1592,7 +1592,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_date_time_format_request_body**
-
+
> post_date_time_format_request_body(body)
@@ -1663,7 +1663,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_email_format_request_body**
-
+
> post_email_format_request_body(body)
@@ -1734,7 +1734,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_enum_with0_does_not_match_false_request_body**
-
+
> post_enum_with0_does_not_match_false_request_body(body)
@@ -1805,7 +1805,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_enum_with1_does_not_match_true_request_body**
-
+
> post_enum_with1_does_not_match_true_request_body(body)
@@ -1876,7 +1876,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_enum_with_escaped_characters_request_body**
-
+
> post_enum_with_escaped_characters_request_body(body)
@@ -1947,7 +1947,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_enum_with_false_does_not_match0_request_body**
-
+
> post_enum_with_false_does_not_match0_request_body(body)
@@ -2018,7 +2018,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_enum_with_true_does_not_match1_request_body**
-
+
> post_enum_with_true_does_not_match1_request_body(body)
@@ -2089,7 +2089,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_enums_in_properties_request_body**
-
+
> post_enums_in_properties_request_body(enums_in_properties)
@@ -2163,7 +2163,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_forbidden_property_request_body**
-
+
> post_forbidden_property_request_body(forbidden_property)
@@ -2234,7 +2234,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_hostname_format_request_body**
-
+
> post_hostname_format_request_body(body)
@@ -2305,7 +2305,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_integer_type_matches_integers_request_body**
-
+
> post_integer_type_matches_integers_request_body(body)
@@ -2376,7 +2376,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_invalid_instance_should_not_raise_error_when_float_division_inf_request_body**
-
+
> post_invalid_instance_should_not_raise_error_when_float_division_inf_request_body(body)
@@ -2447,7 +2447,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_invalid_string_value_for_default_request_body**
-
+
> post_invalid_string_value_for_default_request_body(invalid_string_value_for_default)
@@ -2518,7 +2518,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_ipv4_format_request_body**
-
+
> post_ipv4_format_request_body(body)
@@ -2589,7 +2589,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_ipv6_format_request_body**
-
+
> post_ipv6_format_request_body(body)
@@ -2660,7 +2660,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_json_pointer_format_request_body**
-
+
> post_json_pointer_format_request_body(body)
@@ -2731,7 +2731,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_maximum_validation_request_body**
-
+
> post_maximum_validation_request_body(body)
@@ -2802,7 +2802,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_maximum_validation_with_unsigned_integer_request_body**
-
+
> post_maximum_validation_with_unsigned_integer_request_body(body)
@@ -2873,7 +2873,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_maxitems_validation_request_body**
-
+
> post_maxitems_validation_request_body(body)
@@ -2944,7 +2944,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_maxlength_validation_request_body**
-
+
> post_maxlength_validation_request_body(body)
@@ -3015,7 +3015,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_maxproperties0_means_the_object_is_empty_request_body**
-
+
> post_maxproperties0_means_the_object_is_empty_request_body(body)
@@ -3086,7 +3086,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_maxproperties_validation_request_body**
-
+
> post_maxproperties_validation_request_body(body)
@@ -3157,7 +3157,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_minimum_validation_request_body**
-
+
> post_minimum_validation_request_body(body)
@@ -3228,7 +3228,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_minimum_validation_with_signed_integer_request_body**
-
+
> post_minimum_validation_with_signed_integer_request_body(body)
@@ -3299,7 +3299,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_minitems_validation_request_body**
-
+
> post_minitems_validation_request_body(body)
@@ -3370,7 +3370,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_minlength_validation_request_body**
-
+
> post_minlength_validation_request_body(body)
@@ -3441,7 +3441,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_minproperties_validation_request_body**
-
+
> post_minproperties_validation_request_body(body)
@@ -3512,7 +3512,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_nested_allof_to_check_validation_semantics_request_body**
-
+
> post_nested_allof_to_check_validation_semantics_request_body(nested_allof_to_check_validation_semantics)
@@ -3583,7 +3583,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_nested_anyof_to_check_validation_semantics_request_body**
-
+
> post_nested_anyof_to_check_validation_semantics_request_body(nested_anyof_to_check_validation_semantics)
@@ -3654,7 +3654,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_nested_items_request_body**
-
+
> post_nested_items_request_body(nested_items)
@@ -3733,7 +3733,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_nested_oneof_to_check_validation_semantics_request_body**
-
+
> post_nested_oneof_to_check_validation_semantics_request_body(nested_oneof_to_check_validation_semantics)
@@ -3804,7 +3804,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_not_more_complex_schema_request_body**
-
+
> post_not_more_complex_schema_request_body(body)
@@ -3894,7 +3894,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_not_request_body**
-
+
> post_not_request_body(body)
@@ -3978,7 +3978,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_nul_characters_in_strings_request_body**
-
+
> post_nul_characters_in_strings_request_body(body)
@@ -4049,7 +4049,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_null_type_matches_only_the_null_object_request_body**
-
+
> post_null_type_matches_only_the_null_object_request_body(body)
@@ -4120,7 +4120,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_number_type_matches_numbers_request_body**
-
+
> post_number_type_matches_numbers_request_body(body)
@@ -4191,7 +4191,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_object_properties_validation_request_body**
-
+
> post_object_properties_validation_request_body(object_properties_validation)
@@ -4262,7 +4262,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_object_type_matches_objects_request_body**
-
+
> post_object_type_matches_objects_request_body(body)
@@ -4333,7 +4333,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_oneof_complex_types_request_body**
-
+
> post_oneof_complex_types_request_body(oneof_complex_types)
@@ -4404,7 +4404,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_oneof_request_body**
-
+
> post_oneof_request_body(oneof)
@@ -4475,7 +4475,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_oneof_with_base_schema_request_body**
-
+
> post_oneof_with_base_schema_request_body(body)
@@ -4546,7 +4546,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_oneof_with_empty_schema_request_body**
-
+
> post_oneof_with_empty_schema_request_body(oneof_with_empty_schema)
@@ -4617,7 +4617,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_oneof_with_required_request_body**
-
+
> post_oneof_with_required_request_body(oneof_with_required)
@@ -4688,7 +4688,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_pattern_is_not_anchored_request_body**
-
+
> post_pattern_is_not_anchored_request_body(body)
@@ -4759,7 +4759,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_pattern_validation_request_body**
-
+
> post_pattern_validation_request_body(body)
@@ -4830,7 +4830,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_properties_with_escaped_characters_request_body**
-
+
> post_properties_with_escaped_characters_request_body(properties_with_escaped_characters)
@@ -4901,7 +4901,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_property_named_ref_that_is_not_a_reference_request_body**
-
+
> post_property_named_ref_that_is_not_a_reference_request_body(property_named_ref_that_is_not_a_reference)
@@ -4972,7 +4972,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_ref_in_additionalproperties_request_body**
-
+
> post_ref_in_additionalproperties_request_body(ref_in_additionalproperties)
@@ -5045,7 +5045,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_ref_in_allof_request_body**
-
+
> post_ref_in_allof_request_body(ref_in_allof)
@@ -5116,7 +5116,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_ref_in_anyof_request_body**
-
+
> post_ref_in_anyof_request_body(ref_in_anyof)
@@ -5187,7 +5187,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_ref_in_items_request_body**
-
+
> post_ref_in_items_request_body(ref_in_items)
@@ -5260,7 +5260,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_ref_in_not_request_body**
-
+
> post_ref_in_not_request_body(body)
@@ -5338,7 +5338,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_ref_in_oneof_request_body**
-
+
> post_ref_in_oneof_request_body(ref_in_oneof)
@@ -5409,7 +5409,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_ref_in_property_request_body**
-
+
> post_ref_in_property_request_body(ref_in_property)
@@ -5480,7 +5480,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_required_default_validation_request_body**
-
+
> post_required_default_validation_request_body(required_default_validation)
@@ -5551,7 +5551,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_required_validation_request_body**
-
+
> post_required_validation_request_body(required_validation)
@@ -5622,7 +5622,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_required_with_empty_array_request_body**
-
+
> post_required_with_empty_array_request_body(required_with_empty_array)
@@ -5693,7 +5693,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_required_with_escaped_characters_request_body**
-
+
> post_required_with_escaped_characters_request_body(body)
@@ -5764,7 +5764,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_simple_enum_validation_request_body**
-
+
> post_simple_enum_validation_request_body(body)
@@ -5835,7 +5835,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_string_type_matches_strings_request_body**
-
+
> post_string_type_matches_strings_request_body(body)
@@ -5906,7 +5906,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_the_default_keyword_does_not_do_anything_if_the_property_is_missing_request_body**
-
+
> post_the_default_keyword_does_not_do_anything_if_the_property_is_missing_request_body(the_default_keyword_does_not_do_anything_if_the_property_is_missing)
@@ -5979,7 +5979,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_uniqueitems_false_validation_request_body**
-
+
> post_uniqueitems_false_validation_request_body(body)
@@ -6050,7 +6050,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_uniqueitems_validation_request_body**
-
+
> post_uniqueitems_validation_request_body(body)
@@ -6121,7 +6121,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_uri_format_request_body**
-
+
> post_uri_format_request_body(body)
@@ -6192,7 +6192,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_uri_reference_format_request_body**
-
+
> post_uri_reference_format_request_body(body)
@@ -6263,7 +6263,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_uri_template_format_request_body**
-
+
> post_uri_template_format_request_body(body)
diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/PathPostApi.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/PathPostApi.md
index f59e95a4c9..90c1672f0f 100644
--- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/PathPostApi.md
+++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/PathPostApi.md
@@ -1,4 +1,4 @@
-
+
# unit_test_api.apis.tags.path_post_api.PathPostApi
All URIs are relative to *https://someserver.com/v1*
@@ -181,7 +181,7 @@ Method | HTTP request | Description
[**post_uri_template_format_response_body_for_content_types**](#post_uri_template_format_response_body_for_content_types) | **post** /responseBody/postUriTemplateFormatResponseBodyForContentTypes |
# **post_additionalproperties_allows_a_schema_which_should_validate_request_body**
-
+
> post_additionalproperties_allows_a_schema_which_should_validate_request_body(additionalproperties_allows_a_schema_which_should_validate)
@@ -255,7 +255,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_additionalproperties_allows_a_schema_which_should_validate_response_body_for_content_types**
-
+
> AdditionalpropertiesAllowsASchemaWhichShouldValidate post_additionalproperties_allows_a_schema_which_should_validate_response_body_for_content_types()
@@ -315,7 +315,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_additionalproperties_are_allowed_by_default_request_body**
-
+
> post_additionalproperties_are_allowed_by_default_request_body(additionalproperties_are_allowed_by_default)
@@ -386,7 +386,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_additionalproperties_are_allowed_by_default_response_body_for_content_types**
-
+
> AdditionalpropertiesAreAllowedByDefault post_additionalproperties_are_allowed_by_default_response_body_for_content_types()
@@ -446,7 +446,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_additionalproperties_can_exist_by_itself_request_body**
-
+
> post_additionalproperties_can_exist_by_itself_request_body(additionalproperties_can_exist_by_itself)
@@ -519,7 +519,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_additionalproperties_can_exist_by_itself_response_body_for_content_types**
-
+
> AdditionalpropertiesCanExistByItself post_additionalproperties_can_exist_by_itself_response_body_for_content_types()
@@ -579,7 +579,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_additionalproperties_should_not_look_in_applicators_request_body**
-
+
> post_additionalproperties_should_not_look_in_applicators_request_body(additionalproperties_should_not_look_in_applicators)
@@ -650,7 +650,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_additionalproperties_should_not_look_in_applicators_response_body_for_content_types**
-
+
> AdditionalpropertiesShouldNotLookInApplicators post_additionalproperties_should_not_look_in_applicators_response_body_for_content_types()
@@ -710,7 +710,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_allof_combined_with_anyof_oneof_request_body**
-
+
> post_allof_combined_with_anyof_oneof_request_body(allof_combined_with_anyof_oneof)
@@ -781,7 +781,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_allof_combined_with_anyof_oneof_response_body_for_content_types**
-
+
> AllofCombinedWithAnyofOneof post_allof_combined_with_anyof_oneof_response_body_for_content_types()
@@ -841,7 +841,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_allof_request_body**
-
+
> post_allof_request_body(allof)
@@ -912,7 +912,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_allof_response_body_for_content_types**
-
+
> Allof post_allof_response_body_for_content_types()
@@ -972,7 +972,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_allof_simple_types_request_body**
-
+
> post_allof_simple_types_request_body(allof_simple_types)
@@ -1043,7 +1043,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_allof_simple_types_response_body_for_content_types**
-
+
> AllofSimpleTypes post_allof_simple_types_response_body_for_content_types()
@@ -1103,7 +1103,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_allof_with_base_schema_request_body**
-
+
> post_allof_with_base_schema_request_body(allof_with_base_schema)
@@ -1174,7 +1174,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_allof_with_base_schema_response_body_for_content_types**
-
+
> AllofWithBaseSchema post_allof_with_base_schema_response_body_for_content_types()
@@ -1234,7 +1234,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_allof_with_one_empty_schema_request_body**
-
+
> post_allof_with_one_empty_schema_request_body(allof_with_one_empty_schema)
@@ -1305,7 +1305,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_allof_with_one_empty_schema_response_body_for_content_types**
-
+
> AllofWithOneEmptySchema post_allof_with_one_empty_schema_response_body_for_content_types()
@@ -1365,7 +1365,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_allof_with_the_first_empty_schema_request_body**
-
+
> post_allof_with_the_first_empty_schema_request_body(allof_with_the_first_empty_schema)
@@ -1436,7 +1436,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_allof_with_the_first_empty_schema_response_body_for_content_types**
-
+
> AllofWithTheFirstEmptySchema post_allof_with_the_first_empty_schema_response_body_for_content_types()
@@ -1496,7 +1496,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_allof_with_the_last_empty_schema_request_body**
-
+
> post_allof_with_the_last_empty_schema_request_body(allof_with_the_last_empty_schema)
@@ -1567,7 +1567,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_allof_with_the_last_empty_schema_response_body_for_content_types**
-
+
> AllofWithTheLastEmptySchema post_allof_with_the_last_empty_schema_response_body_for_content_types()
@@ -1627,7 +1627,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_allof_with_two_empty_schemas_request_body**
-
+
> post_allof_with_two_empty_schemas_request_body(allof_with_two_empty_schemas)
@@ -1698,7 +1698,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_allof_with_two_empty_schemas_response_body_for_content_types**
-
+
> AllofWithTwoEmptySchemas post_allof_with_two_empty_schemas_response_body_for_content_types()
@@ -1758,7 +1758,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_anyof_complex_types_request_body**
-
+
> post_anyof_complex_types_request_body(anyof_complex_types)
@@ -1829,7 +1829,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_anyof_complex_types_response_body_for_content_types**
-
+
> AnyofComplexTypes post_anyof_complex_types_response_body_for_content_types()
@@ -1889,7 +1889,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_anyof_request_body**
-
+
> post_anyof_request_body(anyof)
@@ -1960,7 +1960,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_anyof_response_body_for_content_types**
-
+
> Anyof post_anyof_response_body_for_content_types()
@@ -2020,7 +2020,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_anyof_with_base_schema_request_body**
-
+
> post_anyof_with_base_schema_request_body(body)
@@ -2091,7 +2091,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_anyof_with_base_schema_response_body_for_content_types**
-
+
> AnyofWithBaseSchema post_anyof_with_base_schema_response_body_for_content_types()
@@ -2151,7 +2151,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_anyof_with_one_empty_schema_request_body**
-
+
> post_anyof_with_one_empty_schema_request_body(anyof_with_one_empty_schema)
@@ -2222,7 +2222,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_anyof_with_one_empty_schema_response_body_for_content_types**
-
+
> AnyofWithOneEmptySchema post_anyof_with_one_empty_schema_response_body_for_content_types()
@@ -2282,7 +2282,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_array_type_matches_arrays_request_body**
-
+
> post_array_type_matches_arrays_request_body(array_type_matches_arrays)
@@ -2355,7 +2355,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_array_type_matches_arrays_response_body_for_content_types**
-
+
> ArrayTypeMatchesArrays post_array_type_matches_arrays_response_body_for_content_types()
@@ -2415,7 +2415,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_boolean_type_matches_booleans_request_body**
-
+
> post_boolean_type_matches_booleans_request_body(body)
@@ -2486,7 +2486,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_boolean_type_matches_booleans_response_body_for_content_types**
-
+
> bool post_boolean_type_matches_booleans_response_body_for_content_types()
@@ -2546,7 +2546,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_by_int_request_body**
-
+
> post_by_int_request_body(body)
@@ -2617,7 +2617,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_by_int_response_body_for_content_types**
-
+
> ByInt post_by_int_response_body_for_content_types()
@@ -2677,7 +2677,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_by_number_request_body**
-
+
> post_by_number_request_body(body)
@@ -2748,7 +2748,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_by_number_response_body_for_content_types**
-
+
> ByNumber post_by_number_response_body_for_content_types()
@@ -2808,7 +2808,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_by_small_number_request_body**
-
+
> post_by_small_number_request_body(body)
@@ -2879,7 +2879,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_by_small_number_response_body_for_content_types**
-
+
> BySmallNumber post_by_small_number_response_body_for_content_types()
@@ -2939,7 +2939,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_date_time_format_request_body**
-
+
> post_date_time_format_request_body(body)
@@ -3010,7 +3010,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_date_time_format_response_body_for_content_types**
-
+
> bool, date, datetime, dict, float, int, list, str, none_type post_date_time_format_response_body_for_content_types()
@@ -3070,7 +3070,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_email_format_request_body**
-
+
> post_email_format_request_body(body)
@@ -3141,7 +3141,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_email_format_response_body_for_content_types**
-
+
> bool, date, datetime, dict, float, int, list, str, none_type post_email_format_response_body_for_content_types()
@@ -3201,7 +3201,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_enum_with0_does_not_match_false_request_body**
-
+
> post_enum_with0_does_not_match_false_request_body(body)
@@ -3272,7 +3272,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_enum_with0_does_not_match_false_response_body_for_content_types**
-
+
> EnumWith0DoesNotMatchFalse post_enum_with0_does_not_match_false_response_body_for_content_types()
@@ -3332,7 +3332,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_enum_with1_does_not_match_true_request_body**
-
+
> post_enum_with1_does_not_match_true_request_body(body)
@@ -3403,7 +3403,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_enum_with1_does_not_match_true_response_body_for_content_types**
-
+
> EnumWith1DoesNotMatchTrue post_enum_with1_does_not_match_true_response_body_for_content_types()
@@ -3463,7 +3463,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_enum_with_escaped_characters_request_body**
-
+
> post_enum_with_escaped_characters_request_body(body)
@@ -3534,7 +3534,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_enum_with_escaped_characters_response_body_for_content_types**
-
+
> EnumWithEscapedCharacters post_enum_with_escaped_characters_response_body_for_content_types()
@@ -3594,7 +3594,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_enum_with_false_does_not_match0_request_body**
-
+
> post_enum_with_false_does_not_match0_request_body(body)
@@ -3665,7 +3665,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_enum_with_false_does_not_match0_response_body_for_content_types**
-
+
> EnumWithFalseDoesNotMatch0 post_enum_with_false_does_not_match0_response_body_for_content_types()
@@ -3725,7 +3725,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_enum_with_true_does_not_match1_request_body**
-
+
> post_enum_with_true_does_not_match1_request_body(body)
@@ -3796,7 +3796,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_enum_with_true_does_not_match1_response_body_for_content_types**
-
+
> EnumWithTrueDoesNotMatch1 post_enum_with_true_does_not_match1_response_body_for_content_types()
@@ -3856,7 +3856,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_enums_in_properties_request_body**
-
+
> post_enums_in_properties_request_body(enums_in_properties)
@@ -3930,7 +3930,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_enums_in_properties_response_body_for_content_types**
-
+
> EnumsInProperties post_enums_in_properties_response_body_for_content_types()
@@ -3990,7 +3990,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_forbidden_property_request_body**
-
+
> post_forbidden_property_request_body(forbidden_property)
@@ -4061,7 +4061,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_forbidden_property_response_body_for_content_types**
-
+
> ForbiddenProperty post_forbidden_property_response_body_for_content_types()
@@ -4121,7 +4121,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_hostname_format_request_body**
-
+
> post_hostname_format_request_body(body)
@@ -4192,7 +4192,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_hostname_format_response_body_for_content_types**
-
+
> bool, date, datetime, dict, float, int, list, str, none_type post_hostname_format_response_body_for_content_types()
@@ -4252,7 +4252,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_integer_type_matches_integers_request_body**
-
+
> post_integer_type_matches_integers_request_body(body)
@@ -4323,7 +4323,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_integer_type_matches_integers_response_body_for_content_types**
-
+
> int post_integer_type_matches_integers_response_body_for_content_types()
@@ -4383,7 +4383,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_invalid_instance_should_not_raise_error_when_float_division_inf_request_body**
-
+
> post_invalid_instance_should_not_raise_error_when_float_division_inf_request_body(body)
@@ -4454,7 +4454,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_invalid_instance_should_not_raise_error_when_float_division_inf_response_body_for_content_types**
-
+
> InvalidInstanceShouldNotRaiseErrorWhenFloatDivisionInf post_invalid_instance_should_not_raise_error_when_float_division_inf_response_body_for_content_types()
@@ -4514,7 +4514,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_invalid_string_value_for_default_request_body**
-
+
> post_invalid_string_value_for_default_request_body(invalid_string_value_for_default)
@@ -4585,7 +4585,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_invalid_string_value_for_default_response_body_for_content_types**
-
+
> InvalidStringValueForDefault post_invalid_string_value_for_default_response_body_for_content_types()
@@ -4645,7 +4645,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_ipv4_format_request_body**
-
+
> post_ipv4_format_request_body(body)
@@ -4716,7 +4716,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_ipv4_format_response_body_for_content_types**
-
+
> bool, date, datetime, dict, float, int, list, str, none_type post_ipv4_format_response_body_for_content_types()
@@ -4776,7 +4776,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_ipv6_format_request_body**
-
+
> post_ipv6_format_request_body(body)
@@ -4847,7 +4847,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_ipv6_format_response_body_for_content_types**
-
+
> bool, date, datetime, dict, float, int, list, str, none_type post_ipv6_format_response_body_for_content_types()
@@ -4907,7 +4907,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_json_pointer_format_request_body**
-
+
> post_json_pointer_format_request_body(body)
@@ -4978,7 +4978,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_json_pointer_format_response_body_for_content_types**
-
+
> bool, date, datetime, dict, float, int, list, str, none_type post_json_pointer_format_response_body_for_content_types()
@@ -5038,7 +5038,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_maximum_validation_request_body**
-
+
> post_maximum_validation_request_body(body)
@@ -5109,7 +5109,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_maximum_validation_response_body_for_content_types**
-
+
> MaximumValidation post_maximum_validation_response_body_for_content_types()
@@ -5169,7 +5169,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_maximum_validation_with_unsigned_integer_request_body**
-
+
> post_maximum_validation_with_unsigned_integer_request_body(body)
@@ -5240,7 +5240,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_maximum_validation_with_unsigned_integer_response_body_for_content_types**
-
+
> MaximumValidationWithUnsignedInteger post_maximum_validation_with_unsigned_integer_response_body_for_content_types()
@@ -5300,7 +5300,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_maxitems_validation_request_body**
-
+
> post_maxitems_validation_request_body(body)
@@ -5371,7 +5371,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_maxitems_validation_response_body_for_content_types**
-
+
> MaxitemsValidation post_maxitems_validation_response_body_for_content_types()
@@ -5431,7 +5431,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_maxlength_validation_request_body**
-
+
> post_maxlength_validation_request_body(body)
@@ -5502,7 +5502,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_maxlength_validation_response_body_for_content_types**
-
+
> MaxlengthValidation post_maxlength_validation_response_body_for_content_types()
@@ -5562,7 +5562,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_maxproperties0_means_the_object_is_empty_request_body**
-
+
> post_maxproperties0_means_the_object_is_empty_request_body(body)
@@ -5633,7 +5633,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_maxproperties0_means_the_object_is_empty_response_body_for_content_types**
-
+
> Maxproperties0MeansTheObjectIsEmpty post_maxproperties0_means_the_object_is_empty_response_body_for_content_types()
@@ -5693,7 +5693,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_maxproperties_validation_request_body**
-
+
> post_maxproperties_validation_request_body(body)
@@ -5764,7 +5764,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_maxproperties_validation_response_body_for_content_types**
-
+
> MaxpropertiesValidation post_maxproperties_validation_response_body_for_content_types()
@@ -5824,7 +5824,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_minimum_validation_request_body**
-
+
> post_minimum_validation_request_body(body)
@@ -5895,7 +5895,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_minimum_validation_response_body_for_content_types**
-
+
> MinimumValidation post_minimum_validation_response_body_for_content_types()
@@ -5955,7 +5955,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_minimum_validation_with_signed_integer_request_body**
-
+
> post_minimum_validation_with_signed_integer_request_body(body)
@@ -6026,7 +6026,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_minimum_validation_with_signed_integer_response_body_for_content_types**
-
+
> MinimumValidationWithSignedInteger post_minimum_validation_with_signed_integer_response_body_for_content_types()
@@ -6086,7 +6086,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_minitems_validation_request_body**
-
+
> post_minitems_validation_request_body(body)
@@ -6157,7 +6157,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_minitems_validation_response_body_for_content_types**
-
+
> MinitemsValidation post_minitems_validation_response_body_for_content_types()
@@ -6217,7 +6217,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_minlength_validation_request_body**
-
+
> post_minlength_validation_request_body(body)
@@ -6288,7 +6288,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_minlength_validation_response_body_for_content_types**
-
+
> MinlengthValidation post_minlength_validation_response_body_for_content_types()
@@ -6348,7 +6348,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_minproperties_validation_request_body**
-
+
> post_minproperties_validation_request_body(body)
@@ -6419,7 +6419,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_minproperties_validation_response_body_for_content_types**
-
+
> MinpropertiesValidation post_minproperties_validation_response_body_for_content_types()
@@ -6479,7 +6479,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_nested_allof_to_check_validation_semantics_request_body**
-
+
> post_nested_allof_to_check_validation_semantics_request_body(nested_allof_to_check_validation_semantics)
@@ -6550,7 +6550,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_nested_allof_to_check_validation_semantics_response_body_for_content_types**
-
+
> NestedAllofToCheckValidationSemantics post_nested_allof_to_check_validation_semantics_response_body_for_content_types()
@@ -6610,7 +6610,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_nested_anyof_to_check_validation_semantics_request_body**
-
+
> post_nested_anyof_to_check_validation_semantics_request_body(nested_anyof_to_check_validation_semantics)
@@ -6681,7 +6681,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_nested_anyof_to_check_validation_semantics_response_body_for_content_types**
-
+
> NestedAnyofToCheckValidationSemantics post_nested_anyof_to_check_validation_semantics_response_body_for_content_types()
@@ -6741,7 +6741,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_nested_items_request_body**
-
+
> post_nested_items_request_body(nested_items)
@@ -6820,7 +6820,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_nested_items_response_body_for_content_types**
-
+
> NestedItems post_nested_items_response_body_for_content_types()
@@ -6880,7 +6880,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_nested_oneof_to_check_validation_semantics_request_body**
-
+
> post_nested_oneof_to_check_validation_semantics_request_body(nested_oneof_to_check_validation_semantics)
@@ -6951,7 +6951,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_nested_oneof_to_check_validation_semantics_response_body_for_content_types**
-
+
> NestedOneofToCheckValidationSemantics post_nested_oneof_to_check_validation_semantics_response_body_for_content_types()
@@ -7011,7 +7011,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_not_more_complex_schema_request_body**
-
+
> post_not_more_complex_schema_request_body(body)
@@ -7101,7 +7101,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_not_more_complex_schema_response_body_for_content_types**
-
+
> bool, date, datetime, dict, float, int, list, str, none_type post_not_more_complex_schema_response_body_for_content_types()
@@ -7180,7 +7180,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_not_request_body**
-
+
> post_not_request_body(body)
@@ -7264,7 +7264,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_not_response_body_for_content_types**
-
+
> bool, date, datetime, dict, float, int, list, str, none_type post_not_response_body_for_content_types()
@@ -7337,7 +7337,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_nul_characters_in_strings_request_body**
-
+
> post_nul_characters_in_strings_request_body(body)
@@ -7408,7 +7408,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_nul_characters_in_strings_response_body_for_content_types**
-
+
> NulCharactersInStrings post_nul_characters_in_strings_response_body_for_content_types()
@@ -7468,7 +7468,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_null_type_matches_only_the_null_object_request_body**
-
+
> post_null_type_matches_only_the_null_object_request_body(body)
@@ -7539,7 +7539,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_null_type_matches_only_the_null_object_response_body_for_content_types**
-
+
> none_type post_null_type_matches_only_the_null_object_response_body_for_content_types()
@@ -7599,7 +7599,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_number_type_matches_numbers_request_body**
-
+
> post_number_type_matches_numbers_request_body(body)
@@ -7670,7 +7670,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_number_type_matches_numbers_response_body_for_content_types**
-
+
> int, float post_number_type_matches_numbers_response_body_for_content_types()
@@ -7730,7 +7730,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_object_properties_validation_request_body**
-
+
> post_object_properties_validation_request_body(object_properties_validation)
@@ -7801,7 +7801,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_object_properties_validation_response_body_for_content_types**
-
+
> ObjectPropertiesValidation post_object_properties_validation_response_body_for_content_types()
@@ -7861,7 +7861,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_object_type_matches_objects_request_body**
-
+
> post_object_type_matches_objects_request_body(body)
@@ -7932,7 +7932,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_object_type_matches_objects_response_body_for_content_types**
-
+
> {str: (bool, date, datetime, dict, float, int, list, str, none_type)} post_object_type_matches_objects_response_body_for_content_types()
@@ -7992,7 +7992,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_oneof_complex_types_request_body**
-
+
> post_oneof_complex_types_request_body(oneof_complex_types)
@@ -8063,7 +8063,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_oneof_complex_types_response_body_for_content_types**
-
+
> OneofComplexTypes post_oneof_complex_types_response_body_for_content_types()
@@ -8123,7 +8123,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_oneof_request_body**
-
+
> post_oneof_request_body(oneof)
@@ -8194,7 +8194,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_oneof_response_body_for_content_types**
-
+
> Oneof post_oneof_response_body_for_content_types()
@@ -8254,7 +8254,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_oneof_with_base_schema_request_body**
-
+
> post_oneof_with_base_schema_request_body(body)
@@ -8325,7 +8325,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_oneof_with_base_schema_response_body_for_content_types**
-
+
> OneofWithBaseSchema post_oneof_with_base_schema_response_body_for_content_types()
@@ -8385,7 +8385,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_oneof_with_empty_schema_request_body**
-
+
> post_oneof_with_empty_schema_request_body(oneof_with_empty_schema)
@@ -8456,7 +8456,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_oneof_with_empty_schema_response_body_for_content_types**
-
+
> OneofWithEmptySchema post_oneof_with_empty_schema_response_body_for_content_types()
@@ -8516,7 +8516,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_oneof_with_required_request_body**
-
+
> post_oneof_with_required_request_body(oneof_with_required)
@@ -8587,7 +8587,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_oneof_with_required_response_body_for_content_types**
-
+
> OneofWithRequired post_oneof_with_required_response_body_for_content_types()
@@ -8647,7 +8647,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_pattern_is_not_anchored_request_body**
-
+
> post_pattern_is_not_anchored_request_body(body)
@@ -8718,7 +8718,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_pattern_is_not_anchored_response_body_for_content_types**
-
+
> PatternIsNotAnchored post_pattern_is_not_anchored_response_body_for_content_types()
@@ -8778,7 +8778,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_pattern_validation_request_body**
-
+
> post_pattern_validation_request_body(body)
@@ -8849,7 +8849,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_pattern_validation_response_body_for_content_types**
-
+
> PatternValidation post_pattern_validation_response_body_for_content_types()
@@ -8909,7 +8909,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_properties_with_escaped_characters_request_body**
-
+
> post_properties_with_escaped_characters_request_body(properties_with_escaped_characters)
@@ -8980,7 +8980,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_properties_with_escaped_characters_response_body_for_content_types**
-
+
> PropertiesWithEscapedCharacters post_properties_with_escaped_characters_response_body_for_content_types()
@@ -9040,7 +9040,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_property_named_ref_that_is_not_a_reference_request_body**
-
+
> post_property_named_ref_that_is_not_a_reference_request_body(property_named_ref_that_is_not_a_reference)
@@ -9111,7 +9111,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_property_named_ref_that_is_not_a_reference_response_body_for_content_types**
-
+
> PropertyNamedRefThatIsNotAReference post_property_named_ref_that_is_not_a_reference_response_body_for_content_types()
@@ -9171,7 +9171,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_ref_in_additionalproperties_request_body**
-
+
> post_ref_in_additionalproperties_request_body(ref_in_additionalproperties)
@@ -9244,7 +9244,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_ref_in_additionalproperties_response_body_for_content_types**
-
+
> RefInAdditionalproperties post_ref_in_additionalproperties_response_body_for_content_types()
@@ -9304,7 +9304,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_ref_in_allof_request_body**
-
+
> post_ref_in_allof_request_body(ref_in_allof)
@@ -9375,7 +9375,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_ref_in_allof_response_body_for_content_types**
-
+
> RefInAllof post_ref_in_allof_response_body_for_content_types()
@@ -9435,7 +9435,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_ref_in_anyof_request_body**
-
+
> post_ref_in_anyof_request_body(ref_in_anyof)
@@ -9506,7 +9506,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_ref_in_anyof_response_body_for_content_types**
-
+
> RefInAnyof post_ref_in_anyof_response_body_for_content_types()
@@ -9566,7 +9566,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_ref_in_items_request_body**
-
+
> post_ref_in_items_request_body(ref_in_items)
@@ -9639,7 +9639,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_ref_in_items_response_body_for_content_types**
-
+
> RefInItems post_ref_in_items_response_body_for_content_types()
@@ -9699,7 +9699,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_ref_in_not_request_body**
-
+
> post_ref_in_not_request_body(body)
@@ -9777,7 +9777,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_ref_in_not_response_body_for_content_types**
-
+
> bool, date, datetime, dict, float, int, list, str, none_type post_ref_in_not_response_body_for_content_types()
@@ -9844,7 +9844,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_ref_in_oneof_request_body**
-
+
> post_ref_in_oneof_request_body(ref_in_oneof)
@@ -9915,7 +9915,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_ref_in_oneof_response_body_for_content_types**
-
+
> RefInOneof post_ref_in_oneof_response_body_for_content_types()
@@ -9975,7 +9975,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_ref_in_property_request_body**
-
+
> post_ref_in_property_request_body(ref_in_property)
@@ -10046,7 +10046,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_ref_in_property_response_body_for_content_types**
-
+
> RefInProperty post_ref_in_property_response_body_for_content_types()
@@ -10106,7 +10106,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_required_default_validation_request_body**
-
+
> post_required_default_validation_request_body(required_default_validation)
@@ -10177,7 +10177,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_required_default_validation_response_body_for_content_types**
-
+
> RequiredDefaultValidation post_required_default_validation_response_body_for_content_types()
@@ -10237,7 +10237,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_required_validation_request_body**
-
+
> post_required_validation_request_body(required_validation)
@@ -10308,7 +10308,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_required_validation_response_body_for_content_types**
-
+
> RequiredValidation post_required_validation_response_body_for_content_types()
@@ -10368,7 +10368,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_required_with_empty_array_request_body**
-
+
> post_required_with_empty_array_request_body(required_with_empty_array)
@@ -10439,7 +10439,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_required_with_empty_array_response_body_for_content_types**
-
+
> RequiredWithEmptyArray post_required_with_empty_array_response_body_for_content_types()
@@ -10499,7 +10499,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_required_with_escaped_characters_request_body**
-
+
> post_required_with_escaped_characters_request_body(body)
@@ -10570,7 +10570,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_required_with_escaped_characters_response_body_for_content_types**
-
+
> bool, date, datetime, dict, float, int, list, str, none_type post_required_with_escaped_characters_response_body_for_content_types()
@@ -10630,7 +10630,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_simple_enum_validation_request_body**
-
+
> post_simple_enum_validation_request_body(body)
@@ -10701,7 +10701,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_simple_enum_validation_response_body_for_content_types**
-
+
> SimpleEnumValidation post_simple_enum_validation_response_body_for_content_types()
@@ -10761,7 +10761,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_string_type_matches_strings_request_body**
-
+
> post_string_type_matches_strings_request_body(body)
@@ -10832,7 +10832,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_string_type_matches_strings_response_body_for_content_types**
-
+
> str post_string_type_matches_strings_response_body_for_content_types()
@@ -10892,7 +10892,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_the_default_keyword_does_not_do_anything_if_the_property_is_missing_request_body**
-
+
> post_the_default_keyword_does_not_do_anything_if_the_property_is_missing_request_body(the_default_keyword_does_not_do_anything_if_the_property_is_missing)
@@ -10965,7 +10965,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_the_default_keyword_does_not_do_anything_if_the_property_is_missing_response_body_for_content_types**
-
+
> TheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissing post_the_default_keyword_does_not_do_anything_if_the_property_is_missing_response_body_for_content_types()
@@ -11025,7 +11025,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_uniqueitems_false_validation_request_body**
-
+
> post_uniqueitems_false_validation_request_body(body)
@@ -11096,7 +11096,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_uniqueitems_false_validation_response_body_for_content_types**
-
+
> UniqueitemsFalseValidation post_uniqueitems_false_validation_response_body_for_content_types()
@@ -11156,7 +11156,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_uniqueitems_validation_request_body**
-
+
> post_uniqueitems_validation_request_body(body)
@@ -11227,7 +11227,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_uniqueitems_validation_response_body_for_content_types**
-
+
> UniqueitemsValidation post_uniqueitems_validation_response_body_for_content_types()
@@ -11287,7 +11287,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_uri_format_request_body**
-
+
> post_uri_format_request_body(body)
@@ -11358,7 +11358,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_uri_format_response_body_for_content_types**
-
+
> bool, date, datetime, dict, float, int, list, str, none_type post_uri_format_response_body_for_content_types()
@@ -11418,7 +11418,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_uri_reference_format_request_body**
-
+
> post_uri_reference_format_request_body(body)
@@ -11489,7 +11489,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_uri_reference_format_response_body_for_content_types**
-
+
> bool, date, datetime, dict, float, int, list, str, none_type post_uri_reference_format_response_body_for_content_types()
@@ -11549,7 +11549,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_uri_template_format_request_body**
-
+
> post_uri_template_format_request_body(body)
@@ -11620,7 +11620,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_uri_template_format_response_body_for_content_types**
-
+
> bool, date, datetime, dict, float, int, list, str, none_type post_uri_template_format_response_body_for_content_types()
diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/PatternApi.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/PatternApi.md
index a6cae4de54..0497da27ae 100644
--- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/PatternApi.md
+++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/PatternApi.md
@@ -1,4 +1,4 @@
-
+
# unit_test_api.apis.tags.pattern_api.PatternApi
All URIs are relative to *https://someserver.com/v1*
@@ -11,7 +11,7 @@ Method | HTTP request | Description
[**post_pattern_validation_response_body_for_content_types**](#post_pattern_validation_response_body_for_content_types) | **post** /responseBody/postPatternValidationResponseBodyForContentTypes |
# **post_pattern_is_not_anchored_request_body**
-
+
> post_pattern_is_not_anchored_request_body(body)
@@ -82,7 +82,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_pattern_is_not_anchored_response_body_for_content_types**
-
+
> PatternIsNotAnchored post_pattern_is_not_anchored_response_body_for_content_types()
@@ -142,7 +142,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_pattern_validation_request_body**
-
+
> post_pattern_validation_request_body(body)
@@ -213,7 +213,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_pattern_validation_response_body_for_content_types**
-
+
> PatternValidation post_pattern_validation_response_body_for_content_types()
diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/PropertiesApi.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/PropertiesApi.md
index 67c74c2c13..dfa7d44277 100644
--- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/PropertiesApi.md
+++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/PropertiesApi.md
@@ -1,4 +1,4 @@
-
+
# unit_test_api.apis.tags.properties_api.PropertiesApi
All URIs are relative to *https://someserver.com/v1*
@@ -11,7 +11,7 @@ Method | HTTP request | Description
[**post_properties_with_escaped_characters_response_body_for_content_types**](#post_properties_with_escaped_characters_response_body_for_content_types) | **post** /responseBody/postPropertiesWithEscapedCharactersResponseBodyForContentTypes |
# **post_object_properties_validation_request_body**
-
+
> post_object_properties_validation_request_body(object_properties_validation)
@@ -82,7 +82,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_object_properties_validation_response_body_for_content_types**
-
+
> ObjectPropertiesValidation post_object_properties_validation_response_body_for_content_types()
@@ -142,7 +142,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_properties_with_escaped_characters_request_body**
-
+
> post_properties_with_escaped_characters_request_body(properties_with_escaped_characters)
@@ -213,7 +213,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_properties_with_escaped_characters_response_body_for_content_types**
-
+
> PropertiesWithEscapedCharacters post_properties_with_escaped_characters_response_body_for_content_types()
diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/RefApi.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/RefApi.md
index 520d9c3230..b947696036 100644
--- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/RefApi.md
+++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/RefApi.md
@@ -1,4 +1,4 @@
-
+
# unit_test_api.apis.tags.ref_api.RefApi
All URIs are relative to *https://someserver.com/v1*
@@ -23,7 +23,7 @@ Method | HTTP request | Description
[**post_ref_in_property_response_body_for_content_types**](#post_ref_in_property_response_body_for_content_types) | **post** /responseBody/postRefInPropertyResponseBodyForContentTypes |
# **post_property_named_ref_that_is_not_a_reference_request_body**
-
+
> post_property_named_ref_that_is_not_a_reference_request_body(property_named_ref_that_is_not_a_reference)
@@ -94,7 +94,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_property_named_ref_that_is_not_a_reference_response_body_for_content_types**
-
+
> PropertyNamedRefThatIsNotAReference post_property_named_ref_that_is_not_a_reference_response_body_for_content_types()
@@ -154,7 +154,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_ref_in_additionalproperties_request_body**
-
+
> post_ref_in_additionalproperties_request_body(ref_in_additionalproperties)
@@ -227,7 +227,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_ref_in_additionalproperties_response_body_for_content_types**
-
+
> RefInAdditionalproperties post_ref_in_additionalproperties_response_body_for_content_types()
@@ -287,7 +287,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_ref_in_allof_request_body**
-
+
> post_ref_in_allof_request_body(ref_in_allof)
@@ -358,7 +358,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_ref_in_allof_response_body_for_content_types**
-
+
> RefInAllof post_ref_in_allof_response_body_for_content_types()
@@ -418,7 +418,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_ref_in_anyof_request_body**
-
+
> post_ref_in_anyof_request_body(ref_in_anyof)
@@ -489,7 +489,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_ref_in_anyof_response_body_for_content_types**
-
+
> RefInAnyof post_ref_in_anyof_response_body_for_content_types()
@@ -549,7 +549,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_ref_in_items_request_body**
-
+
> post_ref_in_items_request_body(ref_in_items)
@@ -622,7 +622,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_ref_in_items_response_body_for_content_types**
-
+
> RefInItems post_ref_in_items_response_body_for_content_types()
@@ -682,7 +682,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_ref_in_not_request_body**
-
+
> post_ref_in_not_request_body(body)
@@ -760,7 +760,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_ref_in_not_response_body_for_content_types**
-
+
> bool, date, datetime, dict, float, int, list, str, none_type post_ref_in_not_response_body_for_content_types()
@@ -827,7 +827,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_ref_in_oneof_request_body**
-
+
> post_ref_in_oneof_request_body(ref_in_oneof)
@@ -898,7 +898,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_ref_in_oneof_response_body_for_content_types**
-
+
> RefInOneof post_ref_in_oneof_response_body_for_content_types()
@@ -958,7 +958,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_ref_in_property_request_body**
-
+
> post_ref_in_property_request_body(ref_in_property)
@@ -1029,7 +1029,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_ref_in_property_response_body_for_content_types**
-
+
> RefInProperty post_ref_in_property_response_body_for_content_types()
diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/RequiredApi.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/RequiredApi.md
index 7ed6e02f04..208bb0f7c5 100644
--- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/RequiredApi.md
+++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/RequiredApi.md
@@ -1,4 +1,4 @@
-
+
# unit_test_api.apis.tags.required_api.RequiredApi
All URIs are relative to *https://someserver.com/v1*
@@ -15,7 +15,7 @@ Method | HTTP request | Description
[**post_required_with_escaped_characters_response_body_for_content_types**](#post_required_with_escaped_characters_response_body_for_content_types) | **post** /responseBody/postRequiredWithEscapedCharactersResponseBodyForContentTypes |
# **post_required_default_validation_request_body**
-
+
> post_required_default_validation_request_body(required_default_validation)
@@ -86,7 +86,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_required_default_validation_response_body_for_content_types**
-
+
> RequiredDefaultValidation post_required_default_validation_response_body_for_content_types()
@@ -146,7 +146,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_required_validation_request_body**
-
+
> post_required_validation_request_body(required_validation)
@@ -217,7 +217,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_required_validation_response_body_for_content_types**
-
+
> RequiredValidation post_required_validation_response_body_for_content_types()
@@ -277,7 +277,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_required_with_empty_array_request_body**
-
+
> post_required_with_empty_array_request_body(required_with_empty_array)
@@ -348,7 +348,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_required_with_empty_array_response_body_for_content_types**
-
+
> RequiredWithEmptyArray post_required_with_empty_array_response_body_for_content_types()
@@ -408,7 +408,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_required_with_escaped_characters_request_body**
-
+
> post_required_with_escaped_characters_request_body(body)
@@ -479,7 +479,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_required_with_escaped_characters_response_body_for_content_types**
-
+
> bool, date, datetime, dict, float, int, list, str, none_type post_required_with_escaped_characters_response_body_for_content_types()
diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/ResponseContentContentTypeSchemaApi.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/ResponseContentContentTypeSchemaApi.md
index 0147f02e5f..dc828e2952 100644
--- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/ResponseContentContentTypeSchemaApi.md
+++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/ResponseContentContentTypeSchemaApi.md
@@ -1,4 +1,4 @@
-
+
# unit_test_api.apis.tags.response_content_content_type_schema_api.ResponseContentContentTypeSchemaApi
All URIs are relative to *https://someserver.com/v1*
@@ -94,7 +94,7 @@ Method | HTTP request | Description
[**post_uri_template_format_response_body_for_content_types**](#post_uri_template_format_response_body_for_content_types) | **post** /responseBody/postUriTemplateFormatResponseBodyForContentTypes |
# **post_additionalproperties_allows_a_schema_which_should_validate_response_body_for_content_types**
-
+
> AdditionalpropertiesAllowsASchemaWhichShouldValidate post_additionalproperties_allows_a_schema_which_should_validate_response_body_for_content_types()
@@ -154,7 +154,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_additionalproperties_are_allowed_by_default_response_body_for_content_types**
-
+
> AdditionalpropertiesAreAllowedByDefault post_additionalproperties_are_allowed_by_default_response_body_for_content_types()
@@ -214,7 +214,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_additionalproperties_can_exist_by_itself_response_body_for_content_types**
-
+
> AdditionalpropertiesCanExistByItself post_additionalproperties_can_exist_by_itself_response_body_for_content_types()
@@ -274,7 +274,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_additionalproperties_should_not_look_in_applicators_response_body_for_content_types**
-
+
> AdditionalpropertiesShouldNotLookInApplicators post_additionalproperties_should_not_look_in_applicators_response_body_for_content_types()
@@ -334,7 +334,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_allof_combined_with_anyof_oneof_response_body_for_content_types**
-
+
> AllofCombinedWithAnyofOneof post_allof_combined_with_anyof_oneof_response_body_for_content_types()
@@ -394,7 +394,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_allof_response_body_for_content_types**
-
+
> Allof post_allof_response_body_for_content_types()
@@ -454,7 +454,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_allof_simple_types_response_body_for_content_types**
-
+
> AllofSimpleTypes post_allof_simple_types_response_body_for_content_types()
@@ -514,7 +514,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_allof_with_base_schema_response_body_for_content_types**
-
+
> AllofWithBaseSchema post_allof_with_base_schema_response_body_for_content_types()
@@ -574,7 +574,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_allof_with_one_empty_schema_response_body_for_content_types**
-
+
> AllofWithOneEmptySchema post_allof_with_one_empty_schema_response_body_for_content_types()
@@ -634,7 +634,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_allof_with_the_first_empty_schema_response_body_for_content_types**
-
+
> AllofWithTheFirstEmptySchema post_allof_with_the_first_empty_schema_response_body_for_content_types()
@@ -694,7 +694,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_allof_with_the_last_empty_schema_response_body_for_content_types**
-
+
> AllofWithTheLastEmptySchema post_allof_with_the_last_empty_schema_response_body_for_content_types()
@@ -754,7 +754,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_allof_with_two_empty_schemas_response_body_for_content_types**
-
+
> AllofWithTwoEmptySchemas post_allof_with_two_empty_schemas_response_body_for_content_types()
@@ -814,7 +814,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_anyof_complex_types_response_body_for_content_types**
-
+
> AnyofComplexTypes post_anyof_complex_types_response_body_for_content_types()
@@ -874,7 +874,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_anyof_response_body_for_content_types**
-
+
> Anyof post_anyof_response_body_for_content_types()
@@ -934,7 +934,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_anyof_with_base_schema_response_body_for_content_types**
-
+
> AnyofWithBaseSchema post_anyof_with_base_schema_response_body_for_content_types()
@@ -994,7 +994,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_anyof_with_one_empty_schema_response_body_for_content_types**
-
+
> AnyofWithOneEmptySchema post_anyof_with_one_empty_schema_response_body_for_content_types()
@@ -1054,7 +1054,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_array_type_matches_arrays_response_body_for_content_types**
-
+
> ArrayTypeMatchesArrays post_array_type_matches_arrays_response_body_for_content_types()
@@ -1114,7 +1114,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_boolean_type_matches_booleans_response_body_for_content_types**
-
+
> bool post_boolean_type_matches_booleans_response_body_for_content_types()
@@ -1174,7 +1174,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_by_int_response_body_for_content_types**
-
+
> ByInt post_by_int_response_body_for_content_types()
@@ -1234,7 +1234,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_by_number_response_body_for_content_types**
-
+
> ByNumber post_by_number_response_body_for_content_types()
@@ -1294,7 +1294,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_by_small_number_response_body_for_content_types**
-
+
> BySmallNumber post_by_small_number_response_body_for_content_types()
@@ -1354,7 +1354,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_date_time_format_response_body_for_content_types**
-
+
> bool, date, datetime, dict, float, int, list, str, none_type post_date_time_format_response_body_for_content_types()
@@ -1414,7 +1414,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_email_format_response_body_for_content_types**
-
+
> bool, date, datetime, dict, float, int, list, str, none_type post_email_format_response_body_for_content_types()
@@ -1474,7 +1474,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_enum_with0_does_not_match_false_response_body_for_content_types**
-
+
> EnumWith0DoesNotMatchFalse post_enum_with0_does_not_match_false_response_body_for_content_types()
@@ -1534,7 +1534,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_enum_with1_does_not_match_true_response_body_for_content_types**
-
+
> EnumWith1DoesNotMatchTrue post_enum_with1_does_not_match_true_response_body_for_content_types()
@@ -1594,7 +1594,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_enum_with_escaped_characters_response_body_for_content_types**
-
+
> EnumWithEscapedCharacters post_enum_with_escaped_characters_response_body_for_content_types()
@@ -1654,7 +1654,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_enum_with_false_does_not_match0_response_body_for_content_types**
-
+
> EnumWithFalseDoesNotMatch0 post_enum_with_false_does_not_match0_response_body_for_content_types()
@@ -1714,7 +1714,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_enum_with_true_does_not_match1_response_body_for_content_types**
-
+
> EnumWithTrueDoesNotMatch1 post_enum_with_true_does_not_match1_response_body_for_content_types()
@@ -1774,7 +1774,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_enums_in_properties_response_body_for_content_types**
-
+
> EnumsInProperties post_enums_in_properties_response_body_for_content_types()
@@ -1834,7 +1834,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_forbidden_property_response_body_for_content_types**
-
+
> ForbiddenProperty post_forbidden_property_response_body_for_content_types()
@@ -1894,7 +1894,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_hostname_format_response_body_for_content_types**
-
+
> bool, date, datetime, dict, float, int, list, str, none_type post_hostname_format_response_body_for_content_types()
@@ -1954,7 +1954,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_integer_type_matches_integers_response_body_for_content_types**
-
+
> int post_integer_type_matches_integers_response_body_for_content_types()
@@ -2014,7 +2014,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_invalid_instance_should_not_raise_error_when_float_division_inf_response_body_for_content_types**
-
+
> InvalidInstanceShouldNotRaiseErrorWhenFloatDivisionInf post_invalid_instance_should_not_raise_error_when_float_division_inf_response_body_for_content_types()
@@ -2074,7 +2074,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_invalid_string_value_for_default_response_body_for_content_types**
-
+
> InvalidStringValueForDefault post_invalid_string_value_for_default_response_body_for_content_types()
@@ -2134,7 +2134,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_ipv4_format_response_body_for_content_types**
-
+
> bool, date, datetime, dict, float, int, list, str, none_type post_ipv4_format_response_body_for_content_types()
@@ -2194,7 +2194,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_ipv6_format_response_body_for_content_types**
-
+
> bool, date, datetime, dict, float, int, list, str, none_type post_ipv6_format_response_body_for_content_types()
@@ -2254,7 +2254,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_json_pointer_format_response_body_for_content_types**
-
+
> bool, date, datetime, dict, float, int, list, str, none_type post_json_pointer_format_response_body_for_content_types()
@@ -2314,7 +2314,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_maximum_validation_response_body_for_content_types**
-
+
> MaximumValidation post_maximum_validation_response_body_for_content_types()
@@ -2374,7 +2374,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_maximum_validation_with_unsigned_integer_response_body_for_content_types**
-
+
> MaximumValidationWithUnsignedInteger post_maximum_validation_with_unsigned_integer_response_body_for_content_types()
@@ -2434,7 +2434,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_maxitems_validation_response_body_for_content_types**
-
+
> MaxitemsValidation post_maxitems_validation_response_body_for_content_types()
@@ -2494,7 +2494,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_maxlength_validation_response_body_for_content_types**
-
+
> MaxlengthValidation post_maxlength_validation_response_body_for_content_types()
@@ -2554,7 +2554,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_maxproperties0_means_the_object_is_empty_response_body_for_content_types**
-
+
> Maxproperties0MeansTheObjectIsEmpty post_maxproperties0_means_the_object_is_empty_response_body_for_content_types()
@@ -2614,7 +2614,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_maxproperties_validation_response_body_for_content_types**
-
+
> MaxpropertiesValidation post_maxproperties_validation_response_body_for_content_types()
@@ -2674,7 +2674,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_minimum_validation_response_body_for_content_types**
-
+
> MinimumValidation post_minimum_validation_response_body_for_content_types()
@@ -2734,7 +2734,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_minimum_validation_with_signed_integer_response_body_for_content_types**
-
+
> MinimumValidationWithSignedInteger post_minimum_validation_with_signed_integer_response_body_for_content_types()
@@ -2794,7 +2794,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_minitems_validation_response_body_for_content_types**
-
+
> MinitemsValidation post_minitems_validation_response_body_for_content_types()
@@ -2854,7 +2854,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_minlength_validation_response_body_for_content_types**
-
+
> MinlengthValidation post_minlength_validation_response_body_for_content_types()
@@ -2914,7 +2914,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_minproperties_validation_response_body_for_content_types**
-
+
> MinpropertiesValidation post_minproperties_validation_response_body_for_content_types()
@@ -2974,7 +2974,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_nested_allof_to_check_validation_semantics_response_body_for_content_types**
-
+
> NestedAllofToCheckValidationSemantics post_nested_allof_to_check_validation_semantics_response_body_for_content_types()
@@ -3034,7 +3034,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_nested_anyof_to_check_validation_semantics_response_body_for_content_types**
-
+
> NestedAnyofToCheckValidationSemantics post_nested_anyof_to_check_validation_semantics_response_body_for_content_types()
@@ -3094,7 +3094,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_nested_items_response_body_for_content_types**
-
+
> NestedItems post_nested_items_response_body_for_content_types()
@@ -3154,7 +3154,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_nested_oneof_to_check_validation_semantics_response_body_for_content_types**
-
+
> NestedOneofToCheckValidationSemantics post_nested_oneof_to_check_validation_semantics_response_body_for_content_types()
@@ -3214,7 +3214,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_not_more_complex_schema_response_body_for_content_types**
-
+
> bool, date, datetime, dict, float, int, list, str, none_type post_not_more_complex_schema_response_body_for_content_types()
@@ -3293,7 +3293,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_not_response_body_for_content_types**
-
+
> bool, date, datetime, dict, float, int, list, str, none_type post_not_response_body_for_content_types()
@@ -3366,7 +3366,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_nul_characters_in_strings_response_body_for_content_types**
-
+
> NulCharactersInStrings post_nul_characters_in_strings_response_body_for_content_types()
@@ -3426,7 +3426,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_null_type_matches_only_the_null_object_response_body_for_content_types**
-
+
> none_type post_null_type_matches_only_the_null_object_response_body_for_content_types()
@@ -3486,7 +3486,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_number_type_matches_numbers_response_body_for_content_types**
-
+
> int, float post_number_type_matches_numbers_response_body_for_content_types()
@@ -3546,7 +3546,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_object_properties_validation_response_body_for_content_types**
-
+
> ObjectPropertiesValidation post_object_properties_validation_response_body_for_content_types()
@@ -3606,7 +3606,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_object_type_matches_objects_response_body_for_content_types**
-
+
> {str: (bool, date, datetime, dict, float, int, list, str, none_type)} post_object_type_matches_objects_response_body_for_content_types()
@@ -3666,7 +3666,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_oneof_complex_types_response_body_for_content_types**
-
+
> OneofComplexTypes post_oneof_complex_types_response_body_for_content_types()
@@ -3726,7 +3726,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_oneof_response_body_for_content_types**
-
+
> Oneof post_oneof_response_body_for_content_types()
@@ -3786,7 +3786,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_oneof_with_base_schema_response_body_for_content_types**
-
+
> OneofWithBaseSchema post_oneof_with_base_schema_response_body_for_content_types()
@@ -3846,7 +3846,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_oneof_with_empty_schema_response_body_for_content_types**
-
+
> OneofWithEmptySchema post_oneof_with_empty_schema_response_body_for_content_types()
@@ -3906,7 +3906,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_oneof_with_required_response_body_for_content_types**
-
+
> OneofWithRequired post_oneof_with_required_response_body_for_content_types()
@@ -3966,7 +3966,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_pattern_is_not_anchored_response_body_for_content_types**
-
+
> PatternIsNotAnchored post_pattern_is_not_anchored_response_body_for_content_types()
@@ -4026,7 +4026,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_pattern_validation_response_body_for_content_types**
-
+
> PatternValidation post_pattern_validation_response_body_for_content_types()
@@ -4086,7 +4086,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_properties_with_escaped_characters_response_body_for_content_types**
-
+
> PropertiesWithEscapedCharacters post_properties_with_escaped_characters_response_body_for_content_types()
@@ -4146,7 +4146,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_property_named_ref_that_is_not_a_reference_response_body_for_content_types**
-
+
> PropertyNamedRefThatIsNotAReference post_property_named_ref_that_is_not_a_reference_response_body_for_content_types()
@@ -4206,7 +4206,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_ref_in_additionalproperties_response_body_for_content_types**
-
+
> RefInAdditionalproperties post_ref_in_additionalproperties_response_body_for_content_types()
@@ -4266,7 +4266,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_ref_in_allof_response_body_for_content_types**
-
+
> RefInAllof post_ref_in_allof_response_body_for_content_types()
@@ -4326,7 +4326,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_ref_in_anyof_response_body_for_content_types**
-
+
> RefInAnyof post_ref_in_anyof_response_body_for_content_types()
@@ -4386,7 +4386,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_ref_in_items_response_body_for_content_types**
-
+
> RefInItems post_ref_in_items_response_body_for_content_types()
@@ -4446,7 +4446,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_ref_in_not_response_body_for_content_types**
-
+
> bool, date, datetime, dict, float, int, list, str, none_type post_ref_in_not_response_body_for_content_types()
@@ -4513,7 +4513,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_ref_in_oneof_response_body_for_content_types**
-
+
> RefInOneof post_ref_in_oneof_response_body_for_content_types()
@@ -4573,7 +4573,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_ref_in_property_response_body_for_content_types**
-
+
> RefInProperty post_ref_in_property_response_body_for_content_types()
@@ -4633,7 +4633,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_required_default_validation_response_body_for_content_types**
-
+
> RequiredDefaultValidation post_required_default_validation_response_body_for_content_types()
@@ -4693,7 +4693,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_required_validation_response_body_for_content_types**
-
+
> RequiredValidation post_required_validation_response_body_for_content_types()
@@ -4753,7 +4753,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_required_with_empty_array_response_body_for_content_types**
-
+
> RequiredWithEmptyArray post_required_with_empty_array_response_body_for_content_types()
@@ -4813,7 +4813,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_required_with_escaped_characters_response_body_for_content_types**
-
+
> bool, date, datetime, dict, float, int, list, str, none_type post_required_with_escaped_characters_response_body_for_content_types()
@@ -4873,7 +4873,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_simple_enum_validation_response_body_for_content_types**
-
+
> SimpleEnumValidation post_simple_enum_validation_response_body_for_content_types()
@@ -4933,7 +4933,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_string_type_matches_strings_response_body_for_content_types**
-
+
> str post_string_type_matches_strings_response_body_for_content_types()
@@ -4993,7 +4993,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_the_default_keyword_does_not_do_anything_if_the_property_is_missing_response_body_for_content_types**
-
+
> TheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissing post_the_default_keyword_does_not_do_anything_if_the_property_is_missing_response_body_for_content_types()
@@ -5053,7 +5053,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_uniqueitems_false_validation_response_body_for_content_types**
-
+
> UniqueitemsFalseValidation post_uniqueitems_false_validation_response_body_for_content_types()
@@ -5113,7 +5113,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_uniqueitems_validation_response_body_for_content_types**
-
+
> UniqueitemsValidation post_uniqueitems_validation_response_body_for_content_types()
@@ -5173,7 +5173,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_uri_format_response_body_for_content_types**
-
+
> bool, date, datetime, dict, float, int, list, str, none_type post_uri_format_response_body_for_content_types()
@@ -5233,7 +5233,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_uri_reference_format_response_body_for_content_types**
-
+
> bool, date, datetime, dict, float, int, list, str, none_type post_uri_reference_format_response_body_for_content_types()
@@ -5293,7 +5293,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_uri_template_format_response_body_for_content_types**
-
+
> bool, date, datetime, dict, float, int, list, str, none_type post_uri_template_format_response_body_for_content_types()
diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/TypeApi.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/TypeApi.md
index f3f2d1bebd..26708e21ae 100644
--- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/TypeApi.md
+++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/TypeApi.md
@@ -1,4 +1,4 @@
-
+
# unit_test_api.apis.tags.type_api.TypeApi
All URIs are relative to *https://someserver.com/v1*
@@ -21,7 +21,7 @@ Method | HTTP request | Description
[**post_string_type_matches_strings_response_body_for_content_types**](#post_string_type_matches_strings_response_body_for_content_types) | **post** /responseBody/postStringTypeMatchesStringsResponseBodyForContentTypes |
# **post_array_type_matches_arrays_request_body**
-
+
> post_array_type_matches_arrays_request_body(array_type_matches_arrays)
@@ -94,7 +94,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_array_type_matches_arrays_response_body_for_content_types**
-
+
> ArrayTypeMatchesArrays post_array_type_matches_arrays_response_body_for_content_types()
@@ -154,7 +154,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_boolean_type_matches_booleans_request_body**
-
+
> post_boolean_type_matches_booleans_request_body(body)
@@ -225,7 +225,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_boolean_type_matches_booleans_response_body_for_content_types**
-
+
> bool post_boolean_type_matches_booleans_response_body_for_content_types()
@@ -285,7 +285,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_integer_type_matches_integers_request_body**
-
+
> post_integer_type_matches_integers_request_body(body)
@@ -356,7 +356,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_integer_type_matches_integers_response_body_for_content_types**
-
+
> int post_integer_type_matches_integers_response_body_for_content_types()
@@ -416,7 +416,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_null_type_matches_only_the_null_object_request_body**
-
+
> post_null_type_matches_only_the_null_object_request_body(body)
@@ -487,7 +487,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_null_type_matches_only_the_null_object_response_body_for_content_types**
-
+
> none_type post_null_type_matches_only_the_null_object_response_body_for_content_types()
@@ -547,7 +547,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_number_type_matches_numbers_request_body**
-
+
> post_number_type_matches_numbers_request_body(body)
@@ -618,7 +618,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_number_type_matches_numbers_response_body_for_content_types**
-
+
> int, float post_number_type_matches_numbers_response_body_for_content_types()
@@ -678,7 +678,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_object_type_matches_objects_request_body**
-
+
> post_object_type_matches_objects_request_body(body)
@@ -749,7 +749,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_object_type_matches_objects_response_body_for_content_types**
-
+
> {str: (bool, date, datetime, dict, float, int, list, str, none_type)} post_object_type_matches_objects_response_body_for_content_types()
@@ -809,7 +809,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_string_type_matches_strings_request_body**
-
+
> post_string_type_matches_strings_request_body(body)
@@ -880,7 +880,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_string_type_matches_strings_response_body_for_content_types**
-
+
> str post_string_type_matches_strings_response_body_for_content_types()
diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/UniqueItemsApi.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/UniqueItemsApi.md
index 529b69479c..f95123c720 100644
--- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/UniqueItemsApi.md
+++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/UniqueItemsApi.md
@@ -1,4 +1,4 @@
-
+
# unit_test_api.apis.tags.unique_items_api.UniqueItemsApi
All URIs are relative to *https://someserver.com/v1*
@@ -11,7 +11,7 @@ Method | HTTP request | Description
[**post_uniqueitems_validation_response_body_for_content_types**](#post_uniqueitems_validation_response_body_for_content_types) | **post** /responseBody/postUniqueitemsValidationResponseBodyForContentTypes |
# **post_uniqueitems_false_validation_request_body**
-
+
> post_uniqueitems_false_validation_request_body(body)
@@ -82,7 +82,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_uniqueitems_false_validation_response_body_for_content_types**
-
+
> UniqueitemsFalseValidation post_uniqueitems_false_validation_response_body_for_content_types()
@@ -142,7 +142,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_uniqueitems_validation_request_body**
-
+
> post_uniqueitems_validation_request_body(body)
@@ -213,7 +213,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **post_uniqueitems_validation_response_body_for_content_types**
-
+
> UniqueitemsValidation post_uniqueitems_validation_response_body_for_content_types()
diff --git a/samples/openapi3/client/extensions/x-auth-id-alias/python-prior/README.md b/samples/openapi3/client/extensions/x-auth-id-alias/python-prior/README.md
index 12a5abda0b..feaca4b13d 100644
--- a/samples/openapi3/client/extensions/x-auth-id-alias/python-prior/README.md
+++ b/samples/openapi3/client/extensions/x-auth-id-alias/python-prior/README.md
@@ -103,17 +103,20 @@ Class | Method | HTTP request | Description
+
## Documentation For Authorization
-## api_key
+Authentication schemes defined for the API:
+
+### api_key
- **Type**: API key
- **API key parameter name**: X-Api-Key
- **Location**: HTTP header
-
-## api_key_query
+
+### api_key_query
- **Type**: API key
- **API key parameter name**: api_key
diff --git a/samples/openapi3/client/features/dynamic-servers/python/README.md b/samples/openapi3/client/features/dynamic-servers/python/README.md
index c7567b057f..5af9af764c 100644
--- a/samples/openapi3/client/features/dynamic-servers/python/README.md
+++ b/samples/openapi3/client/features/dynamic-servers/python/README.md
@@ -175,7 +175,8 @@ Class | Method | HTTP request | Description
## Documentation For Authorization
- All endpoints do not require authorization.
+ Endpoints do not require authorization.
+
## Author
diff --git a/samples/openapi3/client/features/dynamic-servers/python/docs/apis/tags/UsageApi.md b/samples/openapi3/client/features/dynamic-servers/python/docs/apis/tags/UsageApi.md
index fd5794f87d..26c3abdeaa 100644
--- a/samples/openapi3/client/features/dynamic-servers/python/docs/apis/tags/UsageApi.md
+++ b/samples/openapi3/client/features/dynamic-servers/python/docs/apis/tags/UsageApi.md
@@ -1,4 +1,4 @@
-
+
# dynamic_servers.apis.tags.usage_api.UsageApi
All URIs are relative to *http://petstore.swagger.io:80/v2*
@@ -9,7 +9,7 @@ Method | HTTP request | Description
[**default_server**](#default_server) | **get** /default | Use default server
# **custom_server**
-
+
> {str: (bool, date, datetime, dict, float, int, list, str, none_type)} custom_server()
Use custom server
@@ -72,7 +72,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **default_server**
-
+
> {str: (bool, date, datetime, dict, float, int, list, str, none_type)} default_server()
Use default server
diff --git a/samples/openapi3/client/petstore/python-legacy/README.md b/samples/openapi3/client/petstore/python-legacy/README.md
index bee1d84445..1789a2a2c6 100755
--- a/samples/openapi3/client/petstore/python-legacy/README.md
+++ b/samples/openapi3/client/petstore/python-legacy/README.md
@@ -176,10 +176,13 @@ Class | Method | HTTP request | Description
- [User](docs/User.md)
+
## Documentation For Authorization
-## petstore_auth
+Authentication schemes defined for the API:
+
+### petstore_auth
- **Type**: OAuth
- **Flow**: implicit
@@ -188,32 +191,32 @@ Class | Method | HTTP request | Description
- **write:pets**: modify pets in your account
- **read:pets**: read your pets
-
-## api_key
+
+### api_key
- **Type**: API key
- **API key parameter name**: api_key
- **Location**: HTTP header
-
-## api_key_query
+
+### api_key_query
- **Type**: API key
- **API key parameter name**: api_key_query
- **Location**: URL query string
-
-## http_basic_test
+
+### http_basic_test
- **Type**: HTTP basic authentication
-
-## bearer_test
+
+### bearer_test
- **Type**: Bearer authentication (JWT)
-
-## http_signature_test
+
+### http_signature_test
diff --git a/samples/openapi3/client/petstore/python-nextgen-aiohttp/README.md b/samples/openapi3/client/petstore/python-nextgen-aiohttp/README.md
index bbf76b9e2f..b1e68b5f72 100644
--- a/samples/openapi3/client/petstore/python-nextgen-aiohttp/README.md
+++ b/samples/openapi3/client/petstore/python-nextgen-aiohttp/README.md
@@ -203,10 +203,13 @@ Class | Method | HTTP request | Description
- [WithNestedOneOf](docs/WithNestedOneOf.md)
+
## Documentation For Authorization
-## petstore_auth
+Authentication schemes defined for the API:
+
+### petstore_auth
- **Type**: OAuth
- **Flow**: implicit
@@ -215,32 +218,32 @@ Class | Method | HTTP request | Description
- **write:pets**: modify pets in your account
- **read:pets**: read your pets
-
-## api_key
+
+### api_key
- **Type**: API key
- **API key parameter name**: api_key
- **Location**: HTTP header
-
-## api_key_query
+
+### api_key_query
- **Type**: API key
- **API key parameter name**: api_key_query
- **Location**: URL query string
-
-## http_basic_test
+
+### http_basic_test
- **Type**: HTTP basic authentication
-
-## bearer_test
+
+### bearer_test
- **Type**: Bearer authentication (JWT)
-
-## http_signature_test
+
+### http_signature_test
diff --git a/samples/openapi3/client/petstore/python-nextgen/README.md b/samples/openapi3/client/petstore/python-nextgen/README.md
index b6df197925..e45128d7c9 100755
--- a/samples/openapi3/client/petstore/python-nextgen/README.md
+++ b/samples/openapi3/client/petstore/python-nextgen/README.md
@@ -203,10 +203,13 @@ Class | Method | HTTP request | Description
- [WithNestedOneOf](docs/WithNestedOneOf.md)
+
## Documentation For Authorization
-## petstore_auth
+Authentication schemes defined for the API:
+
+### petstore_auth
- **Type**: OAuth
- **Flow**: implicit
@@ -215,32 +218,32 @@ Class | Method | HTTP request | Description
- **write:pets**: modify pets in your account
- **read:pets**: read your pets
-
-## api_key
+
+### api_key
- **Type**: API key
- **API key parameter name**: api_key
- **Location**: HTTP header
-
-## api_key_query
+
+### api_key_query
- **Type**: API key
- **API key parameter name**: api_key_query
- **Location**: URL query string
-
-## http_basic_test
+
+### http_basic_test
- **Type**: HTTP basic authentication
-
-## bearer_test
+
+### bearer_test
- **Type**: Bearer authentication (JWT)
-
-## http_signature_test
+
+### http_signature_test
diff --git a/samples/openapi3/client/petstore/python-prior/README.md b/samples/openapi3/client/petstore/python-prior/README.md
index 88cfa111d9..6d29101bc1 100644
--- a/samples/openapi3/client/petstore/python-prior/README.md
+++ b/samples/openapi3/client/petstore/python-prior/README.md
@@ -238,10 +238,13 @@ Class | Method | HTTP request | Description
- [Zebra](docs/Zebra.md)
+
## Documentation For Authorization
-## petstore_auth
+Authentication schemes defined for the API:
+
+### petstore_auth
- **Type**: OAuth
- **Flow**: implicit
@@ -250,32 +253,32 @@ Class | Method | HTTP request | Description
- **write:pets**: modify pets in your account
- **read:pets**: read your pets
-
-## api_key
+
+### api_key
- **Type**: API key
- **API key parameter name**: api_key
- **Location**: HTTP header
-
-## api_key_query
+
+### api_key_query
- **Type**: API key
- **API key parameter name**: api_key_query
- **Location**: URL query string
-
-## http_basic_test
+
+### http_basic_test
- **Type**: HTTP basic authentication
-
-## bearer_test
+
+### bearer_test
- **Type**: Bearer authentication (JWT)
-
-## http_signature_test
+
+### http_signature_test
- **Type**: HTTP signature authentication
diff --git a/samples/openapi3/client/petstore/python/README.md b/samples/openapi3/client/petstore/python/README.md
index b16c776bab..6582aa207a 100644
--- a/samples/openapi3/client/petstore/python/README.md
+++ b/samples/openapi3/client/petstore/python/README.md
@@ -356,8 +356,9 @@ Class | Method | HTTP request | Description
## Documentation For Authorization
-
-## petstore_auth
+Authentication schemes defined for the API:
+
+### petstore_auth
- **Type**: OAuth
- **Flow**: implicit
@@ -366,32 +367,32 @@ Class | Method | HTTP request | Description
- **write:pets**: modify pets in your account
- **read:pets**: read your pets
-
-## api_key
+
+### api_key
- **Type**: API key
- **API key parameter name**: api_key
- **Location**: HTTP header
-
-## api_key_query
+
+### api_key_query
- **Type**: API key
- **API key parameter name**: api_key_query
- **Location**: URL query string
-
-## http_basic_test
+
+### http_basic_test
- **Type**: HTTP basic authentication
-
-## bearer_test
+
+### bearer_test
- **Type**: Bearer authentication (JWT)
- Authentication schemes defined for the API:
-## http_signature_test
+
+### http_signature_test
- **Type**: HTTP signature authentication
diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/AnotherFakeApi.md b/samples/openapi3/client/petstore/python/docs/apis/tags/AnotherFakeApi.md
index 2a76dabc35..e466164d8b 100644
--- a/samples/openapi3/client/petstore/python/docs/apis/tags/AnotherFakeApi.md
+++ b/samples/openapi3/client/petstore/python/docs/apis/tags/AnotherFakeApi.md
@@ -1,4 +1,4 @@
-
+
# petstore_api.apis.tags.another_fake_api.AnotherFakeApi
All URIs are relative to *http://petstore.swagger.io:80/v2*
@@ -8,7 +8,7 @@ Method | HTTP request | Description
[**call_123_test_special_tags**](#call_123_test_special_tags) | **patch** /another-fake/dummy | To test special tags
# **call_123_test_special_tags**
-
+
> Client call_123_test_special_tags(client)
To test special tags
diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/DefaultApi.md b/samples/openapi3/client/petstore/python/docs/apis/tags/DefaultApi.md
index 768d80a1c3..732b50c6fb 100644
--- a/samples/openapi3/client/petstore/python/docs/apis/tags/DefaultApi.md
+++ b/samples/openapi3/client/petstore/python/docs/apis/tags/DefaultApi.md
@@ -1,4 +1,4 @@
-
+
# petstore_api.apis.tags.default_api.DefaultApi
All URIs are relative to *http://petstore.swagger.io:80/v2*
@@ -8,7 +8,7 @@ Method | HTTP request | Description
[**foo_get**](#foo_get) | **get** /foo |
# **foo_get**
-
+
> {str: (bool, date, datetime, dict, float, int, list, str, none_type)} foo_get()
diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/FakeApi.md b/samples/openapi3/client/petstore/python/docs/apis/tags/FakeApi.md
index 62c09a71f2..5b0f85b01c 100644
--- a/samples/openapi3/client/petstore/python/docs/apis/tags/FakeApi.md
+++ b/samples/openapi3/client/petstore/python/docs/apis/tags/FakeApi.md
@@ -1,4 +1,4 @@
-
+
# petstore_api.apis.tags.fake_api.FakeApi
All URIs are relative to *http://petstore.swagger.io:80/v2*
@@ -40,7 +40,7 @@ Method | HTTP request | Description
[**upload_files**](#upload_files) | **post** /fake/uploadFiles | uploads files using multipart/form-data
# **additional_properties_with_array_of_enums**
-
+
> AdditionalPropertiesWithArrayOfEnums additional_properties_with_array_of_enums()
Additional Properties with Array of Enums
@@ -124,7 +124,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **array_model**
-
+
> AnimalFarm array_model()
@@ -207,7 +207,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **array_of_enums**
-
+
> ArrayOfEnums array_of_enums()
Array of Enums
@@ -289,7 +289,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **body_with_file_schema**
-
+
> body_with_file_schema(file_schema_test_class)
@@ -369,7 +369,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **body_with_query_params**
-
+
> body_with_query_params(queryuser)
@@ -474,7 +474,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **boolean**
-
+
> bool boolean()
@@ -556,7 +556,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **case_sensitive_params**
-
+
> case_sensitive_params(some_varsome_var2some_var3)
@@ -654,7 +654,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **client_model**
-
+
> Client client_model(client)
To test \"client\" model
@@ -738,7 +738,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **composed_one_of_different_types**
-
+
> ComposedOneOfDifferentTypes composed_one_of_different_types()
@@ -819,7 +819,7 @@ No authorization required
[[Back to top]](#__pageTop) [[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_coffee**
-
+
> delete_coffee(id)
Delete coffee
@@ -930,7 +930,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **endpoint_parameters**
-
+
> endpoint_parameters()
Fake endpoint for testing various parameters 假端點 偽のエンドポイント 가짜 엔드 포인트
@@ -1057,7 +1057,7 @@ headers | Unset | headers were not defined |
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **enum_parameters**
-
+
> enum_parameters()
To test enum parameters
@@ -1262,7 +1262,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **fake_health_get**
-
+
> HealthCheckResult fake_health_get()
Health check endpoint
@@ -1323,7 +1323,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **group_parameters**
-
+
> group_parameters(required_string_grouprequired_boolean_grouprequired_int64_group)
Fake endpoint to test group parameters (optional)
@@ -1486,7 +1486,7 @@ headers | Unset | headers were not defined |
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **inline_additional_properties**
-
+
> inline_additional_properties(request_body)
test inline additionalProperties
@@ -1565,7 +1565,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **inline_composition**
-
+
> bool, date, datetime, dict, float, int, list, str, none_type inline_composition()
testing composed schemas at inline locations
@@ -1808,7 +1808,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **json_form_data**
-
+
> json_form_data()
test json serialization of form data
@@ -1890,7 +1890,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **json_patch**
-
+
> json_patch()
json patch
@@ -1966,7 +1966,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **json_with_charset**
-
+
> bool, date, datetime, dict, float, int, list, str, none_type json_with_charset()
json with charset tx and rx
@@ -2047,7 +2047,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **mammal**
-
+
> Mammal mammal(mammal)
@@ -2132,7 +2132,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **number_with_validations**
-
+
> NumberWithValidations number_with_validations()
@@ -2213,7 +2213,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **object_in_query**
-
+
> object_in_query()
user list
@@ -2300,7 +2300,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **object_model_with_ref_props**
-
+
> ObjectModelWithRefProps object_model_with_ref_props()
@@ -2385,7 +2385,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **parameter_collisions**
-
+
> bool, date, datetime, dict, float, int, list, str, none_type parameter_collisions(_3a_b5ab2_self3a_b6)
parameter collision case
@@ -2704,7 +2704,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **query_param_with_json_content_type**
-
+
> bool, date, datetime, dict, float, int, list, str, none_type query_param_with_json_content_type(some_param)
query param with json content-type
@@ -2785,7 +2785,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **query_parameter_collection_format**
-
+
> query_parameter_collection_format(pipeioutilhttpurlcontextref_param)
@@ -2945,7 +2945,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **ref_object_in_query**
-
+
> ref_object_in_query()
user list
@@ -3026,7 +3026,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **response_without_schema**
-
+
> response_without_schema()
receives a response without schema
@@ -3079,7 +3079,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **string**
-
+
> str string()
@@ -3161,7 +3161,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **string_enum**
-
+
> StringEnum string_enum()
@@ -3242,7 +3242,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **upload_download_file**
-
+
> file_type upload_download_file(body)
uploads a file and downloads a file using application/octet-stream
@@ -3327,7 +3327,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **upload_file**
-
+
> ApiResponse upload_file()
uploads a file using multipart/form-data
@@ -3418,7 +3418,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **upload_files**
-
+
> ApiResponse upload_files()
uploads files using multipart/form-data
diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/FakeClassnameTags123Api.md b/samples/openapi3/client/petstore/python/docs/apis/tags/FakeClassnameTags123Api.md
index 87b99456ad..cfcab91855 100644
--- a/samples/openapi3/client/petstore/python/docs/apis/tags/FakeClassnameTags123Api.md
+++ b/samples/openapi3/client/petstore/python/docs/apis/tags/FakeClassnameTags123Api.md
@@ -1,4 +1,4 @@
-
+
# petstore_api.apis.tags.fake_classname_tags123_api.FakeClassnameTags123Api
All URIs are relative to *http://petstore.swagger.io:80/v2*
@@ -8,7 +8,7 @@ Method | HTTP request | Description
[**classname**](#classname) | **patch** /fake_classname_test | To test class name in snake case
# **classname**
-
+
> Client classname(client)
To test class name in snake case
diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/PetApi.md b/samples/openapi3/client/petstore/python/docs/apis/tags/PetApi.md
index be45f7cddb..f03eafaa04 100644
--- a/samples/openapi3/client/petstore/python/docs/apis/tags/PetApi.md
+++ b/samples/openapi3/client/petstore/python/docs/apis/tags/PetApi.md
@@ -1,4 +1,4 @@
-
+
# petstore_api.apis.tags.pet_api.PetApi
All URIs are relative to *http://petstore.swagger.io:80/v2*
@@ -16,7 +16,7 @@ Method | HTTP request | Description
[**upload_image**](#upload_image) | **post** /pet/{petId}/uploadImage | uploads an image
# **add_pet**
-
+
> add_pet(pet)
Add a new pet to the store
@@ -193,7 +193,7 @@ headers | Unset | headers were not defined |
[[Back to top]](#__pageTop) [[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_pet**
-
+
> delete_pet(pet_id)
Deletes a pet
@@ -316,7 +316,7 @@ headers | Unset | headers were not defined |
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **find_pets_by_status**
-
+
> [Pet] find_pets_by_status(status)
Finds Pets by status
@@ -510,7 +510,7 @@ headers | Unset | headers were not defined |
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **find_pets_by_tags**
-
+
> [Pet] find_pets_by_tags(tags)
Finds Pets by tags
@@ -704,7 +704,7 @@ headers | Unset | headers were not defined |
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **get_pet_by_id**
-
+
> Pet get_pet_by_id(pet_id)
Find pet by ID
@@ -826,7 +826,7 @@ headers | Unset | headers were not defined |
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **update_pet**
-
+
> update_pet(pet)
Update an existing pet
@@ -1009,7 +1009,7 @@ headers | Unset | headers were not defined |
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **update_pet_with_form**
-
+
> update_pet_with_form(pet_id)
Updates a pet in the store with form data
@@ -1133,7 +1133,7 @@ headers | Unset | headers were not defined |
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **upload_file_with_required_file**
-
+
> ApiResponse upload_file_with_required_file(pet_id)
uploads an image (required)
@@ -1267,7 +1267,7 @@ Type | Description | Notes
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **upload_image**
-
+
> ApiResponse upload_image(pet_id)
uploads an image
diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/StoreApi.md b/samples/openapi3/client/petstore/python/docs/apis/tags/StoreApi.md
index 94a5cdb8c6..461ab2a0b8 100644
--- a/samples/openapi3/client/petstore/python/docs/apis/tags/StoreApi.md
+++ b/samples/openapi3/client/petstore/python/docs/apis/tags/StoreApi.md
@@ -1,4 +1,4 @@
-
+
# petstore_api.apis.tags.store_api.StoreApi
All URIs are relative to *http://petstore.swagger.io:80/v2*
@@ -11,7 +11,7 @@ Method | HTTP request | Description
[**place_order**](#place_order) | **post** /store/order | Place an order for a pet
# **delete_order**
-
+
> delete_order(order_id)
Delete purchase order by ID
@@ -99,7 +99,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **get_inventory**
-
+
> {str: (int,)} get_inventory()
Returns pet inventories by status
@@ -178,7 +178,7 @@ Key | Input Type | Accessed Type | Description | Notes
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **get_order_by_id**
-
+
> Order get_order_by_id(order_id)
Find purchase order by ID
@@ -289,7 +289,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **place_order**
-
+
> Order place_order(order)
Place an order for a pet
diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/UserApi.md b/samples/openapi3/client/petstore/python/docs/apis/tags/UserApi.md
index 6b0fd83c5d..ada88de899 100644
--- a/samples/openapi3/client/petstore/python/docs/apis/tags/UserApi.md
+++ b/samples/openapi3/client/petstore/python/docs/apis/tags/UserApi.md
@@ -1,4 +1,4 @@
-
+
# petstore_api.apis.tags.user_api.UserApi
All URIs are relative to *http://petstore.swagger.io:80/v2*
@@ -15,7 +15,7 @@ Method | HTTP request | Description
[**update_user**](#update_user) | **put** /user/{username} | Updated user
# **create_user**
-
+
> create_user(user)
Create user
@@ -103,7 +103,7 @@ No authorization required
[[Back to top]](#__pageTop) [[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_users_with_array_input**
-
+
> create_users_with_array_input(user)
Creates list of users with given input array
@@ -197,7 +197,7 @@ No authorization required
[[Back to top]](#__pageTop) [[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_users_with_list_input**
-
+
> create_users_with_list_input(user)
Creates list of users with given input array
@@ -291,7 +291,7 @@ No authorization required
[[Back to top]](#__pageTop) [[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_user**
-
+
> delete_user(username)
Delete user
@@ -379,7 +379,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **get_user_by_name**
-
+
> User get_user_by_name(username)
Get user by user name
@@ -488,7 +488,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **login_user**
-
+
> str login_user(usernamepassword)
Logs user into the system
@@ -625,7 +625,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **logout_user**
-
+
> logout_user()
Logs out current logged in user session
@@ -678,7 +678,7 @@ No authorization required
[[Back to top]](#__pageTop) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md)
# **update_user**
-
+
> update_user(usernameuser)
Updated user