[python-experimental] improves documentation (#13477)

* Improves docs generation

* Adds inline composed schemas

* Adds missing from property

* Adds notes info

* Fixes spacing

* Updates notes, generates container properties

* Adds anchors to property schema docs

* Adds format info to docs

* Adds items schema documentation

* Adds doc for additionalProperties

* Adds anchors for response types

* Fixes anchors in endpoint

* Fixes api doc link to model doc

* Removes returnType from api docs because it is unused

* Fixes float and double tests
This commit is contained in:
Justin Black 2022-09-20 14:53:58 -07:00 committed by GitHub
parent 6a7567e7cb
commit 903f2e2e2e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
550 changed files with 8345 additions and 7407 deletions

View File

@ -81,7 +81,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil
### body ### body
{{#each content}} {{#each content}}
{{#with this.schema}} {{#with this.schema}}
{{> api_doc_schema_type_hint }} {{> api_doc_schema_type_hint complexTypePrefix="../../models/" }}
{{/with}} {{/with}}
{{/each}} {{/each}}
{{/with}} {{/with}}
@ -98,7 +98,7 @@ Name | Type | Description | Notes
{{#each queryParams}} {{#each queryParams}}
{{#with schema}} {{#with schema}}
{{> api_doc_schema_type_hint }} {{> api_doc_schema_type_hint complexTypePrefix="../../models/" }}
{{/with}} {{/with}}
{{/each}} {{/each}}
{{/if}} {{/if}}
@ -114,7 +114,7 @@ Name | Type | Description | Notes
{{/each}} {{/each}}
{{#each headerParams}} {{#each headerParams}}
{{#with schema}} {{#with schema}}
{{> api_doc_schema_type_hint }} {{> api_doc_schema_type_hint complexTypePrefix="../../models/" }}
{{/with}} {{/with}}
{{/each}} {{/each}}
{{/if}} {{/if}}
@ -130,7 +130,7 @@ Name | Type | Description | Notes
{{/each}} {{/each}}
{{#each pathParams}} {{#each pathParams}}
{{#with schema}} {{#with schema}}
{{> api_doc_schema_type_hint }} {{> api_doc_schema_type_hint complexTypePrefix="../../models/" }}
{{/with}} {{/with}}
{{/each}} {{/each}}
{{/if}} {{/if}}
@ -146,7 +146,7 @@ Name | Type | Description | Notes
{{/each}} {{/each}}
{{#each cookieParams}} {{#each cookieParams}}
{{#with schema}} {{#with schema}}
{{> api_doc_schema_type_hint }} {{> api_doc_schema_type_hint complexTypePrefix="../../models/" }}
{{/with}} {{/with}}
{{/each}} {{/each}}
{{/if}} {{/if}}
@ -161,18 +161,18 @@ Code | Class | Description
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
{{#each responses}} {{#each responses}}
{{#if isDefault}} {{#if isDefault}}
default | ApiResponseForDefault | {{message}} default | [ApiResponseForDefault](#{{operationId}}.ApiResponseForDefault) | {{message}}
{{else}} {{else}}
{{code}} | ApiResponseFor{{code}} | {{message}} {{code}} | [ApiResponseFor{{code}}](#{{operationId}}.ApiResponseFor{{code}}) | {{message}}
{{/if}} {{/if}}
{{/each}} {{/each}}
{{#each responses}} {{#each responses}}
{{#if isDefault}} {{#if isDefault}}
#### ApiResponseForDefault #### {{operationId}}.ApiResponseForDefault
{{else}} {{else}}
#### ApiResponseFor{{code}} #### {{operationId}}.ApiResponseFor{{code}}
{{/if}} {{/if}}
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
@ -181,7 +181,7 @@ body | {{#unless content}}Unset{{else}}typing.Union[{{#each content}}{{#if this.
headers | {{#unless responseHeaders}}Unset{{else}}ResponseHeadersFor{{code}}{{/unless}} | {{#unless responseHeaders}}headers were not defined{{/unless}} | headers | {{#unless responseHeaders}}Unset{{else}}ResponseHeadersFor{{code}}{{/unless}} | {{#unless responseHeaders}}headers were not defined{{/unless}} |
{{#each content}} {{#each content}}
{{#with this.schema}} {{#with this.schema}}
{{> api_doc_schema_type_hint }} {{> api_doc_schema_type_hint complexTypePrefix="../../models/" }}
{{/with}} {{/with}}
{{/each}} {{/each}}
{{#if responseHeaders}} {{#if responseHeaders}}
@ -194,16 +194,13 @@ Name | Type | Description | Notes
{{/each}} {{/each}}
{{#each responseHeaders}} {{#each responseHeaders}}
{{#with schema}} {{#with schema}}
{{> api_doc_schema_type_hint }} {{> api_doc_schema_type_hint complexTypePrefix="../../models/" }}
{{/with}} {{/with}}
{{/each}} {{/each}}
{{/if}} {{/if}}
{{/each}} {{/each}}
{{#if returnType}}{{#if returnTypeIsPrimitive}}**{{{returnType}}}**{{/if}}{{#unless returnTypeIsPrimitive}}[**{{{returnType}}}**]({{returnBaseType}}.md){{/unless}}{{/if}}{{#unless returnType}}void (empty response body){{/unless}}
### Authorization ### Authorization
{{#unless authMethods}}No authorization required{{/unless}}{{#each authMethods}}[{{{name}}}](../../../README.md#{{{name}}}){{#unless @last}}, {{/unless}}{{/each}} {{#unless authMethods}}No authorization required{{/unless}}{{#each authMethods}}[{{{name}}}](../../../README.md#{{{name}}}){{#unless @last}}, {{/unless}}{{/each}}

View File

@ -1,10 +1,10 @@
#### {{baseName}} # {{baseName}}
{{#if complexType}} {{#if complexType}}
Type | Description | Notes Type | Description | Notes
------------- | ------------- | ------------- ------------- | ------------- | -------------
[**{{dataType}}**]({{complexType}}.md) | {{#if description}}{{description}}{{/if}} | {{#if isReadOnly}}[readonly] {{/if}} [**{{dataType}}**]({{complexTypePrefix}}{{complexType}}.md) | {{#if description}}{{description}}{{/if}} | {{#if isReadOnly}}[readonly] {{/if}}
{{else}} {{else}}
{{> schema_doc }} {{> schema_doc complexTypePrefix="{{complexTypePrefix}}" }}
{{/if}} {{/if}}

View File

@ -19,9 +19,9 @@ schemas.Int32Base,
{{#eq getFormat "int64"}} {{#eq getFormat "int64"}}
schemas.Int64Base, schemas.Int64Base,
{{/eq}} {{/eq}}
{{#eq getFormat "double"}} {{#eq getFormat "float"}}
schemas.Float32Base, schemas.Float32Base,
{{/eq}} {{/eq}}
{{#eq getFormat "float"}} {{#eq getFormat "double"}}
schemas.Float64Base, schemas.Float64Base,
{{/eq}} {{/eq}}

View File

@ -0,0 +1 @@
{{#unless isArray}}{{#unless complexType}}{{#with allowableValues}}must be one of [{{#each enumVars}}{{{value}}}, {{/each}}] {{/with}}{{#if defaultValue}}{{#unless hasRequired}}if omitted the server will use the default value of {{{defaultValue}}}{{/unless}}{{/if}}{{#eq getFormat "uuid"}}value must be a uuid{{/eq}}{{#eq getFormat "date"}}value must conform to RFC-3339 full-date YYYY-MM-DD{{/eq}}{{#eq getFormat "date-time"}}value must conform to RFC-3339 date-time{{/eq}}{{#eq getFormat "number"}}value must be numeric and storable in decimal.Decimal{{/eq}}{{#eq getFormat "int32"}}value must be a 32 bit integer{{/eq}}{{#eq getFormat "int64"}}value must be a 64 bit integer{{/eq}}{{#eq getFormat "double"}}value must be a 64 bit float{{/eq}}{{#eq getFormat "float"}}value must be a 32 bit float{{/eq}}{{/unless}}{{/unless}}

View File

@ -0,0 +1 @@
{{#if isAnyType}}frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO{{/if}}{{#if isArray}}tuple, {{/if}}{{#if isMap}}frozendict.frozendict, {{/if}}{{#if isNull}}NoneClass, {{/if}}{{#if isString }}{{#neq format "binary"}}str, {{/neq}}{{#eq format "binary"}}bytes, FileIO, {{/eq}}{{/if}}{{#or isInteger isNumber}}decimal.Decimal, {{/or}}{{#if isBoolean}}BoolClass, {{/if}}

View File

@ -1 +1 @@
{{#if isAnyType}}dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, {{/if}}{{#if isArray}}tuple, {{/if}}{{#if isMap}}dict, frozendict.frozendict, {{/if}}{{#if isNull}}None, {{/if}}{{#if isString }}{{#neq format "binary"}}str, {{/neq}}{{#eq format "date"}}date, {{/eq}}{{#eq format "date-time"}}datetime, {{/eq}}{{#eq format "uuid"}}uuid.UUID, {{/eq}}{{#eq format "binary"}}bytes, io.FileIO, io.BufferedReader, {{/eq}}{{/if}}{{#if isInteger}}decimal.Decimal, int, {{/if}}{{#if isNumber}}decimal.Decimal, int, float, {{/if}}{{#if isBoolean}}bool, {{/if}} {{#if isAnyType}}dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, {{/if}}{{#if isArray}}list, tuple, {{/if}}{{#if isMap}}dict, frozendict.frozendict, {{/if}}{{#if isNull}}None, {{/if}}{{#if isString }}{{#neq format "binary"}}str, {{/neq}}{{#eq format "date"}}date, {{/eq}}{{#eq format "date-time"}}datetime, {{/eq}}{{#eq format "uuid"}}uuid.UUID, {{/eq}}{{#eq format "binary"}}bytes, io.FileIO, io.BufferedReader, {{/eq}}{{/if}}{{#if isInteger}}decimal.Decimal, int, {{/if}}{{#if isNumber}}decimal.Decimal, int, float, {{/if}}{{#if isBoolean}}bool, {{/if}}

View File

@ -3,43 +3,134 @@
{{&description}} {{&description}}
{{/if}} {{/if}}
{{#or vars additionalProperties}} ## Model Type Info
#### Properties Input Type | Accessed Type | Description | Notes
Name | Type | Description | Notes
------------ | ------------- | ------------- | ------------- ------------ | ------------- | ------------- | -------------
{{> model_templates/schema_python_types }} | {{> model_templates/schema_accessed_types }} | {{#if description}}{{description}}{{/if}} | {{> model_templates/notes_msg }}
{{#or vars additionalProperties}}
### Dictionary Keys
Key | Input Type | Accessed Type | Description | Notes
------------ | ------------- | ------------- | ------------- | -------------
{{#each getRequiredVarsMap}} {{#each getRequiredVarsMap}}
**{{@key}}** | {{#with this}}{{#unless complexType}}**{{dataType}}**{{/unless}}{{#if complexType}}[**{{dataType}}**]({{complexType}}.md){{/if}} | {{#if description}}{{description}}{{/if}} | {{#if isReadOnly}}[readonly] {{/if}}{{#if defaultValue}} if omitted the server will use the default value of {{{defaultValue}}}{{/if}}{{/with}} **{{#with this}}{{#unless complexType}}{{#or isArray isMap composedSchemas}}[{{/or}}{{/unless}}{{/with}}{{{@key}}}{{#with this}}{{#unless complexType}}{{#or isArray isMap composedSchemas}}](#{{baseName}}){{/or}}{{/unless}}{{/with}}** | {{#with this}}{{#unless complexType}}{{> model_templates/schema_python_types }}{{/unless}}{{#if complexType}}[**{{dataType}}**]({{complexTypePrefix}}{{complexType}}.md){{/if}} | {{#unless complexType}}{{> model_templates/schema_accessed_types }}{{/unless}}{{#if complexType}}[**{{dataType}}**]({{complexTypePrefix}}{{complexType}}.md){{/if}} | {{#if description}}{{description}}{{/if}} | {{> model_templates/notes_msg }}{{/with}}
{{/each}} {{/each}}
{{#each vars}} {{#each vars}}
{{#unless required}} {{#unless required}}
**{{baseName}}** | {{#unless complexType}}**{{dataType}}**{{/unless}}{{#if complexType}}[**{{dataType}}**]({{complexType}}.md){{/if}} | {{#if description}}{{description}}{{/if}} | {{#unless required}}[optional] {{/unless}}{{#if isReadOnly}}[readonly] {{/if}}{{#if defaultValue}} if omitted the server will use the default value of {{{defaultValue}}}{{/if}} **{{#unless complexType}}{{#or isArray isMap composedSchemas}}[{{/or}}{{/unless}}{{baseName}}{{#unless complexType}}{{#or isArray isMap composedSchemas}}](#{{baseName}}){{/or}}{{/unless}}** | {{#unless complexType}}{{> model_templates/schema_python_types }}{{/unless}}{{#if complexType}}[**{{dataType}}**]({{complexTypePrefix}}{{complexType}}.md){{/if}} | {{#unless complexType}}{{> model_templates/schema_accessed_types }}{{/unless}}{{#if complexType}}[**{{dataType}}**]({{complexTypePrefix}}{{complexType}}.md){{/if}} | {{#if description}}{{description}}{{/if}} | [optional] {{> model_templates/notes_msg }}
{{/unless}} {{/unless}}
{{/each}} {{/each}}
{{#with additionalProperties}} {{#with additionalProperties}}
{{#unless getIsBooleanSchemaFalse}} {{#unless getIsBooleanSchemaFalse}}
{{#if getIsBooleanSchemaTrue}} {{#if getIsBooleanSchemaTrue}}
**any string name** | {{> model_templates/schema_python_types }} | any string name can be used but the value must be the correct type | [optional] **any_string_name** | {{> model_templates/schema_python_types }} | {{> model_templates/schema_accessed_types }} | any string name can be used but the value must be the correct type{{#if description}} {{description}}{{/if}} | [optional]
{{else}} {{else}}
**any string name** | {{#unless complexType}}**{{dataType}}**{{/unless}}{{#if complexType}}[**{{dataType}}**]({{complexType}}.md){{/if}} | {{#if description}}{{description}}{{/if}}any string name can be used but the value must be the correct type | {{#unless required}}[optional] {{/unless}}{{#if isReadOnly}}[readonly] {{/if}}{{#if defaultValue}} if omitted the server will use the default value of {{{defaultValue}}}{{/if}} **{{#unless complexType}}{{#or isArray isMap composedSchemas}}[{{/or}}{{/unless}}any_string_name{{#unless complexType}}{{#or isArray isMap composedSchemas}}](#any_string_name){{/or}}{{/unless}}** | {{#unless complexType}}{{> model_templates/schema_python_types }}{{/unless}}{{#if complexType}}[**{{dataType}}**]({{complexTypePrefix}}{{complexType}}.md){{/if}} | {{#unless complexType}}{{> model_templates/schema_accessed_types }}{{/unless}}{{#if complexType}}[**{{dataType}}**]({{complexTypePrefix}}{{complexType}}.md){{/if}} | any string name can be used but the value must be the correct type{{#if description}} {{description}}{{/if}} | [optional] {{> model_templates/notes_msg }}
{{/if}} {{/if}}
{{/unless}} {{/unless}}
{{else}} {{else}}
**any string name** | dict, frozendict, str, date, datetime, int, float, bool, Decimal, None, list, tuple, bytes | any string name can be used but the value must be the correct type | [optional] **any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional]
{{/with}} {{/with}}
{{else}}
Type | Description | Notes
------------- | ------------- | -------------
{{#if isAnyType}}
typing.Union[{{> model_templates/schema_python_types }}] | |
{{else}}
{{#if hasMultipleTypes}}
typing.Union[{{> model_templates/schema_python_types }}] | | {{#with allowableValues}}{{#if defaultValue}}, {{/if}} must be one of [{{#each enumVars}}{{{value}}}, {{/each}}]{{/with}}
{{else}}
{{#if isArray}}
{{#unless arrayModelType}}**{{dataType}}**{{/unless}}{{#if arrayModelType}}[**{{dataType}}**]({{arrayModelType}}.md){{/if}} | {{#if description}}{{description}}{{/if}} | {{#if defaultValue}}{{#if hasRequired}} if omitted the server will use the default value of {{/if}}{{#unless hasRequired}}defaults to {{/unless}}{{{defaultValue}}}{{/if}}
{{else}}
{{#unless arrayModelType}}**{{dataType}}**{{/unless}} | {{#if description}}{{description}}{{/if}} | {{#if defaultValue}}{{#if hasRequired}} if omitted the server will use the default value of {{/if}}{{#unless hasRequired}}defaults to {{/unless}}{{{defaultValue}}}{{/if}}{{#with allowableValues}}{{#if defaultValue}}, {{/if}} must be one of [{{#each enumVars}}{{{value}}}, {{/each}}]{{/with}}
{{/if}}
{{/if}}
{{/if}}
{{/or}} {{/or}}
{{#each vars}}
{{#unless complexType}}
{{#or isArray isMap composedSchemas}}
# {{baseName}}
{{> schema_doc }}
{{/or}}
{{/unless}}
{{/each}}
{{#with additionalProperties}}
{{#unless getIsBooleanSchemaFalse}}
{{#unless getIsBooleanSchemaTrue}}
{{#unless complexType}}
{{#or isArray isMap composedSchemas}}
# any_string_name
{{> schema_doc }}
{{/or}}
{{/unless}}
{{/unless}}
{{/unless}}
{{/with}}
{{#if items}}
### Tuple Items
Class Name | Input Type | Accessed Type | Description | Notes
------------- | ------------- | ------------- | ------------- | -------------
{{#with items}}
{{#unless complexType}}{{#or isArray isMap composedSchemas}}[{{/or}}{{baseName}}{{#or isArray isMap composedSchemas}}](#{{baseName}}){{/or}}{{/unless}}{{#if complexType}}[**{{dataType}}**]({{complexTypePrefix}}{{complexType}}.md){{/if}} | {{#unless complexType}}{{> model_templates/schema_python_types }}{{/unless}}{{#if complexType}}[**{{dataType}}**]({{complexTypePrefix}}{{complexType}}.md){{/if}} | {{#unless complexType}}{{> model_templates/schema_accessed_types }}{{/unless}}{{#if complexType}}[**{{dataType}}**]({{complexTypePrefix}}{{complexType}}.md){{/if}} | {{#if description}}{{description}}{{/if}} | {{> model_templates/notes_msg }}
{{#unless complexType}}
{{#or isArray isMap composedSchemas}}
# {{baseName}}
{{> schema_doc }}
{{/or}}
{{/unless}}
{{/with}}
{{/if}}
{{#if composedSchemas}}
{{#with composedSchemas}}
### Composed Schemas (allOf/anyOf/oneOf/not)
{{#if allOf}}
#### allOf
Class Name | Input Type | Accessed Type | Description | Notes
------------- | ------------- | ------------- | ------------- | -------------
{{#each allOf}}
{{#if complexType}}[{{dataType}}]({{complexTypePrefix}}{{complexType}}.md){{else}}[{{#if nameInSnakeCase}}{{name}}{{else}}{{baseName}}{{/if}}](#{{#if nameInSnakeCase}}{{name}}{{else}}{{baseName}}{{/if}}){{/if}} | {{#unless complexType}}{{> model_templates/schema_python_types }}{{/unless}}{{#if complexType}}[**{{dataType}}**]({{complexTypePrefix}}{{complexType}}.md){{/if}} | {{#unless complexType}}{{> model_templates/schema_accessed_types }}{{/unless}}{{#if complexType}}[**{{dataType}}**]({{complexTypePrefix}}{{complexType}}.md){{/if}} | {{#if description}}{{description}}{{/if}} | {{> model_templates/notes_msg }}
{{/each}}
{{#each allOf}}
{{#unless complexType}}
# {{#if nameInSnakeCase}}{{name}}{{else}}{{baseName}}{{/if}}
{{> schema_doc }}
{{/unless}}
{{/each}}
{{/if}}
{{#if anyOf}}
#### anyOf
Class Name | Input Type | Accessed Type | Description | Notes
------------- | ------------- | ------------- | ------------- | -------------
{{#each anyOf}}
{{#if complexType}}[{{dataType}}]({{complexTypePrefix}}{{complexType}}.md){{else}}[{{#if nameInSnakeCase}}{{name}}{{else}}{{baseName}}{{/if}}](#{{#if nameInSnakeCase}}{{name}}{{else}}{{baseName}}{{/if}}){{/if}} | {{#unless complexType}}{{> model_templates/schema_python_types }}{{/unless}}{{#if complexType}}[**{{dataType}}**]({{complexTypePrefix}}{{complexType}}.md){{/if}} | {{#unless complexType}}{{> model_templates/schema_accessed_types }}{{/unless}}{{#if complexType}}[**{{dataType}}**]({{complexTypePrefix}}{{complexType}}.md){{/if}} | {{#if description}}{{description}}{{/if}} | {{> model_templates/notes_msg }}
{{/each}}
{{#each anyOf}}
{{#unless complexType}}
# {{#if nameInSnakeCase}}{{name}}{{else}}{{baseName}}{{/if}}
{{> schema_doc }}
{{/unless}}
{{/each}}
{{/if}}
{{#if oneOf}}
#### oneOf
Class Name | Input Type | Accessed Type | Description | Notes
------------- | ------------- | ------------- | ------------- | -------------
{{#each oneOf}}
{{#if complexType}}[{{dataType}}]({{complexTypePrefix}}{{complexType}}.md){{else}}[{{#if nameInSnakeCase}}{{name}}{{else}}{{baseName}}{{/if}}](#{{#if nameInSnakeCase}}{{name}}{{else}}{{baseName}}{{/if}}){{/if}} | {{#unless complexType}}{{> model_templates/schema_python_types }}{{/unless}}{{#if complexType}}[**{{dataType}}**]({{complexTypePrefix}}{{complexType}}.md){{/if}} | {{#unless complexType}}{{> model_templates/schema_accessed_types }}{{/unless}}{{#if complexType}}[**{{dataType}}**]({{complexTypePrefix}}{{complexType}}.md){{/if}} | {{#if description}}{{description}}{{/if}} | {{> model_templates/notes_msg }}
{{/each}}
{{#each oneOf}}
{{#unless complexType}}
# {{#if nameInSnakeCase}}{{name}}{{else}}{{baseName}}{{/if}}
{{> schema_doc }}
{{/unless}}
{{/each}}
{{/if}}
{{#if not}}
#### not
Class Name | Input Type | Accessed Type | Description | Notes
------------- | ------------- | ------------- | ------------- | -------------
{{#with not}}
{{#if complexType}}[{{dataType}}]({{complexTypePrefix}}{{complexType}}.md){{else}}[{{#if nameInSnakeCase}}{{name}}{{else}}{{baseName}}{{/if}}](#{{#if nameInSnakeCase}}{{name}}{{else}}{{baseName}}{{/if}}){{/if}} | {{#unless complexType}}{{> model_templates/schema_python_types }}{{/unless}}{{#if complexType}}[**{{dataType}}**]({{complexTypePrefix}}{{complexType}}.md){{/if}} | {{#unless complexType}}{{> model_templates/schema_accessed_types }}{{/unless}}{{#if complexType}}[**{{dataType}}**]({{complexTypePrefix}}{{complexType}}.md){{/if}} | {{#if description}}{{description}}{{/if}} | {{> model_templates/notes_msg }}
{{#unless complexType}}
# {{#if nameInSnakeCase}}{{name}}{{else}}{{baseName}}{{/if}}
{{> schema_doc }}
{{/unless}}
{{/with}}
{{/if}}
{{/with}}
{{/if}}

View File

@ -2897,6 +2897,9 @@ components:
- op - op
- path - path
properties: properties:
from:
description: A JSON Pointer path.
type: string
path: path:
description: A JSON Pointer path. description: A JSON Pointer path.
type: string type: string

View File

@ -62,10 +62,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil
### body ### body
#### SchemaForRequestBodyApplicationJson # SchemaForRequestBodyApplicationJson
Type | Description | Notes Type | Description | Notes
------------- | ------------- | ------------- ------------- | ------------- | -------------
[**AdditionalpropertiesAllowsASchemaWhichShouldValidate**](AdditionalpropertiesAllowsASchemaWhichShouldValidate.md) | | [**AdditionalpropertiesAllowsASchemaWhichShouldValidate**](../../models/AdditionalpropertiesAllowsASchemaWhichShouldValidate.md) | |
### Return Types, Responses ### Return Types, Responses
@ -73,18 +73,15 @@ Type | Description | Notes
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_additionalproperties_allows_a_schema_which_should_validate_request_body.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_additionalproperties_allows_a_schema_which_should_validate_request_body.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | Unset | body was not defined | body | Unset | body was not defined |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
void (empty response body)
### Authorization ### Authorization
No authorization required No authorization required
@ -130,24 +127,21 @@ This endpoint does not need any parameter.
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_additionalproperties_allows_a_schema_which_should_validate_response_body_for_content_types.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_additionalproperties_allows_a_schema_which_should_validate_response_body_for_content_types.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
#### SchemaFor200ResponseBodyApplicationJson # SchemaFor200ResponseBodyApplicationJson
Type | Description | Notes Type | Description | Notes
------------- | ------------- | ------------- ------------- | ------------- | -------------
[**AdditionalpropertiesAllowsASchemaWhichShouldValidate**](AdditionalpropertiesAllowsASchemaWhichShouldValidate.md) | | [**AdditionalpropertiesAllowsASchemaWhichShouldValidate**](../../models/AdditionalpropertiesAllowsASchemaWhichShouldValidate.md) | |
[**AdditionalpropertiesAllowsASchemaWhichShouldValidate**](AdditionalpropertiesAllowsASchemaWhichShouldValidate.md)
### Authorization ### Authorization
No authorization required No authorization required
@ -199,10 +193,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil
### body ### body
#### SchemaForRequestBodyApplicationJson # SchemaForRequestBodyApplicationJson
Type | Description | Notes Type | Description | Notes
------------- | ------------- | ------------- ------------- | ------------- | -------------
[**AdditionalpropertiesAreAllowedByDefault**](AdditionalpropertiesAreAllowedByDefault.md) | | [**AdditionalpropertiesAreAllowedByDefault**](../../models/AdditionalpropertiesAreAllowedByDefault.md) | |
### Return Types, Responses ### Return Types, Responses
@ -210,18 +204,15 @@ Type | Description | Notes
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_additionalproperties_are_allowed_by_default_request_body.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_additionalproperties_are_allowed_by_default_request_body.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | Unset | body was not defined | body | Unset | body was not defined |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
void (empty response body)
### Authorization ### Authorization
No authorization required No authorization required
@ -267,24 +258,21 @@ This endpoint does not need any parameter.
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_additionalproperties_are_allowed_by_default_response_body_for_content_types.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_additionalproperties_are_allowed_by_default_response_body_for_content_types.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
#### SchemaFor200ResponseBodyApplicationJson # SchemaFor200ResponseBodyApplicationJson
Type | Description | Notes Type | Description | Notes
------------- | ------------- | ------------- ------------- | ------------- | -------------
[**AdditionalpropertiesAreAllowedByDefault**](AdditionalpropertiesAreAllowedByDefault.md) | | [**AdditionalpropertiesAreAllowedByDefault**](../../models/AdditionalpropertiesAreAllowedByDefault.md) | |
[**AdditionalpropertiesAreAllowedByDefault**](AdditionalpropertiesAreAllowedByDefault.md)
### Authorization ### Authorization
No authorization required No authorization required
@ -338,10 +326,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil
### body ### body
#### SchemaForRequestBodyApplicationJson # SchemaForRequestBodyApplicationJson
Type | Description | Notes Type | Description | Notes
------------- | ------------- | ------------- ------------- | ------------- | -------------
[**AdditionalpropertiesCanExistByItself**](AdditionalpropertiesCanExistByItself.md) | | [**AdditionalpropertiesCanExistByItself**](../../models/AdditionalpropertiesCanExistByItself.md) | |
### Return Types, Responses ### Return Types, Responses
@ -349,18 +337,15 @@ Type | Description | Notes
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_additionalproperties_can_exist_by_itself_request_body.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_additionalproperties_can_exist_by_itself_request_body.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | Unset | body was not defined | body | Unset | body was not defined |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
void (empty response body)
### Authorization ### Authorization
No authorization required No authorization required
@ -406,24 +391,21 @@ This endpoint does not need any parameter.
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_additionalproperties_can_exist_by_itself_response_body_for_content_types.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_additionalproperties_can_exist_by_itself_response_body_for_content_types.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
#### SchemaFor200ResponseBodyApplicationJson # SchemaFor200ResponseBodyApplicationJson
Type | Description | Notes Type | Description | Notes
------------- | ------------- | ------------- ------------- | ------------- | -------------
[**AdditionalpropertiesCanExistByItself**](AdditionalpropertiesCanExistByItself.md) | | [**AdditionalpropertiesCanExistByItself**](../../models/AdditionalpropertiesCanExistByItself.md) | |
[**AdditionalpropertiesCanExistByItself**](AdditionalpropertiesCanExistByItself.md)
### Authorization ### Authorization
No authorization required No authorization required
@ -475,10 +457,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil
### body ### body
#### SchemaForRequestBodyApplicationJson # SchemaForRequestBodyApplicationJson
Type | Description | Notes Type | Description | Notes
------------- | ------------- | ------------- ------------- | ------------- | -------------
[**AdditionalpropertiesShouldNotLookInApplicators**](AdditionalpropertiesShouldNotLookInApplicators.md) | | [**AdditionalpropertiesShouldNotLookInApplicators**](../../models/AdditionalpropertiesShouldNotLookInApplicators.md) | |
### Return Types, Responses ### Return Types, Responses
@ -486,18 +468,15 @@ Type | Description | Notes
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_additionalproperties_should_not_look_in_applicators_request_body.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_additionalproperties_should_not_look_in_applicators_request_body.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | Unset | body was not defined | body | Unset | body was not defined |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
void (empty response body)
### Authorization ### Authorization
No authorization required No authorization required
@ -543,24 +522,21 @@ This endpoint does not need any parameter.
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_additionalproperties_should_not_look_in_applicators_response_body_for_content_types.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_additionalproperties_should_not_look_in_applicators_response_body_for_content_types.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
#### SchemaFor200ResponseBodyApplicationJson # SchemaFor200ResponseBodyApplicationJson
Type | Description | Notes Type | Description | Notes
------------- | ------------- | ------------- ------------- | ------------- | -------------
[**AdditionalpropertiesShouldNotLookInApplicators**](AdditionalpropertiesShouldNotLookInApplicators.md) | | [**AdditionalpropertiesShouldNotLookInApplicators**](../../models/AdditionalpropertiesShouldNotLookInApplicators.md) | |
[**AdditionalpropertiesShouldNotLookInApplicators**](AdditionalpropertiesShouldNotLookInApplicators.md)
### Authorization ### Authorization
No authorization required No authorization required

View File

@ -69,10 +69,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil
### body ### body
#### SchemaForRequestBodyApplicationJson # SchemaForRequestBodyApplicationJson
Type | Description | Notes Type | Description | Notes
------------- | ------------- | ------------- ------------- | ------------- | -------------
[**AllofCombinedWithAnyofOneof**](AllofCombinedWithAnyofOneof.md) | | [**AllofCombinedWithAnyofOneof**](../../models/AllofCombinedWithAnyofOneof.md) | |
### Return Types, Responses ### Return Types, Responses
@ -80,18 +80,15 @@ Type | Description | Notes
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_allof_combined_with_anyof_oneof_request_body.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_allof_combined_with_anyof_oneof_request_body.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | Unset | body was not defined | body | Unset | body was not defined |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
void (empty response body)
### Authorization ### Authorization
No authorization required No authorization required
@ -137,24 +134,21 @@ This endpoint does not need any parameter.
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_allof_combined_with_anyof_oneof_response_body_for_content_types.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_allof_combined_with_anyof_oneof_response_body_for_content_types.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
#### SchemaFor200ResponseBodyApplicationJson # SchemaFor200ResponseBodyApplicationJson
Type | Description | Notes Type | Description | Notes
------------- | ------------- | ------------- ------------- | ------------- | -------------
[**AllofCombinedWithAnyofOneof**](AllofCombinedWithAnyofOneof.md) | | [**AllofCombinedWithAnyofOneof**](../../models/AllofCombinedWithAnyofOneof.md) | |
[**AllofCombinedWithAnyofOneof**](AllofCombinedWithAnyofOneof.md)
### Authorization ### Authorization
No authorization required No authorization required
@ -206,10 +200,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil
### body ### body
#### SchemaForRequestBodyApplicationJson # SchemaForRequestBodyApplicationJson
Type | Description | Notes Type | Description | Notes
------------- | ------------- | ------------- ------------- | ------------- | -------------
[**Allof**](Allof.md) | | [**Allof**](../../models/Allof.md) | |
### Return Types, Responses ### Return Types, Responses
@ -217,18 +211,15 @@ Type | Description | Notes
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_allof_request_body.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_allof_request_body.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | Unset | body was not defined | body | Unset | body was not defined |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
void (empty response body)
### Authorization ### Authorization
No authorization required No authorization required
@ -274,24 +265,21 @@ This endpoint does not need any parameter.
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_allof_response_body_for_content_types.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_allof_response_body_for_content_types.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
#### SchemaFor200ResponseBodyApplicationJson # SchemaFor200ResponseBodyApplicationJson
Type | Description | Notes Type | Description | Notes
------------- | ------------- | ------------- ------------- | ------------- | -------------
[**Allof**](Allof.md) | | [**Allof**](../../models/Allof.md) | |
[**Allof**](Allof.md)
### Authorization ### Authorization
No authorization required No authorization required
@ -343,10 +331,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil
### body ### body
#### SchemaForRequestBodyApplicationJson # SchemaForRequestBodyApplicationJson
Type | Description | Notes Type | Description | Notes
------------- | ------------- | ------------- ------------- | ------------- | -------------
[**AllofSimpleTypes**](AllofSimpleTypes.md) | | [**AllofSimpleTypes**](../../models/AllofSimpleTypes.md) | |
### Return Types, Responses ### Return Types, Responses
@ -354,18 +342,15 @@ Type | Description | Notes
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_allof_simple_types_request_body.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_allof_simple_types_request_body.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | Unset | body was not defined | body | Unset | body was not defined |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
void (empty response body)
### Authorization ### Authorization
No authorization required No authorization required
@ -411,24 +396,21 @@ This endpoint does not need any parameter.
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_allof_simple_types_response_body_for_content_types.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_allof_simple_types_response_body_for_content_types.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
#### SchemaFor200ResponseBodyApplicationJson # SchemaFor200ResponseBodyApplicationJson
Type | Description | Notes Type | Description | Notes
------------- | ------------- | ------------- ------------- | ------------- | -------------
[**AllofSimpleTypes**](AllofSimpleTypes.md) | | [**AllofSimpleTypes**](../../models/AllofSimpleTypes.md) | |
[**AllofSimpleTypes**](AllofSimpleTypes.md)
### Authorization ### Authorization
No authorization required No authorization required
@ -480,10 +462,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil
### body ### body
#### SchemaForRequestBodyApplicationJson # SchemaForRequestBodyApplicationJson
Type | Description | Notes Type | Description | Notes
------------- | ------------- | ------------- ------------- | ------------- | -------------
[**AllofWithBaseSchema**](AllofWithBaseSchema.md) | | [**AllofWithBaseSchema**](../../models/AllofWithBaseSchema.md) | |
### Return Types, Responses ### Return Types, Responses
@ -491,18 +473,15 @@ Type | Description | Notes
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_allof_with_base_schema_request_body.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_allof_with_base_schema_request_body.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | Unset | body was not defined | body | Unset | body was not defined |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
void (empty response body)
### Authorization ### Authorization
No authorization required No authorization required
@ -548,24 +527,21 @@ This endpoint does not need any parameter.
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_allof_with_base_schema_response_body_for_content_types.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_allof_with_base_schema_response_body_for_content_types.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
#### SchemaFor200ResponseBodyApplicationJson # SchemaFor200ResponseBodyApplicationJson
Type | Description | Notes Type | Description | Notes
------------- | ------------- | ------------- ------------- | ------------- | -------------
[**AllofWithBaseSchema**](AllofWithBaseSchema.md) | | [**AllofWithBaseSchema**](../../models/AllofWithBaseSchema.md) | |
[**AllofWithBaseSchema**](AllofWithBaseSchema.md)
### Authorization ### Authorization
No authorization required No authorization required
@ -617,10 +593,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil
### body ### body
#### SchemaForRequestBodyApplicationJson # SchemaForRequestBodyApplicationJson
Type | Description | Notes Type | Description | Notes
------------- | ------------- | ------------- ------------- | ------------- | -------------
[**AllofWithOneEmptySchema**](AllofWithOneEmptySchema.md) | | [**AllofWithOneEmptySchema**](../../models/AllofWithOneEmptySchema.md) | |
### Return Types, Responses ### Return Types, Responses
@ -628,18 +604,15 @@ Type | Description | Notes
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_allof_with_one_empty_schema_request_body.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_allof_with_one_empty_schema_request_body.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | Unset | body was not defined | body | Unset | body was not defined |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
void (empty response body)
### Authorization ### Authorization
No authorization required No authorization required
@ -685,24 +658,21 @@ This endpoint does not need any parameter.
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_allof_with_one_empty_schema_response_body_for_content_types.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_allof_with_one_empty_schema_response_body_for_content_types.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
#### SchemaFor200ResponseBodyApplicationJson # SchemaFor200ResponseBodyApplicationJson
Type | Description | Notes Type | Description | Notes
------------- | ------------- | ------------- ------------- | ------------- | -------------
[**AllofWithOneEmptySchema**](AllofWithOneEmptySchema.md) | | [**AllofWithOneEmptySchema**](../../models/AllofWithOneEmptySchema.md) | |
[**AllofWithOneEmptySchema**](AllofWithOneEmptySchema.md)
### Authorization ### Authorization
No authorization required No authorization required
@ -754,10 +724,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil
### body ### body
#### SchemaForRequestBodyApplicationJson # SchemaForRequestBodyApplicationJson
Type | Description | Notes Type | Description | Notes
------------- | ------------- | ------------- ------------- | ------------- | -------------
[**AllofWithTheFirstEmptySchema**](AllofWithTheFirstEmptySchema.md) | | [**AllofWithTheFirstEmptySchema**](../../models/AllofWithTheFirstEmptySchema.md) | |
### Return Types, Responses ### Return Types, Responses
@ -765,18 +735,15 @@ Type | Description | Notes
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_allof_with_the_first_empty_schema_request_body.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_allof_with_the_first_empty_schema_request_body.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | Unset | body was not defined | body | Unset | body was not defined |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
void (empty response body)
### Authorization ### Authorization
No authorization required No authorization required
@ -822,24 +789,21 @@ This endpoint does not need any parameter.
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_allof_with_the_first_empty_schema_response_body_for_content_types.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_allof_with_the_first_empty_schema_response_body_for_content_types.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
#### SchemaFor200ResponseBodyApplicationJson # SchemaFor200ResponseBodyApplicationJson
Type | Description | Notes Type | Description | Notes
------------- | ------------- | ------------- ------------- | ------------- | -------------
[**AllofWithTheFirstEmptySchema**](AllofWithTheFirstEmptySchema.md) | | [**AllofWithTheFirstEmptySchema**](../../models/AllofWithTheFirstEmptySchema.md) | |
[**AllofWithTheFirstEmptySchema**](AllofWithTheFirstEmptySchema.md)
### Authorization ### Authorization
No authorization required No authorization required
@ -891,10 +855,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil
### body ### body
#### SchemaForRequestBodyApplicationJson # SchemaForRequestBodyApplicationJson
Type | Description | Notes Type | Description | Notes
------------- | ------------- | ------------- ------------- | ------------- | -------------
[**AllofWithTheLastEmptySchema**](AllofWithTheLastEmptySchema.md) | | [**AllofWithTheLastEmptySchema**](../../models/AllofWithTheLastEmptySchema.md) | |
### Return Types, Responses ### Return Types, Responses
@ -902,18 +866,15 @@ Type | Description | Notes
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_allof_with_the_last_empty_schema_request_body.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_allof_with_the_last_empty_schema_request_body.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | Unset | body was not defined | body | Unset | body was not defined |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
void (empty response body)
### Authorization ### Authorization
No authorization required No authorization required
@ -959,24 +920,21 @@ This endpoint does not need any parameter.
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_allof_with_the_last_empty_schema_response_body_for_content_types.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_allof_with_the_last_empty_schema_response_body_for_content_types.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
#### SchemaFor200ResponseBodyApplicationJson # SchemaFor200ResponseBodyApplicationJson
Type | Description | Notes Type | Description | Notes
------------- | ------------- | ------------- ------------- | ------------- | -------------
[**AllofWithTheLastEmptySchema**](AllofWithTheLastEmptySchema.md) | | [**AllofWithTheLastEmptySchema**](../../models/AllofWithTheLastEmptySchema.md) | |
[**AllofWithTheLastEmptySchema**](AllofWithTheLastEmptySchema.md)
### Authorization ### Authorization
No authorization required No authorization required
@ -1028,10 +986,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil
### body ### body
#### SchemaForRequestBodyApplicationJson # SchemaForRequestBodyApplicationJson
Type | Description | Notes Type | Description | Notes
------------- | ------------- | ------------- ------------- | ------------- | -------------
[**AllofWithTwoEmptySchemas**](AllofWithTwoEmptySchemas.md) | | [**AllofWithTwoEmptySchemas**](../../models/AllofWithTwoEmptySchemas.md) | |
### Return Types, Responses ### Return Types, Responses
@ -1039,18 +997,15 @@ Type | Description | Notes
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_allof_with_two_empty_schemas_request_body.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_allof_with_two_empty_schemas_request_body.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | Unset | body was not defined | body | Unset | body was not defined |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
void (empty response body)
### Authorization ### Authorization
No authorization required No authorization required
@ -1096,24 +1051,21 @@ This endpoint does not need any parameter.
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_allof_with_two_empty_schemas_response_body_for_content_types.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_allof_with_two_empty_schemas_response_body_for_content_types.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
#### SchemaFor200ResponseBodyApplicationJson # SchemaFor200ResponseBodyApplicationJson
Type | Description | Notes Type | Description | Notes
------------- | ------------- | ------------- ------------- | ------------- | -------------
[**AllofWithTwoEmptySchemas**](AllofWithTwoEmptySchemas.md) | | [**AllofWithTwoEmptySchemas**](../../models/AllofWithTwoEmptySchemas.md) | |
[**AllofWithTwoEmptySchemas**](AllofWithTwoEmptySchemas.md)
### Authorization ### Authorization
No authorization required No authorization required
@ -1165,10 +1117,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil
### body ### body
#### SchemaForRequestBodyApplicationJson # SchemaForRequestBodyApplicationJson
Type | Description | Notes Type | Description | Notes
------------- | ------------- | ------------- ------------- | ------------- | -------------
[**NestedAllofToCheckValidationSemantics**](NestedAllofToCheckValidationSemantics.md) | | [**NestedAllofToCheckValidationSemantics**](../../models/NestedAllofToCheckValidationSemantics.md) | |
### Return Types, Responses ### Return Types, Responses
@ -1176,18 +1128,15 @@ Type | Description | Notes
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_nested_allof_to_check_validation_semantics_request_body.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_nested_allof_to_check_validation_semantics_request_body.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | Unset | body was not defined | body | Unset | body was not defined |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
void (empty response body)
### Authorization ### Authorization
No authorization required No authorization required
@ -1233,24 +1182,21 @@ This endpoint does not need any parameter.
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_nested_allof_to_check_validation_semantics_response_body_for_content_types.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_nested_allof_to_check_validation_semantics_response_body_for_content_types.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
#### SchemaFor200ResponseBodyApplicationJson # SchemaFor200ResponseBodyApplicationJson
Type | Description | Notes Type | Description | Notes
------------- | ------------- | ------------- ------------- | ------------- | -------------
[**NestedAllofToCheckValidationSemantics**](NestedAllofToCheckValidationSemantics.md) | | [**NestedAllofToCheckValidationSemantics**](../../models/NestedAllofToCheckValidationSemantics.md) | |
[**NestedAllofToCheckValidationSemantics**](NestedAllofToCheckValidationSemantics.md)
### Authorization ### Authorization
No authorization required No authorization required

View File

@ -61,10 +61,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil
### body ### body
#### SchemaForRequestBodyApplicationJson # SchemaForRequestBodyApplicationJson
Type | Description | Notes Type | Description | Notes
------------- | ------------- | ------------- ------------- | ------------- | -------------
[**AnyofComplexTypes**](AnyofComplexTypes.md) | | [**AnyofComplexTypes**](../../models/AnyofComplexTypes.md) | |
### Return Types, Responses ### Return Types, Responses
@ -72,18 +72,15 @@ Type | Description | Notes
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_anyof_complex_types_request_body.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_anyof_complex_types_request_body.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | Unset | body was not defined | body | Unset | body was not defined |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
void (empty response body)
### Authorization ### Authorization
No authorization required No authorization required
@ -129,24 +126,21 @@ This endpoint does not need any parameter.
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_anyof_complex_types_response_body_for_content_types.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_anyof_complex_types_response_body_for_content_types.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
#### SchemaFor200ResponseBodyApplicationJson # SchemaFor200ResponseBodyApplicationJson
Type | Description | Notes Type | Description | Notes
------------- | ------------- | ------------- ------------- | ------------- | -------------
[**AnyofComplexTypes**](AnyofComplexTypes.md) | | [**AnyofComplexTypes**](../../models/AnyofComplexTypes.md) | |
[**AnyofComplexTypes**](AnyofComplexTypes.md)
### Authorization ### Authorization
No authorization required No authorization required
@ -198,10 +192,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil
### body ### body
#### SchemaForRequestBodyApplicationJson # SchemaForRequestBodyApplicationJson
Type | Description | Notes Type | Description | Notes
------------- | ------------- | ------------- ------------- | ------------- | -------------
[**Anyof**](Anyof.md) | | [**Anyof**](../../models/Anyof.md) | |
### Return Types, Responses ### Return Types, Responses
@ -209,18 +203,15 @@ Type | Description | Notes
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_anyof_request_body.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_anyof_request_body.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | Unset | body was not defined | body | Unset | body was not defined |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
void (empty response body)
### Authorization ### Authorization
No authorization required No authorization required
@ -266,24 +257,21 @@ This endpoint does not need any parameter.
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_anyof_response_body_for_content_types.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_anyof_response_body_for_content_types.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
#### SchemaFor200ResponseBodyApplicationJson # SchemaFor200ResponseBodyApplicationJson
Type | Description | Notes Type | Description | Notes
------------- | ------------- | ------------- ------------- | ------------- | -------------
[**Anyof**](Anyof.md) | | [**Anyof**](../../models/Anyof.md) | |
[**Anyof**](Anyof.md)
### Authorization ### Authorization
No authorization required No authorization required
@ -335,10 +323,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil
### body ### body
#### SchemaForRequestBodyApplicationJson # SchemaForRequestBodyApplicationJson
Type | Description | Notes Type | Description | Notes
------------- | ------------- | ------------- ------------- | ------------- | -------------
[**AnyofWithBaseSchema**](AnyofWithBaseSchema.md) | | [**AnyofWithBaseSchema**](../../models/AnyofWithBaseSchema.md) | |
### Return Types, Responses ### Return Types, Responses
@ -346,18 +334,15 @@ Type | Description | Notes
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_anyof_with_base_schema_request_body.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_anyof_with_base_schema_request_body.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | Unset | body was not defined | body | Unset | body was not defined |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
void (empty response body)
### Authorization ### Authorization
No authorization required No authorization required
@ -403,24 +388,21 @@ This endpoint does not need any parameter.
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_anyof_with_base_schema_response_body_for_content_types.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_anyof_with_base_schema_response_body_for_content_types.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
#### SchemaFor200ResponseBodyApplicationJson # SchemaFor200ResponseBodyApplicationJson
Type | Description | Notes Type | Description | Notes
------------- | ------------- | ------------- ------------- | ------------- | -------------
[**AnyofWithBaseSchema**](AnyofWithBaseSchema.md) | | [**AnyofWithBaseSchema**](../../models/AnyofWithBaseSchema.md) | |
[**AnyofWithBaseSchema**](AnyofWithBaseSchema.md)
### Authorization ### Authorization
No authorization required No authorization required
@ -472,10 +454,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil
### body ### body
#### SchemaForRequestBodyApplicationJson # SchemaForRequestBodyApplicationJson
Type | Description | Notes Type | Description | Notes
------------- | ------------- | ------------- ------------- | ------------- | -------------
[**AnyofWithOneEmptySchema**](AnyofWithOneEmptySchema.md) | | [**AnyofWithOneEmptySchema**](../../models/AnyofWithOneEmptySchema.md) | |
### Return Types, Responses ### Return Types, Responses
@ -483,18 +465,15 @@ Type | Description | Notes
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_anyof_with_one_empty_schema_request_body.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_anyof_with_one_empty_schema_request_body.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | Unset | body was not defined | body | Unset | body was not defined |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
void (empty response body)
### Authorization ### Authorization
No authorization required No authorization required
@ -540,24 +519,21 @@ This endpoint does not need any parameter.
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_anyof_with_one_empty_schema_response_body_for_content_types.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_anyof_with_one_empty_schema_response_body_for_content_types.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
#### SchemaFor200ResponseBodyApplicationJson # SchemaFor200ResponseBodyApplicationJson
Type | Description | Notes Type | Description | Notes
------------- | ------------- | ------------- ------------- | ------------- | -------------
[**AnyofWithOneEmptySchema**](AnyofWithOneEmptySchema.md) | | [**AnyofWithOneEmptySchema**](../../models/AnyofWithOneEmptySchema.md) | |
[**AnyofWithOneEmptySchema**](AnyofWithOneEmptySchema.md)
### Authorization ### Authorization
No authorization required No authorization required
@ -609,10 +585,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil
### body ### body
#### SchemaForRequestBodyApplicationJson # SchemaForRequestBodyApplicationJson
Type | Description | Notes Type | Description | Notes
------------- | ------------- | ------------- ------------- | ------------- | -------------
[**NestedAnyofToCheckValidationSemantics**](NestedAnyofToCheckValidationSemantics.md) | | [**NestedAnyofToCheckValidationSemantics**](../../models/NestedAnyofToCheckValidationSemantics.md) | |
### Return Types, Responses ### Return Types, Responses
@ -620,18 +596,15 @@ Type | Description | Notes
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_nested_anyof_to_check_validation_semantics_request_body.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_nested_anyof_to_check_validation_semantics_request_body.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | Unset | body was not defined | body | Unset | body was not defined |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
void (empty response body)
### Authorization ### Authorization
No authorization required No authorization required
@ -677,24 +650,21 @@ This endpoint does not need any parameter.
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_nested_anyof_to_check_validation_semantics_response_body_for_content_types.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_nested_anyof_to_check_validation_semantics_response_body_for_content_types.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
#### SchemaFor200ResponseBodyApplicationJson # SchemaFor200ResponseBodyApplicationJson
Type | Description | Notes Type | Description | Notes
------------- | ------------- | ------------- ------------- | ------------- | -------------
[**NestedAnyofToCheckValidationSemantics**](NestedAnyofToCheckValidationSemantics.md) | | [**NestedAnyofToCheckValidationSemantics**](../../models/NestedAnyofToCheckValidationSemantics.md) | |
[**NestedAnyofToCheckValidationSemantics**](NestedAnyofToCheckValidationSemantics.md)
### Authorization ### Authorization
No authorization required No authorization required

View File

@ -55,10 +55,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil
### body ### body
#### SchemaForRequestBodyApplicationJson # SchemaForRequestBodyApplicationJson
Type | Description | Notes Type | Description | Notes
------------- | ------------- | ------------- ------------- | ------------- | -------------
[**InvalidStringValueForDefault**](InvalidStringValueForDefault.md) | | [**InvalidStringValueForDefault**](../../models/InvalidStringValueForDefault.md) | |
### Return Types, Responses ### Return Types, Responses
@ -66,18 +66,15 @@ Type | Description | Notes
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_invalid_string_value_for_default_request_body.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_invalid_string_value_for_default_request_body.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | Unset | body was not defined | body | Unset | body was not defined |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
void (empty response body)
### Authorization ### Authorization
No authorization required No authorization required
@ -123,24 +120,21 @@ This endpoint does not need any parameter.
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_invalid_string_value_for_default_response_body_for_content_types.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_invalid_string_value_for_default_response_body_for_content_types.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
#### SchemaFor200ResponseBodyApplicationJson # SchemaFor200ResponseBodyApplicationJson
Type | Description | Notes Type | Description | Notes
------------- | ------------- | ------------- ------------- | ------------- | -------------
[**InvalidStringValueForDefault**](InvalidStringValueForDefault.md) | | [**InvalidStringValueForDefault**](../../models/InvalidStringValueForDefault.md) | |
[**InvalidStringValueForDefault**](InvalidStringValueForDefault.md)
### Authorization ### Authorization
No authorization required No authorization required
@ -194,10 +188,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil
### body ### body
#### SchemaForRequestBodyApplicationJson # SchemaForRequestBodyApplicationJson
Type | Description | Notes Type | Description | Notes
------------- | ------------- | ------------- ------------- | ------------- | -------------
[**TheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissing**](TheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissing.md) | | [**TheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissing**](../../models/TheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissing.md) | |
### Return Types, Responses ### Return Types, Responses
@ -205,18 +199,15 @@ Type | Description | Notes
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_the_default_keyword_does_not_do_anything_if_the_property_is_missing_request_body.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_the_default_keyword_does_not_do_anything_if_the_property_is_missing_request_body.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | Unset | body was not defined | body | Unset | body was not defined |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
void (empty response body)
### Authorization ### Authorization
No authorization required No authorization required
@ -262,24 +253,21 @@ This endpoint does not need any parameter.
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_the_default_keyword_does_not_do_anything_if_the_property_is_missing_response_body_for_content_types.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_the_default_keyword_does_not_do_anything_if_the_property_is_missing_response_body_for_content_types.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
#### SchemaFor200ResponseBodyApplicationJson # SchemaFor200ResponseBodyApplicationJson
Type | Description | Notes Type | Description | Notes
------------- | ------------- | ------------- ------------- | ------------- | -------------
[**TheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissing**](TheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissing.md) | | [**TheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissing**](../../models/TheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissing.md) | |
[**TheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissing**](TheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissing.md)
### Authorization ### Authorization
No authorization required No authorization required

View File

@ -67,10 +67,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil
### body ### body
#### SchemaForRequestBodyApplicationJson # SchemaForRequestBodyApplicationJson
Type | Description | Notes Type | Description | Notes
------------- | ------------- | ------------- ------------- | ------------- | -------------
[**EnumWith0DoesNotMatchFalse**](EnumWith0DoesNotMatchFalse.md) | | [**EnumWith0DoesNotMatchFalse**](../../models/EnumWith0DoesNotMatchFalse.md) | |
### Return Types, Responses ### Return Types, Responses
@ -78,18 +78,15 @@ Type | Description | Notes
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_enum_with0_does_not_match_false_request_body.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_enum_with0_does_not_match_false_request_body.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | Unset | body was not defined | body | Unset | body was not defined |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
void (empty response body)
### Authorization ### Authorization
No authorization required No authorization required
@ -135,24 +132,21 @@ This endpoint does not need any parameter.
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_enum_with0_does_not_match_false_response_body_for_content_types.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_enum_with0_does_not_match_false_response_body_for_content_types.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
#### SchemaFor200ResponseBodyApplicationJson # SchemaFor200ResponseBodyApplicationJson
Type | Description | Notes Type | Description | Notes
------------- | ------------- | ------------- ------------- | ------------- | -------------
[**EnumWith0DoesNotMatchFalse**](EnumWith0DoesNotMatchFalse.md) | | [**EnumWith0DoesNotMatchFalse**](../../models/EnumWith0DoesNotMatchFalse.md) | |
[**EnumWith0DoesNotMatchFalse**](EnumWith0DoesNotMatchFalse.md)
### Authorization ### Authorization
No authorization required No authorization required
@ -204,10 +198,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil
### body ### body
#### SchemaForRequestBodyApplicationJson # SchemaForRequestBodyApplicationJson
Type | Description | Notes Type | Description | Notes
------------- | ------------- | ------------- ------------- | ------------- | -------------
[**EnumWith1DoesNotMatchTrue**](EnumWith1DoesNotMatchTrue.md) | | [**EnumWith1DoesNotMatchTrue**](../../models/EnumWith1DoesNotMatchTrue.md) | |
### Return Types, Responses ### Return Types, Responses
@ -215,18 +209,15 @@ Type | Description | Notes
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_enum_with1_does_not_match_true_request_body.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_enum_with1_does_not_match_true_request_body.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | Unset | body was not defined | body | Unset | body was not defined |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
void (empty response body)
### Authorization ### Authorization
No authorization required No authorization required
@ -272,24 +263,21 @@ This endpoint does not need any parameter.
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_enum_with1_does_not_match_true_response_body_for_content_types.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_enum_with1_does_not_match_true_response_body_for_content_types.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
#### SchemaFor200ResponseBodyApplicationJson # SchemaFor200ResponseBodyApplicationJson
Type | Description | Notes Type | Description | Notes
------------- | ------------- | ------------- ------------- | ------------- | -------------
[**EnumWith1DoesNotMatchTrue**](EnumWith1DoesNotMatchTrue.md) | | [**EnumWith1DoesNotMatchTrue**](../../models/EnumWith1DoesNotMatchTrue.md) | |
[**EnumWith1DoesNotMatchTrue**](EnumWith1DoesNotMatchTrue.md)
### Authorization ### Authorization
No authorization required No authorization required
@ -341,10 +329,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil
### body ### body
#### SchemaForRequestBodyApplicationJson # SchemaForRequestBodyApplicationJson
Type | Description | Notes Type | Description | Notes
------------- | ------------- | ------------- ------------- | ------------- | -------------
[**EnumWithEscapedCharacters**](EnumWithEscapedCharacters.md) | | [**EnumWithEscapedCharacters**](../../models/EnumWithEscapedCharacters.md) | |
### Return Types, Responses ### Return Types, Responses
@ -352,18 +340,15 @@ Type | Description | Notes
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_enum_with_escaped_characters_request_body.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_enum_with_escaped_characters_request_body.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | Unset | body was not defined | body | Unset | body was not defined |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
void (empty response body)
### Authorization ### Authorization
No authorization required No authorization required
@ -409,24 +394,21 @@ This endpoint does not need any parameter.
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_enum_with_escaped_characters_response_body_for_content_types.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_enum_with_escaped_characters_response_body_for_content_types.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
#### SchemaFor200ResponseBodyApplicationJson # SchemaFor200ResponseBodyApplicationJson
Type | Description | Notes Type | Description | Notes
------------- | ------------- | ------------- ------------- | ------------- | -------------
[**EnumWithEscapedCharacters**](EnumWithEscapedCharacters.md) | | [**EnumWithEscapedCharacters**](../../models/EnumWithEscapedCharacters.md) | |
[**EnumWithEscapedCharacters**](EnumWithEscapedCharacters.md)
### Authorization ### Authorization
No authorization required No authorization required
@ -478,10 +460,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil
### body ### body
#### SchemaForRequestBodyApplicationJson # SchemaForRequestBodyApplicationJson
Type | Description | Notes Type | Description | Notes
------------- | ------------- | ------------- ------------- | ------------- | -------------
[**EnumWithFalseDoesNotMatch0**](EnumWithFalseDoesNotMatch0.md) | | [**EnumWithFalseDoesNotMatch0**](../../models/EnumWithFalseDoesNotMatch0.md) | |
### Return Types, Responses ### Return Types, Responses
@ -489,18 +471,15 @@ Type | Description | Notes
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_enum_with_false_does_not_match0_request_body.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_enum_with_false_does_not_match0_request_body.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | Unset | body was not defined | body | Unset | body was not defined |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
void (empty response body)
### Authorization ### Authorization
No authorization required No authorization required
@ -546,24 +525,21 @@ This endpoint does not need any parameter.
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_enum_with_false_does_not_match0_response_body_for_content_types.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_enum_with_false_does_not_match0_response_body_for_content_types.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
#### SchemaFor200ResponseBodyApplicationJson # SchemaFor200ResponseBodyApplicationJson
Type | Description | Notes Type | Description | Notes
------------- | ------------- | ------------- ------------- | ------------- | -------------
[**EnumWithFalseDoesNotMatch0**](EnumWithFalseDoesNotMatch0.md) | | [**EnumWithFalseDoesNotMatch0**](../../models/EnumWithFalseDoesNotMatch0.md) | |
[**EnumWithFalseDoesNotMatch0**](EnumWithFalseDoesNotMatch0.md)
### Authorization ### Authorization
No authorization required No authorization required
@ -615,10 +591,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil
### body ### body
#### SchemaForRequestBodyApplicationJson # SchemaForRequestBodyApplicationJson
Type | Description | Notes Type | Description | Notes
------------- | ------------- | ------------- ------------- | ------------- | -------------
[**EnumWithTrueDoesNotMatch1**](EnumWithTrueDoesNotMatch1.md) | | [**EnumWithTrueDoesNotMatch1**](../../models/EnumWithTrueDoesNotMatch1.md) | |
### Return Types, Responses ### Return Types, Responses
@ -626,18 +602,15 @@ Type | Description | Notes
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_enum_with_true_does_not_match1_request_body.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_enum_with_true_does_not_match1_request_body.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | Unset | body was not defined | body | Unset | body was not defined |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
void (empty response body)
### Authorization ### Authorization
No authorization required No authorization required
@ -683,24 +656,21 @@ This endpoint does not need any parameter.
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_enum_with_true_does_not_match1_response_body_for_content_types.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_enum_with_true_does_not_match1_response_body_for_content_types.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
#### SchemaFor200ResponseBodyApplicationJson # SchemaFor200ResponseBodyApplicationJson
Type | Description | Notes Type | Description | Notes
------------- | ------------- | ------------- ------------- | ------------- | -------------
[**EnumWithTrueDoesNotMatch1**](EnumWithTrueDoesNotMatch1.md) | | [**EnumWithTrueDoesNotMatch1**](../../models/EnumWithTrueDoesNotMatch1.md) | |
[**EnumWithTrueDoesNotMatch1**](EnumWithTrueDoesNotMatch1.md)
### Authorization ### Authorization
No authorization required No authorization required
@ -755,10 +725,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil
### body ### body
#### SchemaForRequestBodyApplicationJson # SchemaForRequestBodyApplicationJson
Type | Description | Notes Type | Description | Notes
------------- | ------------- | ------------- ------------- | ------------- | -------------
[**EnumsInProperties**](EnumsInProperties.md) | | [**EnumsInProperties**](../../models/EnumsInProperties.md) | |
### Return Types, Responses ### Return Types, Responses
@ -766,18 +736,15 @@ Type | Description | Notes
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_enums_in_properties_request_body.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_enums_in_properties_request_body.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | Unset | body was not defined | body | Unset | body was not defined |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
void (empty response body)
### Authorization ### Authorization
No authorization required No authorization required
@ -823,24 +790,21 @@ This endpoint does not need any parameter.
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_enums_in_properties_response_body_for_content_types.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_enums_in_properties_response_body_for_content_types.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
#### SchemaFor200ResponseBodyApplicationJson # SchemaFor200ResponseBodyApplicationJson
Type | Description | Notes Type | Description | Notes
------------- | ------------- | ------------- ------------- | ------------- | -------------
[**EnumsInProperties**](EnumsInProperties.md) | | [**EnumsInProperties**](../../models/EnumsInProperties.md) | |
[**EnumsInProperties**](EnumsInProperties.md)
### Authorization ### Authorization
No authorization required No authorization required
@ -892,10 +856,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil
### body ### body
#### SchemaForRequestBodyApplicationJson # SchemaForRequestBodyApplicationJson
Type | Description | Notes Type | Description | Notes
------------- | ------------- | ------------- ------------- | ------------- | -------------
[**NulCharactersInStrings**](NulCharactersInStrings.md) | | [**NulCharactersInStrings**](../../models/NulCharactersInStrings.md) | |
### Return Types, Responses ### Return Types, Responses
@ -903,18 +867,15 @@ Type | Description | Notes
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_nul_characters_in_strings_request_body.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_nul_characters_in_strings_request_body.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | Unset | body was not defined | body | Unset | body was not defined |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
void (empty response body)
### Authorization ### Authorization
No authorization required No authorization required
@ -960,24 +921,21 @@ This endpoint does not need any parameter.
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_nul_characters_in_strings_response_body_for_content_types.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_nul_characters_in_strings_response_body_for_content_types.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
#### SchemaFor200ResponseBodyApplicationJson # SchemaFor200ResponseBodyApplicationJson
Type | Description | Notes Type | Description | Notes
------------- | ------------- | ------------- ------------- | ------------- | -------------
[**NulCharactersInStrings**](NulCharactersInStrings.md) | | [**NulCharactersInStrings**](../../models/NulCharactersInStrings.md) | |
[**NulCharactersInStrings**](NulCharactersInStrings.md)
### Authorization ### Authorization
No authorization required No authorization required
@ -1029,10 +987,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil
### body ### body
#### SchemaForRequestBodyApplicationJson # SchemaForRequestBodyApplicationJson
Type | Description | Notes Type | Description | Notes
------------- | ------------- | ------------- ------------- | ------------- | -------------
[**SimpleEnumValidation**](SimpleEnumValidation.md) | | [**SimpleEnumValidation**](../../models/SimpleEnumValidation.md) | |
### Return Types, Responses ### Return Types, Responses
@ -1040,18 +998,15 @@ Type | Description | Notes
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_simple_enum_validation_request_body.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_simple_enum_validation_request_body.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | Unset | body was not defined | body | Unset | body was not defined |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
void (empty response body)
### Authorization ### Authorization
No authorization required No authorization required
@ -1097,24 +1052,21 @@ This endpoint does not need any parameter.
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_simple_enum_validation_response_body_for_content_types.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_simple_enum_validation_response_body_for_content_types.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
#### SchemaFor200ResponseBodyApplicationJson # SchemaFor200ResponseBodyApplicationJson
Type | Description | Notes Type | Description | Notes
------------- | ------------- | ------------- ------------- | ------------- | -------------
[**SimpleEnumValidation**](SimpleEnumValidation.md) | | [**SimpleEnumValidation**](../../models/SimpleEnumValidation.md) | |
[**SimpleEnumValidation**](SimpleEnumValidation.md)
### Authorization ### Authorization
No authorization required No authorization required

View File

@ -68,29 +68,27 @@ skip_deserialization | bool | default is False | when True, headers and body wil
### body ### body
#### SchemaForRequestBodyApplicationJson # SchemaForRequestBodyApplicationJson
Type | Description | Notes ## Model Type Info
------------- | ------------- | ------------- Input Type | Accessed Type | Description | Notes
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | ------------ | ------------- | ------------- | -------------
dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | value must conform to RFC-3339 date-time
### Return Types, Responses ### Return Types, Responses
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_date_time_format_request_body.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_date_time_format_request_body.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | Unset | body was not defined | body | Unset | body was not defined |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
void (empty response body)
### Authorization ### Authorization
No authorization required No authorization required
@ -135,23 +133,21 @@ This endpoint does not need any parameter.
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_date_time_format_response_body_for_content_types.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_date_time_format_response_body_for_content_types.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
#### SchemaFor200ResponseBodyApplicationJson # SchemaFor200ResponseBodyApplicationJson
Type | Description | Notes ## Model Type Info
------------- | ------------- | ------------- Input Type | Accessed Type | Description | Notes
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | ------------ | ------------- | ------------- | -------------
dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | value must conform to RFC-3339 date-time
**bool, date, datetime, dict, float, int, list, str, none_type**
### Authorization ### Authorization
@ -203,29 +199,27 @@ skip_deserialization | bool | default is False | when True, headers and body wil
### body ### body
#### SchemaForRequestBodyApplicationJson # SchemaForRequestBodyApplicationJson
Type | Description | Notes ## Model Type Info
------------- | ------------- | ------------- Input Type | Accessed Type | Description | Notes
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | ------------ | ------------- | ------------- | -------------
dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | |
### Return Types, Responses ### Return Types, Responses
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_email_format_request_body.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_email_format_request_body.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | Unset | body was not defined | body | Unset | body was not defined |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
void (empty response body)
### Authorization ### Authorization
No authorization required No authorization required
@ -270,23 +264,21 @@ This endpoint does not need any parameter.
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_email_format_response_body_for_content_types.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_email_format_response_body_for_content_types.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
#### SchemaFor200ResponseBodyApplicationJson # SchemaFor200ResponseBodyApplicationJson
Type | Description | Notes ## Model Type Info
------------- | ------------- | ------------- Input Type | Accessed Type | Description | Notes
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | ------------ | ------------- | ------------- | -------------
dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | |
**bool, date, datetime, dict, float, int, list, str, none_type**
### Authorization ### Authorization
@ -338,29 +330,27 @@ skip_deserialization | bool | default is False | when True, headers and body wil
### body ### body
#### SchemaForRequestBodyApplicationJson # SchemaForRequestBodyApplicationJson
Type | Description | Notes ## Model Type Info
------------- | ------------- | ------------- Input Type | Accessed Type | Description | Notes
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | ------------ | ------------- | ------------- | -------------
dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | |
### Return Types, Responses ### Return Types, Responses
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_hostname_format_request_body.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_hostname_format_request_body.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | Unset | body was not defined | body | Unset | body was not defined |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
void (empty response body)
### Authorization ### Authorization
No authorization required No authorization required
@ -405,23 +395,21 @@ This endpoint does not need any parameter.
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_hostname_format_response_body_for_content_types.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_hostname_format_response_body_for_content_types.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
#### SchemaFor200ResponseBodyApplicationJson # SchemaFor200ResponseBodyApplicationJson
Type | Description | Notes ## Model Type Info
------------- | ------------- | ------------- Input Type | Accessed Type | Description | Notes
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | ------------ | ------------- | ------------- | -------------
dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | |
**bool, date, datetime, dict, float, int, list, str, none_type**
### Authorization ### Authorization
@ -473,29 +461,27 @@ skip_deserialization | bool | default is False | when True, headers and body wil
### body ### body
#### SchemaForRequestBodyApplicationJson # SchemaForRequestBodyApplicationJson
Type | Description | Notes ## Model Type Info
------------- | ------------- | ------------- Input Type | Accessed Type | Description | Notes
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | ------------ | ------------- | ------------- | -------------
dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | |
### Return Types, Responses ### Return Types, Responses
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_ipv4_format_request_body.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_ipv4_format_request_body.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | Unset | body was not defined | body | Unset | body was not defined |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
void (empty response body)
### Authorization ### Authorization
No authorization required No authorization required
@ -540,23 +526,21 @@ This endpoint does not need any parameter.
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_ipv4_format_response_body_for_content_types.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_ipv4_format_response_body_for_content_types.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
#### SchemaFor200ResponseBodyApplicationJson # SchemaFor200ResponseBodyApplicationJson
Type | Description | Notes ## Model Type Info
------------- | ------------- | ------------- Input Type | Accessed Type | Description | Notes
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | ------------ | ------------- | ------------- | -------------
dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | |
**bool, date, datetime, dict, float, int, list, str, none_type**
### Authorization ### Authorization
@ -608,29 +592,27 @@ skip_deserialization | bool | default is False | when True, headers and body wil
### body ### body
#### SchemaForRequestBodyApplicationJson # SchemaForRequestBodyApplicationJson
Type | Description | Notes ## Model Type Info
------------- | ------------- | ------------- Input Type | Accessed Type | Description | Notes
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | ------------ | ------------- | ------------- | -------------
dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | |
### Return Types, Responses ### Return Types, Responses
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_ipv6_format_request_body.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_ipv6_format_request_body.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | Unset | body was not defined | body | Unset | body was not defined |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
void (empty response body)
### Authorization ### Authorization
No authorization required No authorization required
@ -675,23 +657,21 @@ This endpoint does not need any parameter.
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_ipv6_format_response_body_for_content_types.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_ipv6_format_response_body_for_content_types.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
#### SchemaFor200ResponseBodyApplicationJson # SchemaFor200ResponseBodyApplicationJson
Type | Description | Notes ## Model Type Info
------------- | ------------- | ------------- Input Type | Accessed Type | Description | Notes
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | ------------ | ------------- | ------------- | -------------
dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | |
**bool, date, datetime, dict, float, int, list, str, none_type**
### Authorization ### Authorization
@ -743,29 +723,27 @@ skip_deserialization | bool | default is False | when True, headers and body wil
### body ### body
#### SchemaForRequestBodyApplicationJson # SchemaForRequestBodyApplicationJson
Type | Description | Notes ## Model Type Info
------------- | ------------- | ------------- Input Type | Accessed Type | Description | Notes
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | ------------ | ------------- | ------------- | -------------
dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | |
### Return Types, Responses ### Return Types, Responses
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_json_pointer_format_request_body.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_json_pointer_format_request_body.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | Unset | body was not defined | body | Unset | body was not defined |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
void (empty response body)
### Authorization ### Authorization
No authorization required No authorization required
@ -810,23 +788,21 @@ This endpoint does not need any parameter.
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_json_pointer_format_response_body_for_content_types.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_json_pointer_format_response_body_for_content_types.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
#### SchemaFor200ResponseBodyApplicationJson # SchemaFor200ResponseBodyApplicationJson
Type | Description | Notes ## Model Type Info
------------- | ------------- | ------------- Input Type | Accessed Type | Description | Notes
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | ------------ | ------------- | ------------- | -------------
dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | |
**bool, date, datetime, dict, float, int, list, str, none_type**
### Authorization ### Authorization
@ -878,29 +854,27 @@ skip_deserialization | bool | default is False | when True, headers and body wil
### body ### body
#### SchemaForRequestBodyApplicationJson # SchemaForRequestBodyApplicationJson
Type | Description | Notes ## Model Type Info
------------- | ------------- | ------------- Input Type | Accessed Type | Description | Notes
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | ------------ | ------------- | ------------- | -------------
dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | |
### Return Types, Responses ### Return Types, Responses
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_uri_format_request_body.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_uri_format_request_body.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | Unset | body was not defined | body | Unset | body was not defined |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
void (empty response body)
### Authorization ### Authorization
No authorization required No authorization required
@ -945,23 +919,21 @@ This endpoint does not need any parameter.
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_uri_format_response_body_for_content_types.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_uri_format_response_body_for_content_types.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
#### SchemaFor200ResponseBodyApplicationJson # SchemaFor200ResponseBodyApplicationJson
Type | Description | Notes ## Model Type Info
------------- | ------------- | ------------- Input Type | Accessed Type | Description | Notes
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | ------------ | ------------- | ------------- | -------------
dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | |
**bool, date, datetime, dict, float, int, list, str, none_type**
### Authorization ### Authorization
@ -1013,29 +985,27 @@ skip_deserialization | bool | default is False | when True, headers and body wil
### body ### body
#### SchemaForRequestBodyApplicationJson # SchemaForRequestBodyApplicationJson
Type | Description | Notes ## Model Type Info
------------- | ------------- | ------------- Input Type | Accessed Type | Description | Notes
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | ------------ | ------------- | ------------- | -------------
dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | |
### Return Types, Responses ### Return Types, Responses
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_uri_reference_format_request_body.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_uri_reference_format_request_body.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | Unset | body was not defined | body | Unset | body was not defined |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
void (empty response body)
### Authorization ### Authorization
No authorization required No authorization required
@ -1080,23 +1050,21 @@ This endpoint does not need any parameter.
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_uri_reference_format_response_body_for_content_types.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_uri_reference_format_response_body_for_content_types.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
#### SchemaFor200ResponseBodyApplicationJson # SchemaFor200ResponseBodyApplicationJson
Type | Description | Notes ## Model Type Info
------------- | ------------- | ------------- Input Type | Accessed Type | Description | Notes
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | ------------ | ------------- | ------------- | -------------
dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | |
**bool, date, datetime, dict, float, int, list, str, none_type**
### Authorization ### Authorization
@ -1148,29 +1116,27 @@ skip_deserialization | bool | default is False | when True, headers and body wil
### body ### body
#### SchemaForRequestBodyApplicationJson # SchemaForRequestBodyApplicationJson
Type | Description | Notes ## Model Type Info
------------- | ------------- | ------------- Input Type | Accessed Type | Description | Notes
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | ------------ | ------------- | ------------- | -------------
dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | |
### Return Types, Responses ### Return Types, Responses
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_uri_template_format_request_body.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_uri_template_format_request_body.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | Unset | body was not defined | body | Unset | body was not defined |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
void (empty response body)
### Authorization ### Authorization
No authorization required No authorization required
@ -1215,23 +1181,21 @@ This endpoint does not need any parameter.
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_uri_template_format_response_body_for_content_types.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_uri_template_format_response_body_for_content_types.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
#### SchemaFor200ResponseBodyApplicationJson # SchemaFor200ResponseBodyApplicationJson
Type | Description | Notes ## Model Type Info
------------- | ------------- | ------------- Input Type | Accessed Type | Description | Notes
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | ------------ | ------------- | ------------- | -------------
dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | |
**bool, date, datetime, dict, float, int, list, str, none_type**
### Authorization ### Authorization

View File

@ -61,10 +61,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil
### body ### body
#### SchemaForRequestBodyApplicationJson # SchemaForRequestBodyApplicationJson
Type | Description | Notes Type | Description | Notes
------------- | ------------- | ------------- ------------- | ------------- | -------------
[**NestedItems**](NestedItems.md) | | [**NestedItems**](../../models/NestedItems.md) | |
### Return Types, Responses ### Return Types, Responses
@ -72,18 +72,15 @@ Type | Description | Notes
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_nested_items_request_body.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_nested_items_request_body.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | Unset | body was not defined | body | Unset | body was not defined |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
void (empty response body)
### Authorization ### Authorization
No authorization required No authorization required
@ -129,24 +126,21 @@ This endpoint does not need any parameter.
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_nested_items_response_body_for_content_types.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_nested_items_response_body_for_content_types.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
#### SchemaFor200ResponseBodyApplicationJson # SchemaFor200ResponseBodyApplicationJson
Type | Description | Notes Type | Description | Notes
------------- | ------------- | ------------- ------------- | ------------- | -------------
[**NestedItems**](NestedItems.md) | | [**NestedItems**](../../models/NestedItems.md) | |
[**NestedItems**](NestedItems.md)
### Authorization ### Authorization
No authorization required No authorization required

View File

@ -53,10 +53,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil
### body ### body
#### SchemaForRequestBodyApplicationJson # SchemaForRequestBodyApplicationJson
Type | Description | Notes Type | Description | Notes
------------- | ------------- | ------------- ------------- | ------------- | -------------
[**MaxitemsValidation**](MaxitemsValidation.md) | | [**MaxitemsValidation**](../../models/MaxitemsValidation.md) | |
### Return Types, Responses ### Return Types, Responses
@ -64,18 +64,15 @@ Type | Description | Notes
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_maxitems_validation_request_body.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_maxitems_validation_request_body.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | Unset | body was not defined | body | Unset | body was not defined |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
void (empty response body)
### Authorization ### Authorization
No authorization required No authorization required
@ -121,24 +118,21 @@ This endpoint does not need any parameter.
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_maxitems_validation_response_body_for_content_types.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_maxitems_validation_response_body_for_content_types.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
#### SchemaFor200ResponseBodyApplicationJson # SchemaFor200ResponseBodyApplicationJson
Type | Description | Notes Type | Description | Notes
------------- | ------------- | ------------- ------------- | ------------- | -------------
[**MaxitemsValidation**](MaxitemsValidation.md) | | [**MaxitemsValidation**](../../models/MaxitemsValidation.md) | |
[**MaxitemsValidation**](MaxitemsValidation.md)
### Authorization ### Authorization
No authorization required No authorization required

View File

@ -53,10 +53,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil
### body ### body
#### SchemaForRequestBodyApplicationJson # SchemaForRequestBodyApplicationJson
Type | Description | Notes Type | Description | Notes
------------- | ------------- | ------------- ------------- | ------------- | -------------
[**MaxlengthValidation**](MaxlengthValidation.md) | | [**MaxlengthValidation**](../../models/MaxlengthValidation.md) | |
### Return Types, Responses ### Return Types, Responses
@ -64,18 +64,15 @@ Type | Description | Notes
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_maxlength_validation_request_body.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_maxlength_validation_request_body.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | Unset | body was not defined | body | Unset | body was not defined |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
void (empty response body)
### Authorization ### Authorization
No authorization required No authorization required
@ -121,24 +118,21 @@ This endpoint does not need any parameter.
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_maxlength_validation_response_body_for_content_types.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_maxlength_validation_response_body_for_content_types.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
#### SchemaFor200ResponseBodyApplicationJson # SchemaFor200ResponseBodyApplicationJson
Type | Description | Notes Type | Description | Notes
------------- | ------------- | ------------- ------------- | ------------- | -------------
[**MaxlengthValidation**](MaxlengthValidation.md) | | [**MaxlengthValidation**](../../models/MaxlengthValidation.md) | |
[**MaxlengthValidation**](MaxlengthValidation.md)
### Authorization ### Authorization
No authorization required No authorization required

View File

@ -55,10 +55,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil
### body ### body
#### SchemaForRequestBodyApplicationJson # SchemaForRequestBodyApplicationJson
Type | Description | Notes Type | Description | Notes
------------- | ------------- | ------------- ------------- | ------------- | -------------
[**Maxproperties0MeansTheObjectIsEmpty**](Maxproperties0MeansTheObjectIsEmpty.md) | | [**Maxproperties0MeansTheObjectIsEmpty**](../../models/Maxproperties0MeansTheObjectIsEmpty.md) | |
### Return Types, Responses ### Return Types, Responses
@ -66,18 +66,15 @@ Type | Description | Notes
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_maxproperties0_means_the_object_is_empty_request_body.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_maxproperties0_means_the_object_is_empty_request_body.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | Unset | body was not defined | body | Unset | body was not defined |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
void (empty response body)
### Authorization ### Authorization
No authorization required No authorization required
@ -123,24 +120,21 @@ This endpoint does not need any parameter.
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_maxproperties0_means_the_object_is_empty_response_body_for_content_types.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_maxproperties0_means_the_object_is_empty_response_body_for_content_types.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
#### SchemaFor200ResponseBodyApplicationJson # SchemaFor200ResponseBodyApplicationJson
Type | Description | Notes Type | Description | Notes
------------- | ------------- | ------------- ------------- | ------------- | -------------
[**Maxproperties0MeansTheObjectIsEmpty**](Maxproperties0MeansTheObjectIsEmpty.md) | | [**Maxproperties0MeansTheObjectIsEmpty**](../../models/Maxproperties0MeansTheObjectIsEmpty.md) | |
[**Maxproperties0MeansTheObjectIsEmpty**](Maxproperties0MeansTheObjectIsEmpty.md)
### Authorization ### Authorization
No authorization required No authorization required
@ -192,10 +186,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil
### body ### body
#### SchemaForRequestBodyApplicationJson # SchemaForRequestBodyApplicationJson
Type | Description | Notes Type | Description | Notes
------------- | ------------- | ------------- ------------- | ------------- | -------------
[**MaxpropertiesValidation**](MaxpropertiesValidation.md) | | [**MaxpropertiesValidation**](../../models/MaxpropertiesValidation.md) | |
### Return Types, Responses ### Return Types, Responses
@ -203,18 +197,15 @@ Type | Description | Notes
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_maxproperties_validation_request_body.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_maxproperties_validation_request_body.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | Unset | body was not defined | body | Unset | body was not defined |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
void (empty response body)
### Authorization ### Authorization
No authorization required No authorization required
@ -260,24 +251,21 @@ This endpoint does not need any parameter.
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_maxproperties_validation_response_body_for_content_types.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_maxproperties_validation_response_body_for_content_types.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
#### SchemaFor200ResponseBodyApplicationJson # SchemaFor200ResponseBodyApplicationJson
Type | Description | Notes Type | Description | Notes
------------- | ------------- | ------------- ------------- | ------------- | -------------
[**MaxpropertiesValidation**](MaxpropertiesValidation.md) | | [**MaxpropertiesValidation**](../../models/MaxpropertiesValidation.md) | |
[**MaxpropertiesValidation**](MaxpropertiesValidation.md)
### Authorization ### Authorization
No authorization required No authorization required

View File

@ -55,10 +55,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil
### body ### body
#### SchemaForRequestBodyApplicationJson # SchemaForRequestBodyApplicationJson
Type | Description | Notes Type | Description | Notes
------------- | ------------- | ------------- ------------- | ------------- | -------------
[**MaximumValidation**](MaximumValidation.md) | | [**MaximumValidation**](../../models/MaximumValidation.md) | |
### Return Types, Responses ### Return Types, Responses
@ -66,18 +66,15 @@ Type | Description | Notes
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_maximum_validation_request_body.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_maximum_validation_request_body.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | Unset | body was not defined | body | Unset | body was not defined |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
void (empty response body)
### Authorization ### Authorization
No authorization required No authorization required
@ -123,24 +120,21 @@ This endpoint does not need any parameter.
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_maximum_validation_response_body_for_content_types.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_maximum_validation_response_body_for_content_types.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
#### SchemaFor200ResponseBodyApplicationJson # SchemaFor200ResponseBodyApplicationJson
Type | Description | Notes Type | Description | Notes
------------- | ------------- | ------------- ------------- | ------------- | -------------
[**MaximumValidation**](MaximumValidation.md) | | [**MaximumValidation**](../../models/MaximumValidation.md) | |
[**MaximumValidation**](MaximumValidation.md)
### Authorization ### Authorization
No authorization required No authorization required
@ -192,10 +186,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil
### body ### body
#### SchemaForRequestBodyApplicationJson # SchemaForRequestBodyApplicationJson
Type | Description | Notes Type | Description | Notes
------------- | ------------- | ------------- ------------- | ------------- | -------------
[**MaximumValidationWithUnsignedInteger**](MaximumValidationWithUnsignedInteger.md) | | [**MaximumValidationWithUnsignedInteger**](../../models/MaximumValidationWithUnsignedInteger.md) | |
### Return Types, Responses ### Return Types, Responses
@ -203,18 +197,15 @@ Type | Description | Notes
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_maximum_validation_with_unsigned_integer_request_body.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_maximum_validation_with_unsigned_integer_request_body.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | Unset | body was not defined | body | Unset | body was not defined |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
void (empty response body)
### Authorization ### Authorization
No authorization required No authorization required
@ -260,24 +251,21 @@ This endpoint does not need any parameter.
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_maximum_validation_with_unsigned_integer_response_body_for_content_types.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_maximum_validation_with_unsigned_integer_response_body_for_content_types.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
#### SchemaFor200ResponseBodyApplicationJson # SchemaFor200ResponseBodyApplicationJson
Type | Description | Notes Type | Description | Notes
------------- | ------------- | ------------- ------------- | ------------- | -------------
[**MaximumValidationWithUnsignedInteger**](MaximumValidationWithUnsignedInteger.md) | | [**MaximumValidationWithUnsignedInteger**](../../models/MaximumValidationWithUnsignedInteger.md) | |
[**MaximumValidationWithUnsignedInteger**](MaximumValidationWithUnsignedInteger.md)
### Authorization ### Authorization
No authorization required No authorization required

View File

@ -53,10 +53,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil
### body ### body
#### SchemaForRequestBodyApplicationJson # SchemaForRequestBodyApplicationJson
Type | Description | Notes Type | Description | Notes
------------- | ------------- | ------------- ------------- | ------------- | -------------
[**MinitemsValidation**](MinitemsValidation.md) | | [**MinitemsValidation**](../../models/MinitemsValidation.md) | |
### Return Types, Responses ### Return Types, Responses
@ -64,18 +64,15 @@ Type | Description | Notes
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_minitems_validation_request_body.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_minitems_validation_request_body.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | Unset | body was not defined | body | Unset | body was not defined |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
void (empty response body)
### Authorization ### Authorization
No authorization required No authorization required
@ -121,24 +118,21 @@ This endpoint does not need any parameter.
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_minitems_validation_response_body_for_content_types.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_minitems_validation_response_body_for_content_types.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
#### SchemaFor200ResponseBodyApplicationJson # SchemaFor200ResponseBodyApplicationJson
Type | Description | Notes Type | Description | Notes
------------- | ------------- | ------------- ------------- | ------------- | -------------
[**MinitemsValidation**](MinitemsValidation.md) | | [**MinitemsValidation**](../../models/MinitemsValidation.md) | |
[**MinitemsValidation**](MinitemsValidation.md)
### Authorization ### Authorization
No authorization required No authorization required

View File

@ -53,10 +53,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil
### body ### body
#### SchemaForRequestBodyApplicationJson # SchemaForRequestBodyApplicationJson
Type | Description | Notes Type | Description | Notes
------------- | ------------- | ------------- ------------- | ------------- | -------------
[**MinlengthValidation**](MinlengthValidation.md) | | [**MinlengthValidation**](../../models/MinlengthValidation.md) | |
### Return Types, Responses ### Return Types, Responses
@ -64,18 +64,15 @@ Type | Description | Notes
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_minlength_validation_request_body.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_minlength_validation_request_body.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | Unset | body was not defined | body | Unset | body was not defined |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
void (empty response body)
### Authorization ### Authorization
No authorization required No authorization required
@ -121,24 +118,21 @@ This endpoint does not need any parameter.
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_minlength_validation_response_body_for_content_types.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_minlength_validation_response_body_for_content_types.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
#### SchemaFor200ResponseBodyApplicationJson # SchemaFor200ResponseBodyApplicationJson
Type | Description | Notes Type | Description | Notes
------------- | ------------- | ------------- ------------- | ------------- | -------------
[**MinlengthValidation**](MinlengthValidation.md) | | [**MinlengthValidation**](../../models/MinlengthValidation.md) | |
[**MinlengthValidation**](MinlengthValidation.md)
### Authorization ### Authorization
No authorization required No authorization required

View File

@ -53,10 +53,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil
### body ### body
#### SchemaForRequestBodyApplicationJson # SchemaForRequestBodyApplicationJson
Type | Description | Notes Type | Description | Notes
------------- | ------------- | ------------- ------------- | ------------- | -------------
[**MinpropertiesValidation**](MinpropertiesValidation.md) | | [**MinpropertiesValidation**](../../models/MinpropertiesValidation.md) | |
### Return Types, Responses ### Return Types, Responses
@ -64,18 +64,15 @@ Type | Description | Notes
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_minproperties_validation_request_body.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_minproperties_validation_request_body.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | Unset | body was not defined | body | Unset | body was not defined |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
void (empty response body)
### Authorization ### Authorization
No authorization required No authorization required
@ -121,24 +118,21 @@ This endpoint does not need any parameter.
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_minproperties_validation_response_body_for_content_types.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_minproperties_validation_response_body_for_content_types.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
#### SchemaFor200ResponseBodyApplicationJson # SchemaFor200ResponseBodyApplicationJson
Type | Description | Notes Type | Description | Notes
------------- | ------------- | ------------- ------------- | ------------- | -------------
[**MinpropertiesValidation**](MinpropertiesValidation.md) | | [**MinpropertiesValidation**](../../models/MinpropertiesValidation.md) | |
[**MinpropertiesValidation**](MinpropertiesValidation.md)
### Authorization ### Authorization
No authorization required No authorization required

View File

@ -55,10 +55,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil
### body ### body
#### SchemaForRequestBodyApplicationJson # SchemaForRequestBodyApplicationJson
Type | Description | Notes Type | Description | Notes
------------- | ------------- | ------------- ------------- | ------------- | -------------
[**MinimumValidation**](MinimumValidation.md) | | [**MinimumValidation**](../../models/MinimumValidation.md) | |
### Return Types, Responses ### Return Types, Responses
@ -66,18 +66,15 @@ Type | Description | Notes
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_minimum_validation_request_body.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_minimum_validation_request_body.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | Unset | body was not defined | body | Unset | body was not defined |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
void (empty response body)
### Authorization ### Authorization
No authorization required No authorization required
@ -123,24 +120,21 @@ This endpoint does not need any parameter.
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_minimum_validation_response_body_for_content_types.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_minimum_validation_response_body_for_content_types.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
#### SchemaFor200ResponseBodyApplicationJson # SchemaFor200ResponseBodyApplicationJson
Type | Description | Notes Type | Description | Notes
------------- | ------------- | ------------- ------------- | ------------- | -------------
[**MinimumValidation**](MinimumValidation.md) | | [**MinimumValidation**](../../models/MinimumValidation.md) | |
[**MinimumValidation**](MinimumValidation.md)
### Authorization ### Authorization
No authorization required No authorization required
@ -192,10 +186,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil
### body ### body
#### SchemaForRequestBodyApplicationJson # SchemaForRequestBodyApplicationJson
Type | Description | Notes Type | Description | Notes
------------- | ------------- | ------------- ------------- | ------------- | -------------
[**MinimumValidationWithSignedInteger**](MinimumValidationWithSignedInteger.md) | | [**MinimumValidationWithSignedInteger**](../../models/MinimumValidationWithSignedInteger.md) | |
### Return Types, Responses ### Return Types, Responses
@ -203,18 +197,15 @@ Type | Description | Notes
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_minimum_validation_with_signed_integer_request_body.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_minimum_validation_with_signed_integer_request_body.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | Unset | body was not defined | body | Unset | body was not defined |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
void (empty response body)
### Authorization ### Authorization
No authorization required No authorization required
@ -260,24 +251,21 @@ This endpoint does not need any parameter.
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_minimum_validation_with_signed_integer_response_body_for_content_types.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_minimum_validation_with_signed_integer_response_body_for_content_types.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
#### SchemaFor200ResponseBodyApplicationJson # SchemaFor200ResponseBodyApplicationJson
Type | Description | Notes Type | Description | Notes
------------- | ------------- | ------------- ------------- | ------------- | -------------
[**MinimumValidationWithSignedInteger**](MinimumValidationWithSignedInteger.md) | | [**MinimumValidationWithSignedInteger**](../../models/MinimumValidationWithSignedInteger.md) | |
[**MinimumValidationWithSignedInteger**](MinimumValidationWithSignedInteger.md)
### Authorization ### Authorization
No authorization required No authorization required

View File

@ -57,10 +57,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil
### body ### body
#### SchemaForRequestBodyApplicationJson # SchemaForRequestBodyApplicationJson
Type | Description | Notes Type | Description | Notes
------------- | ------------- | ------------- ------------- | ------------- | -------------
[**ForbiddenProperty**](ForbiddenProperty.md) | | [**ForbiddenProperty**](../../models/ForbiddenProperty.md) | |
### Return Types, Responses ### Return Types, Responses
@ -68,18 +68,15 @@ Type | Description | Notes
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_forbidden_property_request_body.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_forbidden_property_request_body.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | Unset | body was not defined | body | Unset | body was not defined |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
void (empty response body)
### Authorization ### Authorization
No authorization required No authorization required
@ -125,24 +122,21 @@ This endpoint does not need any parameter.
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_forbidden_property_response_body_for_content_types.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_forbidden_property_response_body_for_content_types.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
#### SchemaFor200ResponseBodyApplicationJson # SchemaFor200ResponseBodyApplicationJson
Type | Description | Notes Type | Description | Notes
------------- | ------------- | ------------- ------------- | ------------- | -------------
[**ForbiddenProperty**](ForbiddenProperty.md) | | [**ForbiddenProperty**](../../models/ForbiddenProperty.md) | |
[**ForbiddenProperty**](ForbiddenProperty.md)
### Authorization ### Authorization
No authorization required No authorization required
@ -193,29 +187,46 @@ skip_deserialization | bool | default is False | when True, headers and body wil
### body ### body
#### SchemaForRequestBodyApplicationJson # SchemaForRequestBodyApplicationJson
Type | Description | Notes ## Model Type Info
------------- | ------------- | ------------- Input Type | Accessed Type | Description | Notes
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | ------------ | ------------- | ------------- | -------------
dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | |
### Composed Schemas (allOf/anyOf/oneOf/not)
#### not
Class Name | Input Type | Accessed Type | Description | Notes
------------- | ------------- | ------------- | ------------- | -------------
[not_schema](#not_schema) | dict, frozendict.frozendict, | frozendict.frozendict, | |
# not_schema
## Model Type Info
Input Type | Accessed Type | Description | Notes
------------ | ------------- | ------------- | -------------
dict, frozendict.frozendict, | frozendict.frozendict, | |
### Dictionary Keys
Key | Input Type | Accessed Type | Description | Notes
------------ | ------------- | ------------- | ------------- | -------------
**foo** | str, | str, | | [optional]
**any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional]
### Return Types, Responses ### Return Types, Responses
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_not_more_complex_schema_request_body.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_not_more_complex_schema_request_body.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | Unset | body was not defined | body | Unset | body was not defined |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
void (empty response body)
### Authorization ### Authorization
No authorization required No authorization required
@ -260,23 +271,40 @@ This endpoint does not need any parameter.
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_not_more_complex_schema_response_body_for_content_types.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_not_more_complex_schema_response_body_for_content_types.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
#### SchemaFor200ResponseBodyApplicationJson # SchemaFor200ResponseBodyApplicationJson
Type | Description | Notes ## Model Type Info
------------- | ------------- | ------------- Input Type | Accessed Type | Description | Notes
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | ------------ | ------------- | ------------- | -------------
dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | |
### Composed Schemas (allOf/anyOf/oneOf/not)
#### not
Class Name | Input Type | Accessed Type | Description | Notes
------------- | ------------- | ------------- | ------------- | -------------
[not_schema](#not_schema) | dict, frozendict.frozendict, | frozendict.frozendict, | |
**bool, date, datetime, dict, float, int, list, str, none_type** # not_schema
## Model Type Info
Input Type | Accessed Type | Description | Notes
------------ | ------------- | ------------- | -------------
dict, frozendict.frozendict, | frozendict.frozendict, | |
### Dictionary Keys
Key | Input Type | Accessed Type | Description | Notes
------------ | ------------- | ------------- | ------------- | -------------
**foo** | str, | str, | | [optional]
**any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional]
### Authorization ### Authorization
@ -328,29 +356,40 @@ skip_deserialization | bool | default is False | when True, headers and body wil
### body ### body
#### SchemaForRequestBodyApplicationJson # SchemaForRequestBodyApplicationJson
Type | Description | Notes ## Model Type Info
------------- | ------------- | ------------- Input Type | Accessed Type | Description | Notes
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | ------------ | ------------- | ------------- | -------------
dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | |
### Composed Schemas (allOf/anyOf/oneOf/not)
#### not
Class Name | Input Type | Accessed Type | Description | Notes
------------- | ------------- | ------------- | ------------- | -------------
[not_schema](#not_schema) | decimal.Decimal, int, | decimal.Decimal, | |
# not_schema
## Model Type Info
Input Type | Accessed Type | Description | Notes
------------ | ------------- | ------------- | -------------
decimal.Decimal, int, | decimal.Decimal, | |
### Return Types, Responses ### Return Types, Responses
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_not_request_body.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_not_request_body.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | Unset | body was not defined | body | Unset | body was not defined |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
void (empty response body)
### Authorization ### Authorization
No authorization required No authorization required
@ -395,23 +434,34 @@ This endpoint does not need any parameter.
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_not_response_body_for_content_types.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_not_response_body_for_content_types.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
#### SchemaFor200ResponseBodyApplicationJson # SchemaFor200ResponseBodyApplicationJson
Type | Description | Notes ## Model Type Info
------------- | ------------- | ------------- Input Type | Accessed Type | Description | Notes
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | ------------ | ------------- | ------------- | -------------
dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | |
### Composed Schemas (allOf/anyOf/oneOf/not)
#### not
Class Name | Input Type | Accessed Type | Description | Notes
------------- | ------------- | ------------- | ------------- | -------------
[not_schema](#not_schema) | decimal.Decimal, int, | decimal.Decimal, | |
**bool, date, datetime, dict, float, int, list, str, none_type** # not_schema
## Model Type Info
Input Type | Accessed Type | Description | Notes
------------ | ------------- | ------------- | -------------
decimal.Decimal, int, | decimal.Decimal, | |
### Authorization ### Authorization

View File

@ -59,10 +59,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil
### body ### body
#### SchemaForRequestBodyApplicationJson # SchemaForRequestBodyApplicationJson
Type | Description | Notes Type | Description | Notes
------------- | ------------- | ------------- ------------- | ------------- | -------------
[**ByInt**](ByInt.md) | | [**ByInt**](../../models/ByInt.md) | |
### Return Types, Responses ### Return Types, Responses
@ -70,18 +70,15 @@ Type | Description | Notes
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_by_int_request_body.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_by_int_request_body.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | Unset | body was not defined | body | Unset | body was not defined |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
void (empty response body)
### Authorization ### Authorization
No authorization required No authorization required
@ -127,24 +124,21 @@ This endpoint does not need any parameter.
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_by_int_response_body_for_content_types.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_by_int_response_body_for_content_types.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
#### SchemaFor200ResponseBodyApplicationJson # SchemaFor200ResponseBodyApplicationJson
Type | Description | Notes Type | Description | Notes
------------- | ------------- | ------------- ------------- | ------------- | -------------
[**ByInt**](ByInt.md) | | [**ByInt**](../../models/ByInt.md) | |
[**ByInt**](ByInt.md)
### Authorization ### Authorization
No authorization required No authorization required
@ -196,10 +190,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil
### body ### body
#### SchemaForRequestBodyApplicationJson # SchemaForRequestBodyApplicationJson
Type | Description | Notes Type | Description | Notes
------------- | ------------- | ------------- ------------- | ------------- | -------------
[**ByNumber**](ByNumber.md) | | [**ByNumber**](../../models/ByNumber.md) | |
### Return Types, Responses ### Return Types, Responses
@ -207,18 +201,15 @@ Type | Description | Notes
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_by_number_request_body.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_by_number_request_body.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | Unset | body was not defined | body | Unset | body was not defined |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
void (empty response body)
### Authorization ### Authorization
No authorization required No authorization required
@ -264,24 +255,21 @@ This endpoint does not need any parameter.
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_by_number_response_body_for_content_types.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_by_number_response_body_for_content_types.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
#### SchemaFor200ResponseBodyApplicationJson # SchemaFor200ResponseBodyApplicationJson
Type | Description | Notes Type | Description | Notes
------------- | ------------- | ------------- ------------- | ------------- | -------------
[**ByNumber**](ByNumber.md) | | [**ByNumber**](../../models/ByNumber.md) | |
[**ByNumber**](ByNumber.md)
### Authorization ### Authorization
No authorization required No authorization required
@ -333,10 +321,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil
### body ### body
#### SchemaForRequestBodyApplicationJson # SchemaForRequestBodyApplicationJson
Type | Description | Notes Type | Description | Notes
------------- | ------------- | ------------- ------------- | ------------- | -------------
[**BySmallNumber**](BySmallNumber.md) | | [**BySmallNumber**](../../models/BySmallNumber.md) | |
### Return Types, Responses ### Return Types, Responses
@ -344,18 +332,15 @@ Type | Description | Notes
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_by_small_number_request_body.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_by_small_number_request_body.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | Unset | body was not defined | body | Unset | body was not defined |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
void (empty response body)
### Authorization ### Authorization
No authorization required No authorization required
@ -401,24 +386,21 @@ This endpoint does not need any parameter.
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_by_small_number_response_body_for_content_types.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_by_small_number_response_body_for_content_types.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
#### SchemaFor200ResponseBodyApplicationJson # SchemaFor200ResponseBodyApplicationJson
Type | Description | Notes Type | Description | Notes
------------- | ------------- | ------------- ------------- | ------------- | -------------
[**BySmallNumber**](BySmallNumber.md) | | [**BySmallNumber**](../../models/BySmallNumber.md) | |
[**BySmallNumber**](BySmallNumber.md)
### Authorization ### Authorization
No authorization required No authorization required
@ -470,10 +452,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil
### body ### body
#### SchemaForRequestBodyApplicationJson # SchemaForRequestBodyApplicationJson
Type | Description | Notes Type | Description | Notes
------------- | ------------- | ------------- ------------- | ------------- | -------------
[**InvalidInstanceShouldNotRaiseErrorWhenFloatDivisionInf**](InvalidInstanceShouldNotRaiseErrorWhenFloatDivisionInf.md) | | [**InvalidInstanceShouldNotRaiseErrorWhenFloatDivisionInf**](../../models/InvalidInstanceShouldNotRaiseErrorWhenFloatDivisionInf.md) | |
### Return Types, Responses ### Return Types, Responses
@ -481,18 +463,15 @@ Type | Description | Notes
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_invalid_instance_should_not_raise_error_when_float_division_inf_request_body.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_invalid_instance_should_not_raise_error_when_float_division_inf_request_body.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | Unset | body was not defined | body | Unset | body was not defined |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
void (empty response body)
### Authorization ### Authorization
No authorization required No authorization required
@ -538,24 +517,21 @@ This endpoint does not need any parameter.
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_invalid_instance_should_not_raise_error_when_float_division_inf_response_body_for_content_types.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_invalid_instance_should_not_raise_error_when_float_division_inf_response_body_for_content_types.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
#### SchemaFor200ResponseBodyApplicationJson # SchemaFor200ResponseBodyApplicationJson
Type | Description | Notes Type | Description | Notes
------------- | ------------- | ------------- ------------- | ------------- | -------------
[**InvalidInstanceShouldNotRaiseErrorWhenFloatDivisionInf**](InvalidInstanceShouldNotRaiseErrorWhenFloatDivisionInf.md) | | [**InvalidInstanceShouldNotRaiseErrorWhenFloatDivisionInf**](../../models/InvalidInstanceShouldNotRaiseErrorWhenFloatDivisionInf.md) | |
[**InvalidInstanceShouldNotRaiseErrorWhenFloatDivisionInf**](InvalidInstanceShouldNotRaiseErrorWhenFloatDivisionInf.md)
### Authorization ### Authorization
No authorization required No authorization required

View File

@ -63,10 +63,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil
### body ### body
#### SchemaForRequestBodyApplicationJson # SchemaForRequestBodyApplicationJson
Type | Description | Notes Type | Description | Notes
------------- | ------------- | ------------- ------------- | ------------- | -------------
[**NestedOneofToCheckValidationSemantics**](NestedOneofToCheckValidationSemantics.md) | | [**NestedOneofToCheckValidationSemantics**](../../models/NestedOneofToCheckValidationSemantics.md) | |
### Return Types, Responses ### Return Types, Responses
@ -74,18 +74,15 @@ Type | Description | Notes
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_nested_oneof_to_check_validation_semantics_request_body.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_nested_oneof_to_check_validation_semantics_request_body.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | Unset | body was not defined | body | Unset | body was not defined |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
void (empty response body)
### Authorization ### Authorization
No authorization required No authorization required
@ -131,24 +128,21 @@ This endpoint does not need any parameter.
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_nested_oneof_to_check_validation_semantics_response_body_for_content_types.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_nested_oneof_to_check_validation_semantics_response_body_for_content_types.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
#### SchemaFor200ResponseBodyApplicationJson # SchemaFor200ResponseBodyApplicationJson
Type | Description | Notes Type | Description | Notes
------------- | ------------- | ------------- ------------- | ------------- | -------------
[**NestedOneofToCheckValidationSemantics**](NestedOneofToCheckValidationSemantics.md) | | [**NestedOneofToCheckValidationSemantics**](../../models/NestedOneofToCheckValidationSemantics.md) | |
[**NestedOneofToCheckValidationSemantics**](NestedOneofToCheckValidationSemantics.md)
### Authorization ### Authorization
No authorization required No authorization required
@ -200,10 +194,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil
### body ### body
#### SchemaForRequestBodyApplicationJson # SchemaForRequestBodyApplicationJson
Type | Description | Notes Type | Description | Notes
------------- | ------------- | ------------- ------------- | ------------- | -------------
[**OneofComplexTypes**](OneofComplexTypes.md) | | [**OneofComplexTypes**](../../models/OneofComplexTypes.md) | |
### Return Types, Responses ### Return Types, Responses
@ -211,18 +205,15 @@ Type | Description | Notes
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_oneof_complex_types_request_body.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_oneof_complex_types_request_body.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | Unset | body was not defined | body | Unset | body was not defined |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
void (empty response body)
### Authorization ### Authorization
No authorization required No authorization required
@ -268,24 +259,21 @@ This endpoint does not need any parameter.
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_oneof_complex_types_response_body_for_content_types.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_oneof_complex_types_response_body_for_content_types.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
#### SchemaFor200ResponseBodyApplicationJson # SchemaFor200ResponseBodyApplicationJson
Type | Description | Notes Type | Description | Notes
------------- | ------------- | ------------- ------------- | ------------- | -------------
[**OneofComplexTypes**](OneofComplexTypes.md) | | [**OneofComplexTypes**](../../models/OneofComplexTypes.md) | |
[**OneofComplexTypes**](OneofComplexTypes.md)
### Authorization ### Authorization
No authorization required No authorization required
@ -337,10 +325,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil
### body ### body
#### SchemaForRequestBodyApplicationJson # SchemaForRequestBodyApplicationJson
Type | Description | Notes Type | Description | Notes
------------- | ------------- | ------------- ------------- | ------------- | -------------
[**Oneof**](Oneof.md) | | [**Oneof**](../../models/Oneof.md) | |
### Return Types, Responses ### Return Types, Responses
@ -348,18 +336,15 @@ Type | Description | Notes
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_oneof_request_body.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_oneof_request_body.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | Unset | body was not defined | body | Unset | body was not defined |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
void (empty response body)
### Authorization ### Authorization
No authorization required No authorization required
@ -405,24 +390,21 @@ This endpoint does not need any parameter.
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_oneof_response_body_for_content_types.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_oneof_response_body_for_content_types.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
#### SchemaFor200ResponseBodyApplicationJson # SchemaFor200ResponseBodyApplicationJson
Type | Description | Notes Type | Description | Notes
------------- | ------------- | ------------- ------------- | ------------- | -------------
[**Oneof**](Oneof.md) | | [**Oneof**](../../models/Oneof.md) | |
[**Oneof**](Oneof.md)
### Authorization ### Authorization
No authorization required No authorization required
@ -474,10 +456,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil
### body ### body
#### SchemaForRequestBodyApplicationJson # SchemaForRequestBodyApplicationJson
Type | Description | Notes Type | Description | Notes
------------- | ------------- | ------------- ------------- | ------------- | -------------
[**OneofWithBaseSchema**](OneofWithBaseSchema.md) | | [**OneofWithBaseSchema**](../../models/OneofWithBaseSchema.md) | |
### Return Types, Responses ### Return Types, Responses
@ -485,18 +467,15 @@ Type | Description | Notes
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_oneof_with_base_schema_request_body.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_oneof_with_base_schema_request_body.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | Unset | body was not defined | body | Unset | body was not defined |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
void (empty response body)
### Authorization ### Authorization
No authorization required No authorization required
@ -542,24 +521,21 @@ This endpoint does not need any parameter.
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_oneof_with_base_schema_response_body_for_content_types.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_oneof_with_base_schema_response_body_for_content_types.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
#### SchemaFor200ResponseBodyApplicationJson # SchemaFor200ResponseBodyApplicationJson
Type | Description | Notes Type | Description | Notes
------------- | ------------- | ------------- ------------- | ------------- | -------------
[**OneofWithBaseSchema**](OneofWithBaseSchema.md) | | [**OneofWithBaseSchema**](../../models/OneofWithBaseSchema.md) | |
[**OneofWithBaseSchema**](OneofWithBaseSchema.md)
### Authorization ### Authorization
No authorization required No authorization required
@ -611,10 +587,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil
### body ### body
#### SchemaForRequestBodyApplicationJson # SchemaForRequestBodyApplicationJson
Type | Description | Notes Type | Description | Notes
------------- | ------------- | ------------- ------------- | ------------- | -------------
[**OneofWithEmptySchema**](OneofWithEmptySchema.md) | | [**OneofWithEmptySchema**](../../models/OneofWithEmptySchema.md) | |
### Return Types, Responses ### Return Types, Responses
@ -622,18 +598,15 @@ Type | Description | Notes
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_oneof_with_empty_schema_request_body.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_oneof_with_empty_schema_request_body.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | Unset | body was not defined | body | Unset | body was not defined |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
void (empty response body)
### Authorization ### Authorization
No authorization required No authorization required
@ -679,24 +652,21 @@ This endpoint does not need any parameter.
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_oneof_with_empty_schema_response_body_for_content_types.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_oneof_with_empty_schema_response_body_for_content_types.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
#### SchemaFor200ResponseBodyApplicationJson # SchemaFor200ResponseBodyApplicationJson
Type | Description | Notes Type | Description | Notes
------------- | ------------- | ------------- ------------- | ------------- | -------------
[**OneofWithEmptySchema**](OneofWithEmptySchema.md) | | [**OneofWithEmptySchema**](../../models/OneofWithEmptySchema.md) | |
[**OneofWithEmptySchema**](OneofWithEmptySchema.md)
### Authorization ### Authorization
No authorization required No authorization required
@ -748,10 +718,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil
### body ### body
#### SchemaForRequestBodyApplicationJson # SchemaForRequestBodyApplicationJson
Type | Description | Notes Type | Description | Notes
------------- | ------------- | ------------- ------------- | ------------- | -------------
[**OneofWithRequired**](OneofWithRequired.md) | | [**OneofWithRequired**](../../models/OneofWithRequired.md) | |
### Return Types, Responses ### Return Types, Responses
@ -759,18 +729,15 @@ Type | Description | Notes
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_oneof_with_required_request_body.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_oneof_with_required_request_body.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | Unset | body was not defined | body | Unset | body was not defined |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
void (empty response body)
### Authorization ### Authorization
No authorization required No authorization required
@ -816,24 +783,21 @@ This endpoint does not need any parameter.
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_oneof_with_required_response_body_for_content_types.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_oneof_with_required_response_body_for_content_types.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
#### SchemaFor200ResponseBodyApplicationJson # SchemaFor200ResponseBodyApplicationJson
Type | Description | Notes Type | Description | Notes
------------- | ------------- | ------------- ------------- | ------------- | -------------
[**OneofWithRequired**](OneofWithRequired.md) | | [**OneofWithRequired**](../../models/OneofWithRequired.md) | |
[**OneofWithRequired**](OneofWithRequired.md)
### Authorization ### Authorization
No authorization required No authorization required

View File

@ -55,10 +55,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil
### body ### body
#### SchemaForRequestBodyApplicationJson # SchemaForRequestBodyApplicationJson
Type | Description | Notes Type | Description | Notes
------------- | ------------- | ------------- ------------- | ------------- | -------------
[**PatternIsNotAnchored**](PatternIsNotAnchored.md) | | [**PatternIsNotAnchored**](../../models/PatternIsNotAnchored.md) | |
### Return Types, Responses ### Return Types, Responses
@ -66,18 +66,15 @@ Type | Description | Notes
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_pattern_is_not_anchored_request_body.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_pattern_is_not_anchored_request_body.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | Unset | body was not defined | body | Unset | body was not defined |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
void (empty response body)
### Authorization ### Authorization
No authorization required No authorization required
@ -123,24 +120,21 @@ This endpoint does not need any parameter.
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_pattern_is_not_anchored_response_body_for_content_types.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_pattern_is_not_anchored_response_body_for_content_types.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
#### SchemaFor200ResponseBodyApplicationJson # SchemaFor200ResponseBodyApplicationJson
Type | Description | Notes Type | Description | Notes
------------- | ------------- | ------------- ------------- | ------------- | -------------
[**PatternIsNotAnchored**](PatternIsNotAnchored.md) | | [**PatternIsNotAnchored**](../../models/PatternIsNotAnchored.md) | |
[**PatternIsNotAnchored**](PatternIsNotAnchored.md)
### Authorization ### Authorization
No authorization required No authorization required
@ -192,10 +186,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil
### body ### body
#### SchemaForRequestBodyApplicationJson # SchemaForRequestBodyApplicationJson
Type | Description | Notes Type | Description | Notes
------------- | ------------- | ------------- ------------- | ------------- | -------------
[**PatternValidation**](PatternValidation.md) | | [**PatternValidation**](../../models/PatternValidation.md) | |
### Return Types, Responses ### Return Types, Responses
@ -203,18 +197,15 @@ Type | Description | Notes
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_pattern_validation_request_body.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_pattern_validation_request_body.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | Unset | body was not defined | body | Unset | body was not defined |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
void (empty response body)
### Authorization ### Authorization
No authorization required No authorization required
@ -260,24 +251,21 @@ This endpoint does not need any parameter.
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_pattern_validation_response_body_for_content_types.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_pattern_validation_response_body_for_content_types.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
#### SchemaFor200ResponseBodyApplicationJson # SchemaFor200ResponseBodyApplicationJson
Type | Description | Notes Type | Description | Notes
------------- | ------------- | ------------- ------------- | ------------- | -------------
[**PatternValidation**](PatternValidation.md) | | [**PatternValidation**](../../models/PatternValidation.md) | |
[**PatternValidation**](PatternValidation.md)
### Authorization ### Authorization
No authorization required No authorization required

View File

@ -55,10 +55,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil
### body ### body
#### SchemaForRequestBodyApplicationJson # SchemaForRequestBodyApplicationJson
Type | Description | Notes Type | Description | Notes
------------- | ------------- | ------------- ------------- | ------------- | -------------
[**ObjectPropertiesValidation**](ObjectPropertiesValidation.md) | | [**ObjectPropertiesValidation**](../../models/ObjectPropertiesValidation.md) | |
### Return Types, Responses ### Return Types, Responses
@ -66,18 +66,15 @@ Type | Description | Notes
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_object_properties_validation_request_body.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_object_properties_validation_request_body.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | Unset | body was not defined | body | Unset | body was not defined |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
void (empty response body)
### Authorization ### Authorization
No authorization required No authorization required
@ -123,24 +120,21 @@ This endpoint does not need any parameter.
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_object_properties_validation_response_body_for_content_types.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_object_properties_validation_response_body_for_content_types.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
#### SchemaFor200ResponseBodyApplicationJson # SchemaFor200ResponseBodyApplicationJson
Type | Description | Notes Type | Description | Notes
------------- | ------------- | ------------- ------------- | ------------- | -------------
[**ObjectPropertiesValidation**](ObjectPropertiesValidation.md) | | [**ObjectPropertiesValidation**](../../models/ObjectPropertiesValidation.md) | |
[**ObjectPropertiesValidation**](ObjectPropertiesValidation.md)
### Authorization ### Authorization
No authorization required No authorization required
@ -192,10 +186,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil
### body ### body
#### SchemaForRequestBodyApplicationJson # SchemaForRequestBodyApplicationJson
Type | Description | Notes Type | Description | Notes
------------- | ------------- | ------------- ------------- | ------------- | -------------
[**PropertiesWithEscapedCharacters**](PropertiesWithEscapedCharacters.md) | | [**PropertiesWithEscapedCharacters**](../../models/PropertiesWithEscapedCharacters.md) | |
### Return Types, Responses ### Return Types, Responses
@ -203,18 +197,15 @@ Type | Description | Notes
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_properties_with_escaped_characters_request_body.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_properties_with_escaped_characters_request_body.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | Unset | body was not defined | body | Unset | body was not defined |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
void (empty response body)
### Authorization ### Authorization
No authorization required No authorization required
@ -260,24 +251,21 @@ This endpoint does not need any parameter.
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_properties_with_escaped_characters_response_body_for_content_types.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_properties_with_escaped_characters_response_body_for_content_types.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
#### SchemaFor200ResponseBodyApplicationJson # SchemaFor200ResponseBodyApplicationJson
Type | Description | Notes Type | Description | Notes
------------- | ------------- | ------------- ------------- | ------------- | -------------
[**PropertiesWithEscapedCharacters**](PropertiesWithEscapedCharacters.md) | | [**PropertiesWithEscapedCharacters**](../../models/PropertiesWithEscapedCharacters.md) | |
[**PropertiesWithEscapedCharacters**](PropertiesWithEscapedCharacters.md)
### Authorization ### Authorization
No authorization required No authorization required

View File

@ -67,10 +67,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil
### body ### body
#### SchemaForRequestBodyApplicationJson # SchemaForRequestBodyApplicationJson
Type | Description | Notes Type | Description | Notes
------------- | ------------- | ------------- ------------- | ------------- | -------------
[**PropertyNamedRefThatIsNotAReference**](PropertyNamedRefThatIsNotAReference.md) | | [**PropertyNamedRefThatIsNotAReference**](../../models/PropertyNamedRefThatIsNotAReference.md) | |
### Return Types, Responses ### Return Types, Responses
@ -78,18 +78,15 @@ Type | Description | Notes
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_property_named_ref_that_is_not_a_reference_request_body.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_property_named_ref_that_is_not_a_reference_request_body.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | Unset | body was not defined | body | Unset | body was not defined |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
void (empty response body)
### Authorization ### Authorization
No authorization required No authorization required
@ -135,24 +132,21 @@ This endpoint does not need any parameter.
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_property_named_ref_that_is_not_a_reference_response_body_for_content_types.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_property_named_ref_that_is_not_a_reference_response_body_for_content_types.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
#### SchemaFor200ResponseBodyApplicationJson # SchemaFor200ResponseBodyApplicationJson
Type | Description | Notes Type | Description | Notes
------------- | ------------- | ------------- ------------- | ------------- | -------------
[**PropertyNamedRefThatIsNotAReference**](PropertyNamedRefThatIsNotAReference.md) | | [**PropertyNamedRefThatIsNotAReference**](../../models/PropertyNamedRefThatIsNotAReference.md) | |
[**PropertyNamedRefThatIsNotAReference**](PropertyNamedRefThatIsNotAReference.md)
### Authorization ### Authorization
No authorization required No authorization required
@ -206,10 +200,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil
### body ### body
#### SchemaForRequestBodyApplicationJson # SchemaForRequestBodyApplicationJson
Type | Description | Notes Type | Description | Notes
------------- | ------------- | ------------- ------------- | ------------- | -------------
[**RefInAdditionalproperties**](RefInAdditionalproperties.md) | | [**RefInAdditionalproperties**](../../models/RefInAdditionalproperties.md) | |
### Return Types, Responses ### Return Types, Responses
@ -217,18 +211,15 @@ Type | Description | Notes
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_ref_in_additionalproperties_request_body.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_ref_in_additionalproperties_request_body.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | Unset | body was not defined | body | Unset | body was not defined |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
void (empty response body)
### Authorization ### Authorization
No authorization required No authorization required
@ -274,24 +265,21 @@ This endpoint does not need any parameter.
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_ref_in_additionalproperties_response_body_for_content_types.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_ref_in_additionalproperties_response_body_for_content_types.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
#### SchemaFor200ResponseBodyApplicationJson # SchemaFor200ResponseBodyApplicationJson
Type | Description | Notes Type | Description | Notes
------------- | ------------- | ------------- ------------- | ------------- | -------------
[**RefInAdditionalproperties**](RefInAdditionalproperties.md) | | [**RefInAdditionalproperties**](../../models/RefInAdditionalproperties.md) | |
[**RefInAdditionalproperties**](RefInAdditionalproperties.md)
### Authorization ### Authorization
No authorization required No authorization required
@ -343,10 +331,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil
### body ### body
#### SchemaForRequestBodyApplicationJson # SchemaForRequestBodyApplicationJson
Type | Description | Notes Type | Description | Notes
------------- | ------------- | ------------- ------------- | ------------- | -------------
[**RefInAllof**](RefInAllof.md) | | [**RefInAllof**](../../models/RefInAllof.md) | |
### Return Types, Responses ### Return Types, Responses
@ -354,18 +342,15 @@ Type | Description | Notes
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_ref_in_allof_request_body.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_ref_in_allof_request_body.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | Unset | body was not defined | body | Unset | body was not defined |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
void (empty response body)
### Authorization ### Authorization
No authorization required No authorization required
@ -411,24 +396,21 @@ This endpoint does not need any parameter.
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_ref_in_allof_response_body_for_content_types.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_ref_in_allof_response_body_for_content_types.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
#### SchemaFor200ResponseBodyApplicationJson # SchemaFor200ResponseBodyApplicationJson
Type | Description | Notes Type | Description | Notes
------------- | ------------- | ------------- ------------- | ------------- | -------------
[**RefInAllof**](RefInAllof.md) | | [**RefInAllof**](../../models/RefInAllof.md) | |
[**RefInAllof**](RefInAllof.md)
### Authorization ### Authorization
No authorization required No authorization required
@ -480,10 +462,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil
### body ### body
#### SchemaForRequestBodyApplicationJson # SchemaForRequestBodyApplicationJson
Type | Description | Notes Type | Description | Notes
------------- | ------------- | ------------- ------------- | ------------- | -------------
[**RefInAnyof**](RefInAnyof.md) | | [**RefInAnyof**](../../models/RefInAnyof.md) | |
### Return Types, Responses ### Return Types, Responses
@ -491,18 +473,15 @@ Type | Description | Notes
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_ref_in_anyof_request_body.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_ref_in_anyof_request_body.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | Unset | body was not defined | body | Unset | body was not defined |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
void (empty response body)
### Authorization ### Authorization
No authorization required No authorization required
@ -548,24 +527,21 @@ This endpoint does not need any parameter.
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_ref_in_anyof_response_body_for_content_types.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_ref_in_anyof_response_body_for_content_types.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
#### SchemaFor200ResponseBodyApplicationJson # SchemaFor200ResponseBodyApplicationJson
Type | Description | Notes Type | Description | Notes
------------- | ------------- | ------------- ------------- | ------------- | -------------
[**RefInAnyof**](RefInAnyof.md) | | [**RefInAnyof**](../../models/RefInAnyof.md) | |
[**RefInAnyof**](RefInAnyof.md)
### Authorization ### Authorization
No authorization required No authorization required
@ -619,10 +595,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil
### body ### body
#### SchemaForRequestBodyApplicationJson # SchemaForRequestBodyApplicationJson
Type | Description | Notes Type | Description | Notes
------------- | ------------- | ------------- ------------- | ------------- | -------------
[**RefInItems**](RefInItems.md) | | [**RefInItems**](../../models/RefInItems.md) | |
### Return Types, Responses ### Return Types, Responses
@ -630,18 +606,15 @@ Type | Description | Notes
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_ref_in_items_request_body.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_ref_in_items_request_body.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | Unset | body was not defined | body | Unset | body was not defined |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
void (empty response body)
### Authorization ### Authorization
No authorization required No authorization required
@ -687,24 +660,21 @@ This endpoint does not need any parameter.
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_ref_in_items_response_body_for_content_types.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_ref_in_items_response_body_for_content_types.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
#### SchemaFor200ResponseBodyApplicationJson # SchemaFor200ResponseBodyApplicationJson
Type | Description | Notes Type | Description | Notes
------------- | ------------- | ------------- ------------- | ------------- | -------------
[**RefInItems**](RefInItems.md) | | [**RefInItems**](../../models/RefInItems.md) | |
[**RefInItems**](RefInItems.md)
### Authorization ### Authorization
No authorization required No authorization required
@ -756,29 +726,33 @@ skip_deserialization | bool | default is False | when True, headers and body wil
### body ### body
#### SchemaForRequestBodyApplicationJson # SchemaForRequestBodyApplicationJson
Type | Description | Notes ## Model Type Info
------------- | ------------- | ------------- Input Type | Accessed Type | Description | Notes
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | ------------ | ------------- | ------------- | -------------
dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | |
### Composed Schemas (allOf/anyOf/oneOf/not)
#### not
Class Name | Input Type | Accessed Type | Description | Notes
------------- | ------------- | ------------- | ------------- | -------------
[PropertyNamedRefThatIsNotAReference]({{complexTypePrefix}}PropertyNamedRefThatIsNotAReference.md) | [**PropertyNamedRefThatIsNotAReference**]({{complexTypePrefix}}PropertyNamedRefThatIsNotAReference.md) | [**PropertyNamedRefThatIsNotAReference**]({{complexTypePrefix}}PropertyNamedRefThatIsNotAReference.md) | |
### Return Types, Responses ### Return Types, Responses
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_ref_in_not_request_body.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_ref_in_not_request_body.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | Unset | body was not defined | body | Unset | body was not defined |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
void (empty response body)
### Authorization ### Authorization
No authorization required No authorization required
@ -824,23 +798,27 @@ This endpoint does not need any parameter.
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_ref_in_not_response_body_for_content_types.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_ref_in_not_response_body_for_content_types.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
#### SchemaFor200ResponseBodyApplicationJson # SchemaFor200ResponseBodyApplicationJson
Type | Description | Notes ## Model Type Info
------------- | ------------- | ------------- Input Type | Accessed Type | Description | Notes
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | ------------ | ------------- | ------------- | -------------
dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | |
### Composed Schemas (allOf/anyOf/oneOf/not)
**bool, date, datetime, dict, float, int, list, str, none_type** #### not
Class Name | Input Type | Accessed Type | Description | Notes
------------- | ------------- | ------------- | ------------- | -------------
[PropertyNamedRefThatIsNotAReference]({{complexTypePrefix}}PropertyNamedRefThatIsNotAReference.md) | [**PropertyNamedRefThatIsNotAReference**]({{complexTypePrefix}}PropertyNamedRefThatIsNotAReference.md) | [**PropertyNamedRefThatIsNotAReference**]({{complexTypePrefix}}PropertyNamedRefThatIsNotAReference.md) | |
### Authorization ### Authorization
@ -893,10 +871,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil
### body ### body
#### SchemaForRequestBodyApplicationJson # SchemaForRequestBodyApplicationJson
Type | Description | Notes Type | Description | Notes
------------- | ------------- | ------------- ------------- | ------------- | -------------
[**RefInOneof**](RefInOneof.md) | | [**RefInOneof**](../../models/RefInOneof.md) | |
### Return Types, Responses ### Return Types, Responses
@ -904,18 +882,15 @@ Type | Description | Notes
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_ref_in_oneof_request_body.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_ref_in_oneof_request_body.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | Unset | body was not defined | body | Unset | body was not defined |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
void (empty response body)
### Authorization ### Authorization
No authorization required No authorization required
@ -961,24 +936,21 @@ This endpoint does not need any parameter.
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_ref_in_oneof_response_body_for_content_types.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_ref_in_oneof_response_body_for_content_types.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
#### SchemaFor200ResponseBodyApplicationJson # SchemaFor200ResponseBodyApplicationJson
Type | Description | Notes Type | Description | Notes
------------- | ------------- | ------------- ------------- | ------------- | -------------
[**RefInOneof**](RefInOneof.md) | | [**RefInOneof**](../../models/RefInOneof.md) | |
[**RefInOneof**](RefInOneof.md)
### Authorization ### Authorization
No authorization required No authorization required
@ -1030,10 +1002,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil
### body ### body
#### SchemaForRequestBodyApplicationJson # SchemaForRequestBodyApplicationJson
Type | Description | Notes Type | Description | Notes
------------- | ------------- | ------------- ------------- | ------------- | -------------
[**RefInProperty**](RefInProperty.md) | | [**RefInProperty**](../../models/RefInProperty.md) | |
### Return Types, Responses ### Return Types, Responses
@ -1041,18 +1013,15 @@ Type | Description | Notes
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_ref_in_property_request_body.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_ref_in_property_request_body.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | Unset | body was not defined | body | Unset | body was not defined |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
void (empty response body)
### Authorization ### Authorization
No authorization required No authorization required
@ -1098,24 +1067,21 @@ This endpoint does not need any parameter.
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_ref_in_property_response_body_for_content_types.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_ref_in_property_response_body_for_content_types.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
#### SchemaFor200ResponseBodyApplicationJson # SchemaFor200ResponseBodyApplicationJson
Type | Description | Notes Type | Description | Notes
------------- | ------------- | ------------- ------------- | ------------- | -------------
[**RefInProperty**](RefInProperty.md) | | [**RefInProperty**](../../models/RefInProperty.md) | |
[**RefInProperty**](RefInProperty.md)
### Authorization ### Authorization
No authorization required No authorization required

View File

@ -59,10 +59,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil
### body ### body
#### SchemaForRequestBodyApplicationJson # SchemaForRequestBodyApplicationJson
Type | Description | Notes Type | Description | Notes
------------- | ------------- | ------------- ------------- | ------------- | -------------
[**RequiredDefaultValidation**](RequiredDefaultValidation.md) | | [**RequiredDefaultValidation**](../../models/RequiredDefaultValidation.md) | |
### Return Types, Responses ### Return Types, Responses
@ -70,18 +70,15 @@ Type | Description | Notes
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_required_default_validation_request_body.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_required_default_validation_request_body.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | Unset | body was not defined | body | Unset | body was not defined |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
void (empty response body)
### Authorization ### Authorization
No authorization required No authorization required
@ -127,24 +124,21 @@ This endpoint does not need any parameter.
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_required_default_validation_response_body_for_content_types.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_required_default_validation_response_body_for_content_types.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
#### SchemaFor200ResponseBodyApplicationJson # SchemaFor200ResponseBodyApplicationJson
Type | Description | Notes Type | Description | Notes
------------- | ------------- | ------------- ------------- | ------------- | -------------
[**RequiredDefaultValidation**](RequiredDefaultValidation.md) | | [**RequiredDefaultValidation**](../../models/RequiredDefaultValidation.md) | |
[**RequiredDefaultValidation**](RequiredDefaultValidation.md)
### Authorization ### Authorization
No authorization required No authorization required
@ -196,10 +190,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil
### body ### body
#### SchemaForRequestBodyApplicationJson # SchemaForRequestBodyApplicationJson
Type | Description | Notes Type | Description | Notes
------------- | ------------- | ------------- ------------- | ------------- | -------------
[**RequiredValidation**](RequiredValidation.md) | | [**RequiredValidation**](../../models/RequiredValidation.md) | |
### Return Types, Responses ### Return Types, Responses
@ -207,18 +201,15 @@ Type | Description | Notes
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_required_validation_request_body.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_required_validation_request_body.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | Unset | body was not defined | body | Unset | body was not defined |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
void (empty response body)
### Authorization ### Authorization
No authorization required No authorization required
@ -264,24 +255,21 @@ This endpoint does not need any parameter.
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_required_validation_response_body_for_content_types.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_required_validation_response_body_for_content_types.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
#### SchemaFor200ResponseBodyApplicationJson # SchemaFor200ResponseBodyApplicationJson
Type | Description | Notes Type | Description | Notes
------------- | ------------- | ------------- ------------- | ------------- | -------------
[**RequiredValidation**](RequiredValidation.md) | | [**RequiredValidation**](../../models/RequiredValidation.md) | |
[**RequiredValidation**](RequiredValidation.md)
### Authorization ### Authorization
No authorization required No authorization required
@ -333,10 +321,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil
### body ### body
#### SchemaForRequestBodyApplicationJson # SchemaForRequestBodyApplicationJson
Type | Description | Notes Type | Description | Notes
------------- | ------------- | ------------- ------------- | ------------- | -------------
[**RequiredWithEmptyArray**](RequiredWithEmptyArray.md) | | [**RequiredWithEmptyArray**](../../models/RequiredWithEmptyArray.md) | |
### Return Types, Responses ### Return Types, Responses
@ -344,18 +332,15 @@ Type | Description | Notes
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_required_with_empty_array_request_body.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_required_with_empty_array_request_body.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | Unset | body was not defined | body | Unset | body was not defined |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
void (empty response body)
### Authorization ### Authorization
No authorization required No authorization required
@ -401,24 +386,21 @@ This endpoint does not need any parameter.
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_required_with_empty_array_response_body_for_content_types.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_required_with_empty_array_response_body_for_content_types.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
#### SchemaFor200ResponseBodyApplicationJson # SchemaFor200ResponseBodyApplicationJson
Type | Description | Notes Type | Description | Notes
------------- | ------------- | ------------- ------------- | ------------- | -------------
[**RequiredWithEmptyArray**](RequiredWithEmptyArray.md) | | [**RequiredWithEmptyArray**](../../models/RequiredWithEmptyArray.md) | |
[**RequiredWithEmptyArray**](RequiredWithEmptyArray.md)
### Authorization ### Authorization
No authorization required No authorization required
@ -469,29 +451,27 @@ skip_deserialization | bool | default is False | when True, headers and body wil
### body ### body
#### SchemaForRequestBodyApplicationJson # SchemaForRequestBodyApplicationJson
Type | Description | Notes ## Model Type Info
------------- | ------------- | ------------- Input Type | Accessed Type | Description | Notes
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | ------------ | ------------- | ------------- | -------------
dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | |
### Return Types, Responses ### Return Types, Responses
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_required_with_escaped_characters_request_body.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_required_with_escaped_characters_request_body.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | Unset | body was not defined | body | Unset | body was not defined |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
void (empty response body)
### Authorization ### Authorization
No authorization required No authorization required
@ -536,23 +516,21 @@ This endpoint does not need any parameter.
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_required_with_escaped_characters_response_body_for_content_types.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_required_with_escaped_characters_response_body_for_content_types.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
#### SchemaFor200ResponseBodyApplicationJson # SchemaFor200ResponseBodyApplicationJson
Type | Description | Notes ## Model Type Info
------------- | ------------- | ------------- Input Type | Accessed Type | Description | Notes
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | ------------ | ------------- | ------------- | -------------
dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | |
**bool, date, datetime, dict, float, int, list, str, none_type**
### Authorization ### Authorization

View File

@ -67,10 +67,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil
### body ### body
#### SchemaForRequestBodyApplicationJson # SchemaForRequestBodyApplicationJson
Type | Description | Notes Type | Description | Notes
------------- | ------------- | ------------- ------------- | ------------- | -------------
[**ArrayTypeMatchesArrays**](ArrayTypeMatchesArrays.md) | | [**ArrayTypeMatchesArrays**](../../models/ArrayTypeMatchesArrays.md) | |
### Return Types, Responses ### Return Types, Responses
@ -78,18 +78,15 @@ Type | Description | Notes
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_array_type_matches_arrays_request_body.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_array_type_matches_arrays_request_body.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | Unset | body was not defined | body | Unset | body was not defined |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
void (empty response body)
### Authorization ### Authorization
No authorization required No authorization required
@ -135,24 +132,21 @@ This endpoint does not need any parameter.
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_array_type_matches_arrays_response_body_for_content_types.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_array_type_matches_arrays_response_body_for_content_types.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
#### SchemaFor200ResponseBodyApplicationJson # SchemaFor200ResponseBodyApplicationJson
Type | Description | Notes Type | Description | Notes
------------- | ------------- | ------------- ------------- | ------------- | -------------
[**ArrayTypeMatchesArrays**](ArrayTypeMatchesArrays.md) | | [**ArrayTypeMatchesArrays**](../../models/ArrayTypeMatchesArrays.md) | |
[**ArrayTypeMatchesArrays**](ArrayTypeMatchesArrays.md)
### Authorization ### Authorization
No authorization required No authorization required
@ -203,29 +197,27 @@ skip_deserialization | bool | default is False | when True, headers and body wil
### body ### body
#### SchemaForRequestBodyApplicationJson # SchemaForRequestBodyApplicationJson
Type | Description | Notes ## Model Type Info
------------- | ------------- | ------------- Input Type | Accessed Type | Description | Notes
**bool** | | ------------ | ------------- | ------------- | -------------
bool, | BoolClass, | |
### Return Types, Responses ### Return Types, Responses
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_boolean_type_matches_booleans_request_body.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_boolean_type_matches_booleans_request_body.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | Unset | body was not defined | body | Unset | body was not defined |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
void (empty response body)
### Authorization ### Authorization
No authorization required No authorization required
@ -270,23 +262,21 @@ This endpoint does not need any parameter.
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_boolean_type_matches_booleans_response_body_for_content_types.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_boolean_type_matches_booleans_response_body_for_content_types.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
#### SchemaFor200ResponseBodyApplicationJson # SchemaFor200ResponseBodyApplicationJson
Type | Description | Notes ## Model Type Info
------------- | ------------- | ------------- Input Type | Accessed Type | Description | Notes
**bool** | | ------------ | ------------- | ------------- | -------------
bool, | BoolClass, | |
**bool**
### Authorization ### Authorization
@ -338,29 +328,27 @@ skip_deserialization | bool | default is False | when True, headers and body wil
### body ### body
#### SchemaForRequestBodyApplicationJson # SchemaForRequestBodyApplicationJson
Type | Description | Notes ## Model Type Info
------------- | ------------- | ------------- Input Type | Accessed Type | Description | Notes
**int** | | ------------ | ------------- | ------------- | -------------
decimal.Decimal, int, | decimal.Decimal, | |
### Return Types, Responses ### Return Types, Responses
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_integer_type_matches_integers_request_body.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_integer_type_matches_integers_request_body.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | Unset | body was not defined | body | Unset | body was not defined |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
void (empty response body)
### Authorization ### Authorization
No authorization required No authorization required
@ -405,23 +393,21 @@ This endpoint does not need any parameter.
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_integer_type_matches_integers_response_body_for_content_types.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_integer_type_matches_integers_response_body_for_content_types.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
#### SchemaFor200ResponseBodyApplicationJson # SchemaFor200ResponseBodyApplicationJson
Type | Description | Notes ## Model Type Info
------------- | ------------- | ------------- Input Type | Accessed Type | Description | Notes
**int** | | ------------ | ------------- | ------------- | -------------
decimal.Decimal, int, | decimal.Decimal, | |
**int**
### Authorization ### Authorization
@ -473,29 +459,27 @@ skip_deserialization | bool | default is False | when True, headers and body wil
### body ### body
#### SchemaForRequestBodyApplicationJson # SchemaForRequestBodyApplicationJson
Type | Description | Notes ## Model Type Info
------------- | ------------- | ------------- Input Type | Accessed Type | Description | Notes
**none_type** | | ------------ | ------------- | ------------- | -------------
None, | NoneClass, | |
### Return Types, Responses ### Return Types, Responses
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_null_type_matches_only_the_null_object_request_body.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_null_type_matches_only_the_null_object_request_body.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | Unset | body was not defined | body | Unset | body was not defined |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
void (empty response body)
### Authorization ### Authorization
No authorization required No authorization required
@ -540,23 +524,21 @@ This endpoint does not need any parameter.
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_null_type_matches_only_the_null_object_response_body_for_content_types.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_null_type_matches_only_the_null_object_response_body_for_content_types.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
#### SchemaFor200ResponseBodyApplicationJson # SchemaFor200ResponseBodyApplicationJson
Type | Description | Notes ## Model Type Info
------------- | ------------- | ------------- Input Type | Accessed Type | Description | Notes
**none_type** | | ------------ | ------------- | ------------- | -------------
None, | NoneClass, | |
**none_type**
### Authorization ### Authorization
@ -608,29 +590,27 @@ skip_deserialization | bool | default is False | when True, headers and body wil
### body ### body
#### SchemaForRequestBodyApplicationJson # SchemaForRequestBodyApplicationJson
Type | Description | Notes ## Model Type Info
------------- | ------------- | ------------- Input Type | Accessed Type | Description | Notes
**int, float** | | ------------ | ------------- | ------------- | -------------
decimal.Decimal, int, float, | decimal.Decimal, | |
### Return Types, Responses ### Return Types, Responses
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_number_type_matches_numbers_request_body.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_number_type_matches_numbers_request_body.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | Unset | body was not defined | body | Unset | body was not defined |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
void (empty response body)
### Authorization ### Authorization
No authorization required No authorization required
@ -675,23 +655,21 @@ This endpoint does not need any parameter.
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_number_type_matches_numbers_response_body_for_content_types.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_number_type_matches_numbers_response_body_for_content_types.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
#### SchemaFor200ResponseBodyApplicationJson # SchemaFor200ResponseBodyApplicationJson
Type | Description | Notes ## Model Type Info
------------- | ------------- | ------------- Input Type | Accessed Type | Description | Notes
**int, float** | | ------------ | ------------- | ------------- | -------------
decimal.Decimal, int, float, | decimal.Decimal, | |
**int, float**
### Authorization ### Authorization
@ -743,29 +721,27 @@ skip_deserialization | bool | default is False | when True, headers and body wil
### body ### body
#### SchemaForRequestBodyApplicationJson # SchemaForRequestBodyApplicationJson
Type | Description | Notes ## Model Type Info
------------- | ------------- | ------------- Input Type | Accessed Type | Description | Notes
**{str: (bool, date, datetime, dict, float, int, list, str, none_type)}** | | ------------ | ------------- | ------------- | -------------
dict, frozendict.frozendict, | frozendict.frozendict, | |
### Return Types, Responses ### Return Types, Responses
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_object_type_matches_objects_request_body.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_object_type_matches_objects_request_body.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | Unset | body was not defined | body | Unset | body was not defined |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
void (empty response body)
### Authorization ### Authorization
No authorization required No authorization required
@ -810,23 +786,21 @@ This endpoint does not need any parameter.
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_object_type_matches_objects_response_body_for_content_types.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_object_type_matches_objects_response_body_for_content_types.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
#### SchemaFor200ResponseBodyApplicationJson # SchemaFor200ResponseBodyApplicationJson
Type | Description | Notes ## Model Type Info
------------- | ------------- | ------------- Input Type | Accessed Type | Description | Notes
**{str: (bool, date, datetime, dict, float, int, list, str, none_type)}** | | ------------ | ------------- | ------------- | -------------
dict, frozendict.frozendict, | frozendict.frozendict, | |
**{str: (bool, date, datetime, dict, float, int, list, str, none_type)}**
### Authorization ### Authorization
@ -878,29 +852,27 @@ skip_deserialization | bool | default is False | when True, headers and body wil
### body ### body
#### SchemaForRequestBodyApplicationJson # SchemaForRequestBodyApplicationJson
Type | Description | Notes ## Model Type Info
------------- | ------------- | ------------- Input Type | Accessed Type | Description | Notes
**str** | | ------------ | ------------- | ------------- | -------------
str, | str, | |
### Return Types, Responses ### Return Types, Responses
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_string_type_matches_strings_request_body.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_string_type_matches_strings_request_body.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | Unset | body was not defined | body | Unset | body was not defined |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
void (empty response body)
### Authorization ### Authorization
No authorization required No authorization required
@ -945,23 +917,21 @@ This endpoint does not need any parameter.
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_string_type_matches_strings_response_body_for_content_types.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_string_type_matches_strings_response_body_for_content_types.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
#### SchemaFor200ResponseBodyApplicationJson # SchemaFor200ResponseBodyApplicationJson
Type | Description | Notes ## Model Type Info
------------- | ------------- | ------------- Input Type | Accessed Type | Description | Notes
**str** | | ------------ | ------------- | ------------- | -------------
str, | str, | |
**str**
### Authorization ### Authorization

View File

@ -55,10 +55,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil
### body ### body
#### SchemaForRequestBodyApplicationJson # SchemaForRequestBodyApplicationJson
Type | Description | Notes Type | Description | Notes
------------- | ------------- | ------------- ------------- | ------------- | -------------
[**UniqueitemsFalseValidation**](UniqueitemsFalseValidation.md) | | [**UniqueitemsFalseValidation**](../../models/UniqueitemsFalseValidation.md) | |
### Return Types, Responses ### Return Types, Responses
@ -66,18 +66,15 @@ Type | Description | Notes
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_uniqueitems_false_validation_request_body.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_uniqueitems_false_validation_request_body.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | Unset | body was not defined | body | Unset | body was not defined |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
void (empty response body)
### Authorization ### Authorization
No authorization required No authorization required
@ -123,24 +120,21 @@ This endpoint does not need any parameter.
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_uniqueitems_false_validation_response_body_for_content_types.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_uniqueitems_false_validation_response_body_for_content_types.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
#### SchemaFor200ResponseBodyApplicationJson # SchemaFor200ResponseBodyApplicationJson
Type | Description | Notes Type | Description | Notes
------------- | ------------- | ------------- ------------- | ------------- | -------------
[**UniqueitemsFalseValidation**](UniqueitemsFalseValidation.md) | | [**UniqueitemsFalseValidation**](../../models/UniqueitemsFalseValidation.md) | |
[**UniqueitemsFalseValidation**](UniqueitemsFalseValidation.md)
### Authorization ### Authorization
No authorization required No authorization required
@ -192,10 +186,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil
### body ### body
#### SchemaForRequestBodyApplicationJson # SchemaForRequestBodyApplicationJson
Type | Description | Notes Type | Description | Notes
------------- | ------------- | ------------- ------------- | ------------- | -------------
[**UniqueitemsValidation**](UniqueitemsValidation.md) | | [**UniqueitemsValidation**](../../models/UniqueitemsValidation.md) | |
### Return Types, Responses ### Return Types, Responses
@ -203,18 +197,15 @@ Type | Description | Notes
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_uniqueitems_validation_request_body.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_uniqueitems_validation_request_body.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | Unset | body was not defined | body | Unset | body was not defined |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
void (empty response body)
### Authorization ### Authorization
No authorization required No authorization required
@ -260,24 +251,21 @@ This endpoint does not need any parameter.
Code | Class | Description Code | Class | Description
------------- | ------------- | ------------- ------------- | ------------- | -------------
n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned
200 | ApiResponseFor200 | success 200 | [ApiResponseFor200](#post_uniqueitems_validation_response_body_for_content_types.ApiResponseFor200) | success
#### ApiResponseFor200 #### post_uniqueitems_validation_response_body_for_content_types.ApiResponseFor200
Name | Type | Description | Notes Name | Type | Description | Notes
------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | -------------
response | urllib3.HTTPResponse | Raw response | response | urllib3.HTTPResponse | Raw response |
body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | |
headers | Unset | headers were not defined | headers | Unset | headers were not defined |
#### SchemaFor200ResponseBodyApplicationJson # SchemaFor200ResponseBodyApplicationJson
Type | Description | Notes Type | Description | Notes
------------- | ------------- | ------------- ------------- | ------------- | -------------
[**UniqueitemsValidation**](UniqueitemsValidation.md) | | [**UniqueitemsValidation**](../../models/UniqueitemsValidation.md) | |
[**UniqueitemsValidation**](UniqueitemsValidation.md)
### Authorization ### Authorization
No authorization required No authorization required

View File

@ -1,11 +1,16 @@
# unit_test_api.model.additionalproperties_allows_a_schema_which_should_validate.AdditionalpropertiesAllowsASchemaWhichShouldValidate # unit_test_api.model.additionalproperties_allows_a_schema_which_should_validate.AdditionalpropertiesAllowsASchemaWhichShouldValidate
#### Properties ## Model Type Info
Name | Type | Description | Notes Input Type | Accessed Type | Description | Notes
------------ | ------------- | ------------- | ------------- ------------ | ------------- | ------------- | -------------
**foo** | **bool, date, datetime, dict, float, int, list, str, none_type** | | [optional] dict, frozendict.frozendict, | frozendict.frozendict, | |
**bar** | **bool, date, datetime, dict, float, int, list, str, none_type** | | [optional]
**any string name** | **bool** | any string name can be used but the value must be the correct type | [optional] ### Dictionary Keys
Key | Input Type | Accessed Type | Description | Notes
------------ | ------------- | ------------- | ------------- | -------------
**foo** | dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | [optional]
**bar** | dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | [optional]
**any_string_name** | bool, | BoolClass, | any string name can be used but the value must be the correct type | [optional]
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)

View File

@ -1,11 +1,16 @@
# unit_test_api.model.additionalproperties_are_allowed_by_default.AdditionalpropertiesAreAllowedByDefault # unit_test_api.model.additionalproperties_are_allowed_by_default.AdditionalpropertiesAreAllowedByDefault
#### Properties ## Model Type Info
Name | Type | Description | Notes Input Type | Accessed Type | Description | Notes
------------ | ------------- | ------------- | ------------- ------------ | ------------- | ------------- | -------------
**foo** | **bool, date, datetime, dict, float, int, list, str, none_type** | | [optional] dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | |
**bar** | **bool, date, datetime, dict, float, int, list, str, none_type** | | [optional]
**any string name** | dict, frozendict, str, date, datetime, int, float, bool, Decimal, None, list, tuple, bytes | any string name can be used but the value must be the correct type | [optional] ### Dictionary Keys
Key | Input Type | Accessed Type | Description | Notes
------------ | ------------- | ------------- | ------------- | -------------
**foo** | dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | [optional]
**bar** | dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | [optional]
**any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional]
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)

View File

@ -1,9 +1,14 @@
# unit_test_api.model.additionalproperties_can_exist_by_itself.AdditionalpropertiesCanExistByItself # unit_test_api.model.additionalproperties_can_exist_by_itself.AdditionalpropertiesCanExistByItself
#### Properties ## Model Type Info
Name | Type | Description | Notes Input Type | Accessed Type | Description | Notes
------------ | ------------- | ------------- | ------------- ------------ | ------------- | ------------- | -------------
**any string name** | **bool** | any string name can be used but the value must be the correct type | [optional] dict, frozendict.frozendict, | frozendict.frozendict, | |
### Dictionary Keys
Key | Input Type | Accessed Type | Description | Notes
------------ | ------------- | ------------- | ------------- | -------------
**any_string_name** | bool, | BoolClass, | any string name can be used but the value must be the correct type | [optional]
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)

View File

@ -1,9 +1,33 @@
# unit_test_api.model.additionalproperties_should_not_look_in_applicators.AdditionalpropertiesShouldNotLookInApplicators # unit_test_api.model.additionalproperties_should_not_look_in_applicators.AdditionalpropertiesShouldNotLookInApplicators
#### Properties ## Model Type Info
Name | Type | Description | Notes Input Type | Accessed Type | Description | Notes
------------ | ------------- | ------------- | ------------- ------------ | ------------- | ------------- | -------------
**any string name** | **bool** | any string name can be used but the value must be the correct type | [optional] dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | |
### Dictionary Keys
Key | Input Type | Accessed Type | Description | Notes
------------ | ------------- | ------------- | ------------- | -------------
**any_string_name** | bool, | BoolClass, | any string name can be used but the value must be the correct type | [optional]
### Composed Schemas (allOf/anyOf/oneOf/not)
#### allOf
Class Name | Input Type | Accessed Type | Description | Notes
------------- | ------------- | ------------- | ------------- | -------------
[all_of_0](#all_of_0) | dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | |
# all_of_0
## Model Type Info
Input Type | Accessed Type | Description | Notes
------------ | ------------- | ------------- | -------------
dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | |
### Dictionary Keys
Key | Input Type | Accessed Type | Description | Notes
------------ | ------------- | ------------- | ------------- | -------------
**foo** | dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | [optional]
**any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional]
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)

View File

@ -1,8 +1,42 @@
# unit_test_api.model.allof.Allof # unit_test_api.model.allof.Allof
Type | Description | Notes ## Model Type Info
------------- | ------------- | ------------- Input Type | Accessed Type | Description | Notes
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | ------------ | ------------- | ------------- | -------------
dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | |
### Composed Schemas (allOf/anyOf/oneOf/not)
#### allOf
Class Name | Input Type | Accessed Type | Description | Notes
------------- | ------------- | ------------- | ------------- | -------------
[all_of_0](#all_of_0) | dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | |
[all_of_1](#all_of_1) | dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | |
# all_of_0
## Model Type Info
Input Type | Accessed Type | Description | Notes
------------ | ------------- | ------------- | -------------
dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | |
### Dictionary Keys
Key | Input Type | Accessed Type | Description | Notes
------------ | ------------- | ------------- | ------------- | -------------
**bar** | decimal.Decimal, int, | decimal.Decimal, | |
**any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional]
# all_of_1
## Model Type Info
Input Type | Accessed Type | Description | Notes
------------ | ------------- | ------------- | -------------
dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | |
### Dictionary Keys
Key | Input Type | Accessed Type | Description | Notes
------------ | ------------- | ------------- | ------------- | -------------
**foo** | str, | str, | |
**any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional]
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)

View File

@ -1,8 +1,44 @@
# unit_test_api.model.allof_combined_with_anyof_oneof.AllofCombinedWithAnyofOneof # unit_test_api.model.allof_combined_with_anyof_oneof.AllofCombinedWithAnyofOneof
Type | Description | Notes ## Model Type Info
------------- | ------------- | ------------- Input Type | Accessed Type | Description | Notes
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | ------------ | ------------- | ------------- | -------------
dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | |
### Composed Schemas (allOf/anyOf/oneOf/not)
#### allOf
Class Name | Input Type | Accessed Type | Description | Notes
------------- | ------------- | ------------- | ------------- | -------------
[all_of_0](#all_of_0) | dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | |
# all_of_0
## Model Type Info
Input Type | Accessed Type | Description | Notes
------------ | ------------- | ------------- | -------------
dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | |
#### anyOf
Class Name | Input Type | Accessed Type | Description | Notes
------------- | ------------- | ------------- | ------------- | -------------
[any_of_0](#any_of_0) | dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | |
# any_of_0
## Model Type Info
Input Type | Accessed Type | Description | Notes
------------ | ------------- | ------------- | -------------
dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | |
#### oneOf
Class Name | Input Type | Accessed Type | Description | Notes
------------- | ------------- | ------------- | ------------- | -------------
[one_of_0](#one_of_0) | dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | |
# one_of_0
## Model Type Info
Input Type | Accessed Type | Description | Notes
------------ | ------------- | ------------- | -------------
dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | |
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)

View File

@ -1,8 +1,30 @@
# unit_test_api.model.allof_simple_types.AllofSimpleTypes # unit_test_api.model.allof_simple_types.AllofSimpleTypes
Type | Description | Notes ## Model Type Info
------------- | ------------- | ------------- Input Type | Accessed Type | Description | Notes
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | ------------ | ------------- | ------------- | -------------
dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | |
### Composed Schemas (allOf/anyOf/oneOf/not)
#### allOf
Class Name | Input Type | Accessed Type | Description | Notes
------------- | ------------- | ------------- | ------------- | -------------
[all_of_0](#all_of_0) | dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | |
[all_of_1](#all_of_1) | dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | |
# all_of_0
## Model Type Info
Input Type | Accessed Type | Description | Notes
------------ | ------------- | ------------- | -------------
dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | |
# all_of_1
## Model Type Info
Input Type | Accessed Type | Description | Notes
------------ | ------------- | ------------- | -------------
dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | |
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)

View File

@ -1,10 +1,48 @@
# unit_test_api.model.allof_with_base_schema.AllofWithBaseSchema # unit_test_api.model.allof_with_base_schema.AllofWithBaseSchema
#### Properties ## Model Type Info
Name | Type | Description | Notes Input Type | Accessed Type | Description | Notes
------------ | ------------- | ------------- | ------------- ------------ | ------------- | ------------- | -------------
**bar** | **int** | | dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | |
**any string name** | dict, frozendict, str, date, datetime, int, float, bool, Decimal, None, list, tuple, bytes | any string name can be used but the value must be the correct type | [optional]
### Dictionary Keys
Key | Input Type | Accessed Type | Description | Notes
------------ | ------------- | ------------- | ------------- | -------------
**bar** | decimal.Decimal, int, | decimal.Decimal, | |
**any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional]
### Composed Schemas (allOf/anyOf/oneOf/not)
#### allOf
Class Name | Input Type | Accessed Type | Description | Notes
------------- | ------------- | ------------- | ------------- | -------------
[all_of_0](#all_of_0) | dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | |
[all_of_1](#all_of_1) | dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | |
# all_of_0
## Model Type Info
Input Type | Accessed Type | Description | Notes
------------ | ------------- | ------------- | -------------
dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | |
### Dictionary Keys
Key | Input Type | Accessed Type | Description | Notes
------------ | ------------- | ------------- | ------------- | -------------
**foo** | str, | str, | |
**any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional]
# all_of_1
## Model Type Info
Input Type | Accessed Type | Description | Notes
------------ | ------------- | ------------- | -------------
dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | |
### Dictionary Keys
Key | Input Type | Accessed Type | Description | Notes
------------ | ------------- | ------------- | ------------- | -------------
**baz** | None, | NoneClass, | |
**any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional]
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)

View File

@ -1,8 +1,22 @@
# unit_test_api.model.allof_with_one_empty_schema.AllofWithOneEmptySchema # unit_test_api.model.allof_with_one_empty_schema.AllofWithOneEmptySchema
Type | Description | Notes ## Model Type Info
------------- | ------------- | ------------- Input Type | Accessed Type | Description | Notes
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | ------------ | ------------- | ------------- | -------------
dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | |
### Composed Schemas (allOf/anyOf/oneOf/not)
#### allOf
Class Name | Input Type | Accessed Type | Description | Notes
------------- | ------------- | ------------- | ------------- | -------------
[all_of_0](#all_of_0) | dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | |
# all_of_0
## Model Type Info
Input Type | Accessed Type | Description | Notes
------------ | ------------- | ------------- | -------------
dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | |
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)

View File

@ -1,8 +1,30 @@
# unit_test_api.model.allof_with_the_first_empty_schema.AllofWithTheFirstEmptySchema # unit_test_api.model.allof_with_the_first_empty_schema.AllofWithTheFirstEmptySchema
Type | Description | Notes ## Model Type Info
------------- | ------------- | ------------- Input Type | Accessed Type | Description | Notes
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | ------------ | ------------- | ------------- | -------------
dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | |
### Composed Schemas (allOf/anyOf/oneOf/not)
#### allOf
Class Name | Input Type | Accessed Type | Description | Notes
------------- | ------------- | ------------- | ------------- | -------------
[all_of_0](#all_of_0) | dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | |
[all_of_1](#all_of_1) | decimal.Decimal, int, float, | decimal.Decimal, | |
# all_of_0
## Model Type Info
Input Type | Accessed Type | Description | Notes
------------ | ------------- | ------------- | -------------
dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | |
# all_of_1
## Model Type Info
Input Type | Accessed Type | Description | Notes
------------ | ------------- | ------------- | -------------
decimal.Decimal, int, float, | decimal.Decimal, | |
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)

View File

@ -1,8 +1,30 @@
# unit_test_api.model.allof_with_the_last_empty_schema.AllofWithTheLastEmptySchema # unit_test_api.model.allof_with_the_last_empty_schema.AllofWithTheLastEmptySchema
Type | Description | Notes ## Model Type Info
------------- | ------------- | ------------- Input Type | Accessed Type | Description | Notes
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | ------------ | ------------- | ------------- | -------------
dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | |
### Composed Schemas (allOf/anyOf/oneOf/not)
#### allOf
Class Name | Input Type | Accessed Type | Description | Notes
------------- | ------------- | ------------- | ------------- | -------------
[all_of_0](#all_of_0) | decimal.Decimal, int, float, | decimal.Decimal, | |
[all_of_1](#all_of_1) | dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | |
# all_of_0
## Model Type Info
Input Type | Accessed Type | Description | Notes
------------ | ------------- | ------------- | -------------
decimal.Decimal, int, float, | decimal.Decimal, | |
# all_of_1
## Model Type Info
Input Type | Accessed Type | Description | Notes
------------ | ------------- | ------------- | -------------
dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | |
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)

View File

@ -1,8 +1,30 @@
# unit_test_api.model.allof_with_two_empty_schemas.AllofWithTwoEmptySchemas # unit_test_api.model.allof_with_two_empty_schemas.AllofWithTwoEmptySchemas
Type | Description | Notes ## Model Type Info
------------- | ------------- | ------------- Input Type | Accessed Type | Description | Notes
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | ------------ | ------------- | ------------- | -------------
dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | |
### Composed Schemas (allOf/anyOf/oneOf/not)
#### allOf
Class Name | Input Type | Accessed Type | Description | Notes
------------- | ------------- | ------------- | ------------- | -------------
[all_of_0](#all_of_0) | dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | |
[all_of_1](#all_of_1) | dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | |
# all_of_0
## Model Type Info
Input Type | Accessed Type | Description | Notes
------------ | ------------- | ------------- | -------------
dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | |
# all_of_1
## Model Type Info
Input Type | Accessed Type | Description | Notes
------------ | ------------- | ------------- | -------------
dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | |
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)

View File

@ -1,8 +1,30 @@
# unit_test_api.model.anyof.Anyof # unit_test_api.model.anyof.Anyof
Type | Description | Notes ## Model Type Info
------------- | ------------- | ------------- Input Type | Accessed Type | Description | Notes
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | ------------ | ------------- | ------------- | -------------
dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | |
### Composed Schemas (allOf/anyOf/oneOf/not)
#### anyOf
Class Name | Input Type | Accessed Type | Description | Notes
------------- | ------------- | ------------- | ------------- | -------------
[any_of_0](#any_of_0) | decimal.Decimal, int, | decimal.Decimal, | |
[any_of_1](#any_of_1) | dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | |
# any_of_0
## Model Type Info
Input Type | Accessed Type | Description | Notes
------------ | ------------- | ------------- | -------------
decimal.Decimal, int, | decimal.Decimal, | |
# any_of_1
## Model Type Info
Input Type | Accessed Type | Description | Notes
------------ | ------------- | ------------- | -------------
dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | |
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)

View File

@ -1,8 +1,42 @@
# unit_test_api.model.anyof_complex_types.AnyofComplexTypes # unit_test_api.model.anyof_complex_types.AnyofComplexTypes
Type | Description | Notes ## Model Type Info
------------- | ------------- | ------------- Input Type | Accessed Type | Description | Notes
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | ------------ | ------------- | ------------- | -------------
dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | |
### Composed Schemas (allOf/anyOf/oneOf/not)
#### anyOf
Class Name | Input Type | Accessed Type | Description | Notes
------------- | ------------- | ------------- | ------------- | -------------
[any_of_0](#any_of_0) | dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | |
[any_of_1](#any_of_1) | dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | |
# any_of_0
## Model Type Info
Input Type | Accessed Type | Description | Notes
------------ | ------------- | ------------- | -------------
dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | |
### Dictionary Keys
Key | Input Type | Accessed Type | Description | Notes
------------ | ------------- | ------------- | ------------- | -------------
**bar** | decimal.Decimal, int, | decimal.Decimal, | |
**any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional]
# any_of_1
## Model Type Info
Input Type | Accessed Type | Description | Notes
------------ | ------------- | ------------- | -------------
dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | |
### Dictionary Keys
Key | Input Type | Accessed Type | Description | Notes
------------ | ------------- | ------------- | ------------- | -------------
**foo** | str, | str, | |
**any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional]
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)

View File

@ -1,8 +1,30 @@
# unit_test_api.model.anyof_with_base_schema.AnyofWithBaseSchema # unit_test_api.model.anyof_with_base_schema.AnyofWithBaseSchema
Type | Description | Notes ## Model Type Info
------------- | ------------- | ------------- Input Type | Accessed Type | Description | Notes
**str** | | ------------ | ------------- | ------------- | -------------
str, | str, | |
### Composed Schemas (allOf/anyOf/oneOf/not)
#### anyOf
Class Name | Input Type | Accessed Type | Description | Notes
------------- | ------------- | ------------- | ------------- | -------------
[any_of_0](#any_of_0) | dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | |
[any_of_1](#any_of_1) | dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | |
# any_of_0
## Model Type Info
Input Type | Accessed Type | Description | Notes
------------ | ------------- | ------------- | -------------
dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | |
# any_of_1
## Model Type Info
Input Type | Accessed Type | Description | Notes
------------ | ------------- | ------------- | -------------
dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | |
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)

View File

@ -1,8 +1,30 @@
# unit_test_api.model.anyof_with_one_empty_schema.AnyofWithOneEmptySchema # unit_test_api.model.anyof_with_one_empty_schema.AnyofWithOneEmptySchema
Type | Description | Notes ## Model Type Info
------------- | ------------- | ------------- Input Type | Accessed Type | Description | Notes
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | ------------ | ------------- | ------------- | -------------
dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | |
### Composed Schemas (allOf/anyOf/oneOf/not)
#### anyOf
Class Name | Input Type | Accessed Type | Description | Notes
------------- | ------------- | ------------- | ------------- | -------------
[any_of_0](#any_of_0) | decimal.Decimal, int, float, | decimal.Decimal, | |
[any_of_1](#any_of_1) | dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | |
# any_of_0
## Model Type Info
Input Type | Accessed Type | Description | Notes
------------ | ------------- | ------------- | -------------
decimal.Decimal, int, float, | decimal.Decimal, | |
# any_of_1
## Model Type Info
Input Type | Accessed Type | Description | Notes
------------ | ------------- | ------------- | -------------
dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | |
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)

View File

@ -1,8 +1,14 @@
# unit_test_api.model.array_type_matches_arrays.ArrayTypeMatchesArrays # unit_test_api.model.array_type_matches_arrays.ArrayTypeMatchesArrays
Type | Description | Notes ## Model Type Info
------------- | ------------- | ------------- Input Type | Accessed Type | Description | Notes
**[bool, date, datetime, dict, float, int, list, str, none_type]** | | ------------ | ------------- | ------------- | -------------
list, tuple, | tuple, | |
### Tuple Items
Class Name | Input Type | Accessed Type | Description | Notes
------------- | ------------- | ------------- | ------------- | -------------
items | dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | |
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)

View File

@ -1,8 +1,9 @@
# unit_test_api.model.boolean_type_matches_booleans.BooleanTypeMatchesBooleans # unit_test_api.model.boolean_type_matches_booleans.BooleanTypeMatchesBooleans
Type | Description | Notes ## Model Type Info
------------- | ------------- | ------------- Input Type | Accessed Type | Description | Notes
**bool** | | ------------ | ------------- | ------------- | -------------
bool, | BoolClass, | |
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)

View File

@ -1,8 +1,9 @@
# unit_test_api.model.by_int.ByInt # unit_test_api.model.by_int.ByInt
Type | Description | Notes ## Model Type Info
------------- | ------------- | ------------- Input Type | Accessed Type | Description | Notes
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | ------------ | ------------- | ------------- | -------------
dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | |
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)

View File

@ -1,8 +1,9 @@
# unit_test_api.model.by_number.ByNumber # unit_test_api.model.by_number.ByNumber
Type | Description | Notes ## Model Type Info
------------- | ------------- | ------------- Input Type | Accessed Type | Description | Notes
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | ------------ | ------------- | ------------- | -------------
dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | |
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)

View File

@ -1,8 +1,9 @@
# unit_test_api.model.by_small_number.BySmallNumber # unit_test_api.model.by_small_number.BySmallNumber
Type | Description | Notes ## Model Type Info
------------- | ------------- | ------------- Input Type | Accessed Type | Description | Notes
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | ------------ | ------------- | ------------- | -------------
dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | |
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)

View File

@ -1,8 +1,9 @@
# unit_test_api.model.date_time_format.DateTimeFormat # unit_test_api.model.date_time_format.DateTimeFormat
Type | Description | Notes ## Model Type Info
------------- | ------------- | ------------- Input Type | Accessed Type | Description | Notes
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | ------------ | ------------- | ------------- | -------------
dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | value must conform to RFC-3339 date-time
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)

View File

@ -1,8 +1,9 @@
# unit_test_api.model.email_format.EmailFormat # unit_test_api.model.email_format.EmailFormat
Type | Description | Notes ## Model Type Info
------------- | ------------- | ------------- Input Type | Accessed Type | Description | Notes
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | ------------ | ------------- | ------------- | -------------
dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | |
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)

View File

@ -1,8 +1,9 @@
# unit_test_api.model.enum_with0_does_not_match_false.EnumWith0DoesNotMatchFalse # unit_test_api.model.enum_with0_does_not_match_false.EnumWith0DoesNotMatchFalse
Type | Description | Notes ## Model Type Info
------------- | ------------- | ------------- Input Type | Accessed Type | Description | Notes
**float** | | must be one of [0, ] ------------ | ------------- | ------------- | -------------
decimal.Decimal, int, float, | decimal.Decimal, | | must be one of [0, ]
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)

View File

@ -1,8 +1,9 @@
# unit_test_api.model.enum_with1_does_not_match_true.EnumWith1DoesNotMatchTrue # unit_test_api.model.enum_with1_does_not_match_true.EnumWith1DoesNotMatchTrue
Type | Description | Notes ## Model Type Info
------------- | ------------- | ------------- Input Type | Accessed Type | Description | Notes
**float** | | must be one of [1, ] ------------ | ------------- | ------------- | -------------
decimal.Decimal, int, float, | decimal.Decimal, | | must be one of [1, ]
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)

View File

@ -1,8 +1,9 @@
# unit_test_api.model.enum_with_escaped_characters.EnumWithEscapedCharacters # unit_test_api.model.enum_with_escaped_characters.EnumWithEscapedCharacters
Type | Description | Notes ## Model Type Info
------------- | ------------- | ------------- Input Type | Accessed Type | Description | Notes
**str** | | must be one of ["foo\nbar", "foo\rbar", ] ------------ | ------------- | ------------- | -------------
str, | str, | | must be one of ["foo\nbar", "foo\rbar", ]
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)

View File

@ -1,8 +1,9 @@
# unit_test_api.model.enum_with_false_does_not_match0.EnumWithFalseDoesNotMatch0 # unit_test_api.model.enum_with_false_does_not_match0.EnumWithFalseDoesNotMatch0
Type | Description | Notes ## Model Type Info
------------- | ------------- | ------------- Input Type | Accessed Type | Description | Notes
**bool** | | must be one of [schemas.BoolClass.FALSE, ] ------------ | ------------- | ------------- | -------------
bool, | BoolClass, | | must be one of [schemas.BoolClass.FALSE, ]
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)

View File

@ -1,8 +1,9 @@
# unit_test_api.model.enum_with_true_does_not_match1.EnumWithTrueDoesNotMatch1 # unit_test_api.model.enum_with_true_does_not_match1.EnumWithTrueDoesNotMatch1
Type | Description | Notes ## Model Type Info
------------- | ------------- | ------------- Input Type | Accessed Type | Description | Notes
**bool** | | must be one of [schemas.BoolClass.TRUE, ] ------------ | ------------- | ------------- | -------------
bool, | BoolClass, | | must be one of [schemas.BoolClass.TRUE, ]
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)

View File

@ -1,11 +1,16 @@
# unit_test_api.model.enums_in_properties.EnumsInProperties # unit_test_api.model.enums_in_properties.EnumsInProperties
#### Properties ## Model Type Info
Name | Type | Description | Notes Input Type | Accessed Type | Description | Notes
------------ | ------------- | ------------- | ------------- ------------ | ------------- | ------------- | -------------
**bar** | **str** | | dict, frozendict.frozendict, | frozendict.frozendict, | |
**foo** | **str** | | [optional]
**any string name** | dict, frozendict, str, date, datetime, int, float, bool, Decimal, None, list, tuple, bytes | any string name can be used but the value must be the correct type | [optional] ### Dictionary Keys
Key | Input Type | Accessed Type | Description | Notes
------------ | ------------- | ------------- | ------------- | -------------
**bar** | str, | str, | | must be one of ["bar", ]
**foo** | str, | str, | | [optional] must be one of ["foo", ]
**any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional]
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)

View File

@ -1,10 +1,35 @@
# unit_test_api.model.forbidden_property.ForbiddenProperty # unit_test_api.model.forbidden_property.ForbiddenProperty
#### Properties ## Model Type Info
Name | Type | Description | Notes Input Type | Accessed Type | Description | Notes
------------ | ------------- | ------------- | ------------- ------------ | ------------- | ------------- | -------------
**foo** | **bool, date, datetime, dict, float, int, list, str, none_type** | | [optional] dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | |
**any string name** | dict, frozendict, str, date, datetime, int, float, bool, Decimal, None, list, tuple, bytes | any string name can be used but the value must be the correct type | [optional]
### Dictionary Keys
Key | Input Type | Accessed Type | Description | Notes
------------ | ------------- | ------------- | ------------- | -------------
**[foo](#foo)** | dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | [optional]
**any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional]
# foo
## Model Type Info
Input Type | Accessed Type | Description | Notes
------------ | ------------- | ------------- | -------------
dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | |
### Composed Schemas (allOf/anyOf/oneOf/not)
#### not
Class Name | Input Type | Accessed Type | Description | Notes
------------- | ------------- | ------------- | ------------- | -------------
[not_schema](#not_schema) | dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | |
# not_schema
## Model Type Info
Input Type | Accessed Type | Description | Notes
------------ | ------------- | ------------- | -------------
dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | |
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)

View File

@ -1,8 +1,9 @@
# unit_test_api.model.hostname_format.HostnameFormat # unit_test_api.model.hostname_format.HostnameFormat
Type | Description | Notes ## Model Type Info
------------- | ------------- | ------------- Input Type | Accessed Type | Description | Notes
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | ------------ | ------------- | ------------- | -------------
dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | |
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)

View File

@ -1,8 +1,9 @@
# unit_test_api.model.integer_type_matches_integers.IntegerTypeMatchesIntegers # unit_test_api.model.integer_type_matches_integers.IntegerTypeMatchesIntegers
Type | Description | Notes ## Model Type Info
------------- | ------------- | ------------- Input Type | Accessed Type | Description | Notes
**int** | | ------------ | ------------- | ------------- | -------------
decimal.Decimal, int, | decimal.Decimal, | |
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)

View File

@ -1,8 +1,9 @@
# unit_test_api.model.invalid_instance_should_not_raise_error_when_float_division_inf.InvalidInstanceShouldNotRaiseErrorWhenFloatDivisionInf # unit_test_api.model.invalid_instance_should_not_raise_error_when_float_division_inf.InvalidInstanceShouldNotRaiseErrorWhenFloatDivisionInf
Type | Description | Notes ## Model Type Info
------------- | ------------- | ------------- Input Type | Accessed Type | Description | Notes
**int** | | ------------ | ------------- | ------------- | -------------
decimal.Decimal, int, | decimal.Decimal, | |
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)

View File

@ -1,10 +1,15 @@
# unit_test_api.model.invalid_string_value_for_default.InvalidStringValueForDefault # unit_test_api.model.invalid_string_value_for_default.InvalidStringValueForDefault
#### Properties ## Model Type Info
Name | Type | Description | Notes Input Type | Accessed Type | Description | Notes
------------ | ------------- | ------------- | ------------- ------------ | ------------- | ------------- | -------------
**bar** | **str** | | [optional] if omitted the server will use the default value of "bad" dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | |
**any string name** | dict, frozendict, str, date, datetime, int, float, bool, Decimal, None, list, tuple, bytes | any string name can be used but the value must be the correct type | [optional]
### Dictionary Keys
Key | Input Type | Accessed Type | Description | Notes
------------ | ------------- | ------------- | ------------- | -------------
**bar** | str, | str, | | [optional] if omitted the server will use the default value of "bad"
**any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional]
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)

View File

@ -1,8 +1,9 @@
# unit_test_api.model.ipv4_format.Ipv4Format # unit_test_api.model.ipv4_format.Ipv4Format
Type | Description | Notes ## Model Type Info
------------- | ------------- | ------------- Input Type | Accessed Type | Description | Notes
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | ------------ | ------------- | ------------- | -------------
dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | |
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)

View File

@ -1,8 +1,9 @@
# unit_test_api.model.ipv6_format.Ipv6Format # unit_test_api.model.ipv6_format.Ipv6Format
Type | Description | Notes ## Model Type Info
------------- | ------------- | ------------- Input Type | Accessed Type | Description | Notes
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | ------------ | ------------- | ------------- | -------------
dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | |
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)

View File

@ -1,8 +1,9 @@
# unit_test_api.model.json_pointer_format.JsonPointerFormat # unit_test_api.model.json_pointer_format.JsonPointerFormat
Type | Description | Notes ## Model Type Info
------------- | ------------- | ------------- Input Type | Accessed Type | Description | Notes
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | ------------ | ------------- | ------------- | -------------
dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | |
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)

View File

@ -1,8 +1,9 @@
# unit_test_api.model.maximum_validation.MaximumValidation # unit_test_api.model.maximum_validation.MaximumValidation
Type | Description | Notes ## Model Type Info
------------- | ------------- | ------------- Input Type | Accessed Type | Description | Notes
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | ------------ | ------------- | ------------- | -------------
dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | |
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)

View File

@ -1,8 +1,9 @@
# unit_test_api.model.maximum_validation_with_unsigned_integer.MaximumValidationWithUnsignedInteger # unit_test_api.model.maximum_validation_with_unsigned_integer.MaximumValidationWithUnsignedInteger
Type | Description | Notes ## Model Type Info
------------- | ------------- | ------------- Input Type | Accessed Type | Description | Notes
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | ------------ | ------------- | ------------- | -------------
dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | |
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)

View File

@ -1,8 +1,9 @@
# unit_test_api.model.maxitems_validation.MaxitemsValidation # unit_test_api.model.maxitems_validation.MaxitemsValidation
Type | Description | Notes ## Model Type Info
------------- | ------------- | ------------- Input Type | Accessed Type | Description | Notes
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | ------------ | ------------- | ------------- | -------------
dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | |
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)

View File

@ -1,8 +1,9 @@
# unit_test_api.model.maxlength_validation.MaxlengthValidation # unit_test_api.model.maxlength_validation.MaxlengthValidation
Type | Description | Notes ## Model Type Info
------------- | ------------- | ------------- Input Type | Accessed Type | Description | Notes
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | ------------ | ------------- | ------------- | -------------
dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | |
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)

View File

@ -1,8 +1,9 @@
# unit_test_api.model.maxproperties0_means_the_object_is_empty.Maxproperties0MeansTheObjectIsEmpty # unit_test_api.model.maxproperties0_means_the_object_is_empty.Maxproperties0MeansTheObjectIsEmpty
Type | Description | Notes ## Model Type Info
------------- | ------------- | ------------- Input Type | Accessed Type | Description | Notes
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | ------------ | ------------- | ------------- | -------------
dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | |
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)

View File

@ -1,8 +1,9 @@
# unit_test_api.model.maxproperties_validation.MaxpropertiesValidation # unit_test_api.model.maxproperties_validation.MaxpropertiesValidation
Type | Description | Notes ## Model Type Info
------------- | ------------- | ------------- Input Type | Accessed Type | Description | Notes
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | ------------ | ------------- | ------------- | -------------
dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | |
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)

View File

@ -1,8 +1,9 @@
# unit_test_api.model.minimum_validation.MinimumValidation # unit_test_api.model.minimum_validation.MinimumValidation
Type | Description | Notes ## Model Type Info
------------- | ------------- | ------------- Input Type | Accessed Type | Description | Notes
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | ------------ | ------------- | ------------- | -------------
dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | |
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)

View File

@ -1,8 +1,9 @@
# unit_test_api.model.minimum_validation_with_signed_integer.MinimumValidationWithSignedInteger # unit_test_api.model.minimum_validation_with_signed_integer.MinimumValidationWithSignedInteger
Type | Description | Notes ## Model Type Info
------------- | ------------- | ------------- Input Type | Accessed Type | Description | Notes
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | ------------ | ------------- | ------------- | -------------
dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | |
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)

View File

@ -1,8 +1,9 @@
# unit_test_api.model.minitems_validation.MinitemsValidation # unit_test_api.model.minitems_validation.MinitemsValidation
Type | Description | Notes ## Model Type Info
------------- | ------------- | ------------- Input Type | Accessed Type | Description | Notes
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | ------------ | ------------- | ------------- | -------------
dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | |
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)

View File

@ -1,8 +1,9 @@
# unit_test_api.model.minlength_validation.MinlengthValidation # unit_test_api.model.minlength_validation.MinlengthValidation
Type | Description | Notes ## Model Type Info
------------- | ------------- | ------------- Input Type | Accessed Type | Description | Notes
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | ------------ | ------------- | ------------- | -------------
dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | |
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)

View File

@ -1,8 +1,9 @@
# unit_test_api.model.minproperties_validation.MinpropertiesValidation # unit_test_api.model.minproperties_validation.MinpropertiesValidation
Type | Description | Notes ## Model Type Info
------------- | ------------- | ------------- Input Type | Accessed Type | Description | Notes
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | ------------ | ------------- | ------------- | -------------
dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | |
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)

View File

@ -1,8 +1,22 @@
# unit_test_api.model.model_not.ModelNot # unit_test_api.model.model_not.ModelNot
Type | Description | Notes ## Model Type Info
------------- | ------------- | ------------- Input Type | Accessed Type | Description | Notes
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | ------------ | ------------- | ------------- | -------------
dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | |
### Composed Schemas (allOf/anyOf/oneOf/not)
#### not
Class Name | Input Type | Accessed Type | Description | Notes
------------- | ------------- | ------------- | ------------- | -------------
[not_schema](#not_schema) | decimal.Decimal, int, | decimal.Decimal, | |
# not_schema
## Model Type Info
Input Type | Accessed Type | Description | Notes
------------ | ------------- | ------------- | -------------
decimal.Decimal, int, | decimal.Decimal, | |
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)

View File

@ -1,8 +1,35 @@
# unit_test_api.model.nested_allof_to_check_validation_semantics.NestedAllofToCheckValidationSemantics # unit_test_api.model.nested_allof_to_check_validation_semantics.NestedAllofToCheckValidationSemantics
Type | Description | Notes ## Model Type Info
------------- | ------------- | ------------- Input Type | Accessed Type | Description | Notes
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | ------------ | ------------- | ------------- | -------------
dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | |
### Composed Schemas (allOf/anyOf/oneOf/not)
#### allOf
Class Name | Input Type | Accessed Type | Description | Notes
------------- | ------------- | ------------- | ------------- | -------------
[all_of_0](#all_of_0) | dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | |
# all_of_0
## Model Type Info
Input Type | Accessed Type | Description | Notes
------------ | ------------- | ------------- | -------------
dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | |
### Composed Schemas (allOf/anyOf/oneOf/not)
#### allOf
Class Name | Input Type | Accessed Type | Description | Notes
------------- | ------------- | ------------- | ------------- | -------------
[all_of_0](#all_of_0) | None, | NoneClass, | |
# all_of_0
## Model Type Info
Input Type | Accessed Type | Description | Notes
------------ | ------------- | ------------- | -------------
None, | NoneClass, | |
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)

View File

@ -1,8 +1,35 @@
# unit_test_api.model.nested_anyof_to_check_validation_semantics.NestedAnyofToCheckValidationSemantics # unit_test_api.model.nested_anyof_to_check_validation_semantics.NestedAnyofToCheckValidationSemantics
Type | Description | Notes ## Model Type Info
------------- | ------------- | ------------- Input Type | Accessed Type | Description | Notes
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | ------------ | ------------- | ------------- | -------------
dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | |
### Composed Schemas (allOf/anyOf/oneOf/not)
#### anyOf
Class Name | Input Type | Accessed Type | Description | Notes
------------- | ------------- | ------------- | ------------- | -------------
[any_of_0](#any_of_0) | dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | |
# any_of_0
## Model Type Info
Input Type | Accessed Type | Description | Notes
------------ | ------------- | ------------- | -------------
dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | |
### Composed Schemas (allOf/anyOf/oneOf/not)
#### anyOf
Class Name | Input Type | Accessed Type | Description | Notes
------------- | ------------- | ------------- | ------------- | -------------
[any_of_0](#any_of_0) | None, | NoneClass, | |
# any_of_0
## Model Type Info
Input Type | Accessed Type | Description | Notes
------------ | ------------- | ------------- | -------------
None, | NoneClass, | |
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)

View File

@ -1,8 +1,50 @@
# unit_test_api.model.nested_items.NestedItems # unit_test_api.model.nested_items.NestedItems
Type | Description | Notes ## Model Type Info
------------- | ------------- | ------------- Input Type | Accessed Type | Description | Notes
**[[[[int, float]]]]** | | ------------ | ------------- | ------------- | -------------
list, tuple, | tuple, | |
### Tuple Items
Class Name | Input Type | Accessed Type | Description | Notes
------------- | ------------- | ------------- | ------------- | -------------
[items](#items) | list, tuple, | tuple, | |
# items
## Model Type Info
Input Type | Accessed Type | Description | Notes
------------ | ------------- | ------------- | -------------
list, tuple, | tuple, | |
### Tuple Items
Class Name | Input Type | Accessed Type | Description | Notes
------------- | ------------- | ------------- | ------------- | -------------
[items](#items) | list, tuple, | tuple, | |
# items
## Model Type Info
Input Type | Accessed Type | Description | Notes
------------ | ------------- | ------------- | -------------
list, tuple, | tuple, | |
### Tuple Items
Class Name | Input Type | Accessed Type | Description | Notes
------------- | ------------- | ------------- | ------------- | -------------
[items](#items) | list, tuple, | tuple, | |
# items
## Model Type Info
Input Type | Accessed Type | Description | Notes
------------ | ------------- | ------------- | -------------
list, tuple, | tuple, | |
### Tuple Items
Class Name | Input Type | Accessed Type | Description | Notes
------------- | ------------- | ------------- | ------------- | -------------
items | decimal.Decimal, int, float, | decimal.Decimal, | |
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)

View File

@ -1,8 +1,35 @@
# unit_test_api.model.nested_oneof_to_check_validation_semantics.NestedOneofToCheckValidationSemantics # unit_test_api.model.nested_oneof_to_check_validation_semantics.NestedOneofToCheckValidationSemantics
Type | Description | Notes ## Model Type Info
------------- | ------------- | ------------- Input Type | Accessed Type | Description | Notes
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | ------------ | ------------- | ------------- | -------------
dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | |
### Composed Schemas (allOf/anyOf/oneOf/not)
#### oneOf
Class Name | Input Type | Accessed Type | Description | Notes
------------- | ------------- | ------------- | ------------- | -------------
[one_of_0](#one_of_0) | dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | |
# one_of_0
## Model Type Info
Input Type | Accessed Type | Description | Notes
------------ | ------------- | ------------- | -------------
dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | |
### Composed Schemas (allOf/anyOf/oneOf/not)
#### oneOf
Class Name | Input Type | Accessed Type | Description | Notes
------------- | ------------- | ------------- | ------------- | -------------
[one_of_0](#one_of_0) | None, | NoneClass, | |
# one_of_0
## Model Type Info
Input Type | Accessed Type | Description | Notes
------------ | ------------- | ------------- | -------------
None, | NoneClass, | |
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)

View File

@ -1,8 +1,28 @@
# unit_test_api.model.not_more_complex_schema.NotMoreComplexSchema # unit_test_api.model.not_more_complex_schema.NotMoreComplexSchema
Type | Description | Notes ## Model Type Info
------------- | ------------- | ------------- Input Type | Accessed Type | Description | Notes
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | ------------ | ------------- | ------------- | -------------
dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | |
### Composed Schemas (allOf/anyOf/oneOf/not)
#### not
Class Name | Input Type | Accessed Type | Description | Notes
------------- | ------------- | ------------- | ------------- | -------------
[not_schema](#not_schema) | dict, frozendict.frozendict, | frozendict.frozendict, | |
# not_schema
## Model Type Info
Input Type | Accessed Type | Description | Notes
------------ | ------------- | ------------- | -------------
dict, frozendict.frozendict, | frozendict.frozendict, | |
### Dictionary Keys
Key | Input Type | Accessed Type | Description | Notes
------------ | ------------- | ------------- | ------------- | -------------
**foo** | str, | str, | | [optional]
**any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional]
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)

View File

@ -1,8 +1,9 @@
# unit_test_api.model.nul_characters_in_strings.NulCharactersInStrings # unit_test_api.model.nul_characters_in_strings.NulCharactersInStrings
Type | Description | Notes ## Model Type Info
------------- | ------------- | ------------- Input Type | Accessed Type | Description | Notes
**str** | | must be one of ["hello\x00there", ] ------------ | ------------- | ------------- | -------------
str, | str, | | must be one of ["hello\x00there", ]
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)

View File

@ -1,8 +1,9 @@
# unit_test_api.model.null_type_matches_only_the_null_object.NullTypeMatchesOnlyTheNullObject # unit_test_api.model.null_type_matches_only_the_null_object.NullTypeMatchesOnlyTheNullObject
Type | Description | Notes ## Model Type Info
------------- | ------------- | ------------- Input Type | Accessed Type | Description | Notes
**none_type** | | ------------ | ------------- | ------------- | -------------
None, | NoneClass, | |
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)

View File

@ -1,8 +1,9 @@
# unit_test_api.model.number_type_matches_numbers.NumberTypeMatchesNumbers # unit_test_api.model.number_type_matches_numbers.NumberTypeMatchesNumbers
Type | Description | Notes ## Model Type Info
------------- | ------------- | ------------- Input Type | Accessed Type | Description | Notes
**float** | | ------------ | ------------- | ------------- | -------------
decimal.Decimal, int, float, | decimal.Decimal, | |
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)

View File

@ -1,11 +1,16 @@
# unit_test_api.model.object_properties_validation.ObjectPropertiesValidation # unit_test_api.model.object_properties_validation.ObjectPropertiesValidation
#### Properties ## Model Type Info
Name | Type | Description | Notes Input Type | Accessed Type | Description | Notes
------------ | ------------- | ------------- | ------------- ------------ | ------------- | ------------- | -------------
**foo** | **int** | | [optional] dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | |
**bar** | **str** | | [optional]
**any string name** | dict, frozendict, str, date, datetime, int, float, bool, Decimal, None, list, tuple, bytes | any string name can be used but the value must be the correct type | [optional] ### Dictionary Keys
Key | Input Type | Accessed Type | Description | Notes
------------ | ------------- | ------------- | ------------- | -------------
**foo** | decimal.Decimal, int, | decimal.Decimal, | | [optional]
**bar** | str, | str, | | [optional]
**any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional]
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)

View File

@ -1,8 +1,30 @@
# unit_test_api.model.oneof.Oneof # unit_test_api.model.oneof.Oneof
Type | Description | Notes ## Model Type Info
------------- | ------------- | ------------- Input Type | Accessed Type | Description | Notes
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | ------------ | ------------- | ------------- | -------------
dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | |
### Composed Schemas (allOf/anyOf/oneOf/not)
#### oneOf
Class Name | Input Type | Accessed Type | Description | Notes
------------- | ------------- | ------------- | ------------- | -------------
[one_of_0](#one_of_0) | decimal.Decimal, int, | decimal.Decimal, | |
[one_of_1](#one_of_1) | dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | |
# one_of_0
## Model Type Info
Input Type | Accessed Type | Description | Notes
------------ | ------------- | ------------- | -------------
decimal.Decimal, int, | decimal.Decimal, | |
# one_of_1
## Model Type Info
Input Type | Accessed Type | Description | Notes
------------ | ------------- | ------------- | -------------
dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | |
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)

View File

@ -1,8 +1,42 @@
# unit_test_api.model.oneof_complex_types.OneofComplexTypes # unit_test_api.model.oneof_complex_types.OneofComplexTypes
Type | Description | Notes ## Model Type Info
------------- | ------------- | ------------- Input Type | Accessed Type | Description | Notes
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | ------------ | ------------- | ------------- | -------------
dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | |
### Composed Schemas (allOf/anyOf/oneOf/not)
#### oneOf
Class Name | Input Type | Accessed Type | Description | Notes
------------- | ------------- | ------------- | ------------- | -------------
[one_of_0](#one_of_0) | dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | |
[one_of_1](#one_of_1) | dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | |
# one_of_0
## Model Type Info
Input Type | Accessed Type | Description | Notes
------------ | ------------- | ------------- | -------------
dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | |
### Dictionary Keys
Key | Input Type | Accessed Type | Description | Notes
------------ | ------------- | ------------- | ------------- | -------------
**bar** | decimal.Decimal, int, | decimal.Decimal, | |
**any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional]
# one_of_1
## Model Type Info
Input Type | Accessed Type | Description | Notes
------------ | ------------- | ------------- | -------------
dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | |
### Dictionary Keys
Key | Input Type | Accessed Type | Description | Notes
------------ | ------------- | ------------- | ------------- | -------------
**foo** | str, | str, | |
**any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional]
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)

View File

@ -1,8 +1,30 @@
# unit_test_api.model.oneof_with_base_schema.OneofWithBaseSchema # unit_test_api.model.oneof_with_base_schema.OneofWithBaseSchema
Type | Description | Notes ## Model Type Info
------------- | ------------- | ------------- Input Type | Accessed Type | Description | Notes
**str** | | ------------ | ------------- | ------------- | -------------
str, | str, | |
### Composed Schemas (allOf/anyOf/oneOf/not)
#### oneOf
Class Name | Input Type | Accessed Type | Description | Notes
------------- | ------------- | ------------- | ------------- | -------------
[one_of_0](#one_of_0) | dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | |
[one_of_1](#one_of_1) | dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | |
# one_of_0
## Model Type Info
Input Type | Accessed Type | Description | Notes
------------ | ------------- | ------------- | -------------
dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | |
# one_of_1
## Model Type Info
Input Type | Accessed Type | Description | Notes
------------ | ------------- | ------------- | -------------
dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | |
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)

View File

@ -1,8 +1,30 @@
# unit_test_api.model.oneof_with_empty_schema.OneofWithEmptySchema # unit_test_api.model.oneof_with_empty_schema.OneofWithEmptySchema
Type | Description | Notes ## Model Type Info
------------- | ------------- | ------------- Input Type | Accessed Type | Description | Notes
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | ------------ | ------------- | ------------- | -------------
dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | |
### Composed Schemas (allOf/anyOf/oneOf/not)
#### oneOf
Class Name | Input Type | Accessed Type | Description | Notes
------------- | ------------- | ------------- | ------------- | -------------
[one_of_0](#one_of_0) | decimal.Decimal, int, float, | decimal.Decimal, | |
[one_of_1](#one_of_1) | dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | |
# one_of_0
## Model Type Info
Input Type | Accessed Type | Description | Notes
------------ | ------------- | ------------- | -------------
decimal.Decimal, int, float, | decimal.Decimal, | |
# one_of_1
## Model Type Info
Input Type | Accessed Type | Description | Notes
------------ | ------------- | ------------- | -------------
dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | |
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)

View File

@ -1,8 +1,30 @@
# unit_test_api.model.oneof_with_required.OneofWithRequired # unit_test_api.model.oneof_with_required.OneofWithRequired
Type | Description | Notes ## Model Type Info
------------- | ------------- | ------------- Input Type | Accessed Type | Description | Notes
**object** | | ------------ | ------------- | ------------- | -------------
dict, frozendict.frozendict, | frozendict.frozendict, | |
### Composed Schemas (allOf/anyOf/oneOf/not)
#### oneOf
Class Name | Input Type | Accessed Type | Description | Notes
------------- | ------------- | ------------- | ------------- | -------------
[one_of_0](#one_of_0) | dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | |
[one_of_1](#one_of_1) | dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | |
# one_of_0
## Model Type Info
Input Type | Accessed Type | Description | Notes
------------ | ------------- | ------------- | -------------
dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | |
# one_of_1
## Model Type Info
Input Type | Accessed Type | Description | Notes
------------ | ------------- | ------------- | -------------
dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | |
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)

View File

@ -1,8 +1,9 @@
# unit_test_api.model.pattern_is_not_anchored.PatternIsNotAnchored # unit_test_api.model.pattern_is_not_anchored.PatternIsNotAnchored
Type | Description | Notes ## Model Type Info
------------- | ------------- | ------------- Input Type | Accessed Type | Description | Notes
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | ------------ | ------------- | ------------- | -------------
dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | |
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)

Some files were not shown because too many files have changed in this diff Show More