diff --git a/modules/openapi-generator/src/main/resources/python-experimental/api_doc.handlebars b/modules/openapi-generator/src/main/resources/python-experimental/api_doc.handlebars index 03b53bed6b93..1c279b5a374a 100644 --- a/modules/openapi-generator/src/main/resources/python-experimental/api_doc.handlebars +++ b/modules/openapi-generator/src/main/resources/python-experimental/api_doc.handlebars @@ -81,7 +81,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body {{#each content}} {{#with this.schema}} -{{> api_doc_schema_type_hint }} +{{> api_doc_schema_type_hint complexTypePrefix="../../models/" }} {{/with}} {{/each}} {{/with}} @@ -98,7 +98,7 @@ Name | Type | Description | Notes {{#each queryParams}} {{#with schema}} -{{> api_doc_schema_type_hint }} +{{> api_doc_schema_type_hint complexTypePrefix="../../models/" }} {{/with}} {{/each}} {{/if}} @@ -114,7 +114,7 @@ Name | Type | Description | Notes {{/each}} {{#each headerParams}} {{#with schema}} -{{> api_doc_schema_type_hint }} +{{> api_doc_schema_type_hint complexTypePrefix="../../models/" }} {{/with}} {{/each}} {{/if}} @@ -130,7 +130,7 @@ Name | Type | Description | Notes {{/each}} {{#each pathParams}} {{#with schema}} -{{> api_doc_schema_type_hint }} +{{> api_doc_schema_type_hint complexTypePrefix="../../models/" }} {{/with}} {{/each}} {{/if}} @@ -146,7 +146,7 @@ Name | Type | Description | Notes {{/each}} {{#each cookieParams}} {{#with schema}} -{{> api_doc_schema_type_hint }} +{{> api_doc_schema_type_hint complexTypePrefix="../../models/" }} {{/with}} {{/each}} {{/if}} @@ -161,18 +161,18 @@ Code | Class | Description n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned {{#each responses}} {{#if isDefault}} -default | ApiResponseForDefault | {{message}} +default | [ApiResponseForDefault](#{{operationId}}.ApiResponseForDefault) | {{message}} {{else}} -{{code}} | ApiResponseFor{{code}} | {{message}} +{{code}} | [ApiResponseFor{{code}}](#{{operationId}}.ApiResponseFor{{code}}) | {{message}} {{/if}} {{/each}} {{#each responses}} {{#if isDefault}} -#### ApiResponseForDefault +#### {{operationId}}.ApiResponseForDefault {{else}} -#### ApiResponseFor{{code}} +#### {{operationId}}.ApiResponseFor{{code}} {{/if}} 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}} | {{#each content}} {{#with this.schema}} -{{> api_doc_schema_type_hint }} +{{> api_doc_schema_type_hint complexTypePrefix="../../models/" }} {{/with}} {{/each}} {{#if responseHeaders}} @@ -194,16 +194,13 @@ Name | Type | Description | Notes {{/each}} {{#each responseHeaders}} {{#with schema}} -{{> api_doc_schema_type_hint }} +{{> api_doc_schema_type_hint complexTypePrefix="../../models/" }} {{/with}} {{/each}} {{/if}} {{/each}} - -{{#if returnType}}{{#if returnTypeIsPrimitive}}**{{{returnType}}}**{{/if}}{{#unless returnTypeIsPrimitive}}[**{{{returnType}}}**]({{returnBaseType}}.md){{/unless}}{{/if}}{{#unless returnType}}void (empty response body){{/unless}} - ### Authorization {{#unless authMethods}}No authorization required{{/unless}}{{#each authMethods}}[{{{name}}}](../../../README.md#{{{name}}}){{#unless @last}}, {{/unless}}{{/each}} diff --git a/modules/openapi-generator/src/main/resources/python-experimental/api_doc_schema_type_hint.handlebars b/modules/openapi-generator/src/main/resources/python-experimental/api_doc_schema_type_hint.handlebars index ffed97b72b52..27aa7a499b73 100644 --- a/modules/openapi-generator/src/main/resources/python-experimental/api_doc_schema_type_hint.handlebars +++ b/modules/openapi-generator/src/main/resources/python-experimental/api_doc_schema_type_hint.handlebars @@ -1,10 +1,10 @@ -#### {{baseName}} +# {{baseName}} {{#if complexType}} 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}} -{{> schema_doc }} +{{> schema_doc complexTypePrefix="{{complexTypePrefix}}" }} {{/if}} \ No newline at end of file diff --git a/modules/openapi-generator/src/main/resources/python-experimental/model_templates/format_base.handlebars b/modules/openapi-generator/src/main/resources/python-experimental/model_templates/format_base.handlebars index 38adf5903c80..9bbd87d8c8b9 100644 --- a/modules/openapi-generator/src/main/resources/python-experimental/model_templates/format_base.handlebars +++ b/modules/openapi-generator/src/main/resources/python-experimental/model_templates/format_base.handlebars @@ -19,9 +19,9 @@ schemas.Int32Base, {{#eq getFormat "int64"}} schemas.Int64Base, {{/eq}} -{{#eq getFormat "double"}} +{{#eq getFormat "float"}} schemas.Float32Base, {{/eq}} -{{#eq getFormat "float"}} +{{#eq getFormat "double"}} schemas.Float64Base, {{/eq}} \ No newline at end of file diff --git a/modules/openapi-generator/src/main/resources/python-experimental/model_templates/notes_msg.handlebars b/modules/openapi-generator/src/main/resources/python-experimental/model_templates/notes_msg.handlebars new file mode 100644 index 000000000000..d5d0092ee8f8 --- /dev/null +++ b/modules/openapi-generator/src/main/resources/python-experimental/model_templates/notes_msg.handlebars @@ -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}} \ No newline at end of file diff --git a/modules/openapi-generator/src/main/resources/python-experimental/model_templates/schema_accessed_types.handlebars b/modules/openapi-generator/src/main/resources/python-experimental/model_templates/schema_accessed_types.handlebars new file mode 100644 index 000000000000..8d0dcc0f4bd2 --- /dev/null +++ b/modules/openapi-generator/src/main/resources/python-experimental/model_templates/schema_accessed_types.handlebars @@ -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}} \ No newline at end of file diff --git a/modules/openapi-generator/src/main/resources/python-experimental/model_templates/schema_python_types.handlebars b/modules/openapi-generator/src/main/resources/python-experimental/model_templates/schema_python_types.handlebars index c239ed2f5690..613e58613022 100644 --- a/modules/openapi-generator/src/main/resources/python-experimental/model_templates/schema_python_types.handlebars +++ b/modules/openapi-generator/src/main/resources/python-experimental/model_templates/schema_python_types.handlebars @@ -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}} \ No newline at end of file +{{#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}} \ No newline at end of file diff --git a/modules/openapi-generator/src/main/resources/python-experimental/schema_doc.handlebars b/modules/openapi-generator/src/main/resources/python-experimental/schema_doc.handlebars index 3da869829903..8e67813ed6e0 100644 --- a/modules/openapi-generator/src/main/resources/python-experimental/schema_doc.handlebars +++ b/modules/openapi-generator/src/main/resources/python-experimental/schema_doc.handlebars @@ -3,43 +3,134 @@ {{&description}} {{/if}} -{{#or vars additionalProperties}} -#### Properties -Name | Type | Description | Notes +## Model Type Info +Input Type | Accessed 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}} -**{{@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 vars}} {{#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}} {{/each}} {{#with additionalProperties}} {{#unless getIsBooleanSchemaFalse}} {{#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}} -**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}} {{/unless}} {{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}} -{{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}} +{{#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}} \ No newline at end of file diff --git a/modules/openapi-generator/src/test/resources/3_0/python-experimental/petstore-with-fake-endpoints-models-for-testing-with-http-signature.yaml b/modules/openapi-generator/src/test/resources/3_0/python-experimental/petstore-with-fake-endpoints-models-for-testing-with-http-signature.yaml index 645c84662eb6..8868f6023891 100644 --- a/modules/openapi-generator/src/test/resources/3_0/python-experimental/petstore-with-fake-endpoints-models-for-testing-with-http-signature.yaml +++ b/modules/openapi-generator/src/test/resources/3_0/python-experimental/petstore-with-fake-endpoints-models-for-testing-with-http-signature.yaml @@ -2897,6 +2897,9 @@ components: - op - path properties: + from: + description: A JSON Pointer path. + type: string path: description: A JSON Pointer path. type: string diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/apis/tags/AdditionalPropertiesApi.md b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/apis/tags/AdditionalPropertiesApi.md index 979f50020f41..6b758ccf2b8e 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/apis/tags/AdditionalPropertiesApi.md +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/apis/tags/AdditionalPropertiesApi.md @@ -62,10 +62,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**AdditionalpropertiesAllowsASchemaWhichShouldValidate**](AdditionalpropertiesAllowsASchemaWhichShouldValidate.md) | | +[**AdditionalpropertiesAllowsASchemaWhichShouldValidate**](../../models/AdditionalpropertiesAllowsASchemaWhichShouldValidate.md) | | ### Return Types, Responses @@ -73,18 +73,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -130,23 +127,20 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**AdditionalpropertiesAllowsASchemaWhichShouldValidate**](AdditionalpropertiesAllowsASchemaWhichShouldValidate.md) | | - - +[**AdditionalpropertiesAllowsASchemaWhichShouldValidate**](../../models/AdditionalpropertiesAllowsASchemaWhichShouldValidate.md) | | -[**AdditionalpropertiesAllowsASchemaWhichShouldValidate**](AdditionalpropertiesAllowsASchemaWhichShouldValidate.md) ### Authorization @@ -199,10 +193,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**AdditionalpropertiesAreAllowedByDefault**](AdditionalpropertiesAreAllowedByDefault.md) | | +[**AdditionalpropertiesAreAllowedByDefault**](../../models/AdditionalpropertiesAreAllowedByDefault.md) | | ### Return Types, Responses @@ -210,18 +204,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -267,23 +258,20 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**AdditionalpropertiesAreAllowedByDefault**](AdditionalpropertiesAreAllowedByDefault.md) | | - - +[**AdditionalpropertiesAreAllowedByDefault**](../../models/AdditionalpropertiesAreAllowedByDefault.md) | | -[**AdditionalpropertiesAreAllowedByDefault**](AdditionalpropertiesAreAllowedByDefault.md) ### Authorization @@ -338,10 +326,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**AdditionalpropertiesCanExistByItself**](AdditionalpropertiesCanExistByItself.md) | | +[**AdditionalpropertiesCanExistByItself**](../../models/AdditionalpropertiesCanExistByItself.md) | | ### Return Types, Responses @@ -349,18 +337,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -406,23 +391,20 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**AdditionalpropertiesCanExistByItself**](AdditionalpropertiesCanExistByItself.md) | | - - +[**AdditionalpropertiesCanExistByItself**](../../models/AdditionalpropertiesCanExistByItself.md) | | -[**AdditionalpropertiesCanExistByItself**](AdditionalpropertiesCanExistByItself.md) ### Authorization @@ -475,10 +457,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**AdditionalpropertiesShouldNotLookInApplicators**](AdditionalpropertiesShouldNotLookInApplicators.md) | | +[**AdditionalpropertiesShouldNotLookInApplicators**](../../models/AdditionalpropertiesShouldNotLookInApplicators.md) | | ### Return Types, Responses @@ -486,18 +468,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -543,23 +522,20 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**AdditionalpropertiesShouldNotLookInApplicators**](AdditionalpropertiesShouldNotLookInApplicators.md) | | - - +[**AdditionalpropertiesShouldNotLookInApplicators**](../../models/AdditionalpropertiesShouldNotLookInApplicators.md) | | -[**AdditionalpropertiesShouldNotLookInApplicators**](AdditionalpropertiesShouldNotLookInApplicators.md) ### Authorization diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/apis/tags/AllOfApi.md b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/apis/tags/AllOfApi.md index 8a4a75dd4b2d..16996cfc8105 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/apis/tags/AllOfApi.md +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/apis/tags/AllOfApi.md @@ -69,10 +69,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**AllofCombinedWithAnyofOneof**](AllofCombinedWithAnyofOneof.md) | | +[**AllofCombinedWithAnyofOneof**](../../models/AllofCombinedWithAnyofOneof.md) | | ### Return Types, Responses @@ -80,18 +80,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -137,24 +134,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**AllofCombinedWithAnyofOneof**](AllofCombinedWithAnyofOneof.md) | | - +[**AllofCombinedWithAnyofOneof**](../../models/AllofCombinedWithAnyofOneof.md) | | -[**AllofCombinedWithAnyofOneof**](AllofCombinedWithAnyofOneof.md) - ### Authorization No authorization required @@ -206,10 +200,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**Allof**](Allof.md) | | +[**Allof**](../../models/Allof.md) | | ### Return Types, Responses @@ -217,18 +211,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -274,24 +265,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**Allof**](Allof.md) | | - +[**Allof**](../../models/Allof.md) | | -[**Allof**](Allof.md) - ### Authorization No authorization required @@ -343,10 +331,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**AllofSimpleTypes**](AllofSimpleTypes.md) | | +[**AllofSimpleTypes**](../../models/AllofSimpleTypes.md) | | ### Return Types, Responses @@ -354,18 +342,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -411,23 +396,20 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**AllofSimpleTypes**](AllofSimpleTypes.md) | | - - +[**AllofSimpleTypes**](../../models/AllofSimpleTypes.md) | | -[**AllofSimpleTypes**](AllofSimpleTypes.md) ### Authorization @@ -480,10 +462,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**AllofWithBaseSchema**](AllofWithBaseSchema.md) | | +[**AllofWithBaseSchema**](../../models/AllofWithBaseSchema.md) | | ### Return Types, Responses @@ -491,18 +473,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -548,24 +527,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**AllofWithBaseSchema**](AllofWithBaseSchema.md) | | +[**AllofWithBaseSchema**](../../models/AllofWithBaseSchema.md) | | - -[**AllofWithBaseSchema**](AllofWithBaseSchema.md) - ### Authorization No authorization required @@ -617,10 +593,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**AllofWithOneEmptySchema**](AllofWithOneEmptySchema.md) | | +[**AllofWithOneEmptySchema**](../../models/AllofWithOneEmptySchema.md) | | ### Return Types, Responses @@ -628,18 +604,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -685,24 +658,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**AllofWithOneEmptySchema**](AllofWithOneEmptySchema.md) | | +[**AllofWithOneEmptySchema**](../../models/AllofWithOneEmptySchema.md) | | - -[**AllofWithOneEmptySchema**](AllofWithOneEmptySchema.md) - ### Authorization No authorization required @@ -754,10 +724,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**AllofWithTheFirstEmptySchema**](AllofWithTheFirstEmptySchema.md) | | +[**AllofWithTheFirstEmptySchema**](../../models/AllofWithTheFirstEmptySchema.md) | | ### Return Types, Responses @@ -765,18 +735,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -822,24 +789,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**AllofWithTheFirstEmptySchema**](AllofWithTheFirstEmptySchema.md) | | - +[**AllofWithTheFirstEmptySchema**](../../models/AllofWithTheFirstEmptySchema.md) | | -[**AllofWithTheFirstEmptySchema**](AllofWithTheFirstEmptySchema.md) - ### Authorization No authorization required @@ -891,10 +855,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**AllofWithTheLastEmptySchema**](AllofWithTheLastEmptySchema.md) | | +[**AllofWithTheLastEmptySchema**](../../models/AllofWithTheLastEmptySchema.md) | | ### Return Types, Responses @@ -902,18 +866,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -959,24 +920,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**AllofWithTheLastEmptySchema**](AllofWithTheLastEmptySchema.md) | | - +[**AllofWithTheLastEmptySchema**](../../models/AllofWithTheLastEmptySchema.md) | | -[**AllofWithTheLastEmptySchema**](AllofWithTheLastEmptySchema.md) - ### Authorization No authorization required @@ -1028,10 +986,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**AllofWithTwoEmptySchemas**](AllofWithTwoEmptySchemas.md) | | +[**AllofWithTwoEmptySchemas**](../../models/AllofWithTwoEmptySchemas.md) | | ### Return Types, Responses @@ -1039,18 +997,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -1096,23 +1051,20 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**AllofWithTwoEmptySchemas**](AllofWithTwoEmptySchemas.md) | | - - +[**AllofWithTwoEmptySchemas**](../../models/AllofWithTwoEmptySchemas.md) | | -[**AllofWithTwoEmptySchemas**](AllofWithTwoEmptySchemas.md) ### Authorization @@ -1165,10 +1117,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**NestedAllofToCheckValidationSemantics**](NestedAllofToCheckValidationSemantics.md) | | +[**NestedAllofToCheckValidationSemantics**](../../models/NestedAllofToCheckValidationSemantics.md) | | ### Return Types, Responses @@ -1176,18 +1128,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -1233,23 +1182,20 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**NestedAllofToCheckValidationSemantics**](NestedAllofToCheckValidationSemantics.md) | | - - +[**NestedAllofToCheckValidationSemantics**](../../models/NestedAllofToCheckValidationSemantics.md) | | -[**NestedAllofToCheckValidationSemantics**](NestedAllofToCheckValidationSemantics.md) ### Authorization diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/apis/tags/AnyOfApi.md b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/apis/tags/AnyOfApi.md index 977be00f0973..8f0a035a810b 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/apis/tags/AnyOfApi.md +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/apis/tags/AnyOfApi.md @@ -61,10 +61,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**AnyofComplexTypes**](AnyofComplexTypes.md) | | +[**AnyofComplexTypes**](../../models/AnyofComplexTypes.md) | | ### Return Types, Responses @@ -72,18 +72,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -129,24 +126,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**AnyofComplexTypes**](AnyofComplexTypes.md) | | - +[**AnyofComplexTypes**](../../models/AnyofComplexTypes.md) | | -[**AnyofComplexTypes**](AnyofComplexTypes.md) - ### Authorization No authorization required @@ -198,10 +192,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**Anyof**](Anyof.md) | | +[**Anyof**](../../models/Anyof.md) | | ### Return Types, Responses @@ -209,18 +203,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -266,23 +257,20 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**Anyof**](Anyof.md) | | - - +[**Anyof**](../../models/Anyof.md) | | -[**Anyof**](Anyof.md) ### Authorization @@ -335,10 +323,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**AnyofWithBaseSchema**](AnyofWithBaseSchema.md) | | +[**AnyofWithBaseSchema**](../../models/AnyofWithBaseSchema.md) | | ### Return Types, Responses @@ -346,18 +334,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -403,24 +388,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**AnyofWithBaseSchema**](AnyofWithBaseSchema.md) | | +[**AnyofWithBaseSchema**](../../models/AnyofWithBaseSchema.md) | | - -[**AnyofWithBaseSchema**](AnyofWithBaseSchema.md) - ### Authorization No authorization required @@ -472,10 +454,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**AnyofWithOneEmptySchema**](AnyofWithOneEmptySchema.md) | | +[**AnyofWithOneEmptySchema**](../../models/AnyofWithOneEmptySchema.md) | | ### Return Types, Responses @@ -483,18 +465,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -540,24 +519,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**AnyofWithOneEmptySchema**](AnyofWithOneEmptySchema.md) | | - +[**AnyofWithOneEmptySchema**](../../models/AnyofWithOneEmptySchema.md) | | -[**AnyofWithOneEmptySchema**](AnyofWithOneEmptySchema.md) - ### Authorization No authorization required @@ -609,10 +585,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**NestedAnyofToCheckValidationSemantics**](NestedAnyofToCheckValidationSemantics.md) | | +[**NestedAnyofToCheckValidationSemantics**](../../models/NestedAnyofToCheckValidationSemantics.md) | | ### Return Types, Responses @@ -620,18 +596,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -677,23 +650,20 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**NestedAnyofToCheckValidationSemantics**](NestedAnyofToCheckValidationSemantics.md) | | - - +[**NestedAnyofToCheckValidationSemantics**](../../models/NestedAnyofToCheckValidationSemantics.md) | | -[**NestedAnyofToCheckValidationSemantics**](NestedAnyofToCheckValidationSemantics.md) ### Authorization diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/apis/tags/ContentTypeJsonApi.md b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/apis/tags/ContentTypeJsonApi.md index 681d8508fd43..0a1a6bd184ca 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/apis/tags/ContentTypeJsonApi.md +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/apis/tags/ContentTypeJsonApi.md @@ -228,10 +228,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**AdditionalpropertiesAllowsASchemaWhichShouldValidate**](AdditionalpropertiesAllowsASchemaWhichShouldValidate.md) | | +[**AdditionalpropertiesAllowsASchemaWhichShouldValidate**](../../models/AdditionalpropertiesAllowsASchemaWhichShouldValidate.md) | | ### Return Types, Responses @@ -239,18 +239,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -296,23 +293,20 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**AdditionalpropertiesAllowsASchemaWhichShouldValidate**](AdditionalpropertiesAllowsASchemaWhichShouldValidate.md) | | - - +[**AdditionalpropertiesAllowsASchemaWhichShouldValidate**](../../models/AdditionalpropertiesAllowsASchemaWhichShouldValidate.md) | | -[**AdditionalpropertiesAllowsASchemaWhichShouldValidate**](AdditionalpropertiesAllowsASchemaWhichShouldValidate.md) ### Authorization @@ -365,10 +359,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**AdditionalpropertiesAreAllowedByDefault**](AdditionalpropertiesAreAllowedByDefault.md) | | +[**AdditionalpropertiesAreAllowedByDefault**](../../models/AdditionalpropertiesAreAllowedByDefault.md) | | ### Return Types, Responses @@ -376,18 +370,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -433,24 +424,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**AdditionalpropertiesAreAllowedByDefault**](AdditionalpropertiesAreAllowedByDefault.md) | | - +[**AdditionalpropertiesAreAllowedByDefault**](../../models/AdditionalpropertiesAreAllowedByDefault.md) | | -[**AdditionalpropertiesAreAllowedByDefault**](AdditionalpropertiesAreAllowedByDefault.md) - ### Authorization No authorization required @@ -504,10 +492,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**AdditionalpropertiesCanExistByItself**](AdditionalpropertiesCanExistByItself.md) | | +[**AdditionalpropertiesCanExistByItself**](../../models/AdditionalpropertiesCanExistByItself.md) | | ### Return Types, Responses @@ -515,18 +503,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -572,24 +557,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**AdditionalpropertiesCanExistByItself**](AdditionalpropertiesCanExistByItself.md) | | +[**AdditionalpropertiesCanExistByItself**](../../models/AdditionalpropertiesCanExistByItself.md) | | - -[**AdditionalpropertiesCanExistByItself**](AdditionalpropertiesCanExistByItself.md) - ### Authorization No authorization required @@ -641,10 +623,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**AdditionalpropertiesShouldNotLookInApplicators**](AdditionalpropertiesShouldNotLookInApplicators.md) | | +[**AdditionalpropertiesShouldNotLookInApplicators**](../../models/AdditionalpropertiesShouldNotLookInApplicators.md) | | ### Return Types, Responses @@ -652,18 +634,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -709,23 +688,20 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**AdditionalpropertiesShouldNotLookInApplicators**](AdditionalpropertiesShouldNotLookInApplicators.md) | | - - +[**AdditionalpropertiesShouldNotLookInApplicators**](../../models/AdditionalpropertiesShouldNotLookInApplicators.md) | | -[**AdditionalpropertiesShouldNotLookInApplicators**](AdditionalpropertiesShouldNotLookInApplicators.md) ### Authorization @@ -778,10 +754,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**AllofCombinedWithAnyofOneof**](AllofCombinedWithAnyofOneof.md) | | +[**AllofCombinedWithAnyofOneof**](../../models/AllofCombinedWithAnyofOneof.md) | | ### Return Types, Responses @@ -789,18 +765,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -846,24 +819,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**AllofCombinedWithAnyofOneof**](AllofCombinedWithAnyofOneof.md) | | - +[**AllofCombinedWithAnyofOneof**](../../models/AllofCombinedWithAnyofOneof.md) | | -[**AllofCombinedWithAnyofOneof**](AllofCombinedWithAnyofOneof.md) - ### Authorization No authorization required @@ -915,10 +885,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**Allof**](Allof.md) | | +[**Allof**](../../models/Allof.md) | | ### Return Types, Responses @@ -926,18 +896,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -983,24 +950,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**Allof**](Allof.md) | | +[**Allof**](../../models/Allof.md) | | - -[**Allof**](Allof.md) - ### Authorization No authorization required @@ -1052,10 +1016,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**AllofSimpleTypes**](AllofSimpleTypes.md) | | +[**AllofSimpleTypes**](../../models/AllofSimpleTypes.md) | | ### Return Types, Responses @@ -1063,18 +1027,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -1120,23 +1081,20 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**AllofSimpleTypes**](AllofSimpleTypes.md) | | - - +[**AllofSimpleTypes**](../../models/AllofSimpleTypes.md) | | -[**AllofSimpleTypes**](AllofSimpleTypes.md) ### Authorization @@ -1189,10 +1147,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**AllofWithBaseSchema**](AllofWithBaseSchema.md) | | +[**AllofWithBaseSchema**](../../models/AllofWithBaseSchema.md) | | ### Return Types, Responses @@ -1200,18 +1158,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -1257,24 +1212,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**AllofWithBaseSchema**](AllofWithBaseSchema.md) | | - +[**AllofWithBaseSchema**](../../models/AllofWithBaseSchema.md) | | -[**AllofWithBaseSchema**](AllofWithBaseSchema.md) - ### Authorization No authorization required @@ -1326,10 +1278,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**AllofWithOneEmptySchema**](AllofWithOneEmptySchema.md) | | +[**AllofWithOneEmptySchema**](../../models/AllofWithOneEmptySchema.md) | | ### Return Types, Responses @@ -1337,18 +1289,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -1394,24 +1343,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**AllofWithOneEmptySchema**](AllofWithOneEmptySchema.md) | | +[**AllofWithOneEmptySchema**](../../models/AllofWithOneEmptySchema.md) | | - -[**AllofWithOneEmptySchema**](AllofWithOneEmptySchema.md) - ### Authorization No authorization required @@ -1463,10 +1409,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**AllofWithTheFirstEmptySchema**](AllofWithTheFirstEmptySchema.md) | | +[**AllofWithTheFirstEmptySchema**](../../models/AllofWithTheFirstEmptySchema.md) | | ### Return Types, Responses @@ -1474,18 +1420,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -1531,23 +1474,20 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**AllofWithTheFirstEmptySchema**](AllofWithTheFirstEmptySchema.md) | | - - +[**AllofWithTheFirstEmptySchema**](../../models/AllofWithTheFirstEmptySchema.md) | | -[**AllofWithTheFirstEmptySchema**](AllofWithTheFirstEmptySchema.md) ### Authorization @@ -1600,10 +1540,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**AllofWithTheLastEmptySchema**](AllofWithTheLastEmptySchema.md) | | +[**AllofWithTheLastEmptySchema**](../../models/AllofWithTheLastEmptySchema.md) | | ### Return Types, Responses @@ -1611,18 +1551,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -1668,24 +1605,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**AllofWithTheLastEmptySchema**](AllofWithTheLastEmptySchema.md) | | - +[**AllofWithTheLastEmptySchema**](../../models/AllofWithTheLastEmptySchema.md) | | -[**AllofWithTheLastEmptySchema**](AllofWithTheLastEmptySchema.md) - ### Authorization No authorization required @@ -1737,10 +1671,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**AllofWithTwoEmptySchemas**](AllofWithTwoEmptySchemas.md) | | +[**AllofWithTwoEmptySchemas**](../../models/AllofWithTwoEmptySchemas.md) | | ### Return Types, Responses @@ -1748,18 +1682,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -1805,24 +1736,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**AllofWithTwoEmptySchemas**](AllofWithTwoEmptySchemas.md) | | +[**AllofWithTwoEmptySchemas**](../../models/AllofWithTwoEmptySchemas.md) | | - -[**AllofWithTwoEmptySchemas**](AllofWithTwoEmptySchemas.md) - ### Authorization No authorization required @@ -1874,10 +1802,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**AnyofComplexTypes**](AnyofComplexTypes.md) | | +[**AnyofComplexTypes**](../../models/AnyofComplexTypes.md) | | ### Return Types, Responses @@ -1885,18 +1813,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -1942,24 +1867,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**AnyofComplexTypes**](AnyofComplexTypes.md) | | - +[**AnyofComplexTypes**](../../models/AnyofComplexTypes.md) | | -[**AnyofComplexTypes**](AnyofComplexTypes.md) - ### Authorization No authorization required @@ -2011,10 +1933,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**Anyof**](Anyof.md) | | +[**Anyof**](../../models/Anyof.md) | | ### Return Types, Responses @@ -2022,18 +1944,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -2079,23 +1998,20 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**Anyof**](Anyof.md) | | - - +[**Anyof**](../../models/Anyof.md) | | -[**Anyof**](Anyof.md) ### Authorization @@ -2148,10 +2064,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**AnyofWithBaseSchema**](AnyofWithBaseSchema.md) | | +[**AnyofWithBaseSchema**](../../models/AnyofWithBaseSchema.md) | | ### Return Types, Responses @@ -2159,18 +2075,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -2216,24 +2129,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**AnyofWithBaseSchema**](AnyofWithBaseSchema.md) | | - +[**AnyofWithBaseSchema**](../../models/AnyofWithBaseSchema.md) | | -[**AnyofWithBaseSchema**](AnyofWithBaseSchema.md) - ### Authorization No authorization required @@ -2285,10 +2195,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**AnyofWithOneEmptySchema**](AnyofWithOneEmptySchema.md) | | +[**AnyofWithOneEmptySchema**](../../models/AnyofWithOneEmptySchema.md) | | ### Return Types, Responses @@ -2296,18 +2206,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -2353,24 +2260,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**AnyofWithOneEmptySchema**](AnyofWithOneEmptySchema.md) | | +[**AnyofWithOneEmptySchema**](../../models/AnyofWithOneEmptySchema.md) | | - -[**AnyofWithOneEmptySchema**](AnyofWithOneEmptySchema.md) - ### Authorization No authorization required @@ -2424,10 +2328,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**ArrayTypeMatchesArrays**](ArrayTypeMatchesArrays.md) | | +[**ArrayTypeMatchesArrays**](../../models/ArrayTypeMatchesArrays.md) | | ### Return Types, Responses @@ -2435,18 +2339,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -2492,23 +2393,20 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**ArrayTypeMatchesArrays**](ArrayTypeMatchesArrays.md) | | - - +[**ArrayTypeMatchesArrays**](../../models/ArrayTypeMatchesArrays.md) | | -[**ArrayTypeMatchesArrays**](ArrayTypeMatchesArrays.md) ### Authorization @@ -2560,29 +2458,27 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson -Type | Description | Notes -------------- | ------------- | ------------- -**bool** | | +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +bool, | BoolClass, | | ### Return Types, Responses Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -2627,23 +2523,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson - -Type | Description | Notes -------------- | ------------- | ------------- -**bool** | | - +# SchemaFor200ResponseBodyApplicationJson -**bool** +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +bool, | BoolClass, | | ### Authorization @@ -2696,10 +2590,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**ByInt**](ByInt.md) | | +[**ByInt**](../../models/ByInt.md) | | ### Return Types, Responses @@ -2707,18 +2601,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -2764,24 +2655,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**ByInt**](ByInt.md) | | - +[**ByInt**](../../models/ByInt.md) | | -[**ByInt**](ByInt.md) - ### Authorization No authorization required @@ -2833,10 +2721,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**ByNumber**](ByNumber.md) | | +[**ByNumber**](../../models/ByNumber.md) | | ### Return Types, Responses @@ -2844,18 +2732,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -2901,24 +2786,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**ByNumber**](ByNumber.md) | | +[**ByNumber**](../../models/ByNumber.md) | | - -[**ByNumber**](ByNumber.md) - ### Authorization No authorization required @@ -2970,10 +2852,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**BySmallNumber**](BySmallNumber.md) | | +[**BySmallNumber**](../../models/BySmallNumber.md) | | ### Return Types, Responses @@ -2981,18 +2863,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -3038,23 +2917,20 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**BySmallNumber**](BySmallNumber.md) | | - - +[**BySmallNumber**](../../models/BySmallNumber.md) | | -[**BySmallNumber**](BySmallNumber.md) ### Authorization @@ -3106,29 +2982,27 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | +## 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 | | value must conform to RFC-3339 date-time ### Return Types, Responses Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -3173,23 +3047,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson - -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | - +# SchemaFor200ResponseBodyApplicationJson -**bool, date, datetime, dict, float, int, list, str, none_type** +## 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 | | value must conform to RFC-3339 date-time ### Authorization @@ -3241,29 +3113,27 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | +## 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 | | ### Return Types, Responses Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -3308,23 +3178,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson - -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | - +# SchemaFor200ResponseBodyApplicationJson -**bool, date, datetime, dict, float, int, list, str, none_type** +## 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 | | ### Authorization @@ -3377,10 +3245,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**EnumWith0DoesNotMatchFalse**](EnumWith0DoesNotMatchFalse.md) | | +[**EnumWith0DoesNotMatchFalse**](../../models/EnumWith0DoesNotMatchFalse.md) | | ### Return Types, Responses @@ -3388,18 +3256,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -3445,23 +3310,20 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**EnumWith0DoesNotMatchFalse**](EnumWith0DoesNotMatchFalse.md) | | - - +[**EnumWith0DoesNotMatchFalse**](../../models/EnumWith0DoesNotMatchFalse.md) | | -[**EnumWith0DoesNotMatchFalse**](EnumWith0DoesNotMatchFalse.md) ### Authorization @@ -3514,10 +3376,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**EnumWith1DoesNotMatchTrue**](EnumWith1DoesNotMatchTrue.md) | | +[**EnumWith1DoesNotMatchTrue**](../../models/EnumWith1DoesNotMatchTrue.md) | | ### Return Types, Responses @@ -3525,18 +3387,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -3582,24 +3441,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**EnumWith1DoesNotMatchTrue**](EnumWith1DoesNotMatchTrue.md) | | - +[**EnumWith1DoesNotMatchTrue**](../../models/EnumWith1DoesNotMatchTrue.md) | | -[**EnumWith1DoesNotMatchTrue**](EnumWith1DoesNotMatchTrue.md) - ### Authorization No authorization required @@ -3651,10 +3507,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**EnumWithEscapedCharacters**](EnumWithEscapedCharacters.md) | | +[**EnumWithEscapedCharacters**](../../models/EnumWithEscapedCharacters.md) | | ### Return Types, Responses @@ -3662,18 +3518,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -3719,24 +3572,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**EnumWithEscapedCharacters**](EnumWithEscapedCharacters.md) | | +[**EnumWithEscapedCharacters**](../../models/EnumWithEscapedCharacters.md) | | - -[**EnumWithEscapedCharacters**](EnumWithEscapedCharacters.md) - ### Authorization No authorization required @@ -3788,10 +3638,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**EnumWithFalseDoesNotMatch0**](EnumWithFalseDoesNotMatch0.md) | | +[**EnumWithFalseDoesNotMatch0**](../../models/EnumWithFalseDoesNotMatch0.md) | | ### Return Types, Responses @@ -3799,18 +3649,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -3856,23 +3703,20 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**EnumWithFalseDoesNotMatch0**](EnumWithFalseDoesNotMatch0.md) | | - - +[**EnumWithFalseDoesNotMatch0**](../../models/EnumWithFalseDoesNotMatch0.md) | | -[**EnumWithFalseDoesNotMatch0**](EnumWithFalseDoesNotMatch0.md) ### Authorization @@ -3925,10 +3769,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**EnumWithTrueDoesNotMatch1**](EnumWithTrueDoesNotMatch1.md) | | +[**EnumWithTrueDoesNotMatch1**](../../models/EnumWithTrueDoesNotMatch1.md) | | ### Return Types, Responses @@ -3936,18 +3780,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -3993,24 +3834,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**EnumWithTrueDoesNotMatch1**](EnumWithTrueDoesNotMatch1.md) | | - +[**EnumWithTrueDoesNotMatch1**](../../models/EnumWithTrueDoesNotMatch1.md) | | -[**EnumWithTrueDoesNotMatch1**](EnumWithTrueDoesNotMatch1.md) - ### Authorization No authorization required @@ -4065,10 +3903,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**EnumsInProperties**](EnumsInProperties.md) | | +[**EnumsInProperties**](../../models/EnumsInProperties.md) | | ### Return Types, Responses @@ -4076,18 +3914,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -4133,24 +3968,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**EnumsInProperties**](EnumsInProperties.md) | | +[**EnumsInProperties**](../../models/EnumsInProperties.md) | | - -[**EnumsInProperties**](EnumsInProperties.md) - ### Authorization No authorization required @@ -4202,10 +4034,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**ForbiddenProperty**](ForbiddenProperty.md) | | +[**ForbiddenProperty**](../../models/ForbiddenProperty.md) | | ### Return Types, Responses @@ -4213,18 +4045,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -4270,23 +4099,20 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**ForbiddenProperty**](ForbiddenProperty.md) | | - - +[**ForbiddenProperty**](../../models/ForbiddenProperty.md) | | -[**ForbiddenProperty**](ForbiddenProperty.md) ### Authorization @@ -4338,29 +4164,27 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | +## 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 | | ### Return Types, Responses Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -4405,23 +4229,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | - - -**bool, date, datetime, dict, float, int, list, str, none_type** +## 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 | | ### Authorization @@ -4473,29 +4295,27 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson -Type | Description | Notes -------------- | ------------- | ------------- -**int** | | +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +decimal.Decimal, int, | decimal.Decimal, | | ### Return Types, Responses Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -4540,23 +4360,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson -Type | Description | Notes -------------- | ------------- | ------------- -**int** | | - - -**int** +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +decimal.Decimal, int, | decimal.Decimal, | | ### Authorization @@ -4609,10 +4427,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**InvalidInstanceShouldNotRaiseErrorWhenFloatDivisionInf**](InvalidInstanceShouldNotRaiseErrorWhenFloatDivisionInf.md) | | +[**InvalidInstanceShouldNotRaiseErrorWhenFloatDivisionInf**](../../models/InvalidInstanceShouldNotRaiseErrorWhenFloatDivisionInf.md) | | ### Return Types, Responses @@ -4620,18 +4438,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -4677,24 +4492,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**InvalidInstanceShouldNotRaiseErrorWhenFloatDivisionInf**](InvalidInstanceShouldNotRaiseErrorWhenFloatDivisionInf.md) | | - +[**InvalidInstanceShouldNotRaiseErrorWhenFloatDivisionInf**](../../models/InvalidInstanceShouldNotRaiseErrorWhenFloatDivisionInf.md) | | -[**InvalidInstanceShouldNotRaiseErrorWhenFloatDivisionInf**](InvalidInstanceShouldNotRaiseErrorWhenFloatDivisionInf.md) - ### Authorization No authorization required @@ -4746,10 +4558,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**InvalidStringValueForDefault**](InvalidStringValueForDefault.md) | | +[**InvalidStringValueForDefault**](../../models/InvalidStringValueForDefault.md) | | ### Return Types, Responses @@ -4757,18 +4569,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -4814,24 +4623,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**InvalidStringValueForDefault**](InvalidStringValueForDefault.md) | | +[**InvalidStringValueForDefault**](../../models/InvalidStringValueForDefault.md) | | - -[**InvalidStringValueForDefault**](InvalidStringValueForDefault.md) - ### Authorization No authorization required @@ -4882,29 +4688,27 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | +## 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 | | ### Return Types, Responses Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -4949,23 +4753,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson - -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | +# SchemaFor200ResponseBodyApplicationJson - -**bool, date, datetime, dict, float, int, list, str, none_type** +## 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 | | ### Authorization @@ -5017,29 +4819,27 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | +## 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 | | ### Return Types, Responses Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -5084,23 +4884,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson - -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | - +# SchemaFor200ResponseBodyApplicationJson -**bool, date, datetime, dict, float, int, list, str, none_type** +## 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 | | ### Authorization @@ -5152,29 +4950,27 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | +## 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 | | ### Return Types, Responses Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -5219,23 +5015,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson - -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | - +# SchemaFor200ResponseBodyApplicationJson -**bool, date, datetime, dict, float, int, list, str, none_type** +## 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 | | ### Authorization @@ -5288,10 +5082,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**MaximumValidation**](MaximumValidation.md) | | +[**MaximumValidation**](../../models/MaximumValidation.md) | | ### Return Types, Responses @@ -5299,18 +5093,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -5356,24 +5147,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**MaximumValidation**](MaximumValidation.md) | | +[**MaximumValidation**](../../models/MaximumValidation.md) | | - -[**MaximumValidation**](MaximumValidation.md) - ### Authorization No authorization required @@ -5425,10 +5213,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**MaximumValidationWithUnsignedInteger**](MaximumValidationWithUnsignedInteger.md) | | +[**MaximumValidationWithUnsignedInteger**](../../models/MaximumValidationWithUnsignedInteger.md) | | ### Return Types, Responses @@ -5436,18 +5224,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -5493,23 +5278,20 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**MaximumValidationWithUnsignedInteger**](MaximumValidationWithUnsignedInteger.md) | | - - +[**MaximumValidationWithUnsignedInteger**](../../models/MaximumValidationWithUnsignedInteger.md) | | -[**MaximumValidationWithUnsignedInteger**](MaximumValidationWithUnsignedInteger.md) ### Authorization @@ -5562,10 +5344,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**MaxitemsValidation**](MaxitemsValidation.md) | | +[**MaxitemsValidation**](../../models/MaxitemsValidation.md) | | ### Return Types, Responses @@ -5573,18 +5355,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -5630,24 +5409,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**MaxitemsValidation**](MaxitemsValidation.md) | | - +[**MaxitemsValidation**](../../models/MaxitemsValidation.md) | | -[**MaxitemsValidation**](MaxitemsValidation.md) - ### Authorization No authorization required @@ -5699,10 +5475,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**MaxlengthValidation**](MaxlengthValidation.md) | | +[**MaxlengthValidation**](../../models/MaxlengthValidation.md) | | ### Return Types, Responses @@ -5710,18 +5486,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -5767,24 +5540,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**MaxlengthValidation**](MaxlengthValidation.md) | | +[**MaxlengthValidation**](../../models/MaxlengthValidation.md) | | - -[**MaxlengthValidation**](MaxlengthValidation.md) - ### Authorization No authorization required @@ -5836,10 +5606,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**Maxproperties0MeansTheObjectIsEmpty**](Maxproperties0MeansTheObjectIsEmpty.md) | | +[**Maxproperties0MeansTheObjectIsEmpty**](../../models/Maxproperties0MeansTheObjectIsEmpty.md) | | ### Return Types, Responses @@ -5847,18 +5617,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -5904,23 +5671,20 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**Maxproperties0MeansTheObjectIsEmpty**](Maxproperties0MeansTheObjectIsEmpty.md) | | - - +[**Maxproperties0MeansTheObjectIsEmpty**](../../models/Maxproperties0MeansTheObjectIsEmpty.md) | | -[**Maxproperties0MeansTheObjectIsEmpty**](Maxproperties0MeansTheObjectIsEmpty.md) ### Authorization @@ -5973,10 +5737,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**MaxpropertiesValidation**](MaxpropertiesValidation.md) | | +[**MaxpropertiesValidation**](../../models/MaxpropertiesValidation.md) | | ### Return Types, Responses @@ -5984,18 +5748,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -6041,24 +5802,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**MaxpropertiesValidation**](MaxpropertiesValidation.md) | | - +[**MaxpropertiesValidation**](../../models/MaxpropertiesValidation.md) | | -[**MaxpropertiesValidation**](MaxpropertiesValidation.md) - ### Authorization No authorization required @@ -6110,10 +5868,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**MinimumValidation**](MinimumValidation.md) | | +[**MinimumValidation**](../../models/MinimumValidation.md) | | ### Return Types, Responses @@ -6121,18 +5879,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -6178,24 +5933,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**MinimumValidation**](MinimumValidation.md) | | +[**MinimumValidation**](../../models/MinimumValidation.md) | | - -[**MinimumValidation**](MinimumValidation.md) - ### Authorization No authorization required @@ -6247,10 +5999,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**MinimumValidationWithSignedInteger**](MinimumValidationWithSignedInteger.md) | | +[**MinimumValidationWithSignedInteger**](../../models/MinimumValidationWithSignedInteger.md) | | ### Return Types, Responses @@ -6258,18 +6010,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -6315,23 +6064,20 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**MinimumValidationWithSignedInteger**](MinimumValidationWithSignedInteger.md) | | - - +[**MinimumValidationWithSignedInteger**](../../models/MinimumValidationWithSignedInteger.md) | | -[**MinimumValidationWithSignedInteger**](MinimumValidationWithSignedInteger.md) ### Authorization @@ -6384,10 +6130,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**MinitemsValidation**](MinitemsValidation.md) | | +[**MinitemsValidation**](../../models/MinitemsValidation.md) | | ### Return Types, Responses @@ -6395,18 +6141,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -6452,23 +6195,20 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**MinitemsValidation**](MinitemsValidation.md) | | - - +[**MinitemsValidation**](../../models/MinitemsValidation.md) | | -[**MinitemsValidation**](MinitemsValidation.md) ### Authorization @@ -6521,10 +6261,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**MinlengthValidation**](MinlengthValidation.md) | | +[**MinlengthValidation**](../../models/MinlengthValidation.md) | | ### Return Types, Responses @@ -6532,18 +6272,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -6589,24 +6326,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**MinlengthValidation**](MinlengthValidation.md) | | - +[**MinlengthValidation**](../../models/MinlengthValidation.md) | | -[**MinlengthValidation**](MinlengthValidation.md) - ### Authorization No authorization required @@ -6658,10 +6392,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**MinpropertiesValidation**](MinpropertiesValidation.md) | | +[**MinpropertiesValidation**](../../models/MinpropertiesValidation.md) | | ### Return Types, Responses @@ -6669,18 +6403,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -6726,24 +6457,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**MinpropertiesValidation**](MinpropertiesValidation.md) | | +[**MinpropertiesValidation**](../../models/MinpropertiesValidation.md) | | - -[**MinpropertiesValidation**](MinpropertiesValidation.md) - ### Authorization No authorization required @@ -6795,10 +6523,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**NestedAllofToCheckValidationSemantics**](NestedAllofToCheckValidationSemantics.md) | | +[**NestedAllofToCheckValidationSemantics**](../../models/NestedAllofToCheckValidationSemantics.md) | | ### Return Types, Responses @@ -6806,18 +6534,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -6863,23 +6588,20 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**NestedAllofToCheckValidationSemantics**](NestedAllofToCheckValidationSemantics.md) | | - - +[**NestedAllofToCheckValidationSemantics**](../../models/NestedAllofToCheckValidationSemantics.md) | | -[**NestedAllofToCheckValidationSemantics**](NestedAllofToCheckValidationSemantics.md) ### Authorization @@ -6932,10 +6654,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**NestedAnyofToCheckValidationSemantics**](NestedAnyofToCheckValidationSemantics.md) | | +[**NestedAnyofToCheckValidationSemantics**](../../models/NestedAnyofToCheckValidationSemantics.md) | | ### Return Types, Responses @@ -6943,18 +6665,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -7000,24 +6719,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**NestedAnyofToCheckValidationSemantics**](NestedAnyofToCheckValidationSemantics.md) | | - +[**NestedAnyofToCheckValidationSemantics**](../../models/NestedAnyofToCheckValidationSemantics.md) | | -[**NestedAnyofToCheckValidationSemantics**](NestedAnyofToCheckValidationSemantics.md) - ### Authorization No authorization required @@ -7077,10 +6793,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**NestedItems**](NestedItems.md) | | +[**NestedItems**](../../models/NestedItems.md) | | ### Return Types, Responses @@ -7088,18 +6804,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -7145,24 +6858,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**NestedItems**](NestedItems.md) | | +[**NestedItems**](../../models/NestedItems.md) | | - -[**NestedItems**](NestedItems.md) - ### Authorization No authorization required @@ -7214,10 +6924,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**NestedOneofToCheckValidationSemantics**](NestedOneofToCheckValidationSemantics.md) | | +[**NestedOneofToCheckValidationSemantics**](../../models/NestedOneofToCheckValidationSemantics.md) | | ### Return Types, Responses @@ -7225,18 +6935,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -7282,23 +6989,20 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**NestedOneofToCheckValidationSemantics**](NestedOneofToCheckValidationSemantics.md) | | - - +[**NestedOneofToCheckValidationSemantics**](../../models/NestedOneofToCheckValidationSemantics.md) | | -[**NestedOneofToCheckValidationSemantics**](NestedOneofToCheckValidationSemantics.md) ### Authorization @@ -7350,29 +7054,46 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | +## 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, | 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 Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -7417,23 +7138,40 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | +## 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, | frozendict.frozendict, | | +# not_schema -**bool, date, datetime, dict, float, int, list, str, none_type** +## 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 @@ -7485,29 +7223,40 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | +## 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) | decimal.Decimal, int, | decimal.Decimal, | | + +# not_schema + +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +decimal.Decimal, int, | decimal.Decimal, | | ### Return Types, Responses Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -7552,23 +7301,34 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | +## 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) | decimal.Decimal, int, | decimal.Decimal, | | +# not_schema -**bool, date, datetime, dict, float, int, list, str, none_type** +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +decimal.Decimal, int, | decimal.Decimal, | | ### Authorization @@ -7621,10 +7381,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**NulCharactersInStrings**](NulCharactersInStrings.md) | | +[**NulCharactersInStrings**](../../models/NulCharactersInStrings.md) | | ### Return Types, Responses @@ -7632,18 +7392,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -7689,24 +7446,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**NulCharactersInStrings**](NulCharactersInStrings.md) | | - +[**NulCharactersInStrings**](../../models/NulCharactersInStrings.md) | | -[**NulCharactersInStrings**](NulCharactersInStrings.md) - ### Authorization No authorization required @@ -7757,29 +7511,27 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson -Type | Description | Notes -------------- | ------------- | ------------- -**none_type** | | +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +None, | NoneClass, | | ### Return Types, Responses Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -7824,23 +7576,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson - -Type | Description | Notes -------------- | ------------- | ------------- -**none_type** | | - +# SchemaFor200ResponseBodyApplicationJson -**none_type** +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +None, | NoneClass, | | ### Authorization @@ -7892,29 +7642,27 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson -Type | Description | Notes -------------- | ------------- | ------------- -**int, float** | | +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +decimal.Decimal, int, float, | decimal.Decimal, | | ### Return Types, Responses Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -7959,23 +7707,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson - -Type | Description | Notes -------------- | ------------- | ------------- -**int, float** | | - +# SchemaFor200ResponseBodyApplicationJson -**int, float** +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +decimal.Decimal, int, float, | decimal.Decimal, | | ### Authorization @@ -8028,10 +7774,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**ObjectPropertiesValidation**](ObjectPropertiesValidation.md) | | +[**ObjectPropertiesValidation**](../../models/ObjectPropertiesValidation.md) | | ### Return Types, Responses @@ -8039,18 +7785,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -8096,24 +7839,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**ObjectPropertiesValidation**](ObjectPropertiesValidation.md) | | - +[**ObjectPropertiesValidation**](../../models/ObjectPropertiesValidation.md) | | -[**ObjectPropertiesValidation**](ObjectPropertiesValidation.md) - ### Authorization No authorization required @@ -8164,29 +7904,27 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson -Type | Description | Notes -------------- | ------------- | ------------- -**{str: (bool, date, datetime, dict, float, int, list, str, none_type)}** | | +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +dict, frozendict.frozendict, | frozendict.frozendict, | | ### Return Types, Responses Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -8231,23 +7969,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson - -Type | Description | Notes -------------- | ------------- | ------------- -**{str: (bool, date, datetime, dict, float, int, list, str, none_type)}** | | - +# SchemaFor200ResponseBodyApplicationJson -**{str: (bool, date, datetime, dict, float, int, list, str, none_type)}** +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +dict, frozendict.frozendict, | frozendict.frozendict, | | ### Authorization @@ -8300,10 +8036,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**OneofComplexTypes**](OneofComplexTypes.md) | | +[**OneofComplexTypes**](../../models/OneofComplexTypes.md) | | ### Return Types, Responses @@ -8311,18 +8047,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -8368,24 +8101,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**OneofComplexTypes**](OneofComplexTypes.md) | | +[**OneofComplexTypes**](../../models/OneofComplexTypes.md) | | - -[**OneofComplexTypes**](OneofComplexTypes.md) - ### Authorization No authorization required @@ -8437,10 +8167,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**Oneof**](Oneof.md) | | +[**Oneof**](../../models/Oneof.md) | | ### Return Types, Responses @@ -8448,18 +8178,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -8505,23 +8232,20 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**Oneof**](Oneof.md) | | - - +[**Oneof**](../../models/Oneof.md) | | -[**Oneof**](Oneof.md) ### Authorization @@ -8574,10 +8298,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**OneofWithBaseSchema**](OneofWithBaseSchema.md) | | +[**OneofWithBaseSchema**](../../models/OneofWithBaseSchema.md) | | ### Return Types, Responses @@ -8585,18 +8309,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -8642,24 +8363,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**OneofWithBaseSchema**](OneofWithBaseSchema.md) | | - +[**OneofWithBaseSchema**](../../models/OneofWithBaseSchema.md) | | -[**OneofWithBaseSchema**](OneofWithBaseSchema.md) - ### Authorization No authorization required @@ -8711,10 +8429,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**OneofWithEmptySchema**](OneofWithEmptySchema.md) | | +[**OneofWithEmptySchema**](../../models/OneofWithEmptySchema.md) | | ### Return Types, Responses @@ -8722,18 +8440,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -8779,24 +8494,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**OneofWithEmptySchema**](OneofWithEmptySchema.md) | | +[**OneofWithEmptySchema**](../../models/OneofWithEmptySchema.md) | | - -[**OneofWithEmptySchema**](OneofWithEmptySchema.md) - ### Authorization No authorization required @@ -8848,10 +8560,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**OneofWithRequired**](OneofWithRequired.md) | | +[**OneofWithRequired**](../../models/OneofWithRequired.md) | | ### Return Types, Responses @@ -8859,18 +8571,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -8916,23 +8625,20 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**OneofWithRequired**](OneofWithRequired.md) | | - - +[**OneofWithRequired**](../../models/OneofWithRequired.md) | | -[**OneofWithRequired**](OneofWithRequired.md) ### Authorization @@ -8985,10 +8691,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**PatternIsNotAnchored**](PatternIsNotAnchored.md) | | +[**PatternIsNotAnchored**](../../models/PatternIsNotAnchored.md) | | ### Return Types, Responses @@ -8996,18 +8702,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -9053,24 +8756,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**PatternIsNotAnchored**](PatternIsNotAnchored.md) | | - +[**PatternIsNotAnchored**](../../models/PatternIsNotAnchored.md) | | -[**PatternIsNotAnchored**](PatternIsNotAnchored.md) - ### Authorization No authorization required @@ -9122,10 +8822,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**PatternValidation**](PatternValidation.md) | | +[**PatternValidation**](../../models/PatternValidation.md) | | ### Return Types, Responses @@ -9133,18 +8833,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -9190,24 +8887,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**PatternValidation**](PatternValidation.md) | | +[**PatternValidation**](../../models/PatternValidation.md) | | - -[**PatternValidation**](PatternValidation.md) - ### Authorization No authorization required @@ -9259,10 +8953,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**PropertiesWithEscapedCharacters**](PropertiesWithEscapedCharacters.md) | | +[**PropertiesWithEscapedCharacters**](../../models/PropertiesWithEscapedCharacters.md) | | ### Return Types, Responses @@ -9270,18 +8964,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -9327,24 +9018,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**PropertiesWithEscapedCharacters**](PropertiesWithEscapedCharacters.md) | | +[**PropertiesWithEscapedCharacters**](../../models/PropertiesWithEscapedCharacters.md) | | - -[**PropertiesWithEscapedCharacters**](PropertiesWithEscapedCharacters.md) - ### Authorization No authorization required @@ -9396,10 +9084,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**PropertyNamedRefThatIsNotAReference**](PropertyNamedRefThatIsNotAReference.md) | | +[**PropertyNamedRefThatIsNotAReference**](../../models/PropertyNamedRefThatIsNotAReference.md) | | ### Return Types, Responses @@ -9407,18 +9095,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -9464,23 +9149,20 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**PropertyNamedRefThatIsNotAReference**](PropertyNamedRefThatIsNotAReference.md) | | - - +[**PropertyNamedRefThatIsNotAReference**](../../models/PropertyNamedRefThatIsNotAReference.md) | | -[**PropertyNamedRefThatIsNotAReference**](PropertyNamedRefThatIsNotAReference.md) ### Authorization @@ -9535,10 +9217,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**RefInAdditionalproperties**](RefInAdditionalproperties.md) | | +[**RefInAdditionalproperties**](../../models/RefInAdditionalproperties.md) | | ### Return Types, Responses @@ -9546,18 +9228,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -9603,24 +9282,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**RefInAdditionalproperties**](RefInAdditionalproperties.md) | | - +[**RefInAdditionalproperties**](../../models/RefInAdditionalproperties.md) | | -[**RefInAdditionalproperties**](RefInAdditionalproperties.md) - ### Authorization No authorization required @@ -9672,10 +9348,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**RefInAllof**](RefInAllof.md) | | +[**RefInAllof**](../../models/RefInAllof.md) | | ### Return Types, Responses @@ -9683,18 +9359,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -9740,24 +9413,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**RefInAllof**](RefInAllof.md) | | +[**RefInAllof**](../../models/RefInAllof.md) | | - -[**RefInAllof**](RefInAllof.md) - ### Authorization No authorization required @@ -9809,10 +9479,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**RefInAnyof**](RefInAnyof.md) | | +[**RefInAnyof**](../../models/RefInAnyof.md) | | ### Return Types, Responses @@ -9820,18 +9490,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -9877,23 +9544,20 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**RefInAnyof**](RefInAnyof.md) | | - - +[**RefInAnyof**](../../models/RefInAnyof.md) | | -[**RefInAnyof**](RefInAnyof.md) ### Authorization @@ -9948,10 +9612,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**RefInItems**](RefInItems.md) | | +[**RefInItems**](../../models/RefInItems.md) | | ### Return Types, Responses @@ -9959,18 +9623,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -10016,24 +9677,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**RefInItems**](RefInItems.md) | | - +[**RefInItems**](../../models/RefInItems.md) | | -[**RefInItems**](RefInItems.md) - ### Authorization No authorization required @@ -10085,29 +9743,33 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | +## 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 +------------- | ------------- | ------------- | ------------- | ------------- +[PropertyNamedRefThatIsNotAReference]({{complexTypePrefix}}PropertyNamedRefThatIsNotAReference.md) | [**PropertyNamedRefThatIsNotAReference**]({{complexTypePrefix}}PropertyNamedRefThatIsNotAReference.md) | [**PropertyNamedRefThatIsNotAReference**]({{complexTypePrefix}}PropertyNamedRefThatIsNotAReference.md) | | ### Return Types, Responses Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -10153,23 +9815,27 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson - -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | +# SchemaFor200ResponseBodyApplicationJson +## 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 | | -**bool, date, datetime, dict, float, int, list, str, none_type** +### 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) | | ### Authorization @@ -10222,10 +9888,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**RefInOneof**](RefInOneof.md) | | +[**RefInOneof**](../../models/RefInOneof.md) | | ### Return Types, Responses @@ -10233,18 +9899,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -10290,24 +9953,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**RefInOneof**](RefInOneof.md) | | +[**RefInOneof**](../../models/RefInOneof.md) | | - -[**RefInOneof**](RefInOneof.md) - ### Authorization No authorization required @@ -10359,10 +10019,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**RefInProperty**](RefInProperty.md) | | +[**RefInProperty**](../../models/RefInProperty.md) | | ### Return Types, Responses @@ -10370,18 +10030,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -10427,23 +10084,20 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**RefInProperty**](RefInProperty.md) | | - - +[**RefInProperty**](../../models/RefInProperty.md) | | -[**RefInProperty**](RefInProperty.md) ### Authorization @@ -10496,10 +10150,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**RequiredDefaultValidation**](RequiredDefaultValidation.md) | | +[**RequiredDefaultValidation**](../../models/RequiredDefaultValidation.md) | | ### Return Types, Responses @@ -10507,18 +10161,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -10564,24 +10215,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**RequiredDefaultValidation**](RequiredDefaultValidation.md) | | - +[**RequiredDefaultValidation**](../../models/RequiredDefaultValidation.md) | | -[**RequiredDefaultValidation**](RequiredDefaultValidation.md) - ### Authorization No authorization required @@ -10633,10 +10281,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**RequiredValidation**](RequiredValidation.md) | | +[**RequiredValidation**](../../models/RequiredValidation.md) | | ### Return Types, Responses @@ -10644,18 +10292,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -10701,24 +10346,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**RequiredValidation**](RequiredValidation.md) | | +[**RequiredValidation**](../../models/RequiredValidation.md) | | - -[**RequiredValidation**](RequiredValidation.md) - ### Authorization No authorization required @@ -10770,10 +10412,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**RequiredWithEmptyArray**](RequiredWithEmptyArray.md) | | +[**RequiredWithEmptyArray**](../../models/RequiredWithEmptyArray.md) | | ### Return Types, Responses @@ -10781,18 +10423,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -10838,24 +10477,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**RequiredWithEmptyArray**](RequiredWithEmptyArray.md) | | - +[**RequiredWithEmptyArray**](../../models/RequiredWithEmptyArray.md) | | -[**RequiredWithEmptyArray**](RequiredWithEmptyArray.md) - ### Authorization No authorization required @@ -10906,29 +10542,27 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | +## 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 | | ### Return Types, Responses Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -10973,23 +10607,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | - - -**bool, date, datetime, dict, float, int, list, str, none_type** +## 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 | | ### Authorization @@ -11042,10 +10674,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**SimpleEnumValidation**](SimpleEnumValidation.md) | | +[**SimpleEnumValidation**](../../models/SimpleEnumValidation.md) | | ### Return Types, Responses @@ -11053,18 +10685,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -11110,23 +10739,20 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**SimpleEnumValidation**](SimpleEnumValidation.md) | | - - +[**SimpleEnumValidation**](../../models/SimpleEnumValidation.md) | | -[**SimpleEnumValidation**](SimpleEnumValidation.md) ### Authorization @@ -11178,29 +10804,27 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson -Type | Description | Notes -------------- | ------------- | ------------- -**str** | | +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +str, | str, | | ### Return Types, Responses Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -11245,23 +10869,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson - -Type | Description | Notes -------------- | ------------- | ------------- -**str** | | - +# SchemaFor200ResponseBodyApplicationJson -**str** +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +str, | str, | | ### Authorization @@ -11316,10 +10938,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**TheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissing**](TheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissing.md) | | +[**TheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissing**](../../models/TheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissing.md) | | ### Return Types, Responses @@ -11327,18 +10949,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -11384,24 +11003,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**TheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissing**](TheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissing.md) | | - +[**TheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissing**](../../models/TheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissing.md) | | -[**TheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissing**](TheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissing.md) - ### Authorization No authorization required @@ -11453,10 +11069,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**UniqueitemsFalseValidation**](UniqueitemsFalseValidation.md) | | +[**UniqueitemsFalseValidation**](../../models/UniqueitemsFalseValidation.md) | | ### Return Types, Responses @@ -11464,18 +11080,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -11521,24 +11134,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**UniqueitemsFalseValidation**](UniqueitemsFalseValidation.md) | | +[**UniqueitemsFalseValidation**](../../models/UniqueitemsFalseValidation.md) | | - -[**UniqueitemsFalseValidation**](UniqueitemsFalseValidation.md) - ### Authorization No authorization required @@ -11590,10 +11200,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**UniqueitemsValidation**](UniqueitemsValidation.md) | | +[**UniqueitemsValidation**](../../models/UniqueitemsValidation.md) | | ### Return Types, Responses @@ -11601,18 +11211,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -11658,23 +11265,20 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**UniqueitemsValidation**](UniqueitemsValidation.md) | | - - +[**UniqueitemsValidation**](../../models/UniqueitemsValidation.md) | | -[**UniqueitemsValidation**](UniqueitemsValidation.md) ### Authorization @@ -11726,29 +11330,27 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | +## 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 | | ### Return Types, Responses Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -11793,23 +11395,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson - -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | - +# SchemaFor200ResponseBodyApplicationJson -**bool, date, datetime, dict, float, int, list, str, none_type** +## 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 | | ### Authorization @@ -11861,29 +11461,27 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | +## 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 | | ### Return Types, Responses Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -11928,23 +11526,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson - -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | - +# SchemaFor200ResponseBodyApplicationJson -**bool, date, datetime, dict, float, int, list, str, none_type** +## 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 | | ### Authorization @@ -11996,29 +11592,27 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | +## 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 | | ### Return Types, Responses Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -12063,23 +11657,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson - -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | - +# SchemaFor200ResponseBodyApplicationJson -**bool, date, datetime, dict, float, int, list, str, none_type** +## 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 | | ### Authorization diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/apis/tags/DefaultApi.md b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/apis/tags/DefaultApi.md index 62ba65526e78..4fb214ed39a1 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/apis/tags/DefaultApi.md +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/apis/tags/DefaultApi.md @@ -55,10 +55,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**InvalidStringValueForDefault**](InvalidStringValueForDefault.md) | | +[**InvalidStringValueForDefault**](../../models/InvalidStringValueForDefault.md) | | ### Return Types, Responses @@ -66,18 +66,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -123,23 +120,20 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**InvalidStringValueForDefault**](InvalidStringValueForDefault.md) | | - - +[**InvalidStringValueForDefault**](../../models/InvalidStringValueForDefault.md) | | -[**InvalidStringValueForDefault**](InvalidStringValueForDefault.md) ### Authorization @@ -194,10 +188,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**TheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissing**](TheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissing.md) | | +[**TheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissing**](../../models/TheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissing.md) | | ### Return Types, Responses @@ -205,18 +199,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -262,23 +253,20 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**TheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissing**](TheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissing.md) | | - - +[**TheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissing**](../../models/TheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissing.md) | | -[**TheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissing**](TheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissing.md) ### Authorization diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/apis/tags/EnumApi.md b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/apis/tags/EnumApi.md index 31bae988f44d..ec345869090c 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/apis/tags/EnumApi.md +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/apis/tags/EnumApi.md @@ -67,10 +67,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**EnumWith0DoesNotMatchFalse**](EnumWith0DoesNotMatchFalse.md) | | +[**EnumWith0DoesNotMatchFalse**](../../models/EnumWith0DoesNotMatchFalse.md) | | ### Return Types, Responses @@ -78,18 +78,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -135,23 +132,20 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**EnumWith0DoesNotMatchFalse**](EnumWith0DoesNotMatchFalse.md) | | - - +[**EnumWith0DoesNotMatchFalse**](../../models/EnumWith0DoesNotMatchFalse.md) | | -[**EnumWith0DoesNotMatchFalse**](EnumWith0DoesNotMatchFalse.md) ### Authorization @@ -204,10 +198,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**EnumWith1DoesNotMatchTrue**](EnumWith1DoesNotMatchTrue.md) | | +[**EnumWith1DoesNotMatchTrue**](../../models/EnumWith1DoesNotMatchTrue.md) | | ### Return Types, Responses @@ -215,18 +209,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -272,23 +263,20 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**EnumWith1DoesNotMatchTrue**](EnumWith1DoesNotMatchTrue.md) | | - - +[**EnumWith1DoesNotMatchTrue**](../../models/EnumWith1DoesNotMatchTrue.md) | | -[**EnumWith1DoesNotMatchTrue**](EnumWith1DoesNotMatchTrue.md) ### Authorization @@ -341,10 +329,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**EnumWithEscapedCharacters**](EnumWithEscapedCharacters.md) | | +[**EnumWithEscapedCharacters**](../../models/EnumWithEscapedCharacters.md) | | ### Return Types, Responses @@ -352,18 +340,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -409,23 +394,20 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**EnumWithEscapedCharacters**](EnumWithEscapedCharacters.md) | | - - +[**EnumWithEscapedCharacters**](../../models/EnumWithEscapedCharacters.md) | | -[**EnumWithEscapedCharacters**](EnumWithEscapedCharacters.md) ### Authorization @@ -478,10 +460,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**EnumWithFalseDoesNotMatch0**](EnumWithFalseDoesNotMatch0.md) | | +[**EnumWithFalseDoesNotMatch0**](../../models/EnumWithFalseDoesNotMatch0.md) | | ### Return Types, Responses @@ -489,18 +471,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -546,23 +525,20 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**EnumWithFalseDoesNotMatch0**](EnumWithFalseDoesNotMatch0.md) | | - - +[**EnumWithFalseDoesNotMatch0**](../../models/EnumWithFalseDoesNotMatch0.md) | | -[**EnumWithFalseDoesNotMatch0**](EnumWithFalseDoesNotMatch0.md) ### Authorization @@ -615,10 +591,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**EnumWithTrueDoesNotMatch1**](EnumWithTrueDoesNotMatch1.md) | | +[**EnumWithTrueDoesNotMatch1**](../../models/EnumWithTrueDoesNotMatch1.md) | | ### Return Types, Responses @@ -626,18 +602,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -683,23 +656,20 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**EnumWithTrueDoesNotMatch1**](EnumWithTrueDoesNotMatch1.md) | | - - +[**EnumWithTrueDoesNotMatch1**](../../models/EnumWithTrueDoesNotMatch1.md) | | -[**EnumWithTrueDoesNotMatch1**](EnumWithTrueDoesNotMatch1.md) ### Authorization @@ -755,10 +725,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**EnumsInProperties**](EnumsInProperties.md) | | +[**EnumsInProperties**](../../models/EnumsInProperties.md) | | ### Return Types, Responses @@ -766,18 +736,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -823,23 +790,20 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**EnumsInProperties**](EnumsInProperties.md) | | - - +[**EnumsInProperties**](../../models/EnumsInProperties.md) | | -[**EnumsInProperties**](EnumsInProperties.md) ### Authorization @@ -892,10 +856,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**NulCharactersInStrings**](NulCharactersInStrings.md) | | +[**NulCharactersInStrings**](../../models/NulCharactersInStrings.md) | | ### Return Types, Responses @@ -903,18 +867,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -960,23 +921,20 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**NulCharactersInStrings**](NulCharactersInStrings.md) | | - - +[**NulCharactersInStrings**](../../models/NulCharactersInStrings.md) | | -[**NulCharactersInStrings**](NulCharactersInStrings.md) ### Authorization @@ -1029,10 +987,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**SimpleEnumValidation**](SimpleEnumValidation.md) | | +[**SimpleEnumValidation**](../../models/SimpleEnumValidation.md) | | ### Return Types, Responses @@ -1040,18 +998,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -1097,23 +1052,20 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**SimpleEnumValidation**](SimpleEnumValidation.md) | | - - +[**SimpleEnumValidation**](../../models/SimpleEnumValidation.md) | | -[**SimpleEnumValidation**](SimpleEnumValidation.md) ### Authorization diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/apis/tags/FormatApi.md b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/apis/tags/FormatApi.md index b82f97d16b8c..08431f22e696 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/apis/tags/FormatApi.md +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/apis/tags/FormatApi.md @@ -68,29 +68,27 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | +## 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 | | value must conform to RFC-3339 date-time ### Return Types, Responses Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -135,23 +133,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | - - -**bool, date, datetime, dict, float, int, list, str, none_type** +## 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 | | value must conform to RFC-3339 date-time ### Authorization @@ -203,29 +199,27 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | +## 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 | | ### Return Types, Responses Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -270,23 +264,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson - -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | +# SchemaFor200ResponseBodyApplicationJson - -**bool, date, datetime, dict, float, int, list, str, none_type** +## 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 | | ### Authorization @@ -338,29 +330,27 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | +## 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 | | ### Return Types, Responses Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -405,23 +395,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson - -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | - +# SchemaFor200ResponseBodyApplicationJson -**bool, date, datetime, dict, float, int, list, str, none_type** +## 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 | | ### Authorization @@ -473,29 +461,27 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | +## 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 | | ### Return Types, Responses Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -540,23 +526,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | - - -**bool, date, datetime, dict, float, int, list, str, none_type** +## 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 | | ### Authorization @@ -608,29 +592,27 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | +## 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 | | ### Return Types, Responses Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -675,23 +657,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson - -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | +# SchemaFor200ResponseBodyApplicationJson - -**bool, date, datetime, dict, float, int, list, str, none_type** +## 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 | | ### Authorization @@ -743,29 +723,27 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | +## 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 | | ### Return Types, Responses Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -810,23 +788,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson - -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | - +# SchemaFor200ResponseBodyApplicationJson -**bool, date, datetime, dict, float, int, list, str, none_type** +## 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 | | ### Authorization @@ -878,29 +854,27 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | +## 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 | | ### Return Types, Responses Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -945,23 +919,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson - -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | +# SchemaFor200ResponseBodyApplicationJson - -**bool, date, datetime, dict, float, int, list, str, none_type** +## 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 | | ### Authorization @@ -1013,29 +985,27 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | +## 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 | | ### Return Types, Responses Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -1080,23 +1050,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson - -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | - +# SchemaFor200ResponseBodyApplicationJson -**bool, date, datetime, dict, float, int, list, str, none_type** +## 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 | | ### Authorization @@ -1148,29 +1116,27 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | +## 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 | | ### Return Types, Responses Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -1215,23 +1181,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson - -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | - +# SchemaFor200ResponseBodyApplicationJson -**bool, date, datetime, dict, float, int, list, str, none_type** +## 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 | | ### Authorization diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/apis/tags/ItemsApi.md b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/apis/tags/ItemsApi.md index 2acaea35209d..a3892956f163 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/apis/tags/ItemsApi.md +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/apis/tags/ItemsApi.md @@ -61,10 +61,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**NestedItems**](NestedItems.md) | | +[**NestedItems**](../../models/NestedItems.md) | | ### Return Types, Responses @@ -72,18 +72,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -129,23 +126,20 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**NestedItems**](NestedItems.md) | | - - +[**NestedItems**](../../models/NestedItems.md) | | -[**NestedItems**](NestedItems.md) ### Authorization diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/apis/tags/MaxItemsApi.md b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/apis/tags/MaxItemsApi.md index b9bf55eea560..481d933e61f8 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/apis/tags/MaxItemsApi.md +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/apis/tags/MaxItemsApi.md @@ -53,10 +53,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**MaxitemsValidation**](MaxitemsValidation.md) | | +[**MaxitemsValidation**](../../models/MaxitemsValidation.md) | | ### Return Types, Responses @@ -64,18 +64,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -121,23 +118,20 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**MaxitemsValidation**](MaxitemsValidation.md) | | - - +[**MaxitemsValidation**](../../models/MaxitemsValidation.md) | | -[**MaxitemsValidation**](MaxitemsValidation.md) ### Authorization diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/apis/tags/MaxLengthApi.md b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/apis/tags/MaxLengthApi.md index eddfba30eab5..98d63d492451 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/apis/tags/MaxLengthApi.md +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/apis/tags/MaxLengthApi.md @@ -53,10 +53,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**MaxlengthValidation**](MaxlengthValidation.md) | | +[**MaxlengthValidation**](../../models/MaxlengthValidation.md) | | ### Return Types, Responses @@ -64,18 +64,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -121,23 +118,20 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**MaxlengthValidation**](MaxlengthValidation.md) | | - - +[**MaxlengthValidation**](../../models/MaxlengthValidation.md) | | -[**MaxlengthValidation**](MaxlengthValidation.md) ### Authorization diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/apis/tags/MaxPropertiesApi.md b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/apis/tags/MaxPropertiesApi.md index 153945fe444d..30bb70e217fd 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/apis/tags/MaxPropertiesApi.md +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/apis/tags/MaxPropertiesApi.md @@ -55,10 +55,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**Maxproperties0MeansTheObjectIsEmpty**](Maxproperties0MeansTheObjectIsEmpty.md) | | +[**Maxproperties0MeansTheObjectIsEmpty**](../../models/Maxproperties0MeansTheObjectIsEmpty.md) | | ### Return Types, Responses @@ -66,18 +66,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -123,23 +120,20 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**Maxproperties0MeansTheObjectIsEmpty**](Maxproperties0MeansTheObjectIsEmpty.md) | | - - +[**Maxproperties0MeansTheObjectIsEmpty**](../../models/Maxproperties0MeansTheObjectIsEmpty.md) | | -[**Maxproperties0MeansTheObjectIsEmpty**](Maxproperties0MeansTheObjectIsEmpty.md) ### Authorization @@ -192,10 +186,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**MaxpropertiesValidation**](MaxpropertiesValidation.md) | | +[**MaxpropertiesValidation**](../../models/MaxpropertiesValidation.md) | | ### Return Types, Responses @@ -203,18 +197,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -260,23 +251,20 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**MaxpropertiesValidation**](MaxpropertiesValidation.md) | | - - +[**MaxpropertiesValidation**](../../models/MaxpropertiesValidation.md) | | -[**MaxpropertiesValidation**](MaxpropertiesValidation.md) ### Authorization diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/apis/tags/MaximumApi.md b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/apis/tags/MaximumApi.md index 52254e2e23ac..388aa8b796a1 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/apis/tags/MaximumApi.md +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/apis/tags/MaximumApi.md @@ -55,10 +55,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**MaximumValidation**](MaximumValidation.md) | | +[**MaximumValidation**](../../models/MaximumValidation.md) | | ### Return Types, Responses @@ -66,18 +66,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -123,23 +120,20 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**MaximumValidation**](MaximumValidation.md) | | - - +[**MaximumValidation**](../../models/MaximumValidation.md) | | -[**MaximumValidation**](MaximumValidation.md) ### Authorization @@ -192,10 +186,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**MaximumValidationWithUnsignedInteger**](MaximumValidationWithUnsignedInteger.md) | | +[**MaximumValidationWithUnsignedInteger**](../../models/MaximumValidationWithUnsignedInteger.md) | | ### Return Types, Responses @@ -203,18 +197,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -260,23 +251,20 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**MaximumValidationWithUnsignedInteger**](MaximumValidationWithUnsignedInteger.md) | | - - +[**MaximumValidationWithUnsignedInteger**](../../models/MaximumValidationWithUnsignedInteger.md) | | -[**MaximumValidationWithUnsignedInteger**](MaximumValidationWithUnsignedInteger.md) ### Authorization diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/apis/tags/MinItemsApi.md b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/apis/tags/MinItemsApi.md index 854fbb66141f..47fece848209 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/apis/tags/MinItemsApi.md +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/apis/tags/MinItemsApi.md @@ -53,10 +53,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**MinitemsValidation**](MinitemsValidation.md) | | +[**MinitemsValidation**](../../models/MinitemsValidation.md) | | ### Return Types, Responses @@ -64,18 +64,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -121,23 +118,20 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**MinitemsValidation**](MinitemsValidation.md) | | - - +[**MinitemsValidation**](../../models/MinitemsValidation.md) | | -[**MinitemsValidation**](MinitemsValidation.md) ### Authorization diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/apis/tags/MinLengthApi.md b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/apis/tags/MinLengthApi.md index aac7c3191686..918d02f43efa 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/apis/tags/MinLengthApi.md +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/apis/tags/MinLengthApi.md @@ -53,10 +53,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**MinlengthValidation**](MinlengthValidation.md) | | +[**MinlengthValidation**](../../models/MinlengthValidation.md) | | ### Return Types, Responses @@ -64,18 +64,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -121,23 +118,20 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**MinlengthValidation**](MinlengthValidation.md) | | - - +[**MinlengthValidation**](../../models/MinlengthValidation.md) | | -[**MinlengthValidation**](MinlengthValidation.md) ### Authorization diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/apis/tags/MinPropertiesApi.md b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/apis/tags/MinPropertiesApi.md index b9e28fe78443..7d44da6f0b4b 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/apis/tags/MinPropertiesApi.md +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/apis/tags/MinPropertiesApi.md @@ -53,10 +53,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**MinpropertiesValidation**](MinpropertiesValidation.md) | | +[**MinpropertiesValidation**](../../models/MinpropertiesValidation.md) | | ### Return Types, Responses @@ -64,18 +64,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -121,23 +118,20 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**MinpropertiesValidation**](MinpropertiesValidation.md) | | - - +[**MinpropertiesValidation**](../../models/MinpropertiesValidation.md) | | -[**MinpropertiesValidation**](MinpropertiesValidation.md) ### Authorization diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/apis/tags/MinimumApi.md b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/apis/tags/MinimumApi.md index 7f4b6ef0be9f..b176533c963b 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/apis/tags/MinimumApi.md +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/apis/tags/MinimumApi.md @@ -55,10 +55,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**MinimumValidation**](MinimumValidation.md) | | +[**MinimumValidation**](../../models/MinimumValidation.md) | | ### Return Types, Responses @@ -66,18 +66,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -123,23 +120,20 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**MinimumValidation**](MinimumValidation.md) | | - - +[**MinimumValidation**](../../models/MinimumValidation.md) | | -[**MinimumValidation**](MinimumValidation.md) ### Authorization @@ -192,10 +186,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**MinimumValidationWithSignedInteger**](MinimumValidationWithSignedInteger.md) | | +[**MinimumValidationWithSignedInteger**](../../models/MinimumValidationWithSignedInteger.md) | | ### Return Types, Responses @@ -203,18 +197,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -260,23 +251,20 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**MinimumValidationWithSignedInteger**](MinimumValidationWithSignedInteger.md) | | - - +[**MinimumValidationWithSignedInteger**](../../models/MinimumValidationWithSignedInteger.md) | | -[**MinimumValidationWithSignedInteger**](MinimumValidationWithSignedInteger.md) ### Authorization diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/apis/tags/ModelNotApi.md b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/apis/tags/ModelNotApi.md index 29cdbc941bc8..0c1ab7ec02d1 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/apis/tags/ModelNotApi.md +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/apis/tags/ModelNotApi.md @@ -57,10 +57,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**ForbiddenProperty**](ForbiddenProperty.md) | | +[**ForbiddenProperty**](../../models/ForbiddenProperty.md) | | ### Return Types, Responses @@ -68,18 +68,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -125,24 +122,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**ForbiddenProperty**](ForbiddenProperty.md) | | - +[**ForbiddenProperty**](../../models/ForbiddenProperty.md) | | -[**ForbiddenProperty**](ForbiddenProperty.md) - ### Authorization No authorization required @@ -193,29 +187,46 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | +## 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, | 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 Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -260,23 +271,40 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | +## 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, | frozendict.frozendict, | | + +# not_schema +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +dict, frozendict.frozendict, | frozendict.frozendict, | | -**bool, date, datetime, dict, float, int, list, str, none_type** +### 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 @@ -328,29 +356,40 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | +## 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) | decimal.Decimal, int, | decimal.Decimal, | | + +# not_schema + +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +decimal.Decimal, int, | decimal.Decimal, | | ### Return Types, Responses Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -395,23 +434,34 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | +## 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) | decimal.Decimal, int, | decimal.Decimal, | | +# not_schema -**bool, date, datetime, dict, float, int, list, str, none_type** +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +decimal.Decimal, int, | decimal.Decimal, | | ### Authorization diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/apis/tags/MultipleOfApi.md b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/apis/tags/MultipleOfApi.md index 7bcc0d905f63..dae45d4773b2 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/apis/tags/MultipleOfApi.md +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/apis/tags/MultipleOfApi.md @@ -59,10 +59,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**ByInt**](ByInt.md) | | +[**ByInt**](../../models/ByInt.md) | | ### Return Types, Responses @@ -70,18 +70,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -127,23 +124,20 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**ByInt**](ByInt.md) | | - - +[**ByInt**](../../models/ByInt.md) | | -[**ByInt**](ByInt.md) ### Authorization @@ -196,10 +190,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**ByNumber**](ByNumber.md) | | +[**ByNumber**](../../models/ByNumber.md) | | ### Return Types, Responses @@ -207,18 +201,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -264,23 +255,20 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**ByNumber**](ByNumber.md) | | - - +[**ByNumber**](../../models/ByNumber.md) | | -[**ByNumber**](ByNumber.md) ### Authorization @@ -333,10 +321,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**BySmallNumber**](BySmallNumber.md) | | +[**BySmallNumber**](../../models/BySmallNumber.md) | | ### Return Types, Responses @@ -344,18 +332,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -401,23 +386,20 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**BySmallNumber**](BySmallNumber.md) | | - - +[**BySmallNumber**](../../models/BySmallNumber.md) | | -[**BySmallNumber**](BySmallNumber.md) ### Authorization @@ -470,10 +452,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**InvalidInstanceShouldNotRaiseErrorWhenFloatDivisionInf**](InvalidInstanceShouldNotRaiseErrorWhenFloatDivisionInf.md) | | +[**InvalidInstanceShouldNotRaiseErrorWhenFloatDivisionInf**](../../models/InvalidInstanceShouldNotRaiseErrorWhenFloatDivisionInf.md) | | ### Return Types, Responses @@ -481,18 +463,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -538,23 +517,20 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**InvalidInstanceShouldNotRaiseErrorWhenFloatDivisionInf**](InvalidInstanceShouldNotRaiseErrorWhenFloatDivisionInf.md) | | - - +[**InvalidInstanceShouldNotRaiseErrorWhenFloatDivisionInf**](../../models/InvalidInstanceShouldNotRaiseErrorWhenFloatDivisionInf.md) | | -[**InvalidInstanceShouldNotRaiseErrorWhenFloatDivisionInf**](InvalidInstanceShouldNotRaiseErrorWhenFloatDivisionInf.md) ### Authorization diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/apis/tags/OneOfApi.md b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/apis/tags/OneOfApi.md index bf1f17391293..9f6c2b244d05 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/apis/tags/OneOfApi.md +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/apis/tags/OneOfApi.md @@ -63,10 +63,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**NestedOneofToCheckValidationSemantics**](NestedOneofToCheckValidationSemantics.md) | | +[**NestedOneofToCheckValidationSemantics**](../../models/NestedOneofToCheckValidationSemantics.md) | | ### Return Types, Responses @@ -74,18 +74,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -131,24 +128,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**NestedOneofToCheckValidationSemantics**](NestedOneofToCheckValidationSemantics.md) | | - +[**NestedOneofToCheckValidationSemantics**](../../models/NestedOneofToCheckValidationSemantics.md) | | -[**NestedOneofToCheckValidationSemantics**](NestedOneofToCheckValidationSemantics.md) - ### Authorization No authorization required @@ -200,10 +194,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**OneofComplexTypes**](OneofComplexTypes.md) | | +[**OneofComplexTypes**](../../models/OneofComplexTypes.md) | | ### Return Types, Responses @@ -211,18 +205,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -268,24 +259,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**OneofComplexTypes**](OneofComplexTypes.md) | | +[**OneofComplexTypes**](../../models/OneofComplexTypes.md) | | - -[**OneofComplexTypes**](OneofComplexTypes.md) - ### Authorization No authorization required @@ -337,10 +325,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**Oneof**](Oneof.md) | | +[**Oneof**](../../models/Oneof.md) | | ### Return Types, Responses @@ -348,18 +336,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -405,23 +390,20 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**Oneof**](Oneof.md) | | - - +[**Oneof**](../../models/Oneof.md) | | -[**Oneof**](Oneof.md) ### Authorization @@ -474,10 +456,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**OneofWithBaseSchema**](OneofWithBaseSchema.md) | | +[**OneofWithBaseSchema**](../../models/OneofWithBaseSchema.md) | | ### Return Types, Responses @@ -485,18 +467,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -542,24 +521,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**OneofWithBaseSchema**](OneofWithBaseSchema.md) | | - +[**OneofWithBaseSchema**](../../models/OneofWithBaseSchema.md) | | -[**OneofWithBaseSchema**](OneofWithBaseSchema.md) - ### Authorization No authorization required @@ -611,10 +587,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**OneofWithEmptySchema**](OneofWithEmptySchema.md) | | +[**OneofWithEmptySchema**](../../models/OneofWithEmptySchema.md) | | ### Return Types, Responses @@ -622,18 +598,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -679,24 +652,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**OneofWithEmptySchema**](OneofWithEmptySchema.md) | | +[**OneofWithEmptySchema**](../../models/OneofWithEmptySchema.md) | | - -[**OneofWithEmptySchema**](OneofWithEmptySchema.md) - ### Authorization No authorization required @@ -748,10 +718,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**OneofWithRequired**](OneofWithRequired.md) | | +[**OneofWithRequired**](../../models/OneofWithRequired.md) | | ### Return Types, Responses @@ -759,18 +729,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -816,23 +783,20 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**OneofWithRequired**](OneofWithRequired.md) | | - - +[**OneofWithRequired**](../../models/OneofWithRequired.md) | | -[**OneofWithRequired**](OneofWithRequired.md) ### Authorization diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/apis/tags/OperationRequestBodyApi.md b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/apis/tags/OperationRequestBodyApi.md index cefbcfcc932a..b483f613cc31 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/apis/tags/OperationRequestBodyApi.md +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/apis/tags/OperationRequestBodyApi.md @@ -141,10 +141,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**AdditionalpropertiesAllowsASchemaWhichShouldValidate**](AdditionalpropertiesAllowsASchemaWhichShouldValidate.md) | | +[**AdditionalpropertiesAllowsASchemaWhichShouldValidate**](../../models/AdditionalpropertiesAllowsASchemaWhichShouldValidate.md) | | ### Return Types, Responses @@ -152,18 +152,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -215,10 +212,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**AdditionalpropertiesAreAllowedByDefault**](AdditionalpropertiesAreAllowedByDefault.md) | | +[**AdditionalpropertiesAreAllowedByDefault**](../../models/AdditionalpropertiesAreAllowedByDefault.md) | | ### Return Types, Responses @@ -226,18 +223,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -291,10 +285,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**AdditionalpropertiesCanExistByItself**](AdditionalpropertiesCanExistByItself.md) | | +[**AdditionalpropertiesCanExistByItself**](../../models/AdditionalpropertiesCanExistByItself.md) | | ### Return Types, Responses @@ -302,18 +296,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -365,10 +356,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**AdditionalpropertiesShouldNotLookInApplicators**](AdditionalpropertiesShouldNotLookInApplicators.md) | | +[**AdditionalpropertiesShouldNotLookInApplicators**](../../models/AdditionalpropertiesShouldNotLookInApplicators.md) | | ### Return Types, Responses @@ -376,18 +367,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -439,10 +427,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**AllofCombinedWithAnyofOneof**](AllofCombinedWithAnyofOneof.md) | | +[**AllofCombinedWithAnyofOneof**](../../models/AllofCombinedWithAnyofOneof.md) | | ### Return Types, Responses @@ -450,18 +438,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -513,10 +498,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**Allof**](Allof.md) | | +[**Allof**](../../models/Allof.md) | | ### Return Types, Responses @@ -524,18 +509,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -587,10 +569,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**AllofSimpleTypes**](AllofSimpleTypes.md) | | +[**AllofSimpleTypes**](../../models/AllofSimpleTypes.md) | | ### Return Types, Responses @@ -598,18 +580,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -661,10 +640,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**AllofWithBaseSchema**](AllofWithBaseSchema.md) | | +[**AllofWithBaseSchema**](../../models/AllofWithBaseSchema.md) | | ### Return Types, Responses @@ -672,18 +651,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -735,10 +711,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**AllofWithOneEmptySchema**](AllofWithOneEmptySchema.md) | | +[**AllofWithOneEmptySchema**](../../models/AllofWithOneEmptySchema.md) | | ### Return Types, Responses @@ -746,18 +722,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -809,10 +782,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**AllofWithTheFirstEmptySchema**](AllofWithTheFirstEmptySchema.md) | | +[**AllofWithTheFirstEmptySchema**](../../models/AllofWithTheFirstEmptySchema.md) | | ### Return Types, Responses @@ -820,18 +793,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -883,10 +853,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**AllofWithTheLastEmptySchema**](AllofWithTheLastEmptySchema.md) | | +[**AllofWithTheLastEmptySchema**](../../models/AllofWithTheLastEmptySchema.md) | | ### Return Types, Responses @@ -894,18 +864,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -957,10 +924,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**AllofWithTwoEmptySchemas**](AllofWithTwoEmptySchemas.md) | | +[**AllofWithTwoEmptySchemas**](../../models/AllofWithTwoEmptySchemas.md) | | ### Return Types, Responses @@ -968,18 +935,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -1031,10 +995,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**AnyofComplexTypes**](AnyofComplexTypes.md) | | +[**AnyofComplexTypes**](../../models/AnyofComplexTypes.md) | | ### Return Types, Responses @@ -1042,18 +1006,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -1105,10 +1066,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**Anyof**](Anyof.md) | | +[**Anyof**](../../models/Anyof.md) | | ### Return Types, Responses @@ -1116,18 +1077,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -1179,10 +1137,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**AnyofWithBaseSchema**](AnyofWithBaseSchema.md) | | +[**AnyofWithBaseSchema**](../../models/AnyofWithBaseSchema.md) | | ### Return Types, Responses @@ -1190,18 +1148,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -1253,10 +1208,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**AnyofWithOneEmptySchema**](AnyofWithOneEmptySchema.md) | | +[**AnyofWithOneEmptySchema**](../../models/AnyofWithOneEmptySchema.md) | | ### Return Types, Responses @@ -1264,18 +1219,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -1329,10 +1281,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**ArrayTypeMatchesArrays**](ArrayTypeMatchesArrays.md) | | +[**ArrayTypeMatchesArrays**](../../models/ArrayTypeMatchesArrays.md) | | ### Return Types, Responses @@ -1340,18 +1292,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -1402,29 +1351,27 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson -Type | Description | Notes -------------- | ------------- | ------------- -**bool** | | +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +bool, | BoolClass, | | ### Return Types, Responses Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -1476,10 +1423,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**ByInt**](ByInt.md) | | +[**ByInt**](../../models/ByInt.md) | | ### Return Types, Responses @@ -1487,18 +1434,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -1550,10 +1494,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**ByNumber**](ByNumber.md) | | +[**ByNumber**](../../models/ByNumber.md) | | ### Return Types, Responses @@ -1561,18 +1505,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -1624,10 +1565,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**BySmallNumber**](BySmallNumber.md) | | +[**BySmallNumber**](../../models/BySmallNumber.md) | | ### Return Types, Responses @@ -1635,18 +1576,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -1697,29 +1635,27 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | +## 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 | | value must conform to RFC-3339 date-time ### Return Types, Responses Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -1770,29 +1706,27 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | +## 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 | | ### Return Types, Responses Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -1844,10 +1778,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**EnumWith0DoesNotMatchFalse**](EnumWith0DoesNotMatchFalse.md) | | +[**EnumWith0DoesNotMatchFalse**](../../models/EnumWith0DoesNotMatchFalse.md) | | ### Return Types, Responses @@ -1855,18 +1789,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -1918,10 +1849,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**EnumWith1DoesNotMatchTrue**](EnumWith1DoesNotMatchTrue.md) | | +[**EnumWith1DoesNotMatchTrue**](../../models/EnumWith1DoesNotMatchTrue.md) | | ### Return Types, Responses @@ -1929,18 +1860,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -1992,10 +1920,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**EnumWithEscapedCharacters**](EnumWithEscapedCharacters.md) | | +[**EnumWithEscapedCharacters**](../../models/EnumWithEscapedCharacters.md) | | ### Return Types, Responses @@ -2003,18 +1931,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -2066,10 +1991,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**EnumWithFalseDoesNotMatch0**](EnumWithFalseDoesNotMatch0.md) | | +[**EnumWithFalseDoesNotMatch0**](../../models/EnumWithFalseDoesNotMatch0.md) | | ### Return Types, Responses @@ -2077,18 +2002,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -2140,10 +2062,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**EnumWithTrueDoesNotMatch1**](EnumWithTrueDoesNotMatch1.md) | | +[**EnumWithTrueDoesNotMatch1**](../../models/EnumWithTrueDoesNotMatch1.md) | | ### Return Types, Responses @@ -2151,18 +2073,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -2217,10 +2136,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**EnumsInProperties**](EnumsInProperties.md) | | +[**EnumsInProperties**](../../models/EnumsInProperties.md) | | ### Return Types, Responses @@ -2228,18 +2147,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -2291,10 +2207,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**ForbiddenProperty**](ForbiddenProperty.md) | | +[**ForbiddenProperty**](../../models/ForbiddenProperty.md) | | ### Return Types, Responses @@ -2302,18 +2218,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -2364,29 +2277,27 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | +## 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 | | ### Return Types, Responses Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -2437,29 +2348,27 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson -Type | Description | Notes -------------- | ------------- | ------------- -**int** | | +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +decimal.Decimal, int, | decimal.Decimal, | | ### Return Types, Responses Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -2511,10 +2420,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**InvalidInstanceShouldNotRaiseErrorWhenFloatDivisionInf**](InvalidInstanceShouldNotRaiseErrorWhenFloatDivisionInf.md) | | +[**InvalidInstanceShouldNotRaiseErrorWhenFloatDivisionInf**](../../models/InvalidInstanceShouldNotRaiseErrorWhenFloatDivisionInf.md) | | ### Return Types, Responses @@ -2522,18 +2431,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -2585,10 +2491,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**InvalidStringValueForDefault**](InvalidStringValueForDefault.md) | | +[**InvalidStringValueForDefault**](../../models/InvalidStringValueForDefault.md) | | ### Return Types, Responses @@ -2596,18 +2502,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -2658,29 +2561,27 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | +## 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 | | ### Return Types, Responses Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -2731,29 +2632,27 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | +## 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 | | ### Return Types, Responses Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -2804,29 +2703,27 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | +## 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 | | ### Return Types, Responses Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -2878,10 +2775,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**MaximumValidation**](MaximumValidation.md) | | +[**MaximumValidation**](../../models/MaximumValidation.md) | | ### Return Types, Responses @@ -2889,18 +2786,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -2952,10 +2846,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**MaximumValidationWithUnsignedInteger**](MaximumValidationWithUnsignedInteger.md) | | +[**MaximumValidationWithUnsignedInteger**](../../models/MaximumValidationWithUnsignedInteger.md) | | ### Return Types, Responses @@ -2963,18 +2857,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -3026,10 +2917,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**MaxitemsValidation**](MaxitemsValidation.md) | | +[**MaxitemsValidation**](../../models/MaxitemsValidation.md) | | ### Return Types, Responses @@ -3037,18 +2928,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -3100,10 +2988,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**MaxlengthValidation**](MaxlengthValidation.md) | | +[**MaxlengthValidation**](../../models/MaxlengthValidation.md) | | ### Return Types, Responses @@ -3111,18 +2999,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -3174,10 +3059,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**Maxproperties0MeansTheObjectIsEmpty**](Maxproperties0MeansTheObjectIsEmpty.md) | | +[**Maxproperties0MeansTheObjectIsEmpty**](../../models/Maxproperties0MeansTheObjectIsEmpty.md) | | ### Return Types, Responses @@ -3185,18 +3070,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -3248,10 +3130,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**MaxpropertiesValidation**](MaxpropertiesValidation.md) | | +[**MaxpropertiesValidation**](../../models/MaxpropertiesValidation.md) | | ### Return Types, Responses @@ -3259,18 +3141,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -3322,10 +3201,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**MinimumValidation**](MinimumValidation.md) | | +[**MinimumValidation**](../../models/MinimumValidation.md) | | ### Return Types, Responses @@ -3333,18 +3212,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -3396,10 +3272,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**MinimumValidationWithSignedInteger**](MinimumValidationWithSignedInteger.md) | | +[**MinimumValidationWithSignedInteger**](../../models/MinimumValidationWithSignedInteger.md) | | ### Return Types, Responses @@ -3407,18 +3283,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -3470,10 +3343,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**MinitemsValidation**](MinitemsValidation.md) | | +[**MinitemsValidation**](../../models/MinitemsValidation.md) | | ### Return Types, Responses @@ -3481,18 +3354,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -3544,10 +3414,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**MinlengthValidation**](MinlengthValidation.md) | | +[**MinlengthValidation**](../../models/MinlengthValidation.md) | | ### Return Types, Responses @@ -3555,18 +3425,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -3618,10 +3485,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**MinpropertiesValidation**](MinpropertiesValidation.md) | | +[**MinpropertiesValidation**](../../models/MinpropertiesValidation.md) | | ### Return Types, Responses @@ -3629,18 +3496,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -3692,10 +3556,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**NestedAllofToCheckValidationSemantics**](NestedAllofToCheckValidationSemantics.md) | | +[**NestedAllofToCheckValidationSemantics**](../../models/NestedAllofToCheckValidationSemantics.md) | | ### Return Types, Responses @@ -3703,18 +3567,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -3766,10 +3627,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**NestedAnyofToCheckValidationSemantics**](NestedAnyofToCheckValidationSemantics.md) | | +[**NestedAnyofToCheckValidationSemantics**](../../models/NestedAnyofToCheckValidationSemantics.md) | | ### Return Types, Responses @@ -3777,18 +3638,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -3848,10 +3706,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**NestedItems**](NestedItems.md) | | +[**NestedItems**](../../models/NestedItems.md) | | ### Return Types, Responses @@ -3859,18 +3717,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -3922,10 +3777,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**NestedOneofToCheckValidationSemantics**](NestedOneofToCheckValidationSemantics.md) | | +[**NestedOneofToCheckValidationSemantics**](../../models/NestedOneofToCheckValidationSemantics.md) | | ### Return Types, Responses @@ -3933,18 +3788,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -3995,29 +3847,46 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | +## 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, | 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 Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -4068,29 +3937,40 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | +## 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) | decimal.Decimal, int, | decimal.Decimal, | | + +# not_schema + +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +decimal.Decimal, int, | decimal.Decimal, | | ### Return Types, Responses Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -4142,10 +4022,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**NulCharactersInStrings**](NulCharactersInStrings.md) | | +[**NulCharactersInStrings**](../../models/NulCharactersInStrings.md) | | ### Return Types, Responses @@ -4153,18 +4033,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -4215,29 +4092,27 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson -Type | Description | Notes -------------- | ------------- | ------------- -**none_type** | | +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +None, | NoneClass, | | ### Return Types, Responses Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -4288,29 +4163,27 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson -Type | Description | Notes -------------- | ------------- | ------------- -**int, float** | | +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +decimal.Decimal, int, float, | decimal.Decimal, | | ### Return Types, Responses Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -4362,10 +4235,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**ObjectPropertiesValidation**](ObjectPropertiesValidation.md) | | +[**ObjectPropertiesValidation**](../../models/ObjectPropertiesValidation.md) | | ### Return Types, Responses @@ -4373,18 +4246,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -4435,29 +4305,27 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson -Type | Description | Notes -------------- | ------------- | ------------- -**{str: (bool, date, datetime, dict, float, int, list, str, none_type)}** | | +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +dict, frozendict.frozendict, | frozendict.frozendict, | | ### Return Types, Responses Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -4509,10 +4377,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**OneofComplexTypes**](OneofComplexTypes.md) | | +[**OneofComplexTypes**](../../models/OneofComplexTypes.md) | | ### Return Types, Responses @@ -4520,18 +4388,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -4583,10 +4448,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**Oneof**](Oneof.md) | | +[**Oneof**](../../models/Oneof.md) | | ### Return Types, Responses @@ -4594,18 +4459,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -4657,10 +4519,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**OneofWithBaseSchema**](OneofWithBaseSchema.md) | | +[**OneofWithBaseSchema**](../../models/OneofWithBaseSchema.md) | | ### Return Types, Responses @@ -4668,18 +4530,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -4731,10 +4590,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**OneofWithEmptySchema**](OneofWithEmptySchema.md) | | +[**OneofWithEmptySchema**](../../models/OneofWithEmptySchema.md) | | ### Return Types, Responses @@ -4742,18 +4601,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -4805,10 +4661,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**OneofWithRequired**](OneofWithRequired.md) | | +[**OneofWithRequired**](../../models/OneofWithRequired.md) | | ### Return Types, Responses @@ -4816,18 +4672,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -4879,10 +4732,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**PatternIsNotAnchored**](PatternIsNotAnchored.md) | | +[**PatternIsNotAnchored**](../../models/PatternIsNotAnchored.md) | | ### Return Types, Responses @@ -4890,18 +4743,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -4953,10 +4803,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**PatternValidation**](PatternValidation.md) | | +[**PatternValidation**](../../models/PatternValidation.md) | | ### Return Types, Responses @@ -4964,18 +4814,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -5027,10 +4874,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**PropertiesWithEscapedCharacters**](PropertiesWithEscapedCharacters.md) | | +[**PropertiesWithEscapedCharacters**](../../models/PropertiesWithEscapedCharacters.md) | | ### Return Types, Responses @@ -5038,18 +4885,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -5101,10 +4945,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**PropertyNamedRefThatIsNotAReference**](PropertyNamedRefThatIsNotAReference.md) | | +[**PropertyNamedRefThatIsNotAReference**](../../models/PropertyNamedRefThatIsNotAReference.md) | | ### Return Types, Responses @@ -5112,18 +4956,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -5177,10 +5018,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**RefInAdditionalproperties**](RefInAdditionalproperties.md) | | +[**RefInAdditionalproperties**](../../models/RefInAdditionalproperties.md) | | ### Return Types, Responses @@ -5188,18 +5029,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -5251,10 +5089,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**RefInAllof**](RefInAllof.md) | | +[**RefInAllof**](../../models/RefInAllof.md) | | ### Return Types, Responses @@ -5262,18 +5100,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -5325,10 +5160,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**RefInAnyof**](RefInAnyof.md) | | +[**RefInAnyof**](../../models/RefInAnyof.md) | | ### Return Types, Responses @@ -5336,18 +5171,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -5401,10 +5233,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**RefInItems**](RefInItems.md) | | +[**RefInItems**](../../models/RefInItems.md) | | ### Return Types, Responses @@ -5412,18 +5244,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -5475,29 +5304,33 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | +## 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 +------------- | ------------- | ------------- | ------------- | ------------- +[PropertyNamedRefThatIsNotAReference]({{complexTypePrefix}}PropertyNamedRefThatIsNotAReference.md) | [**PropertyNamedRefThatIsNotAReference**]({{complexTypePrefix}}PropertyNamedRefThatIsNotAReference.md) | [**PropertyNamedRefThatIsNotAReference**]({{complexTypePrefix}}PropertyNamedRefThatIsNotAReference.md) | | ### Return Types, Responses Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -5549,10 +5382,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**RefInOneof**](RefInOneof.md) | | +[**RefInOneof**](../../models/RefInOneof.md) | | ### Return Types, Responses @@ -5560,18 +5393,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -5623,10 +5453,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**RefInProperty**](RefInProperty.md) | | +[**RefInProperty**](../../models/RefInProperty.md) | | ### Return Types, Responses @@ -5634,18 +5464,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -5697,10 +5524,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**RequiredDefaultValidation**](RequiredDefaultValidation.md) | | +[**RequiredDefaultValidation**](../../models/RequiredDefaultValidation.md) | | ### Return Types, Responses @@ -5708,18 +5535,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -5771,10 +5595,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**RequiredValidation**](RequiredValidation.md) | | +[**RequiredValidation**](../../models/RequiredValidation.md) | | ### Return Types, Responses @@ -5782,18 +5606,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -5845,10 +5666,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**RequiredWithEmptyArray**](RequiredWithEmptyArray.md) | | +[**RequiredWithEmptyArray**](../../models/RequiredWithEmptyArray.md) | | ### Return Types, Responses @@ -5856,18 +5677,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -5918,29 +5736,27 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | +## 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 | | ### Return Types, Responses Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -5992,10 +5808,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**SimpleEnumValidation**](SimpleEnumValidation.md) | | +[**SimpleEnumValidation**](../../models/SimpleEnumValidation.md) | | ### Return Types, Responses @@ -6003,18 +5819,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -6065,29 +5878,27 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson -Type | Description | Notes -------------- | ------------- | ------------- -**str** | | +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +str, | str, | | ### Return Types, Responses Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -6141,10 +5952,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**TheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissing**](TheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissing.md) | | +[**TheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissing**](../../models/TheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissing.md) | | ### Return Types, Responses @@ -6152,18 +5963,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -6215,10 +6023,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**UniqueitemsFalseValidation**](UniqueitemsFalseValidation.md) | | +[**UniqueitemsFalseValidation**](../../models/UniqueitemsFalseValidation.md) | | ### Return Types, Responses @@ -6226,18 +6034,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -6289,10 +6094,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**UniqueitemsValidation**](UniqueitemsValidation.md) | | +[**UniqueitemsValidation**](../../models/UniqueitemsValidation.md) | | ### Return Types, Responses @@ -6300,18 +6105,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -6362,29 +6164,27 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | +## 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 | | ### Return Types, Responses Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -6435,29 +6235,27 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | +## 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 | | ### Return Types, Responses Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -6508,29 +6306,27 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | +## 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 | | ### Return Types, Responses Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/apis/tags/PathPostApi.md b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/apis/tags/PathPostApi.md index 9b0b815a8989..f59e95a4c93a 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/apis/tags/PathPostApi.md +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/apis/tags/PathPostApi.md @@ -228,10 +228,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**AdditionalpropertiesAllowsASchemaWhichShouldValidate**](AdditionalpropertiesAllowsASchemaWhichShouldValidate.md) | | +[**AdditionalpropertiesAllowsASchemaWhichShouldValidate**](../../models/AdditionalpropertiesAllowsASchemaWhichShouldValidate.md) | | ### Return Types, Responses @@ -239,18 +239,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -296,23 +293,20 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**AdditionalpropertiesAllowsASchemaWhichShouldValidate**](AdditionalpropertiesAllowsASchemaWhichShouldValidate.md) | | - - +[**AdditionalpropertiesAllowsASchemaWhichShouldValidate**](../../models/AdditionalpropertiesAllowsASchemaWhichShouldValidate.md) | | -[**AdditionalpropertiesAllowsASchemaWhichShouldValidate**](AdditionalpropertiesAllowsASchemaWhichShouldValidate.md) ### Authorization @@ -365,10 +359,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**AdditionalpropertiesAreAllowedByDefault**](AdditionalpropertiesAreAllowedByDefault.md) | | +[**AdditionalpropertiesAreAllowedByDefault**](../../models/AdditionalpropertiesAreAllowedByDefault.md) | | ### Return Types, Responses @@ -376,18 +370,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -433,24 +424,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**AdditionalpropertiesAreAllowedByDefault**](AdditionalpropertiesAreAllowedByDefault.md) | | - +[**AdditionalpropertiesAreAllowedByDefault**](../../models/AdditionalpropertiesAreAllowedByDefault.md) | | -[**AdditionalpropertiesAreAllowedByDefault**](AdditionalpropertiesAreAllowedByDefault.md) - ### Authorization No authorization required @@ -504,10 +492,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**AdditionalpropertiesCanExistByItself**](AdditionalpropertiesCanExistByItself.md) | | +[**AdditionalpropertiesCanExistByItself**](../../models/AdditionalpropertiesCanExistByItself.md) | | ### Return Types, Responses @@ -515,18 +503,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -572,24 +557,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**AdditionalpropertiesCanExistByItself**](AdditionalpropertiesCanExistByItself.md) | | +[**AdditionalpropertiesCanExistByItself**](../../models/AdditionalpropertiesCanExistByItself.md) | | - -[**AdditionalpropertiesCanExistByItself**](AdditionalpropertiesCanExistByItself.md) - ### Authorization No authorization required @@ -641,10 +623,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**AdditionalpropertiesShouldNotLookInApplicators**](AdditionalpropertiesShouldNotLookInApplicators.md) | | +[**AdditionalpropertiesShouldNotLookInApplicators**](../../models/AdditionalpropertiesShouldNotLookInApplicators.md) | | ### Return Types, Responses @@ -652,18 +634,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -709,23 +688,20 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**AdditionalpropertiesShouldNotLookInApplicators**](AdditionalpropertiesShouldNotLookInApplicators.md) | | - - +[**AdditionalpropertiesShouldNotLookInApplicators**](../../models/AdditionalpropertiesShouldNotLookInApplicators.md) | | -[**AdditionalpropertiesShouldNotLookInApplicators**](AdditionalpropertiesShouldNotLookInApplicators.md) ### Authorization @@ -778,10 +754,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**AllofCombinedWithAnyofOneof**](AllofCombinedWithAnyofOneof.md) | | +[**AllofCombinedWithAnyofOneof**](../../models/AllofCombinedWithAnyofOneof.md) | | ### Return Types, Responses @@ -789,18 +765,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -846,24 +819,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**AllofCombinedWithAnyofOneof**](AllofCombinedWithAnyofOneof.md) | | - +[**AllofCombinedWithAnyofOneof**](../../models/AllofCombinedWithAnyofOneof.md) | | -[**AllofCombinedWithAnyofOneof**](AllofCombinedWithAnyofOneof.md) - ### Authorization No authorization required @@ -915,10 +885,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**Allof**](Allof.md) | | +[**Allof**](../../models/Allof.md) | | ### Return Types, Responses @@ -926,18 +896,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -983,24 +950,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**Allof**](Allof.md) | | +[**Allof**](../../models/Allof.md) | | - -[**Allof**](Allof.md) - ### Authorization No authorization required @@ -1052,10 +1016,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**AllofSimpleTypes**](AllofSimpleTypes.md) | | +[**AllofSimpleTypes**](../../models/AllofSimpleTypes.md) | | ### Return Types, Responses @@ -1063,18 +1027,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -1120,23 +1081,20 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**AllofSimpleTypes**](AllofSimpleTypes.md) | | - - +[**AllofSimpleTypes**](../../models/AllofSimpleTypes.md) | | -[**AllofSimpleTypes**](AllofSimpleTypes.md) ### Authorization @@ -1189,10 +1147,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**AllofWithBaseSchema**](AllofWithBaseSchema.md) | | +[**AllofWithBaseSchema**](../../models/AllofWithBaseSchema.md) | | ### Return Types, Responses @@ -1200,18 +1158,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -1257,24 +1212,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**AllofWithBaseSchema**](AllofWithBaseSchema.md) | | - +[**AllofWithBaseSchema**](../../models/AllofWithBaseSchema.md) | | -[**AllofWithBaseSchema**](AllofWithBaseSchema.md) - ### Authorization No authorization required @@ -1326,10 +1278,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**AllofWithOneEmptySchema**](AllofWithOneEmptySchema.md) | | +[**AllofWithOneEmptySchema**](../../models/AllofWithOneEmptySchema.md) | | ### Return Types, Responses @@ -1337,18 +1289,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -1394,24 +1343,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**AllofWithOneEmptySchema**](AllofWithOneEmptySchema.md) | | +[**AllofWithOneEmptySchema**](../../models/AllofWithOneEmptySchema.md) | | - -[**AllofWithOneEmptySchema**](AllofWithOneEmptySchema.md) - ### Authorization No authorization required @@ -1463,10 +1409,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**AllofWithTheFirstEmptySchema**](AllofWithTheFirstEmptySchema.md) | | +[**AllofWithTheFirstEmptySchema**](../../models/AllofWithTheFirstEmptySchema.md) | | ### Return Types, Responses @@ -1474,18 +1420,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -1531,23 +1474,20 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**AllofWithTheFirstEmptySchema**](AllofWithTheFirstEmptySchema.md) | | - - +[**AllofWithTheFirstEmptySchema**](../../models/AllofWithTheFirstEmptySchema.md) | | -[**AllofWithTheFirstEmptySchema**](AllofWithTheFirstEmptySchema.md) ### Authorization @@ -1600,10 +1540,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**AllofWithTheLastEmptySchema**](AllofWithTheLastEmptySchema.md) | | +[**AllofWithTheLastEmptySchema**](../../models/AllofWithTheLastEmptySchema.md) | | ### Return Types, Responses @@ -1611,18 +1551,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -1668,24 +1605,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**AllofWithTheLastEmptySchema**](AllofWithTheLastEmptySchema.md) | | - +[**AllofWithTheLastEmptySchema**](../../models/AllofWithTheLastEmptySchema.md) | | -[**AllofWithTheLastEmptySchema**](AllofWithTheLastEmptySchema.md) - ### Authorization No authorization required @@ -1737,10 +1671,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**AllofWithTwoEmptySchemas**](AllofWithTwoEmptySchemas.md) | | +[**AllofWithTwoEmptySchemas**](../../models/AllofWithTwoEmptySchemas.md) | | ### Return Types, Responses @@ -1748,18 +1682,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -1805,24 +1736,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**AllofWithTwoEmptySchemas**](AllofWithTwoEmptySchemas.md) | | +[**AllofWithTwoEmptySchemas**](../../models/AllofWithTwoEmptySchemas.md) | | - -[**AllofWithTwoEmptySchemas**](AllofWithTwoEmptySchemas.md) - ### Authorization No authorization required @@ -1874,10 +1802,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**AnyofComplexTypes**](AnyofComplexTypes.md) | | +[**AnyofComplexTypes**](../../models/AnyofComplexTypes.md) | | ### Return Types, Responses @@ -1885,18 +1813,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -1942,24 +1867,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**AnyofComplexTypes**](AnyofComplexTypes.md) | | - +[**AnyofComplexTypes**](../../models/AnyofComplexTypes.md) | | -[**AnyofComplexTypes**](AnyofComplexTypes.md) - ### Authorization No authorization required @@ -2011,10 +1933,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**Anyof**](Anyof.md) | | +[**Anyof**](../../models/Anyof.md) | | ### Return Types, Responses @@ -2022,18 +1944,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -2079,23 +1998,20 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**Anyof**](Anyof.md) | | - - +[**Anyof**](../../models/Anyof.md) | | -[**Anyof**](Anyof.md) ### Authorization @@ -2148,10 +2064,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**AnyofWithBaseSchema**](AnyofWithBaseSchema.md) | | +[**AnyofWithBaseSchema**](../../models/AnyofWithBaseSchema.md) | | ### Return Types, Responses @@ -2159,18 +2075,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -2216,24 +2129,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**AnyofWithBaseSchema**](AnyofWithBaseSchema.md) | | - +[**AnyofWithBaseSchema**](../../models/AnyofWithBaseSchema.md) | | -[**AnyofWithBaseSchema**](AnyofWithBaseSchema.md) - ### Authorization No authorization required @@ -2285,10 +2195,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**AnyofWithOneEmptySchema**](AnyofWithOneEmptySchema.md) | | +[**AnyofWithOneEmptySchema**](../../models/AnyofWithOneEmptySchema.md) | | ### Return Types, Responses @@ -2296,18 +2206,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -2353,24 +2260,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**AnyofWithOneEmptySchema**](AnyofWithOneEmptySchema.md) | | +[**AnyofWithOneEmptySchema**](../../models/AnyofWithOneEmptySchema.md) | | - -[**AnyofWithOneEmptySchema**](AnyofWithOneEmptySchema.md) - ### Authorization No authorization required @@ -2424,10 +2328,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**ArrayTypeMatchesArrays**](ArrayTypeMatchesArrays.md) | | +[**ArrayTypeMatchesArrays**](../../models/ArrayTypeMatchesArrays.md) | | ### Return Types, Responses @@ -2435,18 +2339,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -2492,23 +2393,20 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**ArrayTypeMatchesArrays**](ArrayTypeMatchesArrays.md) | | - - +[**ArrayTypeMatchesArrays**](../../models/ArrayTypeMatchesArrays.md) | | -[**ArrayTypeMatchesArrays**](ArrayTypeMatchesArrays.md) ### Authorization @@ -2560,29 +2458,27 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson -Type | Description | Notes -------------- | ------------- | ------------- -**bool** | | +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +bool, | BoolClass, | | ### Return Types, Responses Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -2627,23 +2523,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson - -Type | Description | Notes -------------- | ------------- | ------------- -**bool** | | - +# SchemaFor200ResponseBodyApplicationJson -**bool** +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +bool, | BoolClass, | | ### Authorization @@ -2696,10 +2590,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**ByInt**](ByInt.md) | | +[**ByInt**](../../models/ByInt.md) | | ### Return Types, Responses @@ -2707,18 +2601,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -2764,24 +2655,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**ByInt**](ByInt.md) | | - +[**ByInt**](../../models/ByInt.md) | | -[**ByInt**](ByInt.md) - ### Authorization No authorization required @@ -2833,10 +2721,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**ByNumber**](ByNumber.md) | | +[**ByNumber**](../../models/ByNumber.md) | | ### Return Types, Responses @@ -2844,18 +2732,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -2901,24 +2786,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**ByNumber**](ByNumber.md) | | +[**ByNumber**](../../models/ByNumber.md) | | - -[**ByNumber**](ByNumber.md) - ### Authorization No authorization required @@ -2970,10 +2852,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**BySmallNumber**](BySmallNumber.md) | | +[**BySmallNumber**](../../models/BySmallNumber.md) | | ### Return Types, Responses @@ -2981,18 +2863,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -3038,23 +2917,20 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**BySmallNumber**](BySmallNumber.md) | | - - +[**BySmallNumber**](../../models/BySmallNumber.md) | | -[**BySmallNumber**](BySmallNumber.md) ### Authorization @@ -3106,29 +2982,27 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | +## 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 | | value must conform to RFC-3339 date-time ### Return Types, Responses Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -3173,23 +3047,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson - -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | - +# SchemaFor200ResponseBodyApplicationJson -**bool, date, datetime, dict, float, int, list, str, none_type** +## 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 | | value must conform to RFC-3339 date-time ### Authorization @@ -3241,29 +3113,27 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | +## 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 | | ### Return Types, Responses Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -3308,23 +3178,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson - -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | - +# SchemaFor200ResponseBodyApplicationJson -**bool, date, datetime, dict, float, int, list, str, none_type** +## 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 | | ### Authorization @@ -3377,10 +3245,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**EnumWith0DoesNotMatchFalse**](EnumWith0DoesNotMatchFalse.md) | | +[**EnumWith0DoesNotMatchFalse**](../../models/EnumWith0DoesNotMatchFalse.md) | | ### Return Types, Responses @@ -3388,18 +3256,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -3445,23 +3310,20 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**EnumWith0DoesNotMatchFalse**](EnumWith0DoesNotMatchFalse.md) | | - - +[**EnumWith0DoesNotMatchFalse**](../../models/EnumWith0DoesNotMatchFalse.md) | | -[**EnumWith0DoesNotMatchFalse**](EnumWith0DoesNotMatchFalse.md) ### Authorization @@ -3514,10 +3376,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**EnumWith1DoesNotMatchTrue**](EnumWith1DoesNotMatchTrue.md) | | +[**EnumWith1DoesNotMatchTrue**](../../models/EnumWith1DoesNotMatchTrue.md) | | ### Return Types, Responses @@ -3525,18 +3387,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -3582,24 +3441,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**EnumWith1DoesNotMatchTrue**](EnumWith1DoesNotMatchTrue.md) | | - +[**EnumWith1DoesNotMatchTrue**](../../models/EnumWith1DoesNotMatchTrue.md) | | -[**EnumWith1DoesNotMatchTrue**](EnumWith1DoesNotMatchTrue.md) - ### Authorization No authorization required @@ -3651,10 +3507,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**EnumWithEscapedCharacters**](EnumWithEscapedCharacters.md) | | +[**EnumWithEscapedCharacters**](../../models/EnumWithEscapedCharacters.md) | | ### Return Types, Responses @@ -3662,18 +3518,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -3719,24 +3572,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**EnumWithEscapedCharacters**](EnumWithEscapedCharacters.md) | | +[**EnumWithEscapedCharacters**](../../models/EnumWithEscapedCharacters.md) | | - -[**EnumWithEscapedCharacters**](EnumWithEscapedCharacters.md) - ### Authorization No authorization required @@ -3788,10 +3638,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**EnumWithFalseDoesNotMatch0**](EnumWithFalseDoesNotMatch0.md) | | +[**EnumWithFalseDoesNotMatch0**](../../models/EnumWithFalseDoesNotMatch0.md) | | ### Return Types, Responses @@ -3799,18 +3649,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -3856,23 +3703,20 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**EnumWithFalseDoesNotMatch0**](EnumWithFalseDoesNotMatch0.md) | | - - +[**EnumWithFalseDoesNotMatch0**](../../models/EnumWithFalseDoesNotMatch0.md) | | -[**EnumWithFalseDoesNotMatch0**](EnumWithFalseDoesNotMatch0.md) ### Authorization @@ -3925,10 +3769,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**EnumWithTrueDoesNotMatch1**](EnumWithTrueDoesNotMatch1.md) | | +[**EnumWithTrueDoesNotMatch1**](../../models/EnumWithTrueDoesNotMatch1.md) | | ### Return Types, Responses @@ -3936,18 +3780,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -3993,24 +3834,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**EnumWithTrueDoesNotMatch1**](EnumWithTrueDoesNotMatch1.md) | | - +[**EnumWithTrueDoesNotMatch1**](../../models/EnumWithTrueDoesNotMatch1.md) | | -[**EnumWithTrueDoesNotMatch1**](EnumWithTrueDoesNotMatch1.md) - ### Authorization No authorization required @@ -4065,10 +3903,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**EnumsInProperties**](EnumsInProperties.md) | | +[**EnumsInProperties**](../../models/EnumsInProperties.md) | | ### Return Types, Responses @@ -4076,18 +3914,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -4133,24 +3968,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**EnumsInProperties**](EnumsInProperties.md) | | +[**EnumsInProperties**](../../models/EnumsInProperties.md) | | - -[**EnumsInProperties**](EnumsInProperties.md) - ### Authorization No authorization required @@ -4202,10 +4034,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**ForbiddenProperty**](ForbiddenProperty.md) | | +[**ForbiddenProperty**](../../models/ForbiddenProperty.md) | | ### Return Types, Responses @@ -4213,18 +4045,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -4270,23 +4099,20 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**ForbiddenProperty**](ForbiddenProperty.md) | | - - +[**ForbiddenProperty**](../../models/ForbiddenProperty.md) | | -[**ForbiddenProperty**](ForbiddenProperty.md) ### Authorization @@ -4338,29 +4164,27 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | +## 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 | | ### Return Types, Responses Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -4405,23 +4229,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | - - -**bool, date, datetime, dict, float, int, list, str, none_type** +## 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 | | ### Authorization @@ -4473,29 +4295,27 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson -Type | Description | Notes -------------- | ------------- | ------------- -**int** | | +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +decimal.Decimal, int, | decimal.Decimal, | | ### Return Types, Responses Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -4540,23 +4360,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson -Type | Description | Notes -------------- | ------------- | ------------- -**int** | | - - -**int** +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +decimal.Decimal, int, | decimal.Decimal, | | ### Authorization @@ -4609,10 +4427,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**InvalidInstanceShouldNotRaiseErrorWhenFloatDivisionInf**](InvalidInstanceShouldNotRaiseErrorWhenFloatDivisionInf.md) | | +[**InvalidInstanceShouldNotRaiseErrorWhenFloatDivisionInf**](../../models/InvalidInstanceShouldNotRaiseErrorWhenFloatDivisionInf.md) | | ### Return Types, Responses @@ -4620,18 +4438,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -4677,24 +4492,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**InvalidInstanceShouldNotRaiseErrorWhenFloatDivisionInf**](InvalidInstanceShouldNotRaiseErrorWhenFloatDivisionInf.md) | | - +[**InvalidInstanceShouldNotRaiseErrorWhenFloatDivisionInf**](../../models/InvalidInstanceShouldNotRaiseErrorWhenFloatDivisionInf.md) | | -[**InvalidInstanceShouldNotRaiseErrorWhenFloatDivisionInf**](InvalidInstanceShouldNotRaiseErrorWhenFloatDivisionInf.md) - ### Authorization No authorization required @@ -4746,10 +4558,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**InvalidStringValueForDefault**](InvalidStringValueForDefault.md) | | +[**InvalidStringValueForDefault**](../../models/InvalidStringValueForDefault.md) | | ### Return Types, Responses @@ -4757,18 +4569,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -4814,24 +4623,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**InvalidStringValueForDefault**](InvalidStringValueForDefault.md) | | +[**InvalidStringValueForDefault**](../../models/InvalidStringValueForDefault.md) | | - -[**InvalidStringValueForDefault**](InvalidStringValueForDefault.md) - ### Authorization No authorization required @@ -4882,29 +4688,27 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | +## 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 | | ### Return Types, Responses Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -4949,23 +4753,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson - -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | +# SchemaFor200ResponseBodyApplicationJson - -**bool, date, datetime, dict, float, int, list, str, none_type** +## 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 | | ### Authorization @@ -5017,29 +4819,27 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | +## 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 | | ### Return Types, Responses Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -5084,23 +4884,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson - -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | - +# SchemaFor200ResponseBodyApplicationJson -**bool, date, datetime, dict, float, int, list, str, none_type** +## 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 | | ### Authorization @@ -5152,29 +4950,27 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | +## 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 | | ### Return Types, Responses Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -5219,23 +5015,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson - -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | - +# SchemaFor200ResponseBodyApplicationJson -**bool, date, datetime, dict, float, int, list, str, none_type** +## 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 | | ### Authorization @@ -5288,10 +5082,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**MaximumValidation**](MaximumValidation.md) | | +[**MaximumValidation**](../../models/MaximumValidation.md) | | ### Return Types, Responses @@ -5299,18 +5093,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -5356,24 +5147,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**MaximumValidation**](MaximumValidation.md) | | +[**MaximumValidation**](../../models/MaximumValidation.md) | | - -[**MaximumValidation**](MaximumValidation.md) - ### Authorization No authorization required @@ -5425,10 +5213,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**MaximumValidationWithUnsignedInteger**](MaximumValidationWithUnsignedInteger.md) | | +[**MaximumValidationWithUnsignedInteger**](../../models/MaximumValidationWithUnsignedInteger.md) | | ### Return Types, Responses @@ -5436,18 +5224,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -5493,23 +5278,20 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**MaximumValidationWithUnsignedInteger**](MaximumValidationWithUnsignedInteger.md) | | - - +[**MaximumValidationWithUnsignedInteger**](../../models/MaximumValidationWithUnsignedInteger.md) | | -[**MaximumValidationWithUnsignedInteger**](MaximumValidationWithUnsignedInteger.md) ### Authorization @@ -5562,10 +5344,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**MaxitemsValidation**](MaxitemsValidation.md) | | +[**MaxitemsValidation**](../../models/MaxitemsValidation.md) | | ### Return Types, Responses @@ -5573,18 +5355,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -5630,24 +5409,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**MaxitemsValidation**](MaxitemsValidation.md) | | - +[**MaxitemsValidation**](../../models/MaxitemsValidation.md) | | -[**MaxitemsValidation**](MaxitemsValidation.md) - ### Authorization No authorization required @@ -5699,10 +5475,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**MaxlengthValidation**](MaxlengthValidation.md) | | +[**MaxlengthValidation**](../../models/MaxlengthValidation.md) | | ### Return Types, Responses @@ -5710,18 +5486,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -5767,24 +5540,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**MaxlengthValidation**](MaxlengthValidation.md) | | +[**MaxlengthValidation**](../../models/MaxlengthValidation.md) | | - -[**MaxlengthValidation**](MaxlengthValidation.md) - ### Authorization No authorization required @@ -5836,10 +5606,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**Maxproperties0MeansTheObjectIsEmpty**](Maxproperties0MeansTheObjectIsEmpty.md) | | +[**Maxproperties0MeansTheObjectIsEmpty**](../../models/Maxproperties0MeansTheObjectIsEmpty.md) | | ### Return Types, Responses @@ -5847,18 +5617,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -5904,23 +5671,20 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**Maxproperties0MeansTheObjectIsEmpty**](Maxproperties0MeansTheObjectIsEmpty.md) | | - - +[**Maxproperties0MeansTheObjectIsEmpty**](../../models/Maxproperties0MeansTheObjectIsEmpty.md) | | -[**Maxproperties0MeansTheObjectIsEmpty**](Maxproperties0MeansTheObjectIsEmpty.md) ### Authorization @@ -5973,10 +5737,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**MaxpropertiesValidation**](MaxpropertiesValidation.md) | | +[**MaxpropertiesValidation**](../../models/MaxpropertiesValidation.md) | | ### Return Types, Responses @@ -5984,18 +5748,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -6041,24 +5802,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**MaxpropertiesValidation**](MaxpropertiesValidation.md) | | - +[**MaxpropertiesValidation**](../../models/MaxpropertiesValidation.md) | | -[**MaxpropertiesValidation**](MaxpropertiesValidation.md) - ### Authorization No authorization required @@ -6110,10 +5868,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**MinimumValidation**](MinimumValidation.md) | | +[**MinimumValidation**](../../models/MinimumValidation.md) | | ### Return Types, Responses @@ -6121,18 +5879,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -6178,24 +5933,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**MinimumValidation**](MinimumValidation.md) | | +[**MinimumValidation**](../../models/MinimumValidation.md) | | - -[**MinimumValidation**](MinimumValidation.md) - ### Authorization No authorization required @@ -6247,10 +5999,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**MinimumValidationWithSignedInteger**](MinimumValidationWithSignedInteger.md) | | +[**MinimumValidationWithSignedInteger**](../../models/MinimumValidationWithSignedInteger.md) | | ### Return Types, Responses @@ -6258,18 +6010,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -6315,23 +6064,20 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**MinimumValidationWithSignedInteger**](MinimumValidationWithSignedInteger.md) | | - - +[**MinimumValidationWithSignedInteger**](../../models/MinimumValidationWithSignedInteger.md) | | -[**MinimumValidationWithSignedInteger**](MinimumValidationWithSignedInteger.md) ### Authorization @@ -6384,10 +6130,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**MinitemsValidation**](MinitemsValidation.md) | | +[**MinitemsValidation**](../../models/MinitemsValidation.md) | | ### Return Types, Responses @@ -6395,18 +6141,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -6452,23 +6195,20 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**MinitemsValidation**](MinitemsValidation.md) | | - - +[**MinitemsValidation**](../../models/MinitemsValidation.md) | | -[**MinitemsValidation**](MinitemsValidation.md) ### Authorization @@ -6521,10 +6261,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**MinlengthValidation**](MinlengthValidation.md) | | +[**MinlengthValidation**](../../models/MinlengthValidation.md) | | ### Return Types, Responses @@ -6532,18 +6272,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -6589,24 +6326,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**MinlengthValidation**](MinlengthValidation.md) | | - +[**MinlengthValidation**](../../models/MinlengthValidation.md) | | -[**MinlengthValidation**](MinlengthValidation.md) - ### Authorization No authorization required @@ -6658,10 +6392,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**MinpropertiesValidation**](MinpropertiesValidation.md) | | +[**MinpropertiesValidation**](../../models/MinpropertiesValidation.md) | | ### Return Types, Responses @@ -6669,18 +6403,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -6726,24 +6457,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**MinpropertiesValidation**](MinpropertiesValidation.md) | | +[**MinpropertiesValidation**](../../models/MinpropertiesValidation.md) | | - -[**MinpropertiesValidation**](MinpropertiesValidation.md) - ### Authorization No authorization required @@ -6795,10 +6523,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**NestedAllofToCheckValidationSemantics**](NestedAllofToCheckValidationSemantics.md) | | +[**NestedAllofToCheckValidationSemantics**](../../models/NestedAllofToCheckValidationSemantics.md) | | ### Return Types, Responses @@ -6806,18 +6534,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -6863,23 +6588,20 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**NestedAllofToCheckValidationSemantics**](NestedAllofToCheckValidationSemantics.md) | | - - +[**NestedAllofToCheckValidationSemantics**](../../models/NestedAllofToCheckValidationSemantics.md) | | -[**NestedAllofToCheckValidationSemantics**](NestedAllofToCheckValidationSemantics.md) ### Authorization @@ -6932,10 +6654,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**NestedAnyofToCheckValidationSemantics**](NestedAnyofToCheckValidationSemantics.md) | | +[**NestedAnyofToCheckValidationSemantics**](../../models/NestedAnyofToCheckValidationSemantics.md) | | ### Return Types, Responses @@ -6943,18 +6665,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -7000,24 +6719,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**NestedAnyofToCheckValidationSemantics**](NestedAnyofToCheckValidationSemantics.md) | | - +[**NestedAnyofToCheckValidationSemantics**](../../models/NestedAnyofToCheckValidationSemantics.md) | | -[**NestedAnyofToCheckValidationSemantics**](NestedAnyofToCheckValidationSemantics.md) - ### Authorization No authorization required @@ -7077,10 +6793,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**NestedItems**](NestedItems.md) | | +[**NestedItems**](../../models/NestedItems.md) | | ### Return Types, Responses @@ -7088,18 +6804,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -7145,24 +6858,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**NestedItems**](NestedItems.md) | | +[**NestedItems**](../../models/NestedItems.md) | | - -[**NestedItems**](NestedItems.md) - ### Authorization No authorization required @@ -7214,10 +6924,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**NestedOneofToCheckValidationSemantics**](NestedOneofToCheckValidationSemantics.md) | | +[**NestedOneofToCheckValidationSemantics**](../../models/NestedOneofToCheckValidationSemantics.md) | | ### Return Types, Responses @@ -7225,18 +6935,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -7282,23 +6989,20 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**NestedOneofToCheckValidationSemantics**](NestedOneofToCheckValidationSemantics.md) | | - - +[**NestedOneofToCheckValidationSemantics**](../../models/NestedOneofToCheckValidationSemantics.md) | | -[**NestedOneofToCheckValidationSemantics**](NestedOneofToCheckValidationSemantics.md) ### Authorization @@ -7350,29 +7054,46 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | +## 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, | 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 Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -7417,23 +7138,40 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | +## 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, | frozendict.frozendict, | | +# not_schema -**bool, date, datetime, dict, float, int, list, str, none_type** +## 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 @@ -7485,29 +7223,40 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | +## 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) | decimal.Decimal, int, | decimal.Decimal, | | + +# not_schema + +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +decimal.Decimal, int, | decimal.Decimal, | | ### Return Types, Responses Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -7552,23 +7301,34 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | +## 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) | decimal.Decimal, int, | decimal.Decimal, | | +# not_schema -**bool, date, datetime, dict, float, int, list, str, none_type** +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +decimal.Decimal, int, | decimal.Decimal, | | ### Authorization @@ -7621,10 +7381,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**NulCharactersInStrings**](NulCharactersInStrings.md) | | +[**NulCharactersInStrings**](../../models/NulCharactersInStrings.md) | | ### Return Types, Responses @@ -7632,18 +7392,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -7689,24 +7446,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**NulCharactersInStrings**](NulCharactersInStrings.md) | | - +[**NulCharactersInStrings**](../../models/NulCharactersInStrings.md) | | -[**NulCharactersInStrings**](NulCharactersInStrings.md) - ### Authorization No authorization required @@ -7757,29 +7511,27 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson -Type | Description | Notes -------------- | ------------- | ------------- -**none_type** | | +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +None, | NoneClass, | | ### Return Types, Responses Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -7824,23 +7576,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson - -Type | Description | Notes -------------- | ------------- | ------------- -**none_type** | | - +# SchemaFor200ResponseBodyApplicationJson -**none_type** +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +None, | NoneClass, | | ### Authorization @@ -7892,29 +7642,27 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson -Type | Description | Notes -------------- | ------------- | ------------- -**int, float** | | +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +decimal.Decimal, int, float, | decimal.Decimal, | | ### Return Types, Responses Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -7959,23 +7707,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson - -Type | Description | Notes -------------- | ------------- | ------------- -**int, float** | | - +# SchemaFor200ResponseBodyApplicationJson -**int, float** +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +decimal.Decimal, int, float, | decimal.Decimal, | | ### Authorization @@ -8028,10 +7774,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**ObjectPropertiesValidation**](ObjectPropertiesValidation.md) | | +[**ObjectPropertiesValidation**](../../models/ObjectPropertiesValidation.md) | | ### Return Types, Responses @@ -8039,18 +7785,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -8096,24 +7839,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**ObjectPropertiesValidation**](ObjectPropertiesValidation.md) | | - +[**ObjectPropertiesValidation**](../../models/ObjectPropertiesValidation.md) | | -[**ObjectPropertiesValidation**](ObjectPropertiesValidation.md) - ### Authorization No authorization required @@ -8164,29 +7904,27 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson -Type | Description | Notes -------------- | ------------- | ------------- -**{str: (bool, date, datetime, dict, float, int, list, str, none_type)}** | | +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +dict, frozendict.frozendict, | frozendict.frozendict, | | ### Return Types, Responses Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -8231,23 +7969,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson - -Type | Description | Notes -------------- | ------------- | ------------- -**{str: (bool, date, datetime, dict, float, int, list, str, none_type)}** | | - +# SchemaFor200ResponseBodyApplicationJson -**{str: (bool, date, datetime, dict, float, int, list, str, none_type)}** +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +dict, frozendict.frozendict, | frozendict.frozendict, | | ### Authorization @@ -8300,10 +8036,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**OneofComplexTypes**](OneofComplexTypes.md) | | +[**OneofComplexTypes**](../../models/OneofComplexTypes.md) | | ### Return Types, Responses @@ -8311,18 +8047,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -8368,24 +8101,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**OneofComplexTypes**](OneofComplexTypes.md) | | +[**OneofComplexTypes**](../../models/OneofComplexTypes.md) | | - -[**OneofComplexTypes**](OneofComplexTypes.md) - ### Authorization No authorization required @@ -8437,10 +8167,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**Oneof**](Oneof.md) | | +[**Oneof**](../../models/Oneof.md) | | ### Return Types, Responses @@ -8448,18 +8178,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -8505,23 +8232,20 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**Oneof**](Oneof.md) | | - - +[**Oneof**](../../models/Oneof.md) | | -[**Oneof**](Oneof.md) ### Authorization @@ -8574,10 +8298,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**OneofWithBaseSchema**](OneofWithBaseSchema.md) | | +[**OneofWithBaseSchema**](../../models/OneofWithBaseSchema.md) | | ### Return Types, Responses @@ -8585,18 +8309,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -8642,24 +8363,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**OneofWithBaseSchema**](OneofWithBaseSchema.md) | | - +[**OneofWithBaseSchema**](../../models/OneofWithBaseSchema.md) | | -[**OneofWithBaseSchema**](OneofWithBaseSchema.md) - ### Authorization No authorization required @@ -8711,10 +8429,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**OneofWithEmptySchema**](OneofWithEmptySchema.md) | | +[**OneofWithEmptySchema**](../../models/OneofWithEmptySchema.md) | | ### Return Types, Responses @@ -8722,18 +8440,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -8779,24 +8494,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**OneofWithEmptySchema**](OneofWithEmptySchema.md) | | +[**OneofWithEmptySchema**](../../models/OneofWithEmptySchema.md) | | - -[**OneofWithEmptySchema**](OneofWithEmptySchema.md) - ### Authorization No authorization required @@ -8848,10 +8560,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**OneofWithRequired**](OneofWithRequired.md) | | +[**OneofWithRequired**](../../models/OneofWithRequired.md) | | ### Return Types, Responses @@ -8859,18 +8571,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -8916,23 +8625,20 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**OneofWithRequired**](OneofWithRequired.md) | | - - +[**OneofWithRequired**](../../models/OneofWithRequired.md) | | -[**OneofWithRequired**](OneofWithRequired.md) ### Authorization @@ -8985,10 +8691,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**PatternIsNotAnchored**](PatternIsNotAnchored.md) | | +[**PatternIsNotAnchored**](../../models/PatternIsNotAnchored.md) | | ### Return Types, Responses @@ -8996,18 +8702,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -9053,24 +8756,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**PatternIsNotAnchored**](PatternIsNotAnchored.md) | | - +[**PatternIsNotAnchored**](../../models/PatternIsNotAnchored.md) | | -[**PatternIsNotAnchored**](PatternIsNotAnchored.md) - ### Authorization No authorization required @@ -9122,10 +8822,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**PatternValidation**](PatternValidation.md) | | +[**PatternValidation**](../../models/PatternValidation.md) | | ### Return Types, Responses @@ -9133,18 +8833,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -9190,24 +8887,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**PatternValidation**](PatternValidation.md) | | +[**PatternValidation**](../../models/PatternValidation.md) | | - -[**PatternValidation**](PatternValidation.md) - ### Authorization No authorization required @@ -9259,10 +8953,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**PropertiesWithEscapedCharacters**](PropertiesWithEscapedCharacters.md) | | +[**PropertiesWithEscapedCharacters**](../../models/PropertiesWithEscapedCharacters.md) | | ### Return Types, Responses @@ -9270,18 +8964,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -9327,24 +9018,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**PropertiesWithEscapedCharacters**](PropertiesWithEscapedCharacters.md) | | +[**PropertiesWithEscapedCharacters**](../../models/PropertiesWithEscapedCharacters.md) | | - -[**PropertiesWithEscapedCharacters**](PropertiesWithEscapedCharacters.md) - ### Authorization No authorization required @@ -9396,10 +9084,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**PropertyNamedRefThatIsNotAReference**](PropertyNamedRefThatIsNotAReference.md) | | +[**PropertyNamedRefThatIsNotAReference**](../../models/PropertyNamedRefThatIsNotAReference.md) | | ### Return Types, Responses @@ -9407,18 +9095,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -9464,23 +9149,20 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**PropertyNamedRefThatIsNotAReference**](PropertyNamedRefThatIsNotAReference.md) | | - - +[**PropertyNamedRefThatIsNotAReference**](../../models/PropertyNamedRefThatIsNotAReference.md) | | -[**PropertyNamedRefThatIsNotAReference**](PropertyNamedRefThatIsNotAReference.md) ### Authorization @@ -9535,10 +9217,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**RefInAdditionalproperties**](RefInAdditionalproperties.md) | | +[**RefInAdditionalproperties**](../../models/RefInAdditionalproperties.md) | | ### Return Types, Responses @@ -9546,18 +9228,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -9603,24 +9282,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**RefInAdditionalproperties**](RefInAdditionalproperties.md) | | - +[**RefInAdditionalproperties**](../../models/RefInAdditionalproperties.md) | | -[**RefInAdditionalproperties**](RefInAdditionalproperties.md) - ### Authorization No authorization required @@ -9672,10 +9348,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**RefInAllof**](RefInAllof.md) | | +[**RefInAllof**](../../models/RefInAllof.md) | | ### Return Types, Responses @@ -9683,18 +9359,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -9740,24 +9413,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**RefInAllof**](RefInAllof.md) | | +[**RefInAllof**](../../models/RefInAllof.md) | | - -[**RefInAllof**](RefInAllof.md) - ### Authorization No authorization required @@ -9809,10 +9479,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**RefInAnyof**](RefInAnyof.md) | | +[**RefInAnyof**](../../models/RefInAnyof.md) | | ### Return Types, Responses @@ -9820,18 +9490,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -9877,23 +9544,20 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**RefInAnyof**](RefInAnyof.md) | | - - +[**RefInAnyof**](../../models/RefInAnyof.md) | | -[**RefInAnyof**](RefInAnyof.md) ### Authorization @@ -9948,10 +9612,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**RefInItems**](RefInItems.md) | | +[**RefInItems**](../../models/RefInItems.md) | | ### Return Types, Responses @@ -9959,18 +9623,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -10016,24 +9677,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**RefInItems**](RefInItems.md) | | - +[**RefInItems**](../../models/RefInItems.md) | | -[**RefInItems**](RefInItems.md) - ### Authorization No authorization required @@ -10085,29 +9743,33 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | +## 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 +------------- | ------------- | ------------- | ------------- | ------------- +[PropertyNamedRefThatIsNotAReference]({{complexTypePrefix}}PropertyNamedRefThatIsNotAReference.md) | [**PropertyNamedRefThatIsNotAReference**]({{complexTypePrefix}}PropertyNamedRefThatIsNotAReference.md) | [**PropertyNamedRefThatIsNotAReference**]({{complexTypePrefix}}PropertyNamedRefThatIsNotAReference.md) | | ### Return Types, Responses Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -10153,23 +9815,27 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson - -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | +# SchemaFor200ResponseBodyApplicationJson +## 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 | | -**bool, date, datetime, dict, float, int, list, str, none_type** +### 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) | | ### Authorization @@ -10222,10 +9888,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**RefInOneof**](RefInOneof.md) | | +[**RefInOneof**](../../models/RefInOneof.md) | | ### Return Types, Responses @@ -10233,18 +9899,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -10290,24 +9953,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**RefInOneof**](RefInOneof.md) | | +[**RefInOneof**](../../models/RefInOneof.md) | | - -[**RefInOneof**](RefInOneof.md) - ### Authorization No authorization required @@ -10359,10 +10019,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**RefInProperty**](RefInProperty.md) | | +[**RefInProperty**](../../models/RefInProperty.md) | | ### Return Types, Responses @@ -10370,18 +10030,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -10427,23 +10084,20 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**RefInProperty**](RefInProperty.md) | | - - +[**RefInProperty**](../../models/RefInProperty.md) | | -[**RefInProperty**](RefInProperty.md) ### Authorization @@ -10496,10 +10150,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**RequiredDefaultValidation**](RequiredDefaultValidation.md) | | +[**RequiredDefaultValidation**](../../models/RequiredDefaultValidation.md) | | ### Return Types, Responses @@ -10507,18 +10161,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -10564,24 +10215,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**RequiredDefaultValidation**](RequiredDefaultValidation.md) | | - +[**RequiredDefaultValidation**](../../models/RequiredDefaultValidation.md) | | -[**RequiredDefaultValidation**](RequiredDefaultValidation.md) - ### Authorization No authorization required @@ -10633,10 +10281,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**RequiredValidation**](RequiredValidation.md) | | +[**RequiredValidation**](../../models/RequiredValidation.md) | | ### Return Types, Responses @@ -10644,18 +10292,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -10701,24 +10346,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**RequiredValidation**](RequiredValidation.md) | | +[**RequiredValidation**](../../models/RequiredValidation.md) | | - -[**RequiredValidation**](RequiredValidation.md) - ### Authorization No authorization required @@ -10770,10 +10412,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**RequiredWithEmptyArray**](RequiredWithEmptyArray.md) | | +[**RequiredWithEmptyArray**](../../models/RequiredWithEmptyArray.md) | | ### Return Types, Responses @@ -10781,18 +10423,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -10838,24 +10477,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**RequiredWithEmptyArray**](RequiredWithEmptyArray.md) | | - +[**RequiredWithEmptyArray**](../../models/RequiredWithEmptyArray.md) | | -[**RequiredWithEmptyArray**](RequiredWithEmptyArray.md) - ### Authorization No authorization required @@ -10906,29 +10542,27 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | +## 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 | | ### Return Types, Responses Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -10973,23 +10607,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | - - -**bool, date, datetime, dict, float, int, list, str, none_type** +## 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 | | ### Authorization @@ -11042,10 +10674,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**SimpleEnumValidation**](SimpleEnumValidation.md) | | +[**SimpleEnumValidation**](../../models/SimpleEnumValidation.md) | | ### Return Types, Responses @@ -11053,18 +10685,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -11110,23 +10739,20 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**SimpleEnumValidation**](SimpleEnumValidation.md) | | - - +[**SimpleEnumValidation**](../../models/SimpleEnumValidation.md) | | -[**SimpleEnumValidation**](SimpleEnumValidation.md) ### Authorization @@ -11178,29 +10804,27 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson -Type | Description | Notes -------------- | ------------- | ------------- -**str** | | +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +str, | str, | | ### Return Types, Responses Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -11245,23 +10869,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson - -Type | Description | Notes -------------- | ------------- | ------------- -**str** | | - +# SchemaFor200ResponseBodyApplicationJson -**str** +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +str, | str, | | ### Authorization @@ -11316,10 +10938,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**TheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissing**](TheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissing.md) | | +[**TheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissing**](../../models/TheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissing.md) | | ### Return Types, Responses @@ -11327,18 +10949,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -11384,24 +11003,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**TheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissing**](TheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissing.md) | | - +[**TheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissing**](../../models/TheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissing.md) | | -[**TheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissing**](TheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissing.md) - ### Authorization No authorization required @@ -11453,10 +11069,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**UniqueitemsFalseValidation**](UniqueitemsFalseValidation.md) | | +[**UniqueitemsFalseValidation**](../../models/UniqueitemsFalseValidation.md) | | ### Return Types, Responses @@ -11464,18 +11080,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -11521,24 +11134,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**UniqueitemsFalseValidation**](UniqueitemsFalseValidation.md) | | +[**UniqueitemsFalseValidation**](../../models/UniqueitemsFalseValidation.md) | | - -[**UniqueitemsFalseValidation**](UniqueitemsFalseValidation.md) - ### Authorization No authorization required @@ -11590,10 +11200,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**UniqueitemsValidation**](UniqueitemsValidation.md) | | +[**UniqueitemsValidation**](../../models/UniqueitemsValidation.md) | | ### Return Types, Responses @@ -11601,18 +11211,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -11658,23 +11265,20 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**UniqueitemsValidation**](UniqueitemsValidation.md) | | - - +[**UniqueitemsValidation**](../../models/UniqueitemsValidation.md) | | -[**UniqueitemsValidation**](UniqueitemsValidation.md) ### Authorization @@ -11726,29 +11330,27 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | +## 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 | | ### Return Types, Responses Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -11793,23 +11395,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson - -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | - +# SchemaFor200ResponseBodyApplicationJson -**bool, date, datetime, dict, float, int, list, str, none_type** +## 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 | | ### Authorization @@ -11861,29 +11461,27 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | +## 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 | | ### Return Types, Responses Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -11928,23 +11526,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson - -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | - +# SchemaFor200ResponseBodyApplicationJson -**bool, date, datetime, dict, float, int, list, str, none_type** +## 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 | | ### Authorization @@ -11996,29 +11592,27 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | +## 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 | | ### Return Types, Responses Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -12063,23 +11657,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson - -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | - +# SchemaFor200ResponseBodyApplicationJson -**bool, date, datetime, dict, float, int, list, str, none_type** +## 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 | | ### Authorization diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/apis/tags/PatternApi.md b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/apis/tags/PatternApi.md index c84f24ab4b1e..a6cae4de5413 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/apis/tags/PatternApi.md +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/apis/tags/PatternApi.md @@ -55,10 +55,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**PatternIsNotAnchored**](PatternIsNotAnchored.md) | | +[**PatternIsNotAnchored**](../../models/PatternIsNotAnchored.md) | | ### Return Types, Responses @@ -66,18 +66,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -123,23 +120,20 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**PatternIsNotAnchored**](PatternIsNotAnchored.md) | | - - +[**PatternIsNotAnchored**](../../models/PatternIsNotAnchored.md) | | -[**PatternIsNotAnchored**](PatternIsNotAnchored.md) ### Authorization @@ -192,10 +186,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**PatternValidation**](PatternValidation.md) | | +[**PatternValidation**](../../models/PatternValidation.md) | | ### Return Types, Responses @@ -203,18 +197,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -260,23 +251,20 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**PatternValidation**](PatternValidation.md) | | - - +[**PatternValidation**](../../models/PatternValidation.md) | | -[**PatternValidation**](PatternValidation.md) ### Authorization diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/apis/tags/PropertiesApi.md b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/apis/tags/PropertiesApi.md index 333d08cdfabc..67c74c2c13f7 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/apis/tags/PropertiesApi.md +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/apis/tags/PropertiesApi.md @@ -55,10 +55,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**ObjectPropertiesValidation**](ObjectPropertiesValidation.md) | | +[**ObjectPropertiesValidation**](../../models/ObjectPropertiesValidation.md) | | ### Return Types, Responses @@ -66,18 +66,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -123,23 +120,20 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**ObjectPropertiesValidation**](ObjectPropertiesValidation.md) | | - - +[**ObjectPropertiesValidation**](../../models/ObjectPropertiesValidation.md) | | -[**ObjectPropertiesValidation**](ObjectPropertiesValidation.md) ### Authorization @@ -192,10 +186,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**PropertiesWithEscapedCharacters**](PropertiesWithEscapedCharacters.md) | | +[**PropertiesWithEscapedCharacters**](../../models/PropertiesWithEscapedCharacters.md) | | ### Return Types, Responses @@ -203,18 +197,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -260,23 +251,20 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**PropertiesWithEscapedCharacters**](PropertiesWithEscapedCharacters.md) | | - - +[**PropertiesWithEscapedCharacters**](../../models/PropertiesWithEscapedCharacters.md) | | -[**PropertiesWithEscapedCharacters**](PropertiesWithEscapedCharacters.md) ### Authorization diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/apis/tags/RefApi.md b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/apis/tags/RefApi.md index 288cf30a5c4d..520d9c323079 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/apis/tags/RefApi.md +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/apis/tags/RefApi.md @@ -67,10 +67,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**PropertyNamedRefThatIsNotAReference**](PropertyNamedRefThatIsNotAReference.md) | | +[**PropertyNamedRefThatIsNotAReference**](../../models/PropertyNamedRefThatIsNotAReference.md) | | ### Return Types, Responses @@ -78,18 +78,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -135,24 +132,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**PropertyNamedRefThatIsNotAReference**](PropertyNamedRefThatIsNotAReference.md) | | - +[**PropertyNamedRefThatIsNotAReference**](../../models/PropertyNamedRefThatIsNotAReference.md) | | -[**PropertyNamedRefThatIsNotAReference**](PropertyNamedRefThatIsNotAReference.md) - ### Authorization No authorization required @@ -206,10 +200,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**RefInAdditionalproperties**](RefInAdditionalproperties.md) | | +[**RefInAdditionalproperties**](../../models/RefInAdditionalproperties.md) | | ### Return Types, Responses @@ -217,18 +211,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -274,24 +265,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**RefInAdditionalproperties**](RefInAdditionalproperties.md) | | - +[**RefInAdditionalproperties**](../../models/RefInAdditionalproperties.md) | | -[**RefInAdditionalproperties**](RefInAdditionalproperties.md) - ### Authorization No authorization required @@ -343,10 +331,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**RefInAllof**](RefInAllof.md) | | +[**RefInAllof**](../../models/RefInAllof.md) | | ### Return Types, Responses @@ -354,18 +342,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -411,24 +396,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**RefInAllof**](RefInAllof.md) | | - +[**RefInAllof**](../../models/RefInAllof.md) | | -[**RefInAllof**](RefInAllof.md) - ### Authorization No authorization required @@ -480,10 +462,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**RefInAnyof**](RefInAnyof.md) | | +[**RefInAnyof**](../../models/RefInAnyof.md) | | ### Return Types, Responses @@ -491,18 +473,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -548,24 +527,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**RefInAnyof**](RefInAnyof.md) | | - +[**RefInAnyof**](../../models/RefInAnyof.md) | | -[**RefInAnyof**](RefInAnyof.md) - ### Authorization No authorization required @@ -619,10 +595,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**RefInItems**](RefInItems.md) | | +[**RefInItems**](../../models/RefInItems.md) | | ### Return Types, Responses @@ -630,18 +606,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -687,23 +660,20 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**RefInItems**](RefInItems.md) | | - - +[**RefInItems**](../../models/RefInItems.md) | | -[**RefInItems**](RefInItems.md) ### Authorization @@ -756,29 +726,33 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | +## 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 +------------- | ------------- | ------------- | ------------- | ------------- +[PropertyNamedRefThatIsNotAReference]({{complexTypePrefix}}PropertyNamedRefThatIsNotAReference.md) | [**PropertyNamedRefThatIsNotAReference**]({{complexTypePrefix}}PropertyNamedRefThatIsNotAReference.md) | [**PropertyNamedRefThatIsNotAReference**]({{complexTypePrefix}}PropertyNamedRefThatIsNotAReference.md) | | ### Return Types, Responses Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -824,23 +798,27 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson - -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | +# SchemaFor200ResponseBodyApplicationJson +## 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 | | -**bool, date, datetime, dict, float, int, list, str, none_type** +### 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) | | ### Authorization @@ -893,10 +871,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**RefInOneof**](RefInOneof.md) | | +[**RefInOneof**](../../models/RefInOneof.md) | | ### Return Types, Responses @@ -904,18 +882,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -961,23 +936,20 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**RefInOneof**](RefInOneof.md) | | - - +[**RefInOneof**](../../models/RefInOneof.md) | | -[**RefInOneof**](RefInOneof.md) ### Authorization @@ -1030,10 +1002,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**RefInProperty**](RefInProperty.md) | | +[**RefInProperty**](../../models/RefInProperty.md) | | ### Return Types, Responses @@ -1041,18 +1013,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -1098,23 +1067,20 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**RefInProperty**](RefInProperty.md) | | - - +[**RefInProperty**](../../models/RefInProperty.md) | | -[**RefInProperty**](RefInProperty.md) ### Authorization diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/apis/tags/RequiredApi.md b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/apis/tags/RequiredApi.md index 691a45ac2354..7ed6e02f04e3 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/apis/tags/RequiredApi.md +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/apis/tags/RequiredApi.md @@ -59,10 +59,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**RequiredDefaultValidation**](RequiredDefaultValidation.md) | | +[**RequiredDefaultValidation**](../../models/RequiredDefaultValidation.md) | | ### Return Types, Responses @@ -70,18 +70,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -127,24 +124,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**RequiredDefaultValidation**](RequiredDefaultValidation.md) | | - +[**RequiredDefaultValidation**](../../models/RequiredDefaultValidation.md) | | -[**RequiredDefaultValidation**](RequiredDefaultValidation.md) - ### Authorization No authorization required @@ -196,10 +190,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**RequiredValidation**](RequiredValidation.md) | | +[**RequiredValidation**](../../models/RequiredValidation.md) | | ### Return Types, Responses @@ -207,18 +201,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -264,24 +255,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**RequiredValidation**](RequiredValidation.md) | | - +[**RequiredValidation**](../../models/RequiredValidation.md) | | -[**RequiredValidation**](RequiredValidation.md) - ### Authorization No authorization required @@ -333,10 +321,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**RequiredWithEmptyArray**](RequiredWithEmptyArray.md) | | +[**RequiredWithEmptyArray**](../../models/RequiredWithEmptyArray.md) | | ### Return Types, Responses @@ -344,18 +332,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -401,23 +386,20 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**RequiredWithEmptyArray**](RequiredWithEmptyArray.md) | | - - +[**RequiredWithEmptyArray**](../../models/RequiredWithEmptyArray.md) | | -[**RequiredWithEmptyArray**](RequiredWithEmptyArray.md) ### Authorization @@ -469,29 +451,27 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | +## 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 | | ### Return Types, Responses Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -536,23 +516,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson - -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | - +# SchemaFor200ResponseBodyApplicationJson -**bool, date, datetime, dict, float, int, list, str, none_type** +## 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 | | ### Authorization diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/apis/tags/ResponseContentContentTypeSchemaApi.md b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/apis/tags/ResponseContentContentTypeSchemaApi.md index 99d2fe0c1452..0147f02e5f61 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/apis/tags/ResponseContentContentTypeSchemaApi.md +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/apis/tags/ResponseContentContentTypeSchemaApi.md @@ -132,24 +132,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**AdditionalpropertiesAllowsASchemaWhichShouldValidate**](AdditionalpropertiesAllowsASchemaWhichShouldValidate.md) | | +[**AdditionalpropertiesAllowsASchemaWhichShouldValidate**](../../models/AdditionalpropertiesAllowsASchemaWhichShouldValidate.md) | | - -[**AdditionalpropertiesAllowsASchemaWhichShouldValidate**](AdditionalpropertiesAllowsASchemaWhichShouldValidate.md) - ### Authorization No authorization required @@ -195,24 +192,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**AdditionalpropertiesAreAllowedByDefault**](AdditionalpropertiesAreAllowedByDefault.md) | | - +[**AdditionalpropertiesAreAllowedByDefault**](../../models/AdditionalpropertiesAreAllowedByDefault.md) | | -[**AdditionalpropertiesAreAllowedByDefault**](AdditionalpropertiesAreAllowedByDefault.md) - ### Authorization No authorization required @@ -258,23 +252,20 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**AdditionalpropertiesCanExistByItself**](AdditionalpropertiesCanExistByItself.md) | | - - +[**AdditionalpropertiesCanExistByItself**](../../models/AdditionalpropertiesCanExistByItself.md) | | -[**AdditionalpropertiesCanExistByItself**](AdditionalpropertiesCanExistByItself.md) ### Authorization @@ -321,24 +312,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**AdditionalpropertiesShouldNotLookInApplicators**](AdditionalpropertiesShouldNotLookInApplicators.md) | | +[**AdditionalpropertiesShouldNotLookInApplicators**](../../models/AdditionalpropertiesShouldNotLookInApplicators.md) | | - -[**AdditionalpropertiesShouldNotLookInApplicators**](AdditionalpropertiesShouldNotLookInApplicators.md) - ### Authorization No authorization required @@ -384,24 +372,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**AllofCombinedWithAnyofOneof**](AllofCombinedWithAnyofOneof.md) | | - +[**AllofCombinedWithAnyofOneof**](../../models/AllofCombinedWithAnyofOneof.md) | | -[**AllofCombinedWithAnyofOneof**](AllofCombinedWithAnyofOneof.md) - ### Authorization No authorization required @@ -447,23 +432,20 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**Allof**](Allof.md) | | - - +[**Allof**](../../models/Allof.md) | | -[**Allof**](Allof.md) ### Authorization @@ -510,24 +492,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**AllofSimpleTypes**](AllofSimpleTypes.md) | | +[**AllofSimpleTypes**](../../models/AllofSimpleTypes.md) | | - -[**AllofSimpleTypes**](AllofSimpleTypes.md) - ### Authorization No authorization required @@ -573,24 +552,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**AllofWithBaseSchema**](AllofWithBaseSchema.md) | | - +[**AllofWithBaseSchema**](../../models/AllofWithBaseSchema.md) | | -[**AllofWithBaseSchema**](AllofWithBaseSchema.md) - ### Authorization No authorization required @@ -636,23 +612,20 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**AllofWithOneEmptySchema**](AllofWithOneEmptySchema.md) | | - - +[**AllofWithOneEmptySchema**](../../models/AllofWithOneEmptySchema.md) | | -[**AllofWithOneEmptySchema**](AllofWithOneEmptySchema.md) ### Authorization @@ -699,24 +672,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**AllofWithTheFirstEmptySchema**](AllofWithTheFirstEmptySchema.md) | | +[**AllofWithTheFirstEmptySchema**](../../models/AllofWithTheFirstEmptySchema.md) | | - -[**AllofWithTheFirstEmptySchema**](AllofWithTheFirstEmptySchema.md) - ### Authorization No authorization required @@ -762,24 +732,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**AllofWithTheLastEmptySchema**](AllofWithTheLastEmptySchema.md) | | - +[**AllofWithTheLastEmptySchema**](../../models/AllofWithTheLastEmptySchema.md) | | -[**AllofWithTheLastEmptySchema**](AllofWithTheLastEmptySchema.md) - ### Authorization No authorization required @@ -825,23 +792,20 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**AllofWithTwoEmptySchemas**](AllofWithTwoEmptySchemas.md) | | - - +[**AllofWithTwoEmptySchemas**](../../models/AllofWithTwoEmptySchemas.md) | | -[**AllofWithTwoEmptySchemas**](AllofWithTwoEmptySchemas.md) ### Authorization @@ -888,24 +852,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**AnyofComplexTypes**](AnyofComplexTypes.md) | | +[**AnyofComplexTypes**](../../models/AnyofComplexTypes.md) | | - -[**AnyofComplexTypes**](AnyofComplexTypes.md) - ### Authorization No authorization required @@ -951,24 +912,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**Anyof**](Anyof.md) | | - +[**Anyof**](../../models/Anyof.md) | | -[**Anyof**](Anyof.md) - ### Authorization No authorization required @@ -1014,23 +972,20 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**AnyofWithBaseSchema**](AnyofWithBaseSchema.md) | | - - +[**AnyofWithBaseSchema**](../../models/AnyofWithBaseSchema.md) | | -[**AnyofWithBaseSchema**](AnyofWithBaseSchema.md) ### Authorization @@ -1077,24 +1032,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**AnyofWithOneEmptySchema**](AnyofWithOneEmptySchema.md) | | +[**AnyofWithOneEmptySchema**](../../models/AnyofWithOneEmptySchema.md) | | - -[**AnyofWithOneEmptySchema**](AnyofWithOneEmptySchema.md) - ### Authorization No authorization required @@ -1140,24 +1092,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**ArrayTypeMatchesArrays**](ArrayTypeMatchesArrays.md) | | - +[**ArrayTypeMatchesArrays**](../../models/ArrayTypeMatchesArrays.md) | | -[**ArrayTypeMatchesArrays**](ArrayTypeMatchesArrays.md) - ### Authorization No authorization required @@ -1202,23 +1151,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson - -Type | Description | Notes -------------- | ------------- | ------------- -**bool** | | - +# SchemaFor200ResponseBodyApplicationJson -**bool** +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +bool, | BoolClass, | | ### Authorization @@ -1265,23 +1212,20 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**ByInt**](ByInt.md) | | - - +[**ByInt**](../../models/ByInt.md) | | -[**ByInt**](ByInt.md) ### Authorization @@ -1328,24 +1272,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**ByNumber**](ByNumber.md) | | +[**ByNumber**](../../models/ByNumber.md) | | - -[**ByNumber**](ByNumber.md) - ### Authorization No authorization required @@ -1391,24 +1332,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**BySmallNumber**](BySmallNumber.md) | | - +[**BySmallNumber**](../../models/BySmallNumber.md) | | -[**BySmallNumber**](BySmallNumber.md) - ### Authorization No authorization required @@ -1453,23 +1391,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson - -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | - +# SchemaFor200ResponseBodyApplicationJson -**bool, date, datetime, dict, float, int, list, str, none_type** +## 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 | | value must conform to RFC-3339 date-time ### Authorization @@ -1515,23 +1451,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson - -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | - +# SchemaFor200ResponseBodyApplicationJson -**bool, date, datetime, dict, float, int, list, str, none_type** +## 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 | | ### Authorization @@ -1578,23 +1512,20 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**EnumWith0DoesNotMatchFalse**](EnumWith0DoesNotMatchFalse.md) | | - - +[**EnumWith0DoesNotMatchFalse**](../../models/EnumWith0DoesNotMatchFalse.md) | | -[**EnumWith0DoesNotMatchFalse**](EnumWith0DoesNotMatchFalse.md) ### Authorization @@ -1641,24 +1572,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**EnumWith1DoesNotMatchTrue**](EnumWith1DoesNotMatchTrue.md) | | +[**EnumWith1DoesNotMatchTrue**](../../models/EnumWith1DoesNotMatchTrue.md) | | - -[**EnumWith1DoesNotMatchTrue**](EnumWith1DoesNotMatchTrue.md) - ### Authorization No authorization required @@ -1704,24 +1632,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**EnumWithEscapedCharacters**](EnumWithEscapedCharacters.md) | | - +[**EnumWithEscapedCharacters**](../../models/EnumWithEscapedCharacters.md) | | -[**EnumWithEscapedCharacters**](EnumWithEscapedCharacters.md) - ### Authorization No authorization required @@ -1767,23 +1692,20 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**EnumWithFalseDoesNotMatch0**](EnumWithFalseDoesNotMatch0.md) | | - - +[**EnumWithFalseDoesNotMatch0**](../../models/EnumWithFalseDoesNotMatch0.md) | | -[**EnumWithFalseDoesNotMatch0**](EnumWithFalseDoesNotMatch0.md) ### Authorization @@ -1830,24 +1752,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**EnumWithTrueDoesNotMatch1**](EnumWithTrueDoesNotMatch1.md) | | +[**EnumWithTrueDoesNotMatch1**](../../models/EnumWithTrueDoesNotMatch1.md) | | - -[**EnumWithTrueDoesNotMatch1**](EnumWithTrueDoesNotMatch1.md) - ### Authorization No authorization required @@ -1893,24 +1812,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**EnumsInProperties**](EnumsInProperties.md) | | - +[**EnumsInProperties**](../../models/EnumsInProperties.md) | | -[**EnumsInProperties**](EnumsInProperties.md) - ### Authorization No authorization required @@ -1956,23 +1872,20 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**ForbiddenProperty**](ForbiddenProperty.md) | | - - +[**ForbiddenProperty**](../../models/ForbiddenProperty.md) | | -[**ForbiddenProperty**](ForbiddenProperty.md) ### Authorization @@ -2018,23 +1931,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson - -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | - +# SchemaFor200ResponseBodyApplicationJson -**bool, date, datetime, dict, float, int, list, str, none_type** +## 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 | | ### Authorization @@ -2080,23 +1991,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson -Type | Description | Notes -------------- | ------------- | ------------- -**int** | | - - -**int** +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +decimal.Decimal, int, | decimal.Decimal, | | ### Authorization @@ -2143,24 +2052,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**InvalidInstanceShouldNotRaiseErrorWhenFloatDivisionInf**](InvalidInstanceShouldNotRaiseErrorWhenFloatDivisionInf.md) | | +[**InvalidInstanceShouldNotRaiseErrorWhenFloatDivisionInf**](../../models/InvalidInstanceShouldNotRaiseErrorWhenFloatDivisionInf.md) | | - -[**InvalidInstanceShouldNotRaiseErrorWhenFloatDivisionInf**](InvalidInstanceShouldNotRaiseErrorWhenFloatDivisionInf.md) - ### Authorization No authorization required @@ -2206,24 +2112,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**InvalidStringValueForDefault**](InvalidStringValueForDefault.md) | | - +[**InvalidStringValueForDefault**](../../models/InvalidStringValueForDefault.md) | | -[**InvalidStringValueForDefault**](InvalidStringValueForDefault.md) - ### Authorization No authorization required @@ -2268,23 +2171,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson - -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | - +# SchemaFor200ResponseBodyApplicationJson -**bool, date, datetime, dict, float, int, list, str, none_type** +## 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 | | ### Authorization @@ -2330,23 +2231,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson - -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | - +# SchemaFor200ResponseBodyApplicationJson -**bool, date, datetime, dict, float, int, list, str, none_type** +## 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 | | ### Authorization @@ -2392,23 +2291,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson - -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | - +# SchemaFor200ResponseBodyApplicationJson -**bool, date, datetime, dict, float, int, list, str, none_type** +## 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 | | ### Authorization @@ -2455,23 +2352,20 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**MaximumValidation**](MaximumValidation.md) | | - - +[**MaximumValidation**](../../models/MaximumValidation.md) | | -[**MaximumValidation**](MaximumValidation.md) ### Authorization @@ -2518,24 +2412,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**MaximumValidationWithUnsignedInteger**](MaximumValidationWithUnsignedInteger.md) | | +[**MaximumValidationWithUnsignedInteger**](../../models/MaximumValidationWithUnsignedInteger.md) | | - -[**MaximumValidationWithUnsignedInteger**](MaximumValidationWithUnsignedInteger.md) - ### Authorization No authorization required @@ -2581,24 +2472,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**MaxitemsValidation**](MaxitemsValidation.md) | | - +[**MaxitemsValidation**](../../models/MaxitemsValidation.md) | | -[**MaxitemsValidation**](MaxitemsValidation.md) - ### Authorization No authorization required @@ -2644,23 +2532,20 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**MaxlengthValidation**](MaxlengthValidation.md) | | - - +[**MaxlengthValidation**](../../models/MaxlengthValidation.md) | | -[**MaxlengthValidation**](MaxlengthValidation.md) ### Authorization @@ -2707,24 +2592,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**Maxproperties0MeansTheObjectIsEmpty**](Maxproperties0MeansTheObjectIsEmpty.md) | | +[**Maxproperties0MeansTheObjectIsEmpty**](../../models/Maxproperties0MeansTheObjectIsEmpty.md) | | - -[**Maxproperties0MeansTheObjectIsEmpty**](Maxproperties0MeansTheObjectIsEmpty.md) - ### Authorization No authorization required @@ -2770,24 +2652,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**MaxpropertiesValidation**](MaxpropertiesValidation.md) | | - +[**MaxpropertiesValidation**](../../models/MaxpropertiesValidation.md) | | -[**MaxpropertiesValidation**](MaxpropertiesValidation.md) - ### Authorization No authorization required @@ -2833,23 +2712,20 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**MinimumValidation**](MinimumValidation.md) | | - - +[**MinimumValidation**](../../models/MinimumValidation.md) | | -[**MinimumValidation**](MinimumValidation.md) ### Authorization @@ -2896,24 +2772,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**MinimumValidationWithSignedInteger**](MinimumValidationWithSignedInteger.md) | | +[**MinimumValidationWithSignedInteger**](../../models/MinimumValidationWithSignedInteger.md) | | - -[**MinimumValidationWithSignedInteger**](MinimumValidationWithSignedInteger.md) - ### Authorization No authorization required @@ -2959,24 +2832,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**MinitemsValidation**](MinitemsValidation.md) | | - +[**MinitemsValidation**](../../models/MinitemsValidation.md) | | -[**MinitemsValidation**](MinitemsValidation.md) - ### Authorization No authorization required @@ -3022,23 +2892,20 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**MinlengthValidation**](MinlengthValidation.md) | | - - +[**MinlengthValidation**](../../models/MinlengthValidation.md) | | -[**MinlengthValidation**](MinlengthValidation.md) ### Authorization @@ -3085,24 +2952,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**MinpropertiesValidation**](MinpropertiesValidation.md) | | +[**MinpropertiesValidation**](../../models/MinpropertiesValidation.md) | | - -[**MinpropertiesValidation**](MinpropertiesValidation.md) - ### Authorization No authorization required @@ -3148,24 +3012,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**NestedAllofToCheckValidationSemantics**](NestedAllofToCheckValidationSemantics.md) | | - +[**NestedAllofToCheckValidationSemantics**](../../models/NestedAllofToCheckValidationSemantics.md) | | -[**NestedAllofToCheckValidationSemantics**](NestedAllofToCheckValidationSemantics.md) - ### Authorization No authorization required @@ -3211,23 +3072,20 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**NestedAnyofToCheckValidationSemantics**](NestedAnyofToCheckValidationSemantics.md) | | - - +[**NestedAnyofToCheckValidationSemantics**](../../models/NestedAnyofToCheckValidationSemantics.md) | | -[**NestedAnyofToCheckValidationSemantics**](NestedAnyofToCheckValidationSemantics.md) ### Authorization @@ -3274,24 +3132,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**NestedItems**](NestedItems.md) | | +[**NestedItems**](../../models/NestedItems.md) | | - -[**NestedItems**](NestedItems.md) - ### Authorization No authorization required @@ -3337,24 +3192,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**NestedOneofToCheckValidationSemantics**](NestedOneofToCheckValidationSemantics.md) | | - +[**NestedOneofToCheckValidationSemantics**](../../models/NestedOneofToCheckValidationSemantics.md) | | -[**NestedOneofToCheckValidationSemantics**](NestedOneofToCheckValidationSemantics.md) - ### Authorization No authorization required @@ -3399,23 +3251,40 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | +## 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, | frozendict.frozendict, | | +# not_schema -**bool, date, datetime, dict, float, int, list, str, none_type** +## 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 @@ -3461,23 +3330,34 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | +## 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) | decimal.Decimal, int, | decimal.Decimal, | | +# not_schema -**bool, date, datetime, dict, float, int, list, str, none_type** +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +decimal.Decimal, int, | decimal.Decimal, | | ### Authorization @@ -3524,24 +3404,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**NulCharactersInStrings**](NulCharactersInStrings.md) | | +[**NulCharactersInStrings**](../../models/NulCharactersInStrings.md) | | - -[**NulCharactersInStrings**](NulCharactersInStrings.md) - ### Authorization No authorization required @@ -3586,23 +3463,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson - -Type | Description | Notes -------------- | ------------- | ------------- -**none_type** | | - +# SchemaFor200ResponseBodyApplicationJson -**none_type** +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +None, | NoneClass, | | ### Authorization @@ -3648,23 +3523,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson - -Type | Description | Notes -------------- | ------------- | ------------- -**int, float** | | - +# SchemaFor200ResponseBodyApplicationJson -**int, float** +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +decimal.Decimal, int, float, | decimal.Decimal, | | ### Authorization @@ -3711,24 +3584,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**ObjectPropertiesValidation**](ObjectPropertiesValidation.md) | | - +[**ObjectPropertiesValidation**](../../models/ObjectPropertiesValidation.md) | | -[**ObjectPropertiesValidation**](ObjectPropertiesValidation.md) - ### Authorization No authorization required @@ -3773,23 +3643,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson - -Type | Description | Notes -------------- | ------------- | ------------- -**{str: (bool, date, datetime, dict, float, int, list, str, none_type)}** | | - +# SchemaFor200ResponseBodyApplicationJson -**{str: (bool, date, datetime, dict, float, int, list, str, none_type)}** +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +dict, frozendict.frozendict, | frozendict.frozendict, | | ### Authorization @@ -3836,23 +3704,20 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**OneofComplexTypes**](OneofComplexTypes.md) | | - - +[**OneofComplexTypes**](../../models/OneofComplexTypes.md) | | -[**OneofComplexTypes**](OneofComplexTypes.md) ### Authorization @@ -3899,24 +3764,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**Oneof**](Oneof.md) | | +[**Oneof**](../../models/Oneof.md) | | - -[**Oneof**](Oneof.md) - ### Authorization No authorization required @@ -3962,24 +3824,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**OneofWithBaseSchema**](OneofWithBaseSchema.md) | | - +[**OneofWithBaseSchema**](../../models/OneofWithBaseSchema.md) | | -[**OneofWithBaseSchema**](OneofWithBaseSchema.md) - ### Authorization No authorization required @@ -4025,23 +3884,20 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**OneofWithEmptySchema**](OneofWithEmptySchema.md) | | - - +[**OneofWithEmptySchema**](../../models/OneofWithEmptySchema.md) | | -[**OneofWithEmptySchema**](OneofWithEmptySchema.md) ### Authorization @@ -4088,24 +3944,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**OneofWithRequired**](OneofWithRequired.md) | | +[**OneofWithRequired**](../../models/OneofWithRequired.md) | | - -[**OneofWithRequired**](OneofWithRequired.md) - ### Authorization No authorization required @@ -4151,24 +4004,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**PatternIsNotAnchored**](PatternIsNotAnchored.md) | | - +[**PatternIsNotAnchored**](../../models/PatternIsNotAnchored.md) | | -[**PatternIsNotAnchored**](PatternIsNotAnchored.md) - ### Authorization No authorization required @@ -4214,23 +4064,20 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**PatternValidation**](PatternValidation.md) | | - - +[**PatternValidation**](../../models/PatternValidation.md) | | -[**PatternValidation**](PatternValidation.md) ### Authorization @@ -4277,24 +4124,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**PropertiesWithEscapedCharacters**](PropertiesWithEscapedCharacters.md) | | +[**PropertiesWithEscapedCharacters**](../../models/PropertiesWithEscapedCharacters.md) | | - -[**PropertiesWithEscapedCharacters**](PropertiesWithEscapedCharacters.md) - ### Authorization No authorization required @@ -4340,24 +4184,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**PropertyNamedRefThatIsNotAReference**](PropertyNamedRefThatIsNotAReference.md) | | - +[**PropertyNamedRefThatIsNotAReference**](../../models/PropertyNamedRefThatIsNotAReference.md) | | -[**PropertyNamedRefThatIsNotAReference**](PropertyNamedRefThatIsNotAReference.md) - ### Authorization No authorization required @@ -4403,23 +4244,20 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**RefInAdditionalproperties**](RefInAdditionalproperties.md) | | - - +[**RefInAdditionalproperties**](../../models/RefInAdditionalproperties.md) | | -[**RefInAdditionalproperties**](RefInAdditionalproperties.md) ### Authorization @@ -4466,24 +4304,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**RefInAllof**](RefInAllof.md) | | +[**RefInAllof**](../../models/RefInAllof.md) | | - -[**RefInAllof**](RefInAllof.md) - ### Authorization No authorization required @@ -4529,24 +4364,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**RefInAnyof**](RefInAnyof.md) | | - +[**RefInAnyof**](../../models/RefInAnyof.md) | | -[**RefInAnyof**](RefInAnyof.md) - ### Authorization No authorization required @@ -4592,23 +4424,20 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**RefInItems**](RefInItems.md) | | - - +[**RefInItems**](../../models/RefInItems.md) | | -[**RefInItems**](RefInItems.md) ### Authorization @@ -4655,23 +4484,27 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson - -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | +# SchemaFor200ResponseBodyApplicationJson +## 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 | | -**bool, date, datetime, dict, float, int, list, str, none_type** +### 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) | | ### Authorization @@ -4718,24 +4551,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**RefInOneof**](RefInOneof.md) | | - +[**RefInOneof**](../../models/RefInOneof.md) | | -[**RefInOneof**](RefInOneof.md) - ### Authorization No authorization required @@ -4781,23 +4611,20 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**RefInProperty**](RefInProperty.md) | | - - +[**RefInProperty**](../../models/RefInProperty.md) | | -[**RefInProperty**](RefInProperty.md) ### Authorization @@ -4844,24 +4671,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**RequiredDefaultValidation**](RequiredDefaultValidation.md) | | +[**RequiredDefaultValidation**](../../models/RequiredDefaultValidation.md) | | - -[**RequiredDefaultValidation**](RequiredDefaultValidation.md) - ### Authorization No authorization required @@ -4907,24 +4731,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**RequiredValidation**](RequiredValidation.md) | | - +[**RequiredValidation**](../../models/RequiredValidation.md) | | -[**RequiredValidation**](RequiredValidation.md) - ### Authorization No authorization required @@ -4970,23 +4791,20 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**RequiredWithEmptyArray**](RequiredWithEmptyArray.md) | | - - +[**RequiredWithEmptyArray**](../../models/RequiredWithEmptyArray.md) | | -[**RequiredWithEmptyArray**](RequiredWithEmptyArray.md) ### Authorization @@ -5032,23 +4850,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | - - -**bool, date, datetime, dict, float, int, list, str, none_type** +## 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 | | ### Authorization @@ -5095,24 +4911,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**SimpleEnumValidation**](SimpleEnumValidation.md) | | +[**SimpleEnumValidation**](../../models/SimpleEnumValidation.md) | | - -[**SimpleEnumValidation**](SimpleEnumValidation.md) - ### Authorization No authorization required @@ -5157,23 +4970,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson - -Type | Description | Notes -------------- | ------------- | ------------- -**str** | | - +# SchemaFor200ResponseBodyApplicationJson -**str** +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +str, | str, | | ### Authorization @@ -5220,24 +5031,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**TheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissing**](TheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissing.md) | | - +[**TheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissing**](../../models/TheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissing.md) | | -[**TheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissing**](TheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissing.md) - ### Authorization No authorization required @@ -5283,23 +5091,20 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**UniqueitemsFalseValidation**](UniqueitemsFalseValidation.md) | | - - +[**UniqueitemsFalseValidation**](../../models/UniqueitemsFalseValidation.md) | | -[**UniqueitemsFalseValidation**](UniqueitemsFalseValidation.md) ### Authorization @@ -5346,24 +5151,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**UniqueitemsValidation**](UniqueitemsValidation.md) | | +[**UniqueitemsValidation**](../../models/UniqueitemsValidation.md) | | - -[**UniqueitemsValidation**](UniqueitemsValidation.md) - ### Authorization No authorization required @@ -5408,23 +5210,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson - -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | - +# SchemaFor200ResponseBodyApplicationJson -**bool, date, datetime, dict, float, int, list, str, none_type** +## 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 | | ### Authorization @@ -5470,23 +5270,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | - - -**bool, date, datetime, dict, float, int, list, str, none_type** +## 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 | | ### Authorization @@ -5532,23 +5330,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson - -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | - +# SchemaFor200ResponseBodyApplicationJson -**bool, date, datetime, dict, float, int, list, str, none_type** +## 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 | | ### Authorization diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/apis/tags/TypeApi.md b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/apis/tags/TypeApi.md index 974e334ff7bb..f3f2d1bebdaa 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/apis/tags/TypeApi.md +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/apis/tags/TypeApi.md @@ -67,10 +67,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**ArrayTypeMatchesArrays**](ArrayTypeMatchesArrays.md) | | +[**ArrayTypeMatchesArrays**](../../models/ArrayTypeMatchesArrays.md) | | ### Return Types, Responses @@ -78,18 +78,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -135,24 +132,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**ArrayTypeMatchesArrays**](ArrayTypeMatchesArrays.md) | | - +[**ArrayTypeMatchesArrays**](../../models/ArrayTypeMatchesArrays.md) | | -[**ArrayTypeMatchesArrays**](ArrayTypeMatchesArrays.md) - ### Authorization No authorization required @@ -203,29 +197,27 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson -Type | Description | Notes -------------- | ------------- | ------------- -**bool** | | +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +bool, | BoolClass, | | ### Return Types, Responses Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -270,23 +262,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson - -Type | Description | Notes -------------- | ------------- | ------------- -**bool** | | - +# SchemaFor200ResponseBodyApplicationJson -**bool** +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +bool, | BoolClass, | | ### Authorization @@ -338,29 +328,27 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson -Type | Description | Notes -------------- | ------------- | ------------- -**int** | | +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +decimal.Decimal, int, | decimal.Decimal, | | ### Return Types, Responses Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -405,23 +393,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson - -Type | Description | Notes -------------- | ------------- | ------------- -**int** | | - +# SchemaFor200ResponseBodyApplicationJson -**int** +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +decimal.Decimal, int, | decimal.Decimal, | | ### Authorization @@ -473,29 +459,27 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson -Type | Description | Notes -------------- | ------------- | ------------- -**none_type** | | +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +None, | NoneClass, | | ### Return Types, Responses Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -540,23 +524,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson - -Type | Description | Notes -------------- | ------------- | ------------- -**none_type** | | - +# SchemaFor200ResponseBodyApplicationJson -**none_type** +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +None, | NoneClass, | | ### Authorization @@ -608,29 +590,27 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson -Type | Description | Notes -------------- | ------------- | ------------- -**int, float** | | +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +decimal.Decimal, int, float, | decimal.Decimal, | | ### Return Types, Responses Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -675,23 +655,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson -Type | Description | Notes -------------- | ------------- | ------------- -**int, float** | | - - -**int, float** +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +decimal.Decimal, int, float, | decimal.Decimal, | | ### Authorization @@ -743,29 +721,27 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson -Type | Description | Notes -------------- | ------------- | ------------- -**{str: (bool, date, datetime, dict, float, int, list, str, none_type)}** | | +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +dict, frozendict.frozendict, | frozendict.frozendict, | | ### Return Types, Responses Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -810,23 +786,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson - -Type | Description | Notes -------------- | ------------- | ------------- -**{str: (bool, date, datetime, dict, float, int, list, str, none_type)}** | | +# SchemaFor200ResponseBodyApplicationJson - -**{str: (bool, date, datetime, dict, float, int, list, str, none_type)}** +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +dict, frozendict.frozendict, | frozendict.frozendict, | | ### Authorization @@ -878,29 +852,27 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson -Type | Description | Notes -------------- | ------------- | ------------- -**str** | | +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +str, | str, | | ### Return Types, Responses Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -945,23 +917,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson - -Type | Description | Notes -------------- | ------------- | ------------- -**str** | | - +# SchemaFor200ResponseBodyApplicationJson -**str** +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +str, | str, | | ### Authorization diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/apis/tags/UniqueItemsApi.md b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/apis/tags/UniqueItemsApi.md index a63237fc1ced..529b69479c73 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/apis/tags/UniqueItemsApi.md +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/apis/tags/UniqueItemsApi.md @@ -55,10 +55,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**UniqueitemsFalseValidation**](UniqueitemsFalseValidation.md) | | +[**UniqueitemsFalseValidation**](../../models/UniqueitemsFalseValidation.md) | | ### Return Types, Responses @@ -66,18 +66,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -123,23 +120,20 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**UniqueitemsFalseValidation**](UniqueitemsFalseValidation.md) | | - - +[**UniqueitemsFalseValidation**](../../models/UniqueitemsFalseValidation.md) | | -[**UniqueitemsFalseValidation**](UniqueitemsFalseValidation.md) ### Authorization @@ -192,10 +186,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**UniqueitemsValidation**](UniqueitemsValidation.md) | | +[**UniqueitemsValidation**](../../models/UniqueitemsValidation.md) | | ### Return Types, Responses @@ -203,18 +197,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -260,23 +251,20 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- 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 ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**UniqueitemsValidation**](UniqueitemsValidation.md) | | - - +[**UniqueitemsValidation**](../../models/UniqueitemsValidation.md) | | -[**UniqueitemsValidation**](UniqueitemsValidation.md) ### Authorization diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/AdditionalpropertiesAllowsASchemaWhichShouldValidate.md b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/AdditionalpropertiesAllowsASchemaWhichShouldValidate.md index 1734c9c1162f..e32452e5c8b9 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/AdditionalpropertiesAllowsASchemaWhichShouldValidate.md +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/AdditionalpropertiesAllowsASchemaWhichShouldValidate.md @@ -1,11 +1,16 @@ # unit_test_api.model.additionalproperties_allows_a_schema_which_should_validate.AdditionalpropertiesAllowsASchemaWhichShouldValidate -#### Properties -Name | Type | Description | Notes +## Model Type Info +Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**foo** | **bool, date, datetime, dict, float, int, list, str, none_type** | | [optional] -**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] +dict, frozendict.frozendict, | frozendict.frozendict, | | + +### 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) diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/AdditionalpropertiesAreAllowedByDefault.md b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/AdditionalpropertiesAreAllowedByDefault.md index 0ec550aaeed9..7548452e43d6 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/AdditionalpropertiesAreAllowedByDefault.md +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/AdditionalpropertiesAreAllowedByDefault.md @@ -1,11 +1,16 @@ # unit_test_api.model.additionalproperties_are_allowed_by_default.AdditionalpropertiesAreAllowedByDefault -#### Properties -Name | Type | Description | Notes +## Model Type Info +Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**foo** | **bool, date, datetime, dict, float, int, list, str, none_type** | | [optional] -**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] +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] +**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) diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/AdditionalpropertiesCanExistByItself.md b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/AdditionalpropertiesCanExistByItself.md index 1ccfed130760..09f1d02d8d29 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/AdditionalpropertiesCanExistByItself.md +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/AdditionalpropertiesCanExistByItself.md @@ -1,9 +1,14 @@ # unit_test_api.model.additionalproperties_can_exist_by_itself.AdditionalpropertiesCanExistByItself -#### Properties -Name | Type | Description | Notes +## Model Type Info +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) diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/AdditionalpropertiesShouldNotLookInApplicators.md b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/AdditionalpropertiesShouldNotLookInApplicators.md index af1fc451d6a2..fa1430a42e98 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/AdditionalpropertiesShouldNotLookInApplicators.md +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/AdditionalpropertiesShouldNotLookInApplicators.md @@ -1,9 +1,33 @@ # unit_test_api.model.additionalproperties_should_not_look_in_applicators.AdditionalpropertiesShouldNotLookInApplicators -#### Properties -Name | Type | Description | Notes +## Model Type Info +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) diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/Allof.md b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/Allof.md index afd8e69a5786..db9cd5c72072 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/Allof.md +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/Allof.md @@ -1,8 +1,42 @@ # unit_test_api.model.allof.Allof -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | +## 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) | 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) diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/AllofCombinedWithAnyofOneof.md b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/AllofCombinedWithAnyofOneof.md index d99d316f9141..5b26a94969d9 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/AllofCombinedWithAnyofOneof.md +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/AllofCombinedWithAnyofOneof.md @@ -1,8 +1,44 @@ # unit_test_api.model.allof_combined_with_anyof_oneof.AllofCombinedWithAnyofOneof -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | +## 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) | 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) diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/AllofSimpleTypes.md b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/AllofSimpleTypes.md index 20c1a93f59a2..75e8863db69a 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/AllofSimpleTypes.md +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/AllofSimpleTypes.md @@ -1,8 +1,30 @@ # unit_test_api.model.allof_simple_types.AllofSimpleTypes -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | +## 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) | 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) diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/AllofWithBaseSchema.md b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/AllofWithBaseSchema.md index 130896ffc431..e9db83fae8a2 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/AllofWithBaseSchema.md +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/AllofWithBaseSchema.md @@ -1,10 +1,48 @@ # unit_test_api.model.allof_with_base_schema.AllofWithBaseSchema -#### Properties -Name | Type | Description | Notes +## Model Type Info +Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**bar** | **int** | | -**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] +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] + +### 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) diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/AllofWithOneEmptySchema.md b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/AllofWithOneEmptySchema.md index 924074ab2b23..429e2ac820e1 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/AllofWithOneEmptySchema.md +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/AllofWithOneEmptySchema.md @@ -1,8 +1,22 @@ # unit_test_api.model.allof_with_one_empty_schema.AllofWithOneEmptySchema -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | +## 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) | 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) diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/AllofWithTheFirstEmptySchema.md b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/AllofWithTheFirstEmptySchema.md index 7f6e1de76b91..bb6fd4199b36 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/AllofWithTheFirstEmptySchema.md +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/AllofWithTheFirstEmptySchema.md @@ -1,8 +1,30 @@ # unit_test_api.model.allof_with_the_first_empty_schema.AllofWithTheFirstEmptySchema -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | +## 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) | 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) diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/AllofWithTheLastEmptySchema.md b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/AllofWithTheLastEmptySchema.md index f38ff8487439..2e40966de71f 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/AllofWithTheLastEmptySchema.md +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/AllofWithTheLastEmptySchema.md @@ -1,8 +1,30 @@ # unit_test_api.model.allof_with_the_last_empty_schema.AllofWithTheLastEmptySchema -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | +## 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) | 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) diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/AllofWithTwoEmptySchemas.md b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/AllofWithTwoEmptySchemas.md index 4cad86507a73..1bc82005d3df 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/AllofWithTwoEmptySchemas.md +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/AllofWithTwoEmptySchemas.md @@ -1,8 +1,30 @@ # unit_test_api.model.allof_with_two_empty_schemas.AllofWithTwoEmptySchemas -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | +## 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) | 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) diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/Anyof.md b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/Anyof.md index 28dec2e6e470..53747ab915a2 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/Anyof.md +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/Anyof.md @@ -1,8 +1,30 @@ # unit_test_api.model.anyof.Anyof -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | +## 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) | 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) diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/AnyofComplexTypes.md b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/AnyofComplexTypes.md index 31146095af21..12f091e3c9ad 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/AnyofComplexTypes.md +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/AnyofComplexTypes.md @@ -1,8 +1,42 @@ # unit_test_api.model.anyof_complex_types.AnyofComplexTypes -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | +## 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) | 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) diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/AnyofWithBaseSchema.md b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/AnyofWithBaseSchema.md index aa3dd7cf89a4..ad1b6b4d57fd 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/AnyofWithBaseSchema.md +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/AnyofWithBaseSchema.md @@ -1,8 +1,30 @@ # unit_test_api.model.anyof_with_base_schema.AnyofWithBaseSchema -Type | Description | Notes -------------- | ------------- | ------------- -**str** | | +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +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) diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/AnyofWithOneEmptySchema.md b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/AnyofWithOneEmptySchema.md index dd30068af4e8..12c5c9306745 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/AnyofWithOneEmptySchema.md +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/AnyofWithOneEmptySchema.md @@ -1,8 +1,30 @@ # unit_test_api.model.anyof_with_one_empty_schema.AnyofWithOneEmptySchema -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | +## 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) | 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) diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/ArrayTypeMatchesArrays.md b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/ArrayTypeMatchesArrays.md index 5c5fcbb7d51a..ea887dfa1be5 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/ArrayTypeMatchesArrays.md +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/ArrayTypeMatchesArrays.md @@ -1,8 +1,14 @@ # unit_test_api.model.array_type_matches_arrays.ArrayTypeMatchesArrays -Type | Description | Notes -------------- | ------------- | ------------- -**[bool, date, datetime, dict, float, int, list, str, none_type]** | | +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +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) diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/BooleanTypeMatchesBooleans.md b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/BooleanTypeMatchesBooleans.md index 05b840d0dd08..63d7e87453b5 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/BooleanTypeMatchesBooleans.md +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/BooleanTypeMatchesBooleans.md @@ -1,8 +1,9 @@ # unit_test_api.model.boolean_type_matches_booleans.BooleanTypeMatchesBooleans -Type | Description | Notes -------------- | ------------- | ------------- -**bool** | | +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +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) diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/ByInt.md b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/ByInt.md index 57f9a3b8624d..7c7c706c1a87 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/ByInt.md +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/ByInt.md @@ -1,8 +1,9 @@ # unit_test_api.model.by_int.ByInt -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | +## 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) diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/ByNumber.md b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/ByNumber.md index b7416bdfe35e..4f58cada0e66 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/ByNumber.md +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/ByNumber.md @@ -1,8 +1,9 @@ # unit_test_api.model.by_number.ByNumber -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | +## 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) diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/BySmallNumber.md b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/BySmallNumber.md index edb32e35648c..7b61298957fa 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/BySmallNumber.md +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/BySmallNumber.md @@ -1,8 +1,9 @@ # unit_test_api.model.by_small_number.BySmallNumber -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | +## 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) diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/DateTimeFormat.md b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/DateTimeFormat.md index f0201866d05e..4dffa18e51c7 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/DateTimeFormat.md +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/DateTimeFormat.md @@ -1,8 +1,9 @@ # unit_test_api.model.date_time_format.DateTimeFormat -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | +## 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 | | 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) diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/EmailFormat.md b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/EmailFormat.md index 851f23f5b58b..1a2bb153a20d 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/EmailFormat.md +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/EmailFormat.md @@ -1,8 +1,9 @@ # unit_test_api.model.email_format.EmailFormat -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | +## 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) diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/EnumWith0DoesNotMatchFalse.md b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/EnumWith0DoesNotMatchFalse.md index 023ca531aeed..8acc40f17f49 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/EnumWith0DoesNotMatchFalse.md +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/EnumWith0DoesNotMatchFalse.md @@ -1,8 +1,9 @@ # unit_test_api.model.enum_with0_does_not_match_false.EnumWith0DoesNotMatchFalse -Type | Description | Notes -------------- | ------------- | ------------- -**float** | | must be one of [0, ] +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +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) diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/EnumWith1DoesNotMatchTrue.md b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/EnumWith1DoesNotMatchTrue.md index 5ef198e32323..40b4a8a2f55f 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/EnumWith1DoesNotMatchTrue.md +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/EnumWith1DoesNotMatchTrue.md @@ -1,8 +1,9 @@ # unit_test_api.model.enum_with1_does_not_match_true.EnumWith1DoesNotMatchTrue -Type | Description | Notes -------------- | ------------- | ------------- -**float** | | must be one of [1, ] +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +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) diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/EnumWithEscapedCharacters.md b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/EnumWithEscapedCharacters.md index 385343462ba9..7910c5126ea7 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/EnumWithEscapedCharacters.md +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/EnumWithEscapedCharacters.md @@ -1,8 +1,9 @@ # unit_test_api.model.enum_with_escaped_characters.EnumWithEscapedCharacters -Type | Description | Notes -------------- | ------------- | ------------- -**str** | | must be one of ["foo\nbar", "foo\rbar", ] +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +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) diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/EnumWithFalseDoesNotMatch0.md b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/EnumWithFalseDoesNotMatch0.md index c8f63aa83931..1b689953a350 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/EnumWithFalseDoesNotMatch0.md +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/EnumWithFalseDoesNotMatch0.md @@ -1,8 +1,9 @@ # unit_test_api.model.enum_with_false_does_not_match0.EnumWithFalseDoesNotMatch0 -Type | Description | Notes -------------- | ------------- | ------------- -**bool** | | must be one of [schemas.BoolClass.FALSE, ] +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +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) diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/EnumWithTrueDoesNotMatch1.md b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/EnumWithTrueDoesNotMatch1.md index 0ca2930b8002..4ddd5d9093a7 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/EnumWithTrueDoesNotMatch1.md +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/EnumWithTrueDoesNotMatch1.md @@ -1,8 +1,9 @@ # unit_test_api.model.enum_with_true_does_not_match1.EnumWithTrueDoesNotMatch1 -Type | Description | Notes -------------- | ------------- | ------------- -**bool** | | must be one of [schemas.BoolClass.TRUE, ] +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +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) diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/EnumsInProperties.md b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/EnumsInProperties.md index 037c3272892e..0e08a4a23d23 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/EnumsInProperties.md +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/EnumsInProperties.md @@ -1,11 +1,16 @@ # unit_test_api.model.enums_in_properties.EnumsInProperties -#### Properties -Name | Type | Description | Notes +## Model Type Info +Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**bar** | **str** | | -**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] +dict, frozendict.frozendict, | frozendict.frozendict, | | + +### 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) diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/ForbiddenProperty.md b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/ForbiddenProperty.md index f22f447f042d..3fc2175e9b01 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/ForbiddenProperty.md +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/ForbiddenProperty.md @@ -1,10 +1,35 @@ # unit_test_api.model.forbidden_property.ForbiddenProperty -#### Properties -Name | Type | Description | Notes +## Model Type Info +Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**foo** | **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] +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](#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) diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/HostnameFormat.md b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/HostnameFormat.md index 39e32f6ae43a..5efd27d124f3 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/HostnameFormat.md +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/HostnameFormat.md @@ -1,8 +1,9 @@ # unit_test_api.model.hostname_format.HostnameFormat -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | +## 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) diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/IntegerTypeMatchesIntegers.md b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/IntegerTypeMatchesIntegers.md index 18ef58a419d5..2575c1ca5344 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/IntegerTypeMatchesIntegers.md +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/IntegerTypeMatchesIntegers.md @@ -1,8 +1,9 @@ # unit_test_api.model.integer_type_matches_integers.IntegerTypeMatchesIntegers -Type | Description | Notes -------------- | ------------- | ------------- -**int** | | +## 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) diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/InvalidInstanceShouldNotRaiseErrorWhenFloatDivisionInf.md b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/InvalidInstanceShouldNotRaiseErrorWhenFloatDivisionInf.md index 22881f5f445b..753345128a8f 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/InvalidInstanceShouldNotRaiseErrorWhenFloatDivisionInf.md +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/InvalidInstanceShouldNotRaiseErrorWhenFloatDivisionInf.md @@ -1,8 +1,9 @@ # unit_test_api.model.invalid_instance_should_not_raise_error_when_float_division_inf.InvalidInstanceShouldNotRaiseErrorWhenFloatDivisionInf -Type | Description | Notes -------------- | ------------- | ------------- -**int** | | +## 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) diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/InvalidStringValueForDefault.md b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/InvalidStringValueForDefault.md index b6b67f4d661e..296bfd735179 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/InvalidStringValueForDefault.md +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/InvalidStringValueForDefault.md @@ -1,10 +1,15 @@ # unit_test_api.model.invalid_string_value_for_default.InvalidStringValueForDefault -#### Properties -Name | Type | Description | Notes +## Model Type Info +Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**bar** | **str** | | [optional] if omitted the server will use the default value of "bad" -**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] +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** | 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) diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/Ipv4Format.md b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/Ipv4Format.md index df2661909278..67ab85c93497 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/Ipv4Format.md +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/Ipv4Format.md @@ -1,8 +1,9 @@ # unit_test_api.model.ipv4_format.Ipv4Format -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | +## 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) diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/Ipv6Format.md b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/Ipv6Format.md index 0d740eff340c..e2086bee89b5 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/Ipv6Format.md +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/Ipv6Format.md @@ -1,8 +1,9 @@ # unit_test_api.model.ipv6_format.Ipv6Format -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | +## 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) diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/JsonPointerFormat.md b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/JsonPointerFormat.md index f07ec5120c56..40675571904b 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/JsonPointerFormat.md +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/JsonPointerFormat.md @@ -1,8 +1,9 @@ # unit_test_api.model.json_pointer_format.JsonPointerFormat -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | +## 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) diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/MaximumValidation.md b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/MaximumValidation.md index e32165b6404e..826c055762d9 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/MaximumValidation.md +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/MaximumValidation.md @@ -1,8 +1,9 @@ # unit_test_api.model.maximum_validation.MaximumValidation -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | +## 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) diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/MaximumValidationWithUnsignedInteger.md b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/MaximumValidationWithUnsignedInteger.md index 1a738a31c495..edc23e16bca5 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/MaximumValidationWithUnsignedInteger.md +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/MaximumValidationWithUnsignedInteger.md @@ -1,8 +1,9 @@ # unit_test_api.model.maximum_validation_with_unsigned_integer.MaximumValidationWithUnsignedInteger -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | +## 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) diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/MaxitemsValidation.md b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/MaxitemsValidation.md index a07d8cc56a5e..0aa20c0e8c9c 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/MaxitemsValidation.md +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/MaxitemsValidation.md @@ -1,8 +1,9 @@ # unit_test_api.model.maxitems_validation.MaxitemsValidation -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | +## 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) diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/MaxlengthValidation.md b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/MaxlengthValidation.md index 7f267d37f5c2..030db5c34fed 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/MaxlengthValidation.md +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/MaxlengthValidation.md @@ -1,8 +1,9 @@ # unit_test_api.model.maxlength_validation.MaxlengthValidation -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | +## 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) diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/Maxproperties0MeansTheObjectIsEmpty.md b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/Maxproperties0MeansTheObjectIsEmpty.md index 24ceae01279b..1bbc951f0048 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/Maxproperties0MeansTheObjectIsEmpty.md +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/Maxproperties0MeansTheObjectIsEmpty.md @@ -1,8 +1,9 @@ # unit_test_api.model.maxproperties0_means_the_object_is_empty.Maxproperties0MeansTheObjectIsEmpty -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | +## 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) diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/MaxpropertiesValidation.md b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/MaxpropertiesValidation.md index 1e40c5182e77..e68e3d87adcf 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/MaxpropertiesValidation.md +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/MaxpropertiesValidation.md @@ -1,8 +1,9 @@ # unit_test_api.model.maxproperties_validation.MaxpropertiesValidation -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | +## 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) diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/MinimumValidation.md b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/MinimumValidation.md index f4e702f3efbb..768068c3a634 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/MinimumValidation.md +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/MinimumValidation.md @@ -1,8 +1,9 @@ # unit_test_api.model.minimum_validation.MinimumValidation -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | +## 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) diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/MinimumValidationWithSignedInteger.md b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/MinimumValidationWithSignedInteger.md index d73b1ed74ef8..59d2cb9edfda 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/MinimumValidationWithSignedInteger.md +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/MinimumValidationWithSignedInteger.md @@ -1,8 +1,9 @@ # unit_test_api.model.minimum_validation_with_signed_integer.MinimumValidationWithSignedInteger -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | +## 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) diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/MinitemsValidation.md b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/MinitemsValidation.md index 8feea8a602de..48bbb8e3094a 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/MinitemsValidation.md +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/MinitemsValidation.md @@ -1,8 +1,9 @@ # unit_test_api.model.minitems_validation.MinitemsValidation -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | +## 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) diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/MinlengthValidation.md b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/MinlengthValidation.md index 7b8d002f15ff..43ec10fc791a 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/MinlengthValidation.md +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/MinlengthValidation.md @@ -1,8 +1,9 @@ # unit_test_api.model.minlength_validation.MinlengthValidation -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | +## 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) diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/MinpropertiesValidation.md b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/MinpropertiesValidation.md index 57bec707a8f9..b5ab4b4fcb71 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/MinpropertiesValidation.md +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/MinpropertiesValidation.md @@ -1,8 +1,9 @@ # unit_test_api.model.minproperties_validation.MinpropertiesValidation -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | +## 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) diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/ModelNot.md b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/ModelNot.md index fb00b7188bd0..e7f25eaa6e1f 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/ModelNot.md +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/ModelNot.md @@ -1,8 +1,22 @@ # unit_test_api.model.model_not.ModelNot -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | +## 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) | 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) diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/NestedAllofToCheckValidationSemantics.md b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/NestedAllofToCheckValidationSemantics.md index 32031ab4098d..c760ab62bf0b 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/NestedAllofToCheckValidationSemantics.md +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/NestedAllofToCheckValidationSemantics.md @@ -1,8 +1,35 @@ # unit_test_api.model.nested_allof_to_check_validation_semantics.NestedAllofToCheckValidationSemantics -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | +## 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) | 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) diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/NestedAnyofToCheckValidationSemantics.md b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/NestedAnyofToCheckValidationSemantics.md index e9bbbc30ffc6..747506abdca3 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/NestedAnyofToCheckValidationSemantics.md +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/NestedAnyofToCheckValidationSemantics.md @@ -1,8 +1,35 @@ # unit_test_api.model.nested_anyof_to_check_validation_semantics.NestedAnyofToCheckValidationSemantics -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | +## 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) | 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) diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/NestedItems.md b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/NestedItems.md index 2d0fd1aba449..2247f45f60da 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/NestedItems.md +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/NestedItems.md @@ -1,8 +1,50 @@ # unit_test_api.model.nested_items.NestedItems -Type | Description | Notes -------------- | ------------- | ------------- -**[[[[int, float]]]]** | | +## 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](#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) diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/NestedOneofToCheckValidationSemantics.md b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/NestedOneofToCheckValidationSemantics.md index c71006b4d432..a225e1f6767a 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/NestedOneofToCheckValidationSemantics.md +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/NestedOneofToCheckValidationSemantics.md @@ -1,8 +1,35 @@ # unit_test_api.model.nested_oneof_to_check_validation_semantics.NestedOneofToCheckValidationSemantics -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | +## 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) | 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) diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/NotMoreComplexSchema.md b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/NotMoreComplexSchema.md index 6aa92d476eed..45e198b3770e 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/NotMoreComplexSchema.md +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/NotMoreComplexSchema.md @@ -1,8 +1,28 @@ # unit_test_api.model.not_more_complex_schema.NotMoreComplexSchema -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | +## 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, | 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) diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/NulCharactersInStrings.md b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/NulCharactersInStrings.md index 1a8f593f62a0..8532d97c92ef 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/NulCharactersInStrings.md +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/NulCharactersInStrings.md @@ -1,8 +1,9 @@ # unit_test_api.model.nul_characters_in_strings.NulCharactersInStrings -Type | Description | Notes -------------- | ------------- | ------------- -**str** | | must be one of ["hello\x00there", ] +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +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) diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/NullTypeMatchesOnlyTheNullObject.md b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/NullTypeMatchesOnlyTheNullObject.md index a2039c383201..9a8e21c21be2 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/NullTypeMatchesOnlyTheNullObject.md +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/NullTypeMatchesOnlyTheNullObject.md @@ -1,8 +1,9 @@ # unit_test_api.model.null_type_matches_only_the_null_object.NullTypeMatchesOnlyTheNullObject -Type | Description | Notes -------------- | ------------- | ------------- -**none_type** | | +## 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) diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/NumberTypeMatchesNumbers.md b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/NumberTypeMatchesNumbers.md index fa8d79948f7b..deebc8ff56d1 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/NumberTypeMatchesNumbers.md +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/NumberTypeMatchesNumbers.md @@ -1,8 +1,9 @@ # unit_test_api.model.number_type_matches_numbers.NumberTypeMatchesNumbers -Type | Description | Notes -------------- | ------------- | ------------- -**float** | | +## 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) diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/ObjectPropertiesValidation.md b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/ObjectPropertiesValidation.md index 65b4adce2e21..9d145f831231 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/ObjectPropertiesValidation.md +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/ObjectPropertiesValidation.md @@ -1,11 +1,16 @@ # unit_test_api.model.object_properties_validation.ObjectPropertiesValidation -#### Properties -Name | Type | Description | Notes +## Model Type Info +Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**foo** | **int** | | [optional] -**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] +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** | 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) diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/Oneof.md b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/Oneof.md index cd5d5f46ffad..0c056074c41e 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/Oneof.md +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/Oneof.md @@ -1,8 +1,30 @@ # unit_test_api.model.oneof.Oneof -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | +## 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) | 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) diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/OneofComplexTypes.md b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/OneofComplexTypes.md index c731309113a4..57278d6a7ebd 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/OneofComplexTypes.md +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/OneofComplexTypes.md @@ -1,8 +1,42 @@ # unit_test_api.model.oneof_complex_types.OneofComplexTypes -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | +## 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) | 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) diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/OneofWithBaseSchema.md b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/OneofWithBaseSchema.md index 1d8bf4c3a852..20776594f4e0 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/OneofWithBaseSchema.md +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/OneofWithBaseSchema.md @@ -1,8 +1,30 @@ # unit_test_api.model.oneof_with_base_schema.OneofWithBaseSchema -Type | Description | Notes -------------- | ------------- | ------------- -**str** | | +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +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) diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/OneofWithEmptySchema.md b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/OneofWithEmptySchema.md index 05df98b7a253..f420f5c61de0 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/OneofWithEmptySchema.md +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/OneofWithEmptySchema.md @@ -1,8 +1,30 @@ # unit_test_api.model.oneof_with_empty_schema.OneofWithEmptySchema -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | +## 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) | 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) diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/OneofWithRequired.md b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/OneofWithRequired.md index e979650c62fa..e9ba38802cf1 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/OneofWithRequired.md +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/OneofWithRequired.md @@ -1,8 +1,30 @@ # unit_test_api.model.oneof_with_required.OneofWithRequired -Type | Description | Notes -------------- | ------------- | ------------- -**object** | | +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +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) diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/PatternIsNotAnchored.md b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/PatternIsNotAnchored.md index 95e652d4f78b..e9b758d826c5 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/PatternIsNotAnchored.md +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/PatternIsNotAnchored.md @@ -1,8 +1,9 @@ # unit_test_api.model.pattern_is_not_anchored.PatternIsNotAnchored -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | +## 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) diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/PatternValidation.md b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/PatternValidation.md index 00debe1a7501..a2c7e75f30bf 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/PatternValidation.md +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/PatternValidation.md @@ -1,8 +1,9 @@ # unit_test_api.model.pattern_validation.PatternValidation -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | +## 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) diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/PropertiesWithEscapedCharacters.md b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/PropertiesWithEscapedCharacters.md index f67ca9962e56..7505eb4e1ce9 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/PropertiesWithEscapedCharacters.md +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/PropertiesWithEscapedCharacters.md @@ -1,15 +1,20 @@ # unit_test_api.model.properties_with_escaped_characters.PropertiesWithEscapedCharacters -#### Properties -Name | Type | Description | Notes +## Model Type Info +Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**foo\nbar** | **int, float** | | [optional] -**foo\"bar** | **int, float** | | [optional] -**foo\\bar** | **int, float** | | [optional] -**foo\rbar** | **int, float** | | [optional] -**foo\tbar** | **int, float** | | [optional] -**foo\fbar** | **int, float** | | [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] +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\nbar** | decimal.Decimal, int, float, | decimal.Decimal, | | [optional] +**foo\"bar** | decimal.Decimal, int, float, | decimal.Decimal, | | [optional] +**foo\\bar** | decimal.Decimal, int, float, | decimal.Decimal, | | [optional] +**foo\rbar** | decimal.Decimal, int, float, | decimal.Decimal, | | [optional] +**foo\tbar** | decimal.Decimal, int, float, | decimal.Decimal, | | [optional] +**foo\fbar** | decimal.Decimal, int, float, | decimal.Decimal, | | [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) diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/PropertyNamedRefThatIsNotAReference.md b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/PropertyNamedRefThatIsNotAReference.md index 2bbd88be7f37..4d0ec5925707 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/PropertyNamedRefThatIsNotAReference.md +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/PropertyNamedRefThatIsNotAReference.md @@ -1,10 +1,15 @@ # unit_test_api.model.property_named_ref_that_is_not_a_reference.PropertyNamedRefThatIsNotAReference -#### Properties -Name | Type | Description | Notes +## Model Type Info +Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**$ref** | **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] +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 +------------ | ------------- | ------------- | ------------- | ------------- +**$ref** | 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) diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/RefInAdditionalproperties.md b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/RefInAdditionalproperties.md index daa10fd603c3..15d5366ac517 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/RefInAdditionalproperties.md +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/RefInAdditionalproperties.md @@ -1,9 +1,14 @@ # unit_test_api.model.ref_in_additionalproperties.RefInAdditionalproperties -#### Properties -Name | Type | Description | Notes +## Model Type Info +Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**any string name** | [**PropertyNamedRefThatIsNotAReference**](PropertyNamedRefThatIsNotAReference.md) | 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** | [**PropertyNamedRefThatIsNotAReference**](PropertyNamedRefThatIsNotAReference.md) | [**PropertyNamedRefThatIsNotAReference**](PropertyNamedRefThatIsNotAReference.md) | 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) diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/RefInAllof.md b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/RefInAllof.md index ffd42fbd204d..12158f9e2821 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/RefInAllof.md +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/RefInAllof.md @@ -1,8 +1,15 @@ # unit_test_api.model.ref_in_allof.RefInAllof -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | +## 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 +------------- | ------------- | ------------- | ------------- | ------------- +[PropertyNamedRefThatIsNotAReference](PropertyNamedRefThatIsNotAReference.md) | [**PropertyNamedRefThatIsNotAReference**](PropertyNamedRefThatIsNotAReference.md) | [**PropertyNamedRefThatIsNotAReference**](PropertyNamedRefThatIsNotAReference.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) diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/RefInAnyof.md b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/RefInAnyof.md index 1822663ece64..5ff141f69b42 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/RefInAnyof.md +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/RefInAnyof.md @@ -1,8 +1,15 @@ # unit_test_api.model.ref_in_anyof.RefInAnyof -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | +## 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 +------------- | ------------- | ------------- | ------------- | ------------- +[PropertyNamedRefThatIsNotAReference](PropertyNamedRefThatIsNotAReference.md) | [**PropertyNamedRefThatIsNotAReference**](PropertyNamedRefThatIsNotAReference.md) | [**PropertyNamedRefThatIsNotAReference**](PropertyNamedRefThatIsNotAReference.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) diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/RefInItems.md b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/RefInItems.md index 544abba2c012..687a4da176c0 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/RefInItems.md +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/RefInItems.md @@ -1,8 +1,14 @@ # unit_test_api.model.ref_in_items.RefInItems -Type | Description | Notes -------------- | ------------- | ------------- -**[PropertyNamedRefThatIsNotAReference]** | | +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +list, tuple, | tuple, | | + +### Tuple Items +Class Name | Input Type | Accessed Type | Description | Notes +------------- | ------------- | ------------- | ------------- | ------------- +[**PropertyNamedRefThatIsNotAReference**](PropertyNamedRefThatIsNotAReference.md) | [**PropertyNamedRefThatIsNotAReference**](PropertyNamedRefThatIsNotAReference.md) | [**PropertyNamedRefThatIsNotAReference**](PropertyNamedRefThatIsNotAReference.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) diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/RefInNot.md b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/RefInNot.md index a151ac0ba39c..4414c35841d9 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/RefInNot.md +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/RefInNot.md @@ -1,8 +1,15 @@ # unit_test_api.model.ref_in_not.RefInNot -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | +## 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 +------------- | ------------- | ------------- | ------------- | ------------- +[PropertyNamedRefThatIsNotAReference](PropertyNamedRefThatIsNotAReference.md) | [**PropertyNamedRefThatIsNotAReference**](PropertyNamedRefThatIsNotAReference.md) | [**PropertyNamedRefThatIsNotAReference**](PropertyNamedRefThatIsNotAReference.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) diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/RefInOneof.md b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/RefInOneof.md index 181c0bacaa68..68659fd58a09 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/RefInOneof.md +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/RefInOneof.md @@ -1,8 +1,15 @@ # unit_test_api.model.ref_in_oneof.RefInOneof -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | +## 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 +------------- | ------------- | ------------- | ------------- | ------------- +[PropertyNamedRefThatIsNotAReference](PropertyNamedRefThatIsNotAReference.md) | [**PropertyNamedRefThatIsNotAReference**](PropertyNamedRefThatIsNotAReference.md) | [**PropertyNamedRefThatIsNotAReference**](PropertyNamedRefThatIsNotAReference.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) diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/RefInProperty.md b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/RefInProperty.md index 080017b607e7..67ac9dd119e7 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/RefInProperty.md +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/RefInProperty.md @@ -1,10 +1,15 @@ # unit_test_api.model.ref_in_property.RefInProperty -#### Properties -Name | Type | Description | Notes +## Model Type Info +Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**a** | [**PropertyNamedRefThatIsNotAReference**](PropertyNamedRefThatIsNotAReference.md) | | [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] +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 +------------ | ------------- | ------------- | ------------- | ------------- +**a** | [**PropertyNamedRefThatIsNotAReference**](PropertyNamedRefThatIsNotAReference.md) | [**PropertyNamedRefThatIsNotAReference**](PropertyNamedRefThatIsNotAReference.md) | | [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) diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/RequiredDefaultValidation.md b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/RequiredDefaultValidation.md index 8f7392c90c4f..942d13d26445 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/RequiredDefaultValidation.md +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/RequiredDefaultValidation.md @@ -1,10 +1,15 @@ # unit_test_api.model.required_default_validation.RequiredDefaultValidation -#### Properties -Name | Type | Description | Notes +## Model Type Info +Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**foo** | **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] +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) diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/RequiredValidation.md b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/RequiredValidation.md index 5e607797972d..0bdb9e64611e 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/RequiredValidation.md +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/RequiredValidation.md @@ -1,11 +1,16 @@ # unit_test_api.model.required_validation.RequiredValidation -#### Properties -Name | Type | Description | Notes +## Model Type Info +Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**foo** | **bool, date, datetime, dict, float, int, list, str, none_type** | | -**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] +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 | | +**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) diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/RequiredWithEmptyArray.md b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/RequiredWithEmptyArray.md index 80a1f89f9c31..097a433c6490 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/RequiredWithEmptyArray.md +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/RequiredWithEmptyArray.md @@ -1,10 +1,15 @@ # unit_test_api.model.required_with_empty_array.RequiredWithEmptyArray -#### Properties -Name | Type | Description | Notes +## Model Type Info +Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**foo** | **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] +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) diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/RequiredWithEscapedCharacters.md b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/RequiredWithEscapedCharacters.md index 239cc81a0050..a89c4b8bf848 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/RequiredWithEscapedCharacters.md +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/RequiredWithEscapedCharacters.md @@ -1,8 +1,9 @@ # unit_test_api.model.required_with_escaped_characters.RequiredWithEscapedCharacters -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | +## 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) diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/SimpleEnumValidation.md b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/SimpleEnumValidation.md index c1cc6955ecf3..12c0eaf4f83c 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/SimpleEnumValidation.md +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/SimpleEnumValidation.md @@ -1,8 +1,9 @@ # unit_test_api.model.simple_enum_validation.SimpleEnumValidation -Type | Description | Notes -------------- | ------------- | ------------- -**float** | | must be one of [1, 2, 3, ] +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +decimal.Decimal, int, float, | decimal.Decimal, | | must be one of [1, 2, 3, ] [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/StringTypeMatchesStrings.md b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/StringTypeMatchesStrings.md index 2a6e030e40a5..6cee3b4720cb 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/StringTypeMatchesStrings.md +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/StringTypeMatchesStrings.md @@ -1,8 +1,9 @@ # unit_test_api.model.string_type_matches_strings.StringTypeMatchesStrings -Type | Description | Notes -------------- | ------------- | ------------- -**str** | | +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +str, | str, | | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/TheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissing.md b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/TheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissing.md index affadf410e50..5d3e50000074 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/TheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissing.md +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/TheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissing.md @@ -1,10 +1,15 @@ # unit_test_api.model.the_default_keyword_does_not_do_anything_if_the_property_is_missing.TheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissing -#### Properties -Name | Type | Description | Notes +## Model Type Info +Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**alpha** | **int, float** | | [optional] if omitted the server will use the default value of 5 -**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] +dict, frozendict.frozendict, | frozendict.frozendict, | | + +### Dictionary Keys +Key | Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- | ------------- +**alpha** | decimal.Decimal, int, float, | decimal.Decimal, | | [optional] if omitted the server will use the default value of 5 +**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) diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/UniqueitemsFalseValidation.md b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/UniqueitemsFalseValidation.md index ecdbdefc37c5..f06a22b0be23 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/UniqueitemsFalseValidation.md +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/UniqueitemsFalseValidation.md @@ -1,8 +1,9 @@ # unit_test_api.model.uniqueitems_false_validation.UniqueitemsFalseValidation -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | +## 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) diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/UniqueitemsValidation.md b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/UniqueitemsValidation.md index bbd52b6e01b8..89fe7ce65726 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/UniqueitemsValidation.md +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/UniqueitemsValidation.md @@ -1,8 +1,9 @@ # unit_test_api.model.uniqueitems_validation.UniqueitemsValidation -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | +## 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) diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/UriFormat.md b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/UriFormat.md index 1770b71c587e..82ee5f3cdb03 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/UriFormat.md +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/UriFormat.md @@ -1,8 +1,9 @@ # unit_test_api.model.uri_format.UriFormat -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | +## 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) diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/UriReferenceFormat.md b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/UriReferenceFormat.md index 84892921e9dc..c0bdbf8e2602 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/UriReferenceFormat.md +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/UriReferenceFormat.md @@ -1,8 +1,9 @@ # unit_test_api.model.uri_reference_format.UriReferenceFormat -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | +## 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) diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/UriTemplateFormat.md b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/UriTemplateFormat.md index cc11eb3fdeed..cfb0c0c98d4b 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/UriTemplateFormat.md +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/docs/models/UriTemplateFormat.md @@ -1,8 +1,9 @@ # unit_test_api.model.uri_template_format.UriTemplateFormat -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | +## 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) diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/additionalproperties_allows_a_schema_which_should_validate.py b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/additionalproperties_allows_a_schema_which_should_validate.py index b0fb32bcbe00..1f8e5f7033e0 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/additionalproperties_allows_a_schema_which_should_validate.py +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/additionalproperties_allows_a_schema_which_should_validate.py @@ -71,8 +71,8 @@ def get_item_oapg(self, name: typing.Union[typing.Literal["foo"], typing.Literal def __new__( cls, *args: typing.Union[dict, frozendict.frozendict, ], - foo: typing.Union[MetaOapg.properties.foo, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, schemas.Unset] = schemas.unset, - bar: typing.Union[MetaOapg.properties.bar, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, schemas.Unset] = schemas.unset, + foo: typing.Union[MetaOapg.properties.foo, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, + bar: typing.Union[MetaOapg.properties.bar, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[MetaOapg.additional_properties, bool, ], ) -> 'AdditionalpropertiesAllowsASchemaWhichShouldValidate': diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/additionalproperties_allows_a_schema_which_should_validate.pyi b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/additionalproperties_allows_a_schema_which_should_validate.pyi index b0fb32bcbe00..1f8e5f7033e0 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/additionalproperties_allows_a_schema_which_should_validate.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/additionalproperties_allows_a_schema_which_should_validate.pyi @@ -71,8 +71,8 @@ class AdditionalpropertiesAllowsASchemaWhichShouldValidate( def __new__( cls, *args: typing.Union[dict, frozendict.frozendict, ], - foo: typing.Union[MetaOapg.properties.foo, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, schemas.Unset] = schemas.unset, - bar: typing.Union[MetaOapg.properties.bar, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, schemas.Unset] = schemas.unset, + foo: typing.Union[MetaOapg.properties.foo, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, + bar: typing.Union[MetaOapg.properties.bar, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[MetaOapg.additional_properties, bool, ], ) -> 'AdditionalpropertiesAllowsASchemaWhichShouldValidate': diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/additionalproperties_are_allowed_by_default.py b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/additionalproperties_are_allowed_by_default.py index a7fdf31909d7..eba73748ba21 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/additionalproperties_are_allowed_by_default.py +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/additionalproperties_are_allowed_by_default.py @@ -72,9 +72,9 @@ def get_item_oapg(self, name: typing.Union[typing.Literal["foo", "bar", ], str]) def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], - foo: typing.Union[MetaOapg.properties.foo, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, schemas.Unset] = schemas.unset, - bar: typing.Union[MetaOapg.properties.bar, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, schemas.Unset] = schemas.unset, + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + foo: typing.Union[MetaOapg.properties.foo, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, + bar: typing.Union[MetaOapg.properties.bar, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'AdditionalpropertiesAreAllowedByDefault': diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/additionalproperties_are_allowed_by_default.pyi b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/additionalproperties_are_allowed_by_default.pyi index a7fdf31909d7..eba73748ba21 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/additionalproperties_are_allowed_by_default.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/additionalproperties_are_allowed_by_default.pyi @@ -72,9 +72,9 @@ class AdditionalpropertiesAreAllowedByDefault( def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], - foo: typing.Union[MetaOapg.properties.foo, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, schemas.Unset] = schemas.unset, - bar: typing.Union[MetaOapg.properties.bar, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, schemas.Unset] = schemas.unset, + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + foo: typing.Union[MetaOapg.properties.foo, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, + bar: typing.Union[MetaOapg.properties.bar, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'AdditionalpropertiesAreAllowedByDefault': diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/additionalproperties_should_not_look_in_applicators.py b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/additionalproperties_should_not_look_in_applicators.py index b429330b0b36..59ebde538ecb 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/additionalproperties_should_not_look_in_applicators.py +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/additionalproperties_should_not_look_in_applicators.py @@ -73,8 +73,8 @@ def get_item_oapg(self, name: typing.Union[typing.Literal["foo", ], str]): def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], - foo: typing.Union[MetaOapg.properties.foo, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, schemas.Unset] = schemas.unset, + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + foo: typing.Union[MetaOapg.properties.foo, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'all_of_0': @@ -111,7 +111,7 @@ def get_item_oapg(self, name: typing.Union[str, ]) -> MetaOapg.additional_proper def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[MetaOapg.additional_properties, bool, ], ) -> 'AdditionalpropertiesShouldNotLookInApplicators': diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/additionalproperties_should_not_look_in_applicators.pyi b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/additionalproperties_should_not_look_in_applicators.pyi index b429330b0b36..59ebde538ecb 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/additionalproperties_should_not_look_in_applicators.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/additionalproperties_should_not_look_in_applicators.pyi @@ -73,8 +73,8 @@ class AdditionalpropertiesShouldNotLookInApplicators( def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], - foo: typing.Union[MetaOapg.properties.foo, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, schemas.Unset] = schemas.unset, + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + foo: typing.Union[MetaOapg.properties.foo, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'all_of_0': @@ -111,7 +111,7 @@ class AdditionalpropertiesShouldNotLookInApplicators( def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[MetaOapg.additional_properties, bool, ], ) -> 'AdditionalpropertiesShouldNotLookInApplicators': diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/allof.py b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/allof.py index ef06ea09fa7f..19133caac311 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/allof.py +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/allof.py @@ -77,7 +77,7 @@ def get_item_oapg(self, name: typing.Union[typing.Literal["bar", ], str]): def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], bar: typing.Union[MetaOapg.properties.bar, decimal.Decimal, int, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], @@ -133,7 +133,7 @@ def get_item_oapg(self, name: typing.Union[typing.Literal["foo", ], str]): def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], foo: typing.Union[MetaOapg.properties.foo, str, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], @@ -165,7 +165,7 @@ def all_of(cls): def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'Allof': diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/allof.pyi b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/allof.pyi index ef06ea09fa7f..19133caac311 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/allof.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/allof.pyi @@ -77,7 +77,7 @@ class Allof( def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], bar: typing.Union[MetaOapg.properties.bar, decimal.Decimal, int, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], @@ -133,7 +133,7 @@ class Allof( def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], foo: typing.Union[MetaOapg.properties.foo, str, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], @@ -165,7 +165,7 @@ class Allof( def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'Allof': diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/allof_combined_with_anyof_oneof.py b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/allof_combined_with_anyof_oneof.py index c49f9c0dfe29..3fa73776b77d 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/allof_combined_with_anyof_oneof.py +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/allof_combined_with_anyof_oneof.py @@ -46,7 +46,7 @@ class MetaOapg: def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'all_of_0': @@ -69,7 +69,7 @@ class MetaOapg: def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'one_of_0': @@ -92,7 +92,7 @@ class MetaOapg: def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'any_of_0': @@ -151,7 +151,7 @@ def any_of(cls): def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'AllofCombinedWithAnyofOneof': diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/allof_combined_with_anyof_oneof.pyi b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/allof_combined_with_anyof_oneof.pyi index 5b72b2557646..11ad8434f327 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/allof_combined_with_anyof_oneof.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/allof_combined_with_anyof_oneof.pyi @@ -45,7 +45,7 @@ class AllofCombinedWithAnyofOneof( def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'all_of_0': @@ -67,7 +67,7 @@ class AllofCombinedWithAnyofOneof( def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'one_of_0': @@ -89,7 +89,7 @@ class AllofCombinedWithAnyofOneof( def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'any_of_0': @@ -148,7 +148,7 @@ class AllofCombinedWithAnyofOneof( def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'AllofCombinedWithAnyofOneof': diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/allof_simple_types.py b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/allof_simple_types.py index 61bc462e7bf5..4afe6d9c30a3 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/allof_simple_types.py +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/allof_simple_types.py @@ -46,7 +46,7 @@ class MetaOapg: def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'all_of_0': @@ -69,7 +69,7 @@ class MetaOapg: def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'all_of_1': @@ -99,7 +99,7 @@ def all_of(cls): def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'AllofSimpleTypes': diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/allof_simple_types.pyi b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/allof_simple_types.pyi index 32f0e6c6c13b..dbeb1f89bcb0 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/allof_simple_types.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/allof_simple_types.pyi @@ -45,7 +45,7 @@ class AllofSimpleTypes( def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'all_of_0': @@ -67,7 +67,7 @@ class AllofSimpleTypes( def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'all_of_1': @@ -97,7 +97,7 @@ class AllofSimpleTypes( def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'AllofSimpleTypes': diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/allof_with_base_schema.py b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/allof_with_base_schema.py index 60ddefa88a1e..72a2d25a50f4 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/allof_with_base_schema.py +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/allof_with_base_schema.py @@ -86,7 +86,7 @@ def get_item_oapg(self, name: typing.Union[typing.Literal["foo", ], str]): def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], foo: typing.Union[MetaOapg.properties.foo, str, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], @@ -142,7 +142,7 @@ def get_item_oapg(self, name: typing.Union[typing.Literal["baz", ], str]): def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], baz: typing.Union[MetaOapg.properties.baz, None, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], @@ -197,7 +197,7 @@ def get_item_oapg(self, name: typing.Union[typing.Literal["bar", ], str]): def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], bar: typing.Union[MetaOapg.properties.bar, decimal.Decimal, int, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/allof_with_base_schema.pyi b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/allof_with_base_schema.pyi index 60ddefa88a1e..72a2d25a50f4 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/allof_with_base_schema.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/allof_with_base_schema.pyi @@ -86,7 +86,7 @@ class AllofWithBaseSchema( def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], foo: typing.Union[MetaOapg.properties.foo, str, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], @@ -142,7 +142,7 @@ class AllofWithBaseSchema( def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], baz: typing.Union[MetaOapg.properties.baz, None, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], @@ -197,7 +197,7 @@ class AllofWithBaseSchema( def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], bar: typing.Union[MetaOapg.properties.bar, decimal.Decimal, int, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/allof_with_one_empty_schema.py b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/allof_with_one_empty_schema.py index d4696ee13e45..395ff56e8cc7 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/allof_with_one_empty_schema.py +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/allof_with_one_empty_schema.py @@ -53,7 +53,7 @@ def all_of(cls): def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'AllofWithOneEmptySchema': diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/allof_with_one_empty_schema.pyi b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/allof_with_one_empty_schema.pyi index d4696ee13e45..395ff56e8cc7 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/allof_with_one_empty_schema.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/allof_with_one_empty_schema.pyi @@ -53,7 +53,7 @@ class AllofWithOneEmptySchema( def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'AllofWithOneEmptySchema': diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/allof_with_the_first_empty_schema.py b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/allof_with_the_first_empty_schema.py index a57386793d43..33ad4ab2b2ac 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/allof_with_the_first_empty_schema.py +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/allof_with_the_first_empty_schema.py @@ -55,7 +55,7 @@ def all_of(cls): def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'AllofWithTheFirstEmptySchema': diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/allof_with_the_first_empty_schema.pyi b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/allof_with_the_first_empty_schema.pyi index a57386793d43..33ad4ab2b2ac 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/allof_with_the_first_empty_schema.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/allof_with_the_first_empty_schema.pyi @@ -55,7 +55,7 @@ class AllofWithTheFirstEmptySchema( def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'AllofWithTheFirstEmptySchema': diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/allof_with_the_last_empty_schema.py b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/allof_with_the_last_empty_schema.py index bad066cacfd5..6cae34762552 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/allof_with_the_last_empty_schema.py +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/allof_with_the_last_empty_schema.py @@ -55,7 +55,7 @@ def all_of(cls): def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'AllofWithTheLastEmptySchema': diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/allof_with_the_last_empty_schema.pyi b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/allof_with_the_last_empty_schema.pyi index bad066cacfd5..6cae34762552 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/allof_with_the_last_empty_schema.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/allof_with_the_last_empty_schema.pyi @@ -55,7 +55,7 @@ class AllofWithTheLastEmptySchema( def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'AllofWithTheLastEmptySchema': diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/allof_with_two_empty_schemas.py b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/allof_with_two_empty_schemas.py index 98a60e230cfa..1259121f5ffc 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/allof_with_two_empty_schemas.py +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/allof_with_two_empty_schemas.py @@ -55,7 +55,7 @@ def all_of(cls): def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'AllofWithTwoEmptySchemas': diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/allof_with_two_empty_schemas.pyi b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/allof_with_two_empty_schemas.pyi index 98a60e230cfa..1259121f5ffc 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/allof_with_two_empty_schemas.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/allof_with_two_empty_schemas.pyi @@ -55,7 +55,7 @@ class AllofWithTwoEmptySchemas( def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'AllofWithTwoEmptySchemas': diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/anyof.py b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/anyof.py index 9c3bcf90cee7..3be933464ae5 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/anyof.py +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/anyof.py @@ -47,7 +47,7 @@ class MetaOapg: def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'any_of_1': @@ -77,7 +77,7 @@ def any_of(cls): def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'Anyof': diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/anyof.pyi b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/anyof.pyi index 057f320e6ef8..9f0d2d013127 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/anyof.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/anyof.pyi @@ -46,7 +46,7 @@ class Anyof( def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'any_of_1': @@ -76,7 +76,7 @@ class Anyof( def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'Anyof': diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/anyof_complex_types.py b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/anyof_complex_types.py index 58bd52e2c142..814c1b4c0dc8 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/anyof_complex_types.py +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/anyof_complex_types.py @@ -77,7 +77,7 @@ def get_item_oapg(self, name: typing.Union[typing.Literal["bar", ], str]): def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], bar: typing.Union[MetaOapg.properties.bar, decimal.Decimal, int, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], @@ -133,7 +133,7 @@ def get_item_oapg(self, name: typing.Union[typing.Literal["foo", ], str]): def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], foo: typing.Union[MetaOapg.properties.foo, str, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], @@ -165,7 +165,7 @@ def any_of(cls): def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'AnyofComplexTypes': diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/anyof_complex_types.pyi b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/anyof_complex_types.pyi index 58bd52e2c142..814c1b4c0dc8 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/anyof_complex_types.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/anyof_complex_types.pyi @@ -77,7 +77,7 @@ class AnyofComplexTypes( def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], bar: typing.Union[MetaOapg.properties.bar, decimal.Decimal, int, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], @@ -133,7 +133,7 @@ class AnyofComplexTypes( def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], foo: typing.Union[MetaOapg.properties.foo, str, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], @@ -165,7 +165,7 @@ class AnyofComplexTypes( def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'AnyofComplexTypes': diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/anyof_with_base_schema.py b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/anyof_with_base_schema.py index 232e1ab06701..96e9025ca20c 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/anyof_with_base_schema.py +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/anyof_with_base_schema.py @@ -47,7 +47,7 @@ class MetaOapg: def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'any_of_0': @@ -70,7 +70,7 @@ class MetaOapg: def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'any_of_1': diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/anyof_with_base_schema.pyi b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/anyof_with_base_schema.pyi index 7dec2451f1de..e18d96327d6a 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/anyof_with_base_schema.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/anyof_with_base_schema.pyi @@ -46,7 +46,7 @@ class AnyofWithBaseSchema( def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'any_of_0': @@ -68,7 +68,7 @@ class AnyofWithBaseSchema( def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'any_of_1': diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/anyof_with_one_empty_schema.py b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/anyof_with_one_empty_schema.py index 48f8d81a0a5d..04896077a6c2 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/anyof_with_one_empty_schema.py +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/anyof_with_one_empty_schema.py @@ -55,7 +55,7 @@ def any_of(cls): def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'AnyofWithOneEmptySchema': diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/anyof_with_one_empty_schema.pyi b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/anyof_with_one_empty_schema.pyi index 48f8d81a0a5d..04896077a6c2 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/anyof_with_one_empty_schema.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/anyof_with_one_empty_schema.pyi @@ -55,7 +55,7 @@ class AnyofWithOneEmptySchema( def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'AnyofWithOneEmptySchema': diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/array_type_matches_arrays.py b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/array_type_matches_arrays.py index d96f1d03c8e2..bc817fe24c31 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/array_type_matches_arrays.py +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/array_type_matches_arrays.py @@ -37,7 +37,7 @@ class MetaOapg: def __new__( cls, - arg: typing.Union[typing.Tuple[typing.Union[MetaOapg.items, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ]], typing.List[typing.Union[MetaOapg.items, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ]]], + arg: typing.Union[typing.Tuple[typing.Union[MetaOapg.items, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ]], typing.List[typing.Union[MetaOapg.items, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ]]], _configuration: typing.Optional[schemas.Configuration] = None, ) -> 'ArrayTypeMatchesArrays': return super().__new__( diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/array_type_matches_arrays.pyi b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/array_type_matches_arrays.pyi index d96f1d03c8e2..bc817fe24c31 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/array_type_matches_arrays.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/array_type_matches_arrays.pyi @@ -37,7 +37,7 @@ class ArrayTypeMatchesArrays( def __new__( cls, - arg: typing.Union[typing.Tuple[typing.Union[MetaOapg.items, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ]], typing.List[typing.Union[MetaOapg.items, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ]]], + arg: typing.Union[typing.Tuple[typing.Union[MetaOapg.items, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ]], typing.List[typing.Union[MetaOapg.items, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ]]], _configuration: typing.Optional[schemas.Configuration] = None, ) -> 'ArrayTypeMatchesArrays': return super().__new__( diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/by_int.py b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/by_int.py index 05e2bd755414..3155db2ffe2c 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/by_int.py +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/by_int.py @@ -38,7 +38,7 @@ class MetaOapg: def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'ByInt': diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/by_int.pyi b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/by_int.pyi index e98e2afecb51..0eecf5986bea 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/by_int.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/by_int.pyi @@ -37,7 +37,7 @@ class ByInt( def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'ByInt': diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/by_number.py b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/by_number.py index 95596a0b5b3c..30c0e9fa3d35 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/by_number.py +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/by_number.py @@ -38,7 +38,7 @@ class MetaOapg: def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'ByNumber': diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/by_number.pyi b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/by_number.pyi index 53e4ff471077..334f1e65c63b 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/by_number.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/by_number.pyi @@ -37,7 +37,7 @@ class ByNumber( def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'ByNumber': diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/by_small_number.py b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/by_small_number.py index dbc7bd01d577..c0ca428fa49c 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/by_small_number.py +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/by_small_number.py @@ -38,7 +38,7 @@ class MetaOapg: def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'BySmallNumber': diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/by_small_number.pyi b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/by_small_number.pyi index 01a3f551bb73..33fcdc684015 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/by_small_number.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/by_small_number.pyi @@ -37,7 +37,7 @@ class BySmallNumber( def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'BySmallNumber': diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/date_time_format.py b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/date_time_format.py index 5b0c5e3c2500..e814a3cb20b6 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/date_time_format.py +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/date_time_format.py @@ -39,7 +39,7 @@ class MetaOapg: def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'DateTimeFormat': diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/date_time_format.pyi b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/date_time_format.pyi index 5b0c5e3c2500..e814a3cb20b6 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/date_time_format.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/date_time_format.pyi @@ -39,7 +39,7 @@ class DateTimeFormat( def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'DateTimeFormat': diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/email_format.py b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/email_format.py index 353e2c6850af..112b8753d323 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/email_format.py +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/email_format.py @@ -38,7 +38,7 @@ class MetaOapg: def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'EmailFormat': diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/email_format.pyi b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/email_format.pyi index 353e2c6850af..112b8753d323 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/email_format.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/email_format.pyi @@ -38,7 +38,7 @@ class EmailFormat( def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'EmailFormat': diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/forbidden_property.py b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/forbidden_property.py index 60bfa190347f..1aac18dd68ba 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/forbidden_property.py +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/forbidden_property.py @@ -64,8 +64,8 @@ def get_item_oapg(self, name: typing.Union[typing.Literal["foo", ], str]): def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], - foo: typing.Union[MetaOapg.properties.foo, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, schemas.Unset] = schemas.unset, + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + foo: typing.Union[MetaOapg.properties.foo, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'ForbiddenProperty': diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/forbidden_property.pyi b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/forbidden_property.pyi index 60bfa190347f..1aac18dd68ba 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/forbidden_property.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/forbidden_property.pyi @@ -64,8 +64,8 @@ class ForbiddenProperty( def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], - foo: typing.Union[MetaOapg.properties.foo, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, schemas.Unset] = schemas.unset, + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + foo: typing.Union[MetaOapg.properties.foo, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'ForbiddenProperty': diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/hostname_format.py b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/hostname_format.py index caf16f96b5b2..1e2209821374 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/hostname_format.py +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/hostname_format.py @@ -38,7 +38,7 @@ class MetaOapg: def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'HostnameFormat': diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/hostname_format.pyi b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/hostname_format.pyi index caf16f96b5b2..1e2209821374 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/hostname_format.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/hostname_format.pyi @@ -38,7 +38,7 @@ class HostnameFormat( def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'HostnameFormat': diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/invalid_string_value_for_default.py b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/invalid_string_value_for_default.py index 14d183460803..9d95c7c9e192 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/invalid_string_value_for_default.py +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/invalid_string_value_for_default.py @@ -72,7 +72,7 @@ def get_item_oapg(self, name: typing.Union[typing.Literal["bar", ], str]): def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], bar: typing.Union[MetaOapg.properties.bar, str, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/invalid_string_value_for_default.pyi b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/invalid_string_value_for_default.pyi index 3da47e6ed109..26aef46d97c9 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/invalid_string_value_for_default.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/invalid_string_value_for_default.pyi @@ -69,7 +69,7 @@ class InvalidStringValueForDefault( def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], bar: typing.Union[MetaOapg.properties.bar, str, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/ipv4_format.py b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/ipv4_format.py index 6bd1ce362a93..b0751f0773ee 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/ipv4_format.py +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/ipv4_format.py @@ -38,7 +38,7 @@ class MetaOapg: def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'Ipv4Format': diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/ipv4_format.pyi b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/ipv4_format.pyi index 6bd1ce362a93..b0751f0773ee 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/ipv4_format.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/ipv4_format.pyi @@ -38,7 +38,7 @@ class Ipv4Format( def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'Ipv4Format': diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/ipv6_format.py b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/ipv6_format.py index 6113fed16499..179f1486c2f6 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/ipv6_format.py +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/ipv6_format.py @@ -38,7 +38,7 @@ class MetaOapg: def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'Ipv6Format': diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/ipv6_format.pyi b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/ipv6_format.pyi index 6113fed16499..179f1486c2f6 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/ipv6_format.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/ipv6_format.pyi @@ -38,7 +38,7 @@ class Ipv6Format( def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'Ipv6Format': diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/json_pointer_format.py b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/json_pointer_format.py index 8159a1532478..5048e6976fd9 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/json_pointer_format.py +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/json_pointer_format.py @@ -38,7 +38,7 @@ class MetaOapg: def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'JsonPointerFormat': diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/json_pointer_format.pyi b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/json_pointer_format.pyi index 8159a1532478..5048e6976fd9 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/json_pointer_format.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/json_pointer_format.pyi @@ -38,7 +38,7 @@ class JsonPointerFormat( def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'JsonPointerFormat': diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/maximum_validation.py b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/maximum_validation.py index 970ef705fa74..05534d2f05c1 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/maximum_validation.py +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/maximum_validation.py @@ -38,7 +38,7 @@ class MetaOapg: def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'MaximumValidation': diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/maximum_validation.pyi b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/maximum_validation.pyi index 73985b523c8f..e5d25b008797 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/maximum_validation.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/maximum_validation.pyi @@ -37,7 +37,7 @@ class MaximumValidation( def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'MaximumValidation': diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/maximum_validation_with_unsigned_integer.py b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/maximum_validation_with_unsigned_integer.py index 86e3bef7d00f..c3945df7c203 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/maximum_validation_with_unsigned_integer.py +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/maximum_validation_with_unsigned_integer.py @@ -38,7 +38,7 @@ class MetaOapg: def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'MaximumValidationWithUnsignedInteger': diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/maximum_validation_with_unsigned_integer.pyi b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/maximum_validation_with_unsigned_integer.pyi index 6a5a9ea9c3cd..945b0721cc09 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/maximum_validation_with_unsigned_integer.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/maximum_validation_with_unsigned_integer.pyi @@ -37,7 +37,7 @@ class MaximumValidationWithUnsignedInteger( def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'MaximumValidationWithUnsignedInteger': diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/maxitems_validation.py b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/maxitems_validation.py index 41aff08bc5e6..c08e87f40260 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/maxitems_validation.py +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/maxitems_validation.py @@ -38,7 +38,7 @@ class MetaOapg: def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'MaxitemsValidation': diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/maxitems_validation.pyi b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/maxitems_validation.pyi index 055349d9569b..581f3627282f 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/maxitems_validation.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/maxitems_validation.pyi @@ -37,7 +37,7 @@ class MaxitemsValidation( def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'MaxitemsValidation': diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/maxlength_validation.py b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/maxlength_validation.py index dddcac7105be..4302596e65e4 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/maxlength_validation.py +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/maxlength_validation.py @@ -38,7 +38,7 @@ class MetaOapg: def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'MaxlengthValidation': diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/maxlength_validation.pyi b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/maxlength_validation.pyi index 4d8ace041a54..8c534135300f 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/maxlength_validation.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/maxlength_validation.pyi @@ -37,7 +37,7 @@ class MaxlengthValidation( def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'MaxlengthValidation': diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/maxproperties0_means_the_object_is_empty.py b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/maxproperties0_means_the_object_is_empty.py index b31b650f7ac9..563c8847ff77 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/maxproperties0_means_the_object_is_empty.py +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/maxproperties0_means_the_object_is_empty.py @@ -38,7 +38,7 @@ class MetaOapg: def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'Maxproperties0MeansTheObjectIsEmpty': diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/maxproperties0_means_the_object_is_empty.pyi b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/maxproperties0_means_the_object_is_empty.pyi index 8e38210796bd..e07b31375350 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/maxproperties0_means_the_object_is_empty.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/maxproperties0_means_the_object_is_empty.pyi @@ -37,7 +37,7 @@ class Maxproperties0MeansTheObjectIsEmpty( def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'Maxproperties0MeansTheObjectIsEmpty': diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/maxproperties_validation.py b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/maxproperties_validation.py index 21c8a075310a..12e24a587ba6 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/maxproperties_validation.py +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/maxproperties_validation.py @@ -38,7 +38,7 @@ class MetaOapg: def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'MaxpropertiesValidation': diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/maxproperties_validation.pyi b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/maxproperties_validation.pyi index 1ec07f78cd4d..245f240292db 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/maxproperties_validation.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/maxproperties_validation.pyi @@ -37,7 +37,7 @@ class MaxpropertiesValidation( def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'MaxpropertiesValidation': diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/minimum_validation.py b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/minimum_validation.py index b7be9a1a0445..c9fbe08be21c 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/minimum_validation.py +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/minimum_validation.py @@ -38,7 +38,7 @@ class MetaOapg: def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'MinimumValidation': diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/minimum_validation.pyi b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/minimum_validation.pyi index 98f0379c2f18..bc7b3723a1af 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/minimum_validation.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/minimum_validation.pyi @@ -37,7 +37,7 @@ class MinimumValidation( def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'MinimumValidation': diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/minimum_validation_with_signed_integer.py b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/minimum_validation_with_signed_integer.py index d98f7496a22e..b1c0f3f835a4 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/minimum_validation_with_signed_integer.py +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/minimum_validation_with_signed_integer.py @@ -38,7 +38,7 @@ class MetaOapg: def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'MinimumValidationWithSignedInteger': diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/minimum_validation_with_signed_integer.pyi b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/minimum_validation_with_signed_integer.pyi index 0538ce9df08c..62c1d5205a02 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/minimum_validation_with_signed_integer.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/minimum_validation_with_signed_integer.pyi @@ -37,7 +37,7 @@ class MinimumValidationWithSignedInteger( def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'MinimumValidationWithSignedInteger': diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/minitems_validation.py b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/minitems_validation.py index 3872e9da11a0..7ee440496313 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/minitems_validation.py +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/minitems_validation.py @@ -38,7 +38,7 @@ class MetaOapg: def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'MinitemsValidation': diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/minitems_validation.pyi b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/minitems_validation.pyi index 5ec4628da6f9..6b2dafc6b754 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/minitems_validation.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/minitems_validation.pyi @@ -37,7 +37,7 @@ class MinitemsValidation( def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'MinitemsValidation': diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/minlength_validation.py b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/minlength_validation.py index 5f3d6caf066a..1b21d9d50423 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/minlength_validation.py +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/minlength_validation.py @@ -38,7 +38,7 @@ class MetaOapg: def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'MinlengthValidation': diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/minlength_validation.pyi b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/minlength_validation.pyi index fe0f06df176e..221d2c728ceb 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/minlength_validation.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/minlength_validation.pyi @@ -37,7 +37,7 @@ class MinlengthValidation( def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'MinlengthValidation': diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/minproperties_validation.py b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/minproperties_validation.py index 4e98457421ec..a951d732a818 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/minproperties_validation.py +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/minproperties_validation.py @@ -38,7 +38,7 @@ class MetaOapg: def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'MinpropertiesValidation': diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/minproperties_validation.pyi b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/minproperties_validation.pyi index c7507d0e0fdf..04836e5e4334 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/minproperties_validation.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/minproperties_validation.pyi @@ -37,7 +37,7 @@ class MinpropertiesValidation( def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'MinpropertiesValidation': diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/model_not.py b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/model_not.py index 6c8ca3785d1d..9032bfcd0409 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/model_not.py +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/model_not.py @@ -38,7 +38,7 @@ class MetaOapg: def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'ModelNot': diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/model_not.pyi b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/model_not.pyi index 6c8ca3785d1d..9032bfcd0409 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/model_not.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/model_not.pyi @@ -38,7 +38,7 @@ class ModelNot( def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'ModelNot': diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/nested_allof_to_check_validation_semantics.py b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/nested_allof_to_check_validation_semantics.py index c3450351c11b..b680215febb8 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/nested_allof_to_check_validation_semantics.py +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/nested_allof_to_check_validation_semantics.py @@ -61,7 +61,7 @@ def all_of(cls): def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'all_of_0': @@ -90,7 +90,7 @@ def all_of(cls): def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'NestedAllofToCheckValidationSemantics': diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/nested_allof_to_check_validation_semantics.pyi b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/nested_allof_to_check_validation_semantics.pyi index c3450351c11b..b680215febb8 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/nested_allof_to_check_validation_semantics.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/nested_allof_to_check_validation_semantics.pyi @@ -61,7 +61,7 @@ class NestedAllofToCheckValidationSemantics( def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'all_of_0': @@ -90,7 +90,7 @@ class NestedAllofToCheckValidationSemantics( def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'NestedAllofToCheckValidationSemantics': diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/nested_anyof_to_check_validation_semantics.py b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/nested_anyof_to_check_validation_semantics.py index 9caa10971f08..092e76241be5 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/nested_anyof_to_check_validation_semantics.py +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/nested_anyof_to_check_validation_semantics.py @@ -61,7 +61,7 @@ def any_of(cls): def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'any_of_0': @@ -90,7 +90,7 @@ def any_of(cls): def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'NestedAnyofToCheckValidationSemantics': diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/nested_anyof_to_check_validation_semantics.pyi b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/nested_anyof_to_check_validation_semantics.pyi index 9caa10971f08..092e76241be5 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/nested_anyof_to_check_validation_semantics.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/nested_anyof_to_check_validation_semantics.pyi @@ -61,7 +61,7 @@ class NestedAnyofToCheckValidationSemantics( def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'any_of_0': @@ -90,7 +90,7 @@ class NestedAnyofToCheckValidationSemantics( def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'NestedAnyofToCheckValidationSemantics': diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/nested_items.py b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/nested_items.py index 5cf9c134f920..efd3e685b508 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/nested_items.py +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/nested_items.py @@ -75,7 +75,7 @@ def __getitem__(self, i: int) -> MetaOapg.items: def __new__( cls, - arg: typing.Union[typing.Tuple[typing.Union[MetaOapg.items, tuple, ]], typing.List[typing.Union[MetaOapg.items, tuple, ]]], + arg: typing.Union[typing.Tuple[typing.Union[MetaOapg.items, list, tuple, ]], typing.List[typing.Union[MetaOapg.items, list, tuple, ]]], _configuration: typing.Optional[schemas.Configuration] = None, ) -> 'items': return super().__new__( @@ -89,7 +89,7 @@ def __getitem__(self, i: int) -> MetaOapg.items: def __new__( cls, - arg: typing.Union[typing.Tuple[typing.Union[MetaOapg.items, tuple, ]], typing.List[typing.Union[MetaOapg.items, tuple, ]]], + arg: typing.Union[typing.Tuple[typing.Union[MetaOapg.items, list, tuple, ]], typing.List[typing.Union[MetaOapg.items, list, tuple, ]]], _configuration: typing.Optional[schemas.Configuration] = None, ) -> 'items': return super().__new__( @@ -103,7 +103,7 @@ def __getitem__(self, i: int) -> MetaOapg.items: def __new__( cls, - arg: typing.Union[typing.Tuple[typing.Union[MetaOapg.items, tuple, ]], typing.List[typing.Union[MetaOapg.items, tuple, ]]], + arg: typing.Union[typing.Tuple[typing.Union[MetaOapg.items, list, tuple, ]], typing.List[typing.Union[MetaOapg.items, list, tuple, ]]], _configuration: typing.Optional[schemas.Configuration] = None, ) -> 'NestedItems': return super().__new__( diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/nested_items.pyi b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/nested_items.pyi index 5cf9c134f920..efd3e685b508 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/nested_items.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/nested_items.pyi @@ -75,7 +75,7 @@ class NestedItems( def __new__( cls, - arg: typing.Union[typing.Tuple[typing.Union[MetaOapg.items, tuple, ]], typing.List[typing.Union[MetaOapg.items, tuple, ]]], + arg: typing.Union[typing.Tuple[typing.Union[MetaOapg.items, list, tuple, ]], typing.List[typing.Union[MetaOapg.items, list, tuple, ]]], _configuration: typing.Optional[schemas.Configuration] = None, ) -> 'items': return super().__new__( @@ -89,7 +89,7 @@ class NestedItems( def __new__( cls, - arg: typing.Union[typing.Tuple[typing.Union[MetaOapg.items, tuple, ]], typing.List[typing.Union[MetaOapg.items, tuple, ]]], + arg: typing.Union[typing.Tuple[typing.Union[MetaOapg.items, list, tuple, ]], typing.List[typing.Union[MetaOapg.items, list, tuple, ]]], _configuration: typing.Optional[schemas.Configuration] = None, ) -> 'items': return super().__new__( @@ -103,7 +103,7 @@ class NestedItems( def __new__( cls, - arg: typing.Union[typing.Tuple[typing.Union[MetaOapg.items, tuple, ]], typing.List[typing.Union[MetaOapg.items, tuple, ]]], + arg: typing.Union[typing.Tuple[typing.Union[MetaOapg.items, list, tuple, ]], typing.List[typing.Union[MetaOapg.items, list, tuple, ]]], _configuration: typing.Optional[schemas.Configuration] = None, ) -> 'NestedItems': return super().__new__( diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/nested_oneof_to_check_validation_semantics.py b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/nested_oneof_to_check_validation_semantics.py index 3eebe1a34e1e..e49e480813aa 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/nested_oneof_to_check_validation_semantics.py +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/nested_oneof_to_check_validation_semantics.py @@ -61,7 +61,7 @@ def one_of(cls): def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'one_of_0': @@ -90,7 +90,7 @@ def one_of(cls): def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'NestedOneofToCheckValidationSemantics': diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/nested_oneof_to_check_validation_semantics.pyi b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/nested_oneof_to_check_validation_semantics.pyi index 3eebe1a34e1e..e49e480813aa 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/nested_oneof_to_check_validation_semantics.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/nested_oneof_to_check_validation_semantics.pyi @@ -61,7 +61,7 @@ class NestedOneofToCheckValidationSemantics( def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'one_of_0': @@ -90,7 +90,7 @@ class NestedOneofToCheckValidationSemantics( def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'NestedOneofToCheckValidationSemantics': diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/not_more_complex_schema.py b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/not_more_complex_schema.py index 4d365a2ff96a..a834b13a13af 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/not_more_complex_schema.py +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/not_more_complex_schema.py @@ -87,7 +87,7 @@ def __new__( def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'NotMoreComplexSchema': diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/not_more_complex_schema.pyi b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/not_more_complex_schema.pyi index 4d365a2ff96a..a834b13a13af 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/not_more_complex_schema.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/not_more_complex_schema.pyi @@ -87,7 +87,7 @@ class NotMoreComplexSchema( def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'NotMoreComplexSchema': diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/object_properties_validation.py b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/object_properties_validation.py index 5ffd7ee6d383..2ccc91430352 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/object_properties_validation.py +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/object_properties_validation.py @@ -72,7 +72,7 @@ def get_item_oapg(self, name: typing.Union[typing.Literal["foo", "bar", ], str]) def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], foo: typing.Union[MetaOapg.properties.foo, decimal.Decimal, int, schemas.Unset] = schemas.unset, bar: typing.Union[MetaOapg.properties.bar, str, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/object_properties_validation.pyi b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/object_properties_validation.pyi index 5ffd7ee6d383..2ccc91430352 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/object_properties_validation.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/object_properties_validation.pyi @@ -72,7 +72,7 @@ class ObjectPropertiesValidation( def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], foo: typing.Union[MetaOapg.properties.foo, decimal.Decimal, int, schemas.Unset] = schemas.unset, bar: typing.Union[MetaOapg.properties.bar, str, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/oneof.py b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/oneof.py index fe737a8d29e6..f9921162f1dc 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/oneof.py +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/oneof.py @@ -47,7 +47,7 @@ class MetaOapg: def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'one_of_1': @@ -77,7 +77,7 @@ def one_of(cls): def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'Oneof': diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/oneof.pyi b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/oneof.pyi index eec1df86b284..4c790bb65ab1 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/oneof.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/oneof.pyi @@ -46,7 +46,7 @@ class Oneof( def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'one_of_1': @@ -76,7 +76,7 @@ class Oneof( def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'Oneof': diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/oneof_complex_types.py b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/oneof_complex_types.py index 529ee03d28e0..e25fd20503ab 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/oneof_complex_types.py +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/oneof_complex_types.py @@ -77,7 +77,7 @@ def get_item_oapg(self, name: typing.Union[typing.Literal["bar", ], str]): def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], bar: typing.Union[MetaOapg.properties.bar, decimal.Decimal, int, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], @@ -133,7 +133,7 @@ def get_item_oapg(self, name: typing.Union[typing.Literal["foo", ], str]): def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], foo: typing.Union[MetaOapg.properties.foo, str, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], @@ -165,7 +165,7 @@ def one_of(cls): def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'OneofComplexTypes': diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/oneof_complex_types.pyi b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/oneof_complex_types.pyi index 529ee03d28e0..e25fd20503ab 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/oneof_complex_types.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/oneof_complex_types.pyi @@ -77,7 +77,7 @@ class OneofComplexTypes( def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], bar: typing.Union[MetaOapg.properties.bar, decimal.Decimal, int, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], @@ -133,7 +133,7 @@ class OneofComplexTypes( def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], foo: typing.Union[MetaOapg.properties.foo, str, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], @@ -165,7 +165,7 @@ class OneofComplexTypes( def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'OneofComplexTypes': diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/oneof_with_base_schema.py b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/oneof_with_base_schema.py index e5ba20adaa59..9793b9ff8730 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/oneof_with_base_schema.py +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/oneof_with_base_schema.py @@ -47,7 +47,7 @@ class MetaOapg: def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'one_of_0': @@ -70,7 +70,7 @@ class MetaOapg: def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'one_of_1': diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/oneof_with_base_schema.pyi b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/oneof_with_base_schema.pyi index f435aaf69c90..ee7493013e4c 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/oneof_with_base_schema.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/oneof_with_base_schema.pyi @@ -46,7 +46,7 @@ class OneofWithBaseSchema( def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'one_of_0': @@ -68,7 +68,7 @@ class OneofWithBaseSchema( def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'one_of_1': diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/oneof_with_empty_schema.py b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/oneof_with_empty_schema.py index 1918ba07dda2..1954ee557959 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/oneof_with_empty_schema.py +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/oneof_with_empty_schema.py @@ -55,7 +55,7 @@ def one_of(cls): def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'OneofWithEmptySchema': diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/oneof_with_empty_schema.pyi b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/oneof_with_empty_schema.pyi index 1918ba07dda2..1954ee557959 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/oneof_with_empty_schema.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/oneof_with_empty_schema.pyi @@ -55,7 +55,7 @@ class OneofWithEmptySchema( def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'OneofWithEmptySchema': diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/oneof_with_required.py b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/oneof_with_required.py index 71a99120b6a0..502c17fba7a8 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/oneof_with_required.py +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/oneof_with_required.py @@ -53,7 +53,7 @@ class MetaOapg: def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'one_of_0': @@ -82,7 +82,7 @@ class MetaOapg: def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'one_of_1': diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/oneof_with_required.pyi b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/oneof_with_required.pyi index 71a99120b6a0..502c17fba7a8 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/oneof_with_required.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/oneof_with_required.pyi @@ -53,7 +53,7 @@ class OneofWithRequired( def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'one_of_0': @@ -82,7 +82,7 @@ class OneofWithRequired( def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'one_of_1': diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/pattern_is_not_anchored.py b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/pattern_is_not_anchored.py index dc94662c92f9..9c37d4f893f2 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/pattern_is_not_anchored.py +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/pattern_is_not_anchored.py @@ -40,7 +40,7 @@ class MetaOapg: def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'PatternIsNotAnchored': diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/pattern_is_not_anchored.pyi b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/pattern_is_not_anchored.pyi index 9f1c87ec75dc..5cc8bc0bd130 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/pattern_is_not_anchored.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/pattern_is_not_anchored.pyi @@ -37,7 +37,7 @@ class PatternIsNotAnchored( def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'PatternIsNotAnchored': diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/pattern_validation.py b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/pattern_validation.py index 61151d93c860..c7bd7f6fb60b 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/pattern_validation.py +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/pattern_validation.py @@ -40,7 +40,7 @@ class MetaOapg: def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'PatternValidation': diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/pattern_validation.pyi b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/pattern_validation.pyi index e31e6311b54a..68c9978091d1 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/pattern_validation.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/pattern_validation.pyi @@ -37,7 +37,7 @@ class PatternValidation( def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'PatternValidation': diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/properties_with_escaped_characters.py b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/properties_with_escaped_characters.py index b535b256e031..24d6a27b009c 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/properties_with_escaped_characters.py +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/properties_with_escaped_characters.py @@ -104,7 +104,7 @@ def get_item_oapg(self, name: typing.Union[typing.Literal["foo\nbar", "foo\"bar" def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'PropertiesWithEscapedCharacters': diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/properties_with_escaped_characters.pyi b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/properties_with_escaped_characters.pyi index b535b256e031..24d6a27b009c 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/properties_with_escaped_characters.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/properties_with_escaped_characters.pyi @@ -104,7 +104,7 @@ class PropertiesWithEscapedCharacters( def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'PropertiesWithEscapedCharacters': diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/property_named_ref_that_is_not_a_reference.py b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/property_named_ref_that_is_not_a_reference.py index 678e8df91158..c914425049ca 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/property_named_ref_that_is_not_a_reference.py +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/property_named_ref_that_is_not_a_reference.py @@ -64,7 +64,7 @@ def get_item_oapg(self, name: typing.Union[typing.Literal["$ref", ], str]): def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'PropertyNamedRefThatIsNotAReference': diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/property_named_ref_that_is_not_a_reference.pyi b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/property_named_ref_that_is_not_a_reference.pyi index 678e8df91158..c914425049ca 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/property_named_ref_that_is_not_a_reference.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/property_named_ref_that_is_not_a_reference.pyi @@ -64,7 +64,7 @@ class PropertyNamedRefThatIsNotAReference( def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'PropertyNamedRefThatIsNotAReference': diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/ref_in_allof.py b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/ref_in_allof.py index ce9d565e91c0..2de501fa4a77 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/ref_in_allof.py +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/ref_in_allof.py @@ -52,7 +52,7 @@ def all_of(cls): def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'RefInAllof': diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/ref_in_allof.pyi b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/ref_in_allof.pyi index ce9d565e91c0..2de501fa4a77 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/ref_in_allof.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/ref_in_allof.pyi @@ -52,7 +52,7 @@ class RefInAllof( def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'RefInAllof': diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/ref_in_anyof.py b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/ref_in_anyof.py index a4b2e21e5371..4370f3b49b17 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/ref_in_anyof.py +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/ref_in_anyof.py @@ -52,7 +52,7 @@ def any_of(cls): def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'RefInAnyof': diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/ref_in_anyof.pyi b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/ref_in_anyof.pyi index a4b2e21e5371..4370f3b49b17 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/ref_in_anyof.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/ref_in_anyof.pyi @@ -52,7 +52,7 @@ class RefInAnyof( def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'RefInAnyof': diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/ref_in_not.py b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/ref_in_not.py index 18cc4188a240..733ca32e7af6 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/ref_in_not.py +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/ref_in_not.py @@ -42,7 +42,7 @@ def not_schema(cls) -> typing.Type['PropertyNamedRefThatIsNotAReference']: def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'RefInNot': diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/ref_in_not.pyi b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/ref_in_not.pyi index 18cc4188a240..733ca32e7af6 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/ref_in_not.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/ref_in_not.pyi @@ -42,7 +42,7 @@ class RefInNot( def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'RefInNot': diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/ref_in_oneof.py b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/ref_in_oneof.py index 3a1c181a2906..37864ea4df27 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/ref_in_oneof.py +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/ref_in_oneof.py @@ -52,7 +52,7 @@ def one_of(cls): def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'RefInOneof': diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/ref_in_oneof.pyi b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/ref_in_oneof.pyi index 3a1c181a2906..37864ea4df27 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/ref_in_oneof.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/ref_in_oneof.pyi @@ -52,7 +52,7 @@ class RefInOneof( def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'RefInOneof': diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/ref_in_property.py b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/ref_in_property.py index 3040ca95fd1d..2c0ee55a649d 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/ref_in_property.py +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/ref_in_property.py @@ -68,7 +68,7 @@ def get_item_oapg(self, name: typing.Union[typing.Literal["a", ], str]): def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], a: typing.Union['PropertyNamedRefThatIsNotAReference', schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/ref_in_property.pyi b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/ref_in_property.pyi index 3040ca95fd1d..2c0ee55a649d 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/ref_in_property.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/ref_in_property.pyi @@ -68,7 +68,7 @@ class RefInProperty( def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], a: typing.Union['PropertyNamedRefThatIsNotAReference', schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/required_default_validation.py b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/required_default_validation.py index 0da030d1e44a..405d76c29deb 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/required_default_validation.py +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/required_default_validation.py @@ -64,8 +64,8 @@ def get_item_oapg(self, name: typing.Union[typing.Literal["foo", ], str]): def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], - foo: typing.Union[MetaOapg.properties.foo, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, schemas.Unset] = schemas.unset, + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + foo: typing.Union[MetaOapg.properties.foo, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'RequiredDefaultValidation': diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/required_default_validation.pyi b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/required_default_validation.pyi index 0da030d1e44a..405d76c29deb 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/required_default_validation.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/required_default_validation.pyi @@ -64,8 +64,8 @@ class RequiredDefaultValidation( def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], - foo: typing.Union[MetaOapg.properties.foo, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, schemas.Unset] = schemas.unset, + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + foo: typing.Union[MetaOapg.properties.foo, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'RequiredDefaultValidation': diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/required_validation.py b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/required_validation.py index a61940a0fc81..a3005177abcd 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/required_validation.py +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/required_validation.py @@ -77,9 +77,9 @@ def get_item_oapg(self, name: typing.Union[typing.Literal["foo", "bar", ], str]) def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], - foo: typing.Union[MetaOapg.properties.foo, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], - bar: typing.Union[MetaOapg.properties.bar, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, schemas.Unset] = schemas.unset, + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + foo: typing.Union[MetaOapg.properties.foo, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + bar: typing.Union[MetaOapg.properties.bar, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'RequiredValidation': diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/required_validation.pyi b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/required_validation.pyi index a61940a0fc81..a3005177abcd 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/required_validation.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/required_validation.pyi @@ -77,9 +77,9 @@ class RequiredValidation( def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], - foo: typing.Union[MetaOapg.properties.foo, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], - bar: typing.Union[MetaOapg.properties.bar, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, schemas.Unset] = schemas.unset, + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + foo: typing.Union[MetaOapg.properties.foo, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + bar: typing.Union[MetaOapg.properties.bar, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'RequiredValidation': diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/required_with_empty_array.py b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/required_with_empty_array.py index a829b287ebf9..626a3dcd0164 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/required_with_empty_array.py +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/required_with_empty_array.py @@ -64,8 +64,8 @@ def get_item_oapg(self, name: typing.Union[typing.Literal["foo", ], str]): def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], - foo: typing.Union[MetaOapg.properties.foo, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, schemas.Unset] = schemas.unset, + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + foo: typing.Union[MetaOapg.properties.foo, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'RequiredWithEmptyArray': diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/required_with_empty_array.pyi b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/required_with_empty_array.pyi index a829b287ebf9..626a3dcd0164 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/required_with_empty_array.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/required_with_empty_array.pyi @@ -64,8 +64,8 @@ class RequiredWithEmptyArray( def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], - foo: typing.Union[MetaOapg.properties.foo, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, schemas.Unset] = schemas.unset, + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], + foo: typing.Union[MetaOapg.properties.foo, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'RequiredWithEmptyArray': diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/required_with_escaped_characters.py b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/required_with_escaped_characters.py index 509ce3046545..efe9b35400b3 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/required_with_escaped_characters.py +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/required_with_escaped_characters.py @@ -46,7 +46,7 @@ class MetaOapg: def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'RequiredWithEscapedCharacters': diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/required_with_escaped_characters.pyi b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/required_with_escaped_characters.pyi index 509ce3046545..efe9b35400b3 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/required_with_escaped_characters.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/required_with_escaped_characters.pyi @@ -46,7 +46,7 @@ class RequiredWithEscapedCharacters( def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'RequiredWithEscapedCharacters': diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/uniqueitems_false_validation.py b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/uniqueitems_false_validation.py index 6e2023ea5ad8..ff92951a11e9 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/uniqueitems_false_validation.py +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/uniqueitems_false_validation.py @@ -38,7 +38,7 @@ class MetaOapg: def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'UniqueitemsFalseValidation': diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/uniqueitems_false_validation.pyi b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/uniqueitems_false_validation.pyi index 66e550878fde..7b17a2388f2d 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/uniqueitems_false_validation.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/uniqueitems_false_validation.pyi @@ -37,7 +37,7 @@ class UniqueitemsFalseValidation( def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'UniqueitemsFalseValidation': diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/uniqueitems_validation.py b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/uniqueitems_validation.py index fd310fd89ccd..25a3a5d827f9 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/uniqueitems_validation.py +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/uniqueitems_validation.py @@ -38,7 +38,7 @@ class MetaOapg: def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'UniqueitemsValidation': diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/uniqueitems_validation.pyi b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/uniqueitems_validation.pyi index 613d0d649a74..6e623acc8dfe 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/uniqueitems_validation.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/uniqueitems_validation.pyi @@ -37,7 +37,7 @@ class UniqueitemsValidation( def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'UniqueitemsValidation': diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/uri_format.py b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/uri_format.py index 99640c532524..94c3f0853183 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/uri_format.py +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/uri_format.py @@ -38,7 +38,7 @@ class MetaOapg: def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'UriFormat': diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/uri_format.pyi b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/uri_format.pyi index 99640c532524..94c3f0853183 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/uri_format.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/uri_format.pyi @@ -38,7 +38,7 @@ class UriFormat( def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'UriFormat': diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/uri_reference_format.py b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/uri_reference_format.py index f844d5051094..ec189721d835 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/uri_reference_format.py +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/uri_reference_format.py @@ -38,7 +38,7 @@ class MetaOapg: def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'UriReferenceFormat': diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/uri_reference_format.pyi b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/uri_reference_format.pyi index f844d5051094..ec189721d835 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/uri_reference_format.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/uri_reference_format.pyi @@ -38,7 +38,7 @@ class UriReferenceFormat( def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'UriReferenceFormat': diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/uri_template_format.py b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/uri_template_format.py index a8915f195686..384bda61c53e 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/uri_template_format.py +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/uri_template_format.py @@ -38,7 +38,7 @@ class MetaOapg: def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'UriTemplateFormat': diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/uri_template_format.pyi b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/uri_template_format.pyi index a8915f195686..384bda61c53e 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/uri_template_format.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/model/uri_template_format.pyi @@ -38,7 +38,7 @@ class UriTemplateFormat( def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'UriTemplateFormat': diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/request_body_post_date_time_format_request_body/post.py b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/request_body_post_date_time_format_request_body/post.py index b09fbbe159a3..042f5d4b8069 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/request_body_post_date_time_format_request_body/post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/request_body_post_date_time_format_request_body/post.py @@ -40,7 +40,7 @@ class MetaOapg: def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'SchemaForRequestBodyApplicationJson': @@ -80,7 +80,7 @@ class BaseApi(api_client.Api): def _post_date_time_format_request_body_oapg( self: api_client.Api, - body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], content_type: str = 'application/json', stream: bool = False, timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, @@ -140,7 +140,7 @@ class PostDateTimeFormatRequestBody(BaseApi): def post_date_time_format_request_body( self: BaseApi, - body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], content_type: str = 'application/json', stream: bool = False, timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, @@ -163,7 +163,7 @@ class ApiForpost(BaseApi): def post( self: BaseApi, - body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], content_type: str = 'application/json', stream: bool = False, timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/request_body_post_date_time_format_request_body/post.pyi b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/request_body_post_date_time_format_request_body/post.pyi index f298da9fc27d..8c8f06bc6d31 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/request_body_post_date_time_format_request_body/post.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/request_body_post_date_time_format_request_body/post.pyi @@ -38,7 +38,7 @@ class SchemaForRequestBodyApplicationJson( def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'SchemaForRequestBodyApplicationJson': @@ -54,7 +54,7 @@ class BaseApi(api_client.Api): def _post_date_time_format_request_body_oapg( self: api_client.Api, - body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], content_type: str = 'application/json', stream: bool = False, timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, @@ -114,7 +114,7 @@ class PostDateTimeFormatRequestBody(BaseApi): def post_date_time_format_request_body( self: BaseApi, - body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], content_type: str = 'application/json', stream: bool = False, timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, @@ -137,7 +137,7 @@ class ApiForpost(BaseApi): def post( self: BaseApi, - body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], content_type: str = 'application/json', stream: bool = False, timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/request_body_post_email_format_request_body/post.py b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/request_body_post_email_format_request_body/post.py index 4d4ca3c1856e..9f1a22e77789 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/request_body_post_email_format_request_body/post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/request_body_post_email_format_request_body/post.py @@ -39,7 +39,7 @@ class MetaOapg: def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'SchemaForRequestBodyApplicationJson': @@ -79,7 +79,7 @@ class BaseApi(api_client.Api): def _post_email_format_request_body_oapg( self: api_client.Api, - body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], content_type: str = 'application/json', stream: bool = False, timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, @@ -139,7 +139,7 @@ class PostEmailFormatRequestBody(BaseApi): def post_email_format_request_body( self: BaseApi, - body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], content_type: str = 'application/json', stream: bool = False, timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, @@ -162,7 +162,7 @@ class ApiForpost(BaseApi): def post( self: BaseApi, - body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], content_type: str = 'application/json', stream: bool = False, timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/request_body_post_email_format_request_body/post.pyi b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/request_body_post_email_format_request_body/post.pyi index db470100e629..531cfb06e3cb 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/request_body_post_email_format_request_body/post.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/request_body_post_email_format_request_body/post.pyi @@ -37,7 +37,7 @@ class SchemaForRequestBodyApplicationJson( def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'SchemaForRequestBodyApplicationJson': @@ -53,7 +53,7 @@ class BaseApi(api_client.Api): def _post_email_format_request_body_oapg( self: api_client.Api, - body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], content_type: str = 'application/json', stream: bool = False, timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, @@ -113,7 +113,7 @@ class PostEmailFormatRequestBody(BaseApi): def post_email_format_request_body( self: BaseApi, - body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], content_type: str = 'application/json', stream: bool = False, timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, @@ -136,7 +136,7 @@ class ApiForpost(BaseApi): def post( self: BaseApi, - body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], content_type: str = 'application/json', stream: bool = False, timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/request_body_post_hostname_format_request_body/post.py b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/request_body_post_hostname_format_request_body/post.py index 5075bb70ce84..5ae1606e8a4b 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/request_body_post_hostname_format_request_body/post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/request_body_post_hostname_format_request_body/post.py @@ -39,7 +39,7 @@ class MetaOapg: def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'SchemaForRequestBodyApplicationJson': @@ -79,7 +79,7 @@ class BaseApi(api_client.Api): def _post_hostname_format_request_body_oapg( self: api_client.Api, - body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], content_type: str = 'application/json', stream: bool = False, timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, @@ -139,7 +139,7 @@ class PostHostnameFormatRequestBody(BaseApi): def post_hostname_format_request_body( self: BaseApi, - body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], content_type: str = 'application/json', stream: bool = False, timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, @@ -162,7 +162,7 @@ class ApiForpost(BaseApi): def post( self: BaseApi, - body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], content_type: str = 'application/json', stream: bool = False, timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/request_body_post_hostname_format_request_body/post.pyi b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/request_body_post_hostname_format_request_body/post.pyi index c4e1d18748af..4047b10dba18 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/request_body_post_hostname_format_request_body/post.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/request_body_post_hostname_format_request_body/post.pyi @@ -37,7 +37,7 @@ class SchemaForRequestBodyApplicationJson( def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'SchemaForRequestBodyApplicationJson': @@ -53,7 +53,7 @@ class BaseApi(api_client.Api): def _post_hostname_format_request_body_oapg( self: api_client.Api, - body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], content_type: str = 'application/json', stream: bool = False, timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, @@ -113,7 +113,7 @@ class PostHostnameFormatRequestBody(BaseApi): def post_hostname_format_request_body( self: BaseApi, - body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], content_type: str = 'application/json', stream: bool = False, timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, @@ -136,7 +136,7 @@ class ApiForpost(BaseApi): def post( self: BaseApi, - body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], content_type: str = 'application/json', stream: bool = False, timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/request_body_post_ipv4_format_request_body/post.py b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/request_body_post_ipv4_format_request_body/post.py index e09f91e244a9..97260e7e3e38 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/request_body_post_ipv4_format_request_body/post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/request_body_post_ipv4_format_request_body/post.py @@ -39,7 +39,7 @@ class MetaOapg: def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'SchemaForRequestBodyApplicationJson': @@ -79,7 +79,7 @@ class BaseApi(api_client.Api): def _post_ipv4_format_request_body_oapg( self: api_client.Api, - body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], content_type: str = 'application/json', stream: bool = False, timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, @@ -139,7 +139,7 @@ class PostIpv4FormatRequestBody(BaseApi): def post_ipv4_format_request_body( self: BaseApi, - body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], content_type: str = 'application/json', stream: bool = False, timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, @@ -162,7 +162,7 @@ class ApiForpost(BaseApi): def post( self: BaseApi, - body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], content_type: str = 'application/json', stream: bool = False, timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/request_body_post_ipv4_format_request_body/post.pyi b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/request_body_post_ipv4_format_request_body/post.pyi index fa38b2bd4d3e..e73cdb05feeb 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/request_body_post_ipv4_format_request_body/post.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/request_body_post_ipv4_format_request_body/post.pyi @@ -37,7 +37,7 @@ class SchemaForRequestBodyApplicationJson( def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'SchemaForRequestBodyApplicationJson': @@ -53,7 +53,7 @@ class BaseApi(api_client.Api): def _post_ipv4_format_request_body_oapg( self: api_client.Api, - body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], content_type: str = 'application/json', stream: bool = False, timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, @@ -113,7 +113,7 @@ class PostIpv4FormatRequestBody(BaseApi): def post_ipv4_format_request_body( self: BaseApi, - body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], content_type: str = 'application/json', stream: bool = False, timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, @@ -136,7 +136,7 @@ class ApiForpost(BaseApi): def post( self: BaseApi, - body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], content_type: str = 'application/json', stream: bool = False, timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/request_body_post_ipv6_format_request_body/post.py b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/request_body_post_ipv6_format_request_body/post.py index 83bc09d5e509..b0b359768231 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/request_body_post_ipv6_format_request_body/post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/request_body_post_ipv6_format_request_body/post.py @@ -39,7 +39,7 @@ class MetaOapg: def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'SchemaForRequestBodyApplicationJson': @@ -79,7 +79,7 @@ class BaseApi(api_client.Api): def _post_ipv6_format_request_body_oapg( self: api_client.Api, - body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], content_type: str = 'application/json', stream: bool = False, timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, @@ -139,7 +139,7 @@ class PostIpv6FormatRequestBody(BaseApi): def post_ipv6_format_request_body( self: BaseApi, - body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], content_type: str = 'application/json', stream: bool = False, timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, @@ -162,7 +162,7 @@ class ApiForpost(BaseApi): def post( self: BaseApi, - body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], content_type: str = 'application/json', stream: bool = False, timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/request_body_post_ipv6_format_request_body/post.pyi b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/request_body_post_ipv6_format_request_body/post.pyi index 1ad8961a5680..b006dc2e80fd 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/request_body_post_ipv6_format_request_body/post.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/request_body_post_ipv6_format_request_body/post.pyi @@ -37,7 +37,7 @@ class SchemaForRequestBodyApplicationJson( def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'SchemaForRequestBodyApplicationJson': @@ -53,7 +53,7 @@ class BaseApi(api_client.Api): def _post_ipv6_format_request_body_oapg( self: api_client.Api, - body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], content_type: str = 'application/json', stream: bool = False, timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, @@ -113,7 +113,7 @@ class PostIpv6FormatRequestBody(BaseApi): def post_ipv6_format_request_body( self: BaseApi, - body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], content_type: str = 'application/json', stream: bool = False, timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, @@ -136,7 +136,7 @@ class ApiForpost(BaseApi): def post( self: BaseApi, - body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], content_type: str = 'application/json', stream: bool = False, timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/request_body_post_json_pointer_format_request_body/post.py b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/request_body_post_json_pointer_format_request_body/post.py index a78e0a4c710d..867af0ddbb5c 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/request_body_post_json_pointer_format_request_body/post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/request_body_post_json_pointer_format_request_body/post.py @@ -39,7 +39,7 @@ class MetaOapg: def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'SchemaForRequestBodyApplicationJson': @@ -79,7 +79,7 @@ class BaseApi(api_client.Api): def _post_json_pointer_format_request_body_oapg( self: api_client.Api, - body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], content_type: str = 'application/json', stream: bool = False, timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, @@ -139,7 +139,7 @@ class PostJsonPointerFormatRequestBody(BaseApi): def post_json_pointer_format_request_body( self: BaseApi, - body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], content_type: str = 'application/json', stream: bool = False, timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, @@ -162,7 +162,7 @@ class ApiForpost(BaseApi): def post( self: BaseApi, - body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], content_type: str = 'application/json', stream: bool = False, timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/request_body_post_json_pointer_format_request_body/post.pyi b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/request_body_post_json_pointer_format_request_body/post.pyi index 2c354055474b..2c11566b8faf 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/request_body_post_json_pointer_format_request_body/post.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/request_body_post_json_pointer_format_request_body/post.pyi @@ -37,7 +37,7 @@ class SchemaForRequestBodyApplicationJson( def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'SchemaForRequestBodyApplicationJson': @@ -53,7 +53,7 @@ class BaseApi(api_client.Api): def _post_json_pointer_format_request_body_oapg( self: api_client.Api, - body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], content_type: str = 'application/json', stream: bool = False, timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, @@ -113,7 +113,7 @@ class PostJsonPointerFormatRequestBody(BaseApi): def post_json_pointer_format_request_body( self: BaseApi, - body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], content_type: str = 'application/json', stream: bool = False, timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, @@ -136,7 +136,7 @@ class ApiForpost(BaseApi): def post( self: BaseApi, - body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], content_type: str = 'application/json', stream: bool = False, timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/request_body_post_not_more_complex_schema_request_body/post.py b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/request_body_post_not_more_complex_schema_request_body/post.py index 56cd3c9a3b62..43410750205f 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/request_body_post_not_more_complex_schema_request_body/post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/request_body_post_not_more_complex_schema_request_body/post.py @@ -88,7 +88,7 @@ def __new__( def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'SchemaForRequestBodyApplicationJson': @@ -128,7 +128,7 @@ class BaseApi(api_client.Api): def _post_not_more_complex_schema_request_body_oapg( self: api_client.Api, - body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], content_type: str = 'application/json', stream: bool = False, timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, @@ -188,7 +188,7 @@ class PostNotMoreComplexSchemaRequestBody(BaseApi): def post_not_more_complex_schema_request_body( self: BaseApi, - body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], content_type: str = 'application/json', stream: bool = False, timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, @@ -211,7 +211,7 @@ class ApiForpost(BaseApi): def post( self: BaseApi, - body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], content_type: str = 'application/json', stream: bool = False, timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/request_body_post_not_more_complex_schema_request_body/post.pyi b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/request_body_post_not_more_complex_schema_request_body/post.pyi index 302f24c636a8..5498ab15c715 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/request_body_post_not_more_complex_schema_request_body/post.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/request_body_post_not_more_complex_schema_request_body/post.pyi @@ -86,7 +86,7 @@ class SchemaForRequestBodyApplicationJson( def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'SchemaForRequestBodyApplicationJson': @@ -102,7 +102,7 @@ class BaseApi(api_client.Api): def _post_not_more_complex_schema_request_body_oapg( self: api_client.Api, - body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], content_type: str = 'application/json', stream: bool = False, timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, @@ -162,7 +162,7 @@ class PostNotMoreComplexSchemaRequestBody(BaseApi): def post_not_more_complex_schema_request_body( self: BaseApi, - body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], content_type: str = 'application/json', stream: bool = False, timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, @@ -185,7 +185,7 @@ class ApiForpost(BaseApi): def post( self: BaseApi, - body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], content_type: str = 'application/json', stream: bool = False, timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/request_body_post_not_request_body/post.py b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/request_body_post_not_request_body/post.py index efdad75741ac..df347fdf1f00 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/request_body_post_not_request_body/post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/request_body_post_not_request_body/post.py @@ -39,7 +39,7 @@ class MetaOapg: def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'SchemaForRequestBodyApplicationJson': @@ -79,7 +79,7 @@ class BaseApi(api_client.Api): def _post_not_request_body_oapg( self: api_client.Api, - body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], content_type: str = 'application/json', stream: bool = False, timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, @@ -139,7 +139,7 @@ class PostNotRequestBody(BaseApi): def post_not_request_body( self: BaseApi, - body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], content_type: str = 'application/json', stream: bool = False, timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, @@ -162,7 +162,7 @@ class ApiForpost(BaseApi): def post( self: BaseApi, - body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], content_type: str = 'application/json', stream: bool = False, timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/request_body_post_not_request_body/post.pyi b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/request_body_post_not_request_body/post.pyi index e9fc607bc91d..31d807904615 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/request_body_post_not_request_body/post.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/request_body_post_not_request_body/post.pyi @@ -37,7 +37,7 @@ class SchemaForRequestBodyApplicationJson( def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'SchemaForRequestBodyApplicationJson': @@ -53,7 +53,7 @@ class BaseApi(api_client.Api): def _post_not_request_body_oapg( self: api_client.Api, - body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], content_type: str = 'application/json', stream: bool = False, timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, @@ -113,7 +113,7 @@ class PostNotRequestBody(BaseApi): def post_not_request_body( self: BaseApi, - body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], content_type: str = 'application/json', stream: bool = False, timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, @@ -136,7 +136,7 @@ class ApiForpost(BaseApi): def post( self: BaseApi, - body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], content_type: str = 'application/json', stream: bool = False, timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/request_body_post_ref_in_not_request_body/post.py b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/request_body_post_ref_in_not_request_body/post.py index e6c81167f560..9fe8bdd2ff60 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/request_body_post_ref_in_not_request_body/post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/request_body_post_ref_in_not_request_body/post.py @@ -45,7 +45,7 @@ def not_schema(cls) -> typing.Type['PropertyNamedRefThatIsNotAReference']: def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'SchemaForRequestBodyApplicationJson': @@ -85,7 +85,7 @@ class BaseApi(api_client.Api): def _post_ref_in_not_request_body_oapg( self: api_client.Api, - body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], content_type: str = 'application/json', stream: bool = False, timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, @@ -145,7 +145,7 @@ class PostRefInNotRequestBody(BaseApi): def post_ref_in_not_request_body( self: BaseApi, - body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], content_type: str = 'application/json', stream: bool = False, timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, @@ -168,7 +168,7 @@ class ApiForpost(BaseApi): def post( self: BaseApi, - body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], content_type: str = 'application/json', stream: bool = False, timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/request_body_post_ref_in_not_request_body/post.pyi b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/request_body_post_ref_in_not_request_body/post.pyi index ca1b5ea66a4b..fc08626d571a 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/request_body_post_ref_in_not_request_body/post.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/request_body_post_ref_in_not_request_body/post.pyi @@ -43,7 +43,7 @@ class SchemaForRequestBodyApplicationJson( def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'SchemaForRequestBodyApplicationJson': @@ -59,7 +59,7 @@ class BaseApi(api_client.Api): def _post_ref_in_not_request_body_oapg( self: api_client.Api, - body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], content_type: str = 'application/json', stream: bool = False, timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, @@ -119,7 +119,7 @@ class PostRefInNotRequestBody(BaseApi): def post_ref_in_not_request_body( self: BaseApi, - body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], content_type: str = 'application/json', stream: bool = False, timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, @@ -142,7 +142,7 @@ class ApiForpost(BaseApi): def post( self: BaseApi, - body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], content_type: str = 'application/json', stream: bool = False, timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/request_body_post_required_with_escaped_characters_request_body/post.py b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/request_body_post_required_with_escaped_characters_request_body/post.py index 37ac12a74484..9dbf8e9c1afd 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/request_body_post_required_with_escaped_characters_request_body/post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/request_body_post_required_with_escaped_characters_request_body/post.py @@ -47,7 +47,7 @@ class MetaOapg: def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'SchemaForRequestBodyApplicationJson': @@ -87,7 +87,7 @@ class BaseApi(api_client.Api): def _post_required_with_escaped_characters_request_body_oapg( self: api_client.Api, - body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], content_type: str = 'application/json', stream: bool = False, timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, @@ -147,7 +147,7 @@ class PostRequiredWithEscapedCharactersRequestBody(BaseApi): def post_required_with_escaped_characters_request_body( self: BaseApi, - body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], content_type: str = 'application/json', stream: bool = False, timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, @@ -170,7 +170,7 @@ class ApiForpost(BaseApi): def post( self: BaseApi, - body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], content_type: str = 'application/json', stream: bool = False, timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/request_body_post_required_with_escaped_characters_request_body/post.pyi b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/request_body_post_required_with_escaped_characters_request_body/post.pyi index f3cdcf785678..b9ed80af645b 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/request_body_post_required_with_escaped_characters_request_body/post.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/request_body_post_required_with_escaped_characters_request_body/post.pyi @@ -45,7 +45,7 @@ class SchemaForRequestBodyApplicationJson( def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'SchemaForRequestBodyApplicationJson': @@ -61,7 +61,7 @@ class BaseApi(api_client.Api): def _post_required_with_escaped_characters_request_body_oapg( self: api_client.Api, - body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], content_type: str = 'application/json', stream: bool = False, timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, @@ -121,7 +121,7 @@ class PostRequiredWithEscapedCharactersRequestBody(BaseApi): def post_required_with_escaped_characters_request_body( self: BaseApi, - body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], content_type: str = 'application/json', stream: bool = False, timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, @@ -144,7 +144,7 @@ class ApiForpost(BaseApi): def post( self: BaseApi, - body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], content_type: str = 'application/json', stream: bool = False, timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/request_body_post_uri_format_request_body/post.py b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/request_body_post_uri_format_request_body/post.py index ddac7a5cd3ab..892f3196f02f 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/request_body_post_uri_format_request_body/post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/request_body_post_uri_format_request_body/post.py @@ -39,7 +39,7 @@ class MetaOapg: def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'SchemaForRequestBodyApplicationJson': @@ -79,7 +79,7 @@ class BaseApi(api_client.Api): def _post_uri_format_request_body_oapg( self: api_client.Api, - body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], content_type: str = 'application/json', stream: bool = False, timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, @@ -139,7 +139,7 @@ class PostUriFormatRequestBody(BaseApi): def post_uri_format_request_body( self: BaseApi, - body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], content_type: str = 'application/json', stream: bool = False, timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, @@ -162,7 +162,7 @@ class ApiForpost(BaseApi): def post( self: BaseApi, - body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], content_type: str = 'application/json', stream: bool = False, timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/request_body_post_uri_format_request_body/post.pyi b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/request_body_post_uri_format_request_body/post.pyi index d3d3dd5da949..9351f6414338 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/request_body_post_uri_format_request_body/post.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/request_body_post_uri_format_request_body/post.pyi @@ -37,7 +37,7 @@ class SchemaForRequestBodyApplicationJson( def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'SchemaForRequestBodyApplicationJson': @@ -53,7 +53,7 @@ class BaseApi(api_client.Api): def _post_uri_format_request_body_oapg( self: api_client.Api, - body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], content_type: str = 'application/json', stream: bool = False, timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, @@ -113,7 +113,7 @@ class PostUriFormatRequestBody(BaseApi): def post_uri_format_request_body( self: BaseApi, - body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], content_type: str = 'application/json', stream: bool = False, timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, @@ -136,7 +136,7 @@ class ApiForpost(BaseApi): def post( self: BaseApi, - body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], content_type: str = 'application/json', stream: bool = False, timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/request_body_post_uri_reference_format_request_body/post.py b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/request_body_post_uri_reference_format_request_body/post.py index b28920337848..902c98496171 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/request_body_post_uri_reference_format_request_body/post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/request_body_post_uri_reference_format_request_body/post.py @@ -39,7 +39,7 @@ class MetaOapg: def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'SchemaForRequestBodyApplicationJson': @@ -79,7 +79,7 @@ class BaseApi(api_client.Api): def _post_uri_reference_format_request_body_oapg( self: api_client.Api, - body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], content_type: str = 'application/json', stream: bool = False, timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, @@ -139,7 +139,7 @@ class PostUriReferenceFormatRequestBody(BaseApi): def post_uri_reference_format_request_body( self: BaseApi, - body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], content_type: str = 'application/json', stream: bool = False, timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, @@ -162,7 +162,7 @@ class ApiForpost(BaseApi): def post( self: BaseApi, - body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], content_type: str = 'application/json', stream: bool = False, timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/request_body_post_uri_reference_format_request_body/post.pyi b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/request_body_post_uri_reference_format_request_body/post.pyi index 8c0a18d11860..d3a7da6a052c 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/request_body_post_uri_reference_format_request_body/post.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/request_body_post_uri_reference_format_request_body/post.pyi @@ -37,7 +37,7 @@ class SchemaForRequestBodyApplicationJson( def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'SchemaForRequestBodyApplicationJson': @@ -53,7 +53,7 @@ class BaseApi(api_client.Api): def _post_uri_reference_format_request_body_oapg( self: api_client.Api, - body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], content_type: str = 'application/json', stream: bool = False, timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, @@ -113,7 +113,7 @@ class PostUriReferenceFormatRequestBody(BaseApi): def post_uri_reference_format_request_body( self: BaseApi, - body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], content_type: str = 'application/json', stream: bool = False, timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, @@ -136,7 +136,7 @@ class ApiForpost(BaseApi): def post( self: BaseApi, - body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], content_type: str = 'application/json', stream: bool = False, timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/request_body_post_uri_template_format_request_body/post.py b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/request_body_post_uri_template_format_request_body/post.py index eece0612596c..4604e2962de6 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/request_body_post_uri_template_format_request_body/post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/request_body_post_uri_template_format_request_body/post.py @@ -39,7 +39,7 @@ class MetaOapg: def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'SchemaForRequestBodyApplicationJson': @@ -79,7 +79,7 @@ class BaseApi(api_client.Api): def _post_uri_template_format_request_body_oapg( self: api_client.Api, - body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], content_type: str = 'application/json', stream: bool = False, timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, @@ -139,7 +139,7 @@ class PostUriTemplateFormatRequestBody(BaseApi): def post_uri_template_format_request_body( self: BaseApi, - body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], content_type: str = 'application/json', stream: bool = False, timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, @@ -162,7 +162,7 @@ class ApiForpost(BaseApi): def post( self: BaseApi, - body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], content_type: str = 'application/json', stream: bool = False, timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/request_body_post_uri_template_format_request_body/post.pyi b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/request_body_post_uri_template_format_request_body/post.pyi index 89678b2a09f7..848f7c20af0d 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/request_body_post_uri_template_format_request_body/post.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/request_body_post_uri_template_format_request_body/post.pyi @@ -37,7 +37,7 @@ class SchemaForRequestBodyApplicationJson( def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'SchemaForRequestBodyApplicationJson': @@ -53,7 +53,7 @@ class BaseApi(api_client.Api): def _post_uri_template_format_request_body_oapg( self: api_client.Api, - body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], content_type: str = 'application/json', stream: bool = False, timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, @@ -113,7 +113,7 @@ class PostUriTemplateFormatRequestBody(BaseApi): def post_uri_template_format_request_body( self: BaseApi, - body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], content_type: str = 'application/json', stream: bool = False, timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, @@ -136,7 +136,7 @@ class ApiForpost(BaseApi): def post( self: BaseApi, - body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], content_type: str = 'application/json', stream: bool = False, timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/response_body_post_date_time_format_response_body_for_content_types/post.py b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/response_body_post_date_time_format_response_body_for_content_types/post.py index 6c44c6b265f5..521a8171874e 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/response_body_post_date_time_format_response_body_for_content_types/post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/response_body_post_date_time_format_response_body_for_content_types/post.py @@ -39,7 +39,7 @@ class MetaOapg: def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'SchemaFor200ResponseBodyApplicationJson': diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/response_body_post_date_time_format_response_body_for_content_types/post.pyi b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/response_body_post_date_time_format_response_body_for_content_types/post.pyi index 352cb5703599..52edc5c6d3b4 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/response_body_post_date_time_format_response_body_for_content_types/post.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/response_body_post_date_time_format_response_body_for_content_types/post.pyi @@ -37,7 +37,7 @@ class SchemaFor200ResponseBodyApplicationJson( def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'SchemaFor200ResponseBodyApplicationJson': diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/response_body_post_email_format_response_body_for_content_types/post.py b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/response_body_post_email_format_response_body_for_content_types/post.py index 40a23c6bfbd0..91232038adcc 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/response_body_post_email_format_response_body_for_content_types/post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/response_body_post_email_format_response_body_for_content_types/post.py @@ -38,7 +38,7 @@ class MetaOapg: def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'SchemaFor200ResponseBodyApplicationJson': diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/response_body_post_email_format_response_body_for_content_types/post.pyi b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/response_body_post_email_format_response_body_for_content_types/post.pyi index 5a0171c8746f..d778b06d4483 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/response_body_post_email_format_response_body_for_content_types/post.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/response_body_post_email_format_response_body_for_content_types/post.pyi @@ -36,7 +36,7 @@ class SchemaFor200ResponseBodyApplicationJson( def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'SchemaFor200ResponseBodyApplicationJson': diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/response_body_post_hostname_format_response_body_for_content_types/post.py b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/response_body_post_hostname_format_response_body_for_content_types/post.py index 39149c614e30..2641beac51fa 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/response_body_post_hostname_format_response_body_for_content_types/post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/response_body_post_hostname_format_response_body_for_content_types/post.py @@ -38,7 +38,7 @@ class MetaOapg: def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'SchemaFor200ResponseBodyApplicationJson': diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/response_body_post_hostname_format_response_body_for_content_types/post.pyi b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/response_body_post_hostname_format_response_body_for_content_types/post.pyi index a84f0604e2da..3bd2018f1be0 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/response_body_post_hostname_format_response_body_for_content_types/post.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/response_body_post_hostname_format_response_body_for_content_types/post.pyi @@ -36,7 +36,7 @@ class SchemaFor200ResponseBodyApplicationJson( def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'SchemaFor200ResponseBodyApplicationJson': diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/response_body_post_ipv4_format_response_body_for_content_types/post.py b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/response_body_post_ipv4_format_response_body_for_content_types/post.py index 613079a0504f..741eb61477ac 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/response_body_post_ipv4_format_response_body_for_content_types/post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/response_body_post_ipv4_format_response_body_for_content_types/post.py @@ -38,7 +38,7 @@ class MetaOapg: def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'SchemaFor200ResponseBodyApplicationJson': diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/response_body_post_ipv4_format_response_body_for_content_types/post.pyi b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/response_body_post_ipv4_format_response_body_for_content_types/post.pyi index c8d6590f61ff..e5f090dcd94f 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/response_body_post_ipv4_format_response_body_for_content_types/post.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/response_body_post_ipv4_format_response_body_for_content_types/post.pyi @@ -36,7 +36,7 @@ class SchemaFor200ResponseBodyApplicationJson( def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'SchemaFor200ResponseBodyApplicationJson': diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/response_body_post_ipv6_format_response_body_for_content_types/post.py b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/response_body_post_ipv6_format_response_body_for_content_types/post.py index 18f46e932653..82af93d0f4d5 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/response_body_post_ipv6_format_response_body_for_content_types/post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/response_body_post_ipv6_format_response_body_for_content_types/post.py @@ -38,7 +38,7 @@ class MetaOapg: def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'SchemaFor200ResponseBodyApplicationJson': diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/response_body_post_ipv6_format_response_body_for_content_types/post.pyi b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/response_body_post_ipv6_format_response_body_for_content_types/post.pyi index 07a549b95a1a..1839b17de7a9 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/response_body_post_ipv6_format_response_body_for_content_types/post.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/response_body_post_ipv6_format_response_body_for_content_types/post.pyi @@ -36,7 +36,7 @@ class SchemaFor200ResponseBodyApplicationJson( def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'SchemaFor200ResponseBodyApplicationJson': diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/response_body_post_json_pointer_format_response_body_for_content_types/post.py b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/response_body_post_json_pointer_format_response_body_for_content_types/post.py index 5129f1c2624f..0f84a6d7d430 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/response_body_post_json_pointer_format_response_body_for_content_types/post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/response_body_post_json_pointer_format_response_body_for_content_types/post.py @@ -38,7 +38,7 @@ class MetaOapg: def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'SchemaFor200ResponseBodyApplicationJson': diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/response_body_post_json_pointer_format_response_body_for_content_types/post.pyi b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/response_body_post_json_pointer_format_response_body_for_content_types/post.pyi index 9bb3109b010f..ea393b976dec 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/response_body_post_json_pointer_format_response_body_for_content_types/post.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/response_body_post_json_pointer_format_response_body_for_content_types/post.pyi @@ -36,7 +36,7 @@ class SchemaFor200ResponseBodyApplicationJson( def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'SchemaFor200ResponseBodyApplicationJson': diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/response_body_post_not_more_complex_schema_response_body_for_content_types/post.py b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/response_body_post_not_more_complex_schema_response_body_for_content_types/post.py index 22f7b4cdc3d1..810d8878f7fa 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/response_body_post_not_more_complex_schema_response_body_for_content_types/post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/response_body_post_not_more_complex_schema_response_body_for_content_types/post.py @@ -87,7 +87,7 @@ def __new__( def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'SchemaFor200ResponseBodyApplicationJson': diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/response_body_post_not_more_complex_schema_response_body_for_content_types/post.pyi b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/response_body_post_not_more_complex_schema_response_body_for_content_types/post.pyi index e792097700f5..9e669def894a 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/response_body_post_not_more_complex_schema_response_body_for_content_types/post.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/response_body_post_not_more_complex_schema_response_body_for_content_types/post.pyi @@ -85,7 +85,7 @@ class SchemaFor200ResponseBodyApplicationJson( def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'SchemaFor200ResponseBodyApplicationJson': diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/response_body_post_not_response_body_for_content_types/post.py b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/response_body_post_not_response_body_for_content_types/post.py index c382169efd96..e4097df4b516 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/response_body_post_not_response_body_for_content_types/post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/response_body_post_not_response_body_for_content_types/post.py @@ -38,7 +38,7 @@ class MetaOapg: def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'SchemaFor200ResponseBodyApplicationJson': diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/response_body_post_not_response_body_for_content_types/post.pyi b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/response_body_post_not_response_body_for_content_types/post.pyi index 6945f01d1b26..7ae90e93f9b6 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/response_body_post_not_response_body_for_content_types/post.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/response_body_post_not_response_body_for_content_types/post.pyi @@ -36,7 +36,7 @@ class SchemaFor200ResponseBodyApplicationJson( def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'SchemaFor200ResponseBodyApplicationJson': diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/response_body_post_ref_in_not_response_body_for_content_types/post.py b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/response_body_post_ref_in_not_response_body_for_content_types/post.py index fe6f2229b045..b9f01c0f0eb1 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/response_body_post_ref_in_not_response_body_for_content_types/post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/response_body_post_ref_in_not_response_body_for_content_types/post.py @@ -44,7 +44,7 @@ def not_schema(cls) -> typing.Type['PropertyNamedRefThatIsNotAReference']: def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'SchemaFor200ResponseBodyApplicationJson': diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/response_body_post_ref_in_not_response_body_for_content_types/post.pyi b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/response_body_post_ref_in_not_response_body_for_content_types/post.pyi index e1d772a28bc4..68f09071f6b8 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/response_body_post_ref_in_not_response_body_for_content_types/post.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/response_body_post_ref_in_not_response_body_for_content_types/post.pyi @@ -42,7 +42,7 @@ class SchemaFor200ResponseBodyApplicationJson( def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'SchemaFor200ResponseBodyApplicationJson': diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/response_body_post_required_with_escaped_characters_response_body_for_content_types/post.py b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/response_body_post_required_with_escaped_characters_response_body_for_content_types/post.py index 728b0fced8b7..d200e6968bc0 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/response_body_post_required_with_escaped_characters_response_body_for_content_types/post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/response_body_post_required_with_escaped_characters_response_body_for_content_types/post.py @@ -46,7 +46,7 @@ class MetaOapg: def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'SchemaFor200ResponseBodyApplicationJson': diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/response_body_post_required_with_escaped_characters_response_body_for_content_types/post.pyi b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/response_body_post_required_with_escaped_characters_response_body_for_content_types/post.pyi index 50f79a4cd25a..d2e92e759249 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/response_body_post_required_with_escaped_characters_response_body_for_content_types/post.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/response_body_post_required_with_escaped_characters_response_body_for_content_types/post.pyi @@ -44,7 +44,7 @@ class SchemaFor200ResponseBodyApplicationJson( def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'SchemaFor200ResponseBodyApplicationJson': diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/response_body_post_uri_format_response_body_for_content_types/post.py b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/response_body_post_uri_format_response_body_for_content_types/post.py index 44e1d81fa667..3d71e3c44c84 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/response_body_post_uri_format_response_body_for_content_types/post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/response_body_post_uri_format_response_body_for_content_types/post.py @@ -38,7 +38,7 @@ class MetaOapg: def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'SchemaFor200ResponseBodyApplicationJson': diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/response_body_post_uri_format_response_body_for_content_types/post.pyi b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/response_body_post_uri_format_response_body_for_content_types/post.pyi index 557aa55d8712..d57bad9d7f60 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/response_body_post_uri_format_response_body_for_content_types/post.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/response_body_post_uri_format_response_body_for_content_types/post.pyi @@ -36,7 +36,7 @@ class SchemaFor200ResponseBodyApplicationJson( def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'SchemaFor200ResponseBodyApplicationJson': diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/response_body_post_uri_reference_format_response_body_for_content_types/post.py b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/response_body_post_uri_reference_format_response_body_for_content_types/post.py index 97679ee6b4fb..b8a1defada4d 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/response_body_post_uri_reference_format_response_body_for_content_types/post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/response_body_post_uri_reference_format_response_body_for_content_types/post.py @@ -38,7 +38,7 @@ class MetaOapg: def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'SchemaFor200ResponseBodyApplicationJson': diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/response_body_post_uri_reference_format_response_body_for_content_types/post.pyi b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/response_body_post_uri_reference_format_response_body_for_content_types/post.pyi index fcec33c02cb5..0942230e841c 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/response_body_post_uri_reference_format_response_body_for_content_types/post.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/response_body_post_uri_reference_format_response_body_for_content_types/post.pyi @@ -36,7 +36,7 @@ class SchemaFor200ResponseBodyApplicationJson( def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'SchemaFor200ResponseBodyApplicationJson': diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/response_body_post_uri_template_format_response_body_for_content_types/post.py b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/response_body_post_uri_template_format_response_body_for_content_types/post.py index b3b8d1b76c55..5ab024b1b1b6 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/response_body_post_uri_template_format_response_body_for_content_types/post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/response_body_post_uri_template_format_response_body_for_content_types/post.py @@ -38,7 +38,7 @@ class MetaOapg: def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'SchemaFor200ResponseBodyApplicationJson': diff --git a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/response_body_post_uri_template_format_response_body_for_content_types/post.pyi b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/response_body_post_uri_template_format_response_body_for_content_types/post.pyi index 56b30029895b..8045d6f41791 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/response_body_post_uri_template_format_response_body_for_content_types/post.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python-experimental/unit_test_api/paths/response_body_post_uri_template_format_response_body_for_content_types/post.pyi @@ -36,7 +36,7 @@ class SchemaFor200ResponseBodyApplicationJson( def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'SchemaFor200ResponseBodyApplicationJson': diff --git a/samples/openapi3/client/petstore/python-experimental/docs/apis/tags/AnotherFakeApi.md b/samples/openapi3/client/petstore/python-experimental/docs/apis/tags/AnotherFakeApi.md index 25e279164848..2a76dabc3584 100644 --- a/samples/openapi3/client/petstore/python-experimental/docs/apis/tags/AnotherFakeApi.md +++ b/samples/openapi3/client/petstore/python-experimental/docs/apis/tags/AnotherFakeApi.md @@ -59,10 +59,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**Client**](Client.md) | | +[**Client**](../../models/Client.md) | | ### Return Types, Responses @@ -70,24 +70,21 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned -200 | ApiResponseFor200 | successful operation +200 | [ApiResponseFor200](#call_123_test_special_tags.ApiResponseFor200) | successful operation -#### ApiResponseFor200 +#### call_123_test_special_tags.ApiResponseFor200 Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**Client**](Client.md) | | +[**Client**](../../models/Client.md) | | - -[**Client**](Client.md) - ### Authorization No authorization required diff --git a/samples/openapi3/client/petstore/python-experimental/docs/apis/tags/DefaultApi.md b/samples/openapi3/client/petstore/python-experimental/docs/apis/tags/DefaultApi.md index 99ba34ec28a2..768d80a1c352 100644 --- a/samples/openapi3/client/petstore/python-experimental/docs/apis/tags/DefaultApi.md +++ b/samples/openapi3/client/petstore/python-experimental/docs/apis/tags/DefaultApi.md @@ -46,25 +46,27 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned -default | ApiResponseForDefault | response +default | [ApiResponseForDefault](#foo_get.ApiResponseForDefault) | response -#### ApiResponseForDefault +#### foo_get.ApiResponseForDefault Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor0ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor0ResponseBodyApplicationJson +# SchemaFor0ResponseBodyApplicationJson -#### Properties -Name | Type | Description | Notes +## Model Type Info +Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**string** | [**Foo**](Foo.md) | | [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] +dict, frozendict.frozendict, | frozendict.frozendict, | | - -**{str: (bool, date, datetime, dict, float, int, list, str, none_type)}** +### Dictionary Keys +Key | Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- | ------------- +**string** | [**Foo**]({{complexTypePrefix}}Foo.md) | [**Foo**]({{complexTypePrefix}}Foo.md) | | [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 diff --git a/samples/openapi3/client/petstore/python-experimental/docs/apis/tags/FakeApi.md b/samples/openapi3/client/petstore/python-experimental/docs/apis/tags/FakeApi.md index da9948ee8cb2..a368406d7b28 100644 --- a/samples/openapi3/client/petstore/python-experimental/docs/apis/tags/FakeApi.md +++ b/samples/openapi3/client/petstore/python-experimental/docs/apis/tags/FakeApi.md @@ -90,10 +90,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**AdditionalPropertiesWithArrayOfEnums**](AdditionalPropertiesWithArrayOfEnums.md) | | +[**AdditionalPropertiesWithArrayOfEnums**](../../models/AdditionalPropertiesWithArrayOfEnums.md) | | ### Return Types, Responses @@ -101,24 +101,21 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned -200 | ApiResponseFor200 | Got object with additional properties with array of enums +200 | [ApiResponseFor200](#additional_properties_with_array_of_enums.ApiResponseFor200) | Got object with additional properties with array of enums -#### ApiResponseFor200 +#### additional_properties_with_array_of_enums.ApiResponseFor200 Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**AdditionalPropertiesWithArrayOfEnums**](AdditionalPropertiesWithArrayOfEnums.md) | | +[**AdditionalPropertiesWithArrayOfEnums**](../../models/AdditionalPropertiesWithArrayOfEnums.md) | | - -[**AdditionalPropertiesWithArrayOfEnums**](AdditionalPropertiesWithArrayOfEnums.md) - ### Authorization No authorization required @@ -176,10 +173,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**AnimalFarm**](AnimalFarm.md) | | +[**AnimalFarm**](../../models/AnimalFarm.md) | | ### Return Types, Responses @@ -187,23 +184,20 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned -200 | ApiResponseFor200 | Output model +200 | [ApiResponseFor200](#array_model.ApiResponseFor200) | Output model -#### ApiResponseFor200 +#### array_model.ApiResponseFor200 Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**AnimalFarm**](AnimalFarm.md) | | - - +[**AnimalFarm**](../../models/AnimalFarm.md) | | -[**AnimalFarm**](AnimalFarm.md) ### Authorization @@ -261,10 +255,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**ArrayOfEnums**](ArrayOfEnums.md) | | +[**ArrayOfEnums**](../../models/ArrayOfEnums.md) | | ### Return Types, Responses @@ -272,24 +266,21 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned -200 | ApiResponseFor200 | Got named array of enums +200 | [ApiResponseFor200](#array_of_enums.ApiResponseFor200) | Got named array of enums -#### ApiResponseFor200 +#### array_of_enums.ApiResponseFor200 Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**ArrayOfEnums**](ArrayOfEnums.md) | | +[**ArrayOfEnums**](../../models/ArrayOfEnums.md) | | - -[**ArrayOfEnums**](ArrayOfEnums.md) - ### Authorization No authorization required @@ -350,10 +341,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**FileSchemaTestClass**](FileSchemaTestClass.md) | | +[**FileSchemaTestClass**](../../models/FileSchemaTestClass.md) | | ### Return Types, Responses @@ -361,18 +352,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned -200 | ApiResponseFor200 | Success +200 | [ApiResponseFor200](#body_with_file_schema.ApiResponseFor200) | Success -#### ApiResponseFor200 +#### body_with_file_schema.ApiResponseFor200 Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -443,10 +431,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**User**](User.md) | | +[**User**](../../models/User.md) | | ### query_params @@ -457,29 +445,27 @@ Name | Type | Description | Notes query | QuerySchema | | -#### QuerySchema +# QuerySchema -Type | Description | Notes -------------- | ------------- | ------------- -**str** | | +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +str, | str, | | ### Return Types, Responses Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned -200 | ApiResponseFor200 | Success +200 | [ApiResponseFor200](#body_with_query_params.ApiResponseFor200) | Success -#### ApiResponseFor200 +#### body_with_query_params.ApiResponseFor200 Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -534,34 +520,33 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson -Type | Description | Notes -------------- | ------------- | ------------- -**bool** | | +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +bool, | BoolClass, | | ### Return Types, Responses Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned -200 | ApiResponseFor200 | Output boolean +200 | [ApiResponseFor200](#boolean.ApiResponseFor200) | Output boolean -#### ApiResponseFor200 +#### boolean.ApiResponseFor200 Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson -Type | Description | Notes -------------- | ------------- | ------------- -**bool** | | - - -**bool** +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +bool, | BoolClass, | | ### Authorization @@ -626,41 +611,41 @@ SomeVar | SomeVarSchema | | some_var | SomeVarSchema | | -#### SomeVarSchema +# SomeVarSchema -Type | Description | Notes -------------- | ------------- | ------------- -**str** | | +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +str, | str, | | -#### SomeVarSchema +# SomeVarSchema -Type | Description | Notes -------------- | ------------- | ------------- -**str** | | +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +str, | str, | | -#### SomeVarSchema +# SomeVarSchema -Type | Description | Notes -------------- | ------------- | ------------- -**str** | | +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +str, | str, | | ### Return Types, Responses Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned -200 | ApiResponseFor200 | Success +200 | [ApiResponseFor200](#case_sensitive_params.ApiResponseFor200) | Success -#### ApiResponseFor200 +#### case_sensitive_params.ApiResponseFor200 Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -719,10 +704,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**Client**](Client.md) | | +[**Client**](../../models/Client.md) | | ### Return Types, Responses @@ -730,24 +715,21 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned -200 | ApiResponseFor200 | successful operation +200 | [ApiResponseFor200](#client_model.ApiResponseFor200) | successful operation -#### ApiResponseFor200 +#### client_model.ApiResponseFor200 Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**Client**](Client.md) | | +[**Client**](../../models/Client.md) | | - -[**Client**](Client.md) - ### Authorization No authorization required @@ -803,10 +785,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**ComposedOneOfDifferentTypes**](ComposedOneOfDifferentTypes.md) | | +[**ComposedOneOfDifferentTypes**](../../models/ComposedOneOfDifferentTypes.md) | | ### Return Types, Responses @@ -814,24 +796,21 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned -200 | ApiResponseFor200 | Output model +200 | [ApiResponseFor200](#composed_one_of_different_types.ApiResponseFor200) | Output model -#### ApiResponseFor200 +#### composed_one_of_different_types.ApiResponseFor200 Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**ComposedOneOfDifferentTypes**](ComposedOneOfDifferentTypes.md) | | - +[**ComposedOneOfDifferentTypes**](../../models/ComposedOneOfDifferentTypes.md) | | -[**ComposedOneOfDifferentTypes**](ComposedOneOfDifferentTypes.md) - ### Authorization No authorization required @@ -891,37 +870,35 @@ Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- id | IdSchema | | -#### IdSchema +# IdSchema -Type | Description | Notes -------------- | ------------- | ------------- -**str** | | +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +str, | str, | | ### Return Types, Responses Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned -200 | ApiResponseFor200 | OK -default | ApiResponseForDefault | Unexpected error +200 | [ApiResponseFor200](#delete_coffee.ApiResponseFor200) | OK +default | [ApiResponseForDefault](#delete_coffee.ApiResponseForDefault) | Unexpected error -#### ApiResponseFor200 +#### delete_coffee.ApiResponseFor200 Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | -#### ApiResponseForDefault +#### delete_coffee.ApiResponseForDefault Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -1001,52 +978,54 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationXWwwFormUrlencoded - -#### Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**number** | **int, float** | None | -**pattern_without_delimiter** | **str** | None | -**byte** | **str** | None | -**double** | **int, float** | None | -**integer** | **int** | None | [optional] -**int32** | **int** | None | [optional] -**int64** | **int** | None | [optional] -**float** | **int, float** | None | [optional] -**string** | **str** | None | [optional] -**binary** | **file_type** | None | [optional] -**date** | **date** | None | [optional] -**dateTime** | **datetime** | None | [optional] if omitted the server will use the default value of 2010-02-01T10:20:10.11111+01:00 -**password** | **str** | None | [optional] -**callback** | **str** | None | [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] +# SchemaForRequestBodyApplicationXWwwFormUrlencoded + +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +dict, frozendict.frozendict, | frozendict.frozendict, | | + +### Dictionary Keys +Key | Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- | ------------- +**number** | decimal.Decimal, int, float, | decimal.Decimal, | None | +**pattern_without_delimiter** | str, | str, | None | +**byte** | str, | str, | None | +**double** | decimal.Decimal, int, float, | decimal.Decimal, | None | value must be a 64 bit float +**integer** | decimal.Decimal, int, | decimal.Decimal, | None | [optional] +**int32** | decimal.Decimal, int, | decimal.Decimal, | None | [optional] value must be a 32 bit integer +**int64** | decimal.Decimal, int, | decimal.Decimal, | None | [optional] value must be a 64 bit integer +**float** | decimal.Decimal, int, float, | decimal.Decimal, | None | [optional] value must be a 32 bit float +**string** | str, | str, | None | [optional] +**binary** | bytes, io.FileIO, io.BufferedReader, | bytes, FileIO, | None | [optional] +**date** | str, date, | str, | None | [optional] value must conform to RFC-3339 full-date YYYY-MM-DD +**dateTime** | str, datetime, | str, | None | [optional] if omitted the server will use the default value of 2010-02-01T10:20:10.11111+01:00value must conform to RFC-3339 date-time +**password** | str, | str, | None | [optional] +**callback** | str, | str, | None | [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 Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned -400 | ApiResponseFor400 | Invalid username supplied -404 | ApiResponseFor404 | User not found +400 | [ApiResponseFor400](#endpoint_parameters.ApiResponseFor400) | Invalid username supplied +404 | [ApiResponseFor404](#endpoint_parameters.ApiResponseFor404) | User not found -#### ApiResponseFor400 +#### endpoint_parameters.ApiResponseFor400 Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | -#### ApiResponseFor404 +#### endpoint_parameters.ApiResponseFor404 Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization [http_basic_test](../../../README.md#http_basic_test) @@ -1123,14 +1102,33 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationXWwwFormUrlencoded +# SchemaForRequestBodyApplicationXWwwFormUrlencoded + +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +dict, frozendict.frozendict, | frozendict.frozendict, | | + +### Dictionary Keys +Key | Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- | ------------- +**[enum_form_string_array](#enum_form_string_array)** | list, tuple, | tuple, | Form parameter enum test (string array) | [optional] +**enum_form_string** | str, | str, | Form parameter enum test (string) | [optional] must be one of ["_abc", "-efg", "(xyz)", ] if omitted the server will use the default value of "-efg" +**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] + +# enum_form_string_array + +Form parameter enum test (string array) -#### Properties -Name | Type | Description | Notes +## Model Type Info +Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**enum_form_string_array** | **[str]** | Form parameter enum test (string array) | [optional] -**enum_form_string** | **str** | Form parameter enum test (string) | [optional] if omitted the server will use the default value of "-efg" -**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] +list, tuple, | tuple, | Form parameter enum test (string array) | + +### Tuple Items +Class Name | Input Type | Accessed Type | Description | Notes +------------- | ------------- | ------------- | ------------- | ------------- +items | str, | str, | | must be one of [">", "$", ] if omitted the server will use the default value of "$" ### query_params #### RequestQueryParams @@ -1143,29 +1141,38 @@ enum_query_integer | EnumQueryIntegerSchema | | optional enum_query_double | EnumQueryDoubleSchema | | optional -#### EnumQueryStringArraySchema +# EnumQueryStringArraySchema -Type | Description | Notes -------------- | ------------- | ------------- -**[str]** | | +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +list, tuple, | tuple, | | -#### EnumQueryStringSchema +### Tuple Items +Class Name | Input Type | Accessed Type | Description | Notes +------------- | ------------- | ------------- | ------------- | ------------- +items | str, | str, | | must be one of [">", "$", ] if omitted the server will use the default value of "$" -Type | Description | Notes -------------- | ------------- | ------------- -**str** | | defaults to "-efg", must be one of ["_abc", "-efg", "(xyz)", ] +# EnumQueryStringSchema -#### EnumQueryIntegerSchema +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +str, | str, | | must be one of ["_abc", "-efg", "(xyz)", ] if omitted the server will use the default value of "-efg" -Type | Description | Notes -------------- | ------------- | ------------- -**int** | | must be one of [1, -2, ] +# EnumQueryIntegerSchema + +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +decimal.Decimal, int, | decimal.Decimal, | | must be one of [1, -2, ] value must be a 32 bit integer -#### EnumQueryDoubleSchema +# EnumQueryDoubleSchema -Type | Description | Notes -------------- | ------------- | ------------- -**int, float** | | must be one of [1.1, -1.2, ] +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +decimal.Decimal, int, float, | decimal.Decimal, | | must be one of [1.1, -1.2, ] value must be a 64 bit float ### header_params #### RequestHeaderParams @@ -1175,43 +1182,47 @@ Name | Type | Description | Notes enum_header_string_array | EnumHeaderStringArraySchema | | optional enum_header_string | EnumHeaderStringSchema | | optional -#### EnumHeaderStringArraySchema +# EnumHeaderStringArraySchema -Type | Description | Notes -------------- | ------------- | ------------- -**[str]** | | +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +list, tuple, | tuple, | | -#### EnumHeaderStringSchema +### Tuple Items +Class Name | Input Type | Accessed Type | Description | Notes +------------- | ------------- | ------------- | ------------- | ------------- +items | str, | str, | | must be one of [">", "$", ] if omitted the server will use the default value of "$" -Type | Description | Notes -------------- | ------------- | ------------- -**str** | | defaults to "-efg", must be one of ["_abc", "-efg", "(xyz)", ] +# EnumHeaderStringSchema + +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +str, | str, | | must be one of ["_abc", "-efg", "(xyz)", ] if omitted the server will use the default value of "-efg" ### Return Types, Responses Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned -400 | ApiResponseFor400 | Invalid request -404 | ApiResponseFor404 | Not found +400 | [ApiResponseFor400](#enum_parameters.ApiResponseFor400) | Invalid request +404 | [ApiResponseFor404](#enum_parameters.ApiResponseFor404) | Not found -#### ApiResponseFor400 +#### enum_parameters.ApiResponseFor400 Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | -#### ApiResponseFor404 +#### enum_parameters.ApiResponseFor404 Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -1258,24 +1269,21 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned -200 | ApiResponseFor200 | The instance started successfully +200 | [ApiResponseFor200](#fake_health_get.ApiResponseFor200) | The instance started successfully -#### ApiResponseFor200 +#### fake_health_get.ApiResponseFor200 Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**HealthCheckResult**](HealthCheckResult.md) | | - +[**HealthCheckResult**](../../models/HealthCheckResult.md) | | -[**HealthCheckResult**](HealthCheckResult.md) - ### Authorization No authorization required @@ -1375,29 +1383,33 @@ string_group | StringGroupSchema | | optional int64_group | Int64GroupSchema | | optional -#### RequiredStringGroupSchema +# RequiredStringGroupSchema -Type | Description | Notes -------------- | ------------- | ------------- -**int** | | +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +decimal.Decimal, int, | decimal.Decimal, | | -#### RequiredInt64GroupSchema +# RequiredInt64GroupSchema -Type | Description | Notes -------------- | ------------- | ------------- -**int** | | +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +decimal.Decimal, int, | decimal.Decimal, | | value must be a 64 bit integer -#### StringGroupSchema +# StringGroupSchema -Type | Description | Notes -------------- | ------------- | ------------- -**int** | | +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +decimal.Decimal, int, | decimal.Decimal, | | -#### Int64GroupSchema +# Int64GroupSchema -Type | Description | Notes -------------- | ------------- | ------------- -**int** | | +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +decimal.Decimal, int, | decimal.Decimal, | | value must be a 64 bit integer ### header_params #### RequestHeaderParams @@ -1407,35 +1419,34 @@ Name | Type | Description | Notes required_boolean_group | RequiredBooleanGroupSchema | | boolean_group | BooleanGroupSchema | | optional -#### RequiredBooleanGroupSchema +# RequiredBooleanGroupSchema -Type | Description | Notes -------------- | ------------- | ------------- -**bool** | | +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +bool, | BoolClass, | | -#### BooleanGroupSchema +# BooleanGroupSchema -Type | Description | Notes -------------- | ------------- | ------------- -**bool** | | +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +bool, | BoolClass, | | ### Return Types, Responses Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned -400 | ApiResponseFor400 | Someting wrong +400 | [ApiResponseFor400](#group_parameters.ApiResponseFor400) | Someting wrong -#### ApiResponseFor400 +#### group_parameters.ApiResponseFor400 Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization [bearer_test](../../../README.md#bearer_test) @@ -1489,30 +1500,32 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson -#### Properties -Name | Type | Description | Notes +## Model Type Info +Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**any string name** | **str** | 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** | str, | str, | any string name can be used but the value must be the correct type | [optional] ### Return Types, Responses Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned -200 | ApiResponseFor200 | successful operation +200 | [ApiResponseFor200](#inline_additional_properties.ApiResponseFor200) | successful operation -#### ApiResponseFor200 +#### inline_additional_properties.ApiResponseFor200 Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -1574,19 +1587,58 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | +## 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 | | -#### SchemaForRequestBodyMultipartFormData +### Composed Schemas (allOf/anyOf/oneOf/not) +#### allOf +Class Name | Input Type | Accessed Type | Description | Notes +------------- | ------------- | ------------- | ------------- | ------------- +[all_of_0](#all_of_0) | str, | str, | | -#### Properties -Name | Type | Description | Notes +# all_of_0 + +## Model Type Info +Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**someProp** | **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] +str, | str, | | + +# SchemaForRequestBodyMultipartFormData + +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +dict, frozendict.frozendict, | frozendict.frozendict, | | + +### Dictionary Keys +Key | Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- | ------------- +**[someProp](#someProp)** | 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] + +# someProp + +## 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) | str, | str, | | + +# all_of_0 + +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +str, | str, | | ### query_params #### RequestQueryParams @@ -1597,50 +1649,125 @@ compositionAtRoot | CompositionAtRootSchema | | optional compositionInProperty | CompositionInPropertySchema | | optional -#### CompositionAtRootSchema +# CompositionAtRootSchema -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | +## 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) | str, | str, | | + +# all_of_0 + +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +str, | str, | | + +# CompositionInPropertySchema -#### CompositionInPropertySchema +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +dict, frozendict.frozendict, | frozendict.frozendict, | | + +### Dictionary Keys +Key | Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- | ------------- +**[someProp](#someProp)** | 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] + +# someProp + +## 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) | str, | str, | | + +# all_of_0 -#### Properties -Name | Type | Description | Notes +## Model Type Info +Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**someProp** | **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] +str, | str, | | ### Return Types, Responses Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned -200 | ApiResponseFor200 | success +200 | [ApiResponseFor200](#inline_composition.ApiResponseFor200) | success -#### ApiResponseFor200 +#### inline_composition.ApiResponseFor200 Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, SchemaFor200ResponseBodyMultipartFormData, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | +## 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) | str, | str, | | + +# all_of_0 + +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +str, | str, | | + +# SchemaFor200ResponseBodyMultipartFormData -#### SchemaFor200ResponseBodyMultipartFormData +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +dict, frozendict.frozendict, | frozendict.frozendict, | | + +### Dictionary Keys +Key | Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- | ------------- +**[someProp](#someProp)** | 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] -#### Properties -Name | Type | Description | Notes +# someProp + +## Model Type Info +Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**someProp** | **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] +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) | str, | str, | | +# all_of_0 -**bool, date, datetime, dict, float, int, list, str, none_type** +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +str, | str, | | ### Authorization @@ -1696,32 +1823,34 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationXWwwFormUrlencoded +# SchemaForRequestBodyApplicationXWwwFormUrlencoded -#### Properties -Name | Type | Description | Notes +## Model Type Info +Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**param** | **str** | field1 | -**param2** | **str** | field2 | -**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] +dict, frozendict.frozendict, | frozendict.frozendict, | | + +### Dictionary Keys +Key | Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- | ------------- +**param** | str, | str, | field1 | +**param2** | str, | str, | field2 | +**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 Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned -200 | ApiResponseFor200 | successful operation +200 | [ApiResponseFor200](#json_form_data.ApiResponseFor200) | successful operation -#### ApiResponseFor200 +#### json_form_data.ApiResponseFor200 Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -1778,10 +1907,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJsonPatchjson +# SchemaForRequestBodyApplicationJsonPatchjson Type | Description | Notes ------------- | ------------- | ------------- -[**JSONPatchRequest**](JSONPatchRequest.md) | | +[**JSONPatchRequest**](../../models/JSONPatchRequest.md) | | ### Return Types, Responses @@ -1789,18 +1918,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned -200 | ApiResponseFor200 | OK +200 | [ApiResponseFor200](#json_patch.ApiResponseFor200) | OK -#### ApiResponseFor200 +#### json_patch.ApiResponseFor200 Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -1854,34 +1980,33 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJsonCharsetutf8 +# SchemaForRequestBodyApplicationJsonCharsetutf8 -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | +## 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 | | ### Return Types, Responses Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned -200 | ApiResponseFor200 | success +200 | [ApiResponseFor200](#json_with_charset.ApiResponseFor200) | success -#### ApiResponseFor200 +#### json_with_charset.ApiResponseFor200 Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJsonCharsetutf8, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJsonCharsetutf8 - -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | - +# SchemaFor200ResponseBodyApplicationJsonCharsetutf8 -**bool, date, datetime, dict, float, int, list, str, none_type** +## 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 | | ### Authorization @@ -1942,10 +2067,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**Mammal**](Mammal.md) | | +[**Mammal**](../../models/Mammal.md) | | ### Return Types, Responses @@ -1953,24 +2078,21 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned -200 | ApiResponseFor200 | Output mammal +200 | [ApiResponseFor200](#mammal.ApiResponseFor200) | Output mammal -#### ApiResponseFor200 +#### mammal.ApiResponseFor200 Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**Mammal**](Mammal.md) | | - +[**Mammal**](../../models/Mammal.md) | | -[**Mammal**](Mammal.md) - ### Authorization No authorization required @@ -2026,10 +2148,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**NumberWithValidations**](NumberWithValidations.md) | | +[**NumberWithValidations**](../../models/NumberWithValidations.md) | | ### Return Types, Responses @@ -2037,24 +2159,21 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned -200 | ApiResponseFor200 | Output number +200 | [ApiResponseFor200](#number_with_validations.ApiResponseFor200) | Output number -#### ApiResponseFor200 +#### number_with_validations.ApiResponseFor200 Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**NumberWithValidations**](NumberWithValidations.md) | | - +[**NumberWithValidations**](../../models/NumberWithValidations.md) | | -[**NumberWithValidations**](NumberWithValidations.md) - ### Authorization No authorization required @@ -2115,31 +2234,33 @@ Name | Type | Description | Notes mapBean | MapBeanSchema | | optional -#### MapBeanSchema +# MapBeanSchema -#### Properties -Name | Type | Description | Notes +## Model Type Info +Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**keyword** | **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] +dict, frozendict.frozendict, | frozendict.frozendict, | | + +### Dictionary Keys +Key | Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- | ------------- +**keyword** | 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 Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned -200 | ApiResponseFor200 | ok +200 | [ApiResponseFor200](#object_in_query.ApiResponseFor200) | ok -#### ApiResponseFor200 +#### object_in_query.ApiResponseFor200 Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -2199,10 +2320,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**ObjectModelWithRefProps**](ObjectModelWithRefProps.md) | | +[**ObjectModelWithRefProps**](../../models/ObjectModelWithRefProps.md) | | ### Return Types, Responses @@ -2210,24 +2331,21 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned -200 | ApiResponseFor200 | Output model +200 | [ApiResponseFor200](#object_model_with_ref_props.ApiResponseFor200) | Output model -#### ApiResponseFor200 +#### object_model_with_ref_props.ApiResponseFor200 Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**ObjectModelWithRefProps**](ObjectModelWithRefProps.md) | | - +[**ObjectModelWithRefProps**](../../models/ObjectModelWithRefProps.md) | | -[**ObjectModelWithRefProps**](ObjectModelWithRefProps.md) - ### Authorization No authorization required @@ -2342,11 +2460,12 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | +## 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 | | ### query_params #### RequestQueryParams @@ -2360,35 +2479,40 @@ self | ModelSelfSchema | | optional A-B | ABSchema | | optional -#### Model1Schema +# Model1Schema -Type | Description | Notes -------------- | ------------- | ------------- -**str** | | +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +str, | str, | | -#### ABSchema +# ABSchema -Type | Description | Notes -------------- | ------------- | ------------- -**str** | | +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +str, | str, | | -#### AbSchema +# AbSchema -Type | Description | Notes -------------- | ------------- | ------------- -**str** | | +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +str, | str, | | -#### ModelSelfSchema +# ModelSelfSchema -Type | Description | Notes -------------- | ------------- | ------------- -**str** | | +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +str, | str, | | -#### ABSchema +# ABSchema -Type | Description | Notes -------------- | ------------- | ------------- -**str** | | +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +str, | str, | | ### header_params #### RequestHeaderParams @@ -2400,29 +2524,33 @@ aB | ABSchema | | optional self | ModelSelfSchema | | optional A-B | ABSchema | | optional -#### Model1Schema +# Model1Schema -Type | Description | Notes -------------- | ------------- | ------------- -**str** | | +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +str, | str, | | -#### ABSchema +# ABSchema -Type | Description | Notes -------------- | ------------- | ------------- -**str** | | +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +str, | str, | | -#### ModelSelfSchema +# ModelSelfSchema -Type | Description | Notes -------------- | ------------- | ------------- -**str** | | +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +str, | str, | | -#### ABSchema +# ABSchema -Type | Description | Notes -------------- | ------------- | ------------- -**str** | | +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +str, | str, | | ### path_params #### RequestPathParams @@ -2435,35 +2563,40 @@ Ab | AbSchema | | self | ModelSelfSchema | | A-B | ABSchema | | -#### Model1Schema +# Model1Schema -Type | Description | Notes -------------- | ------------- | ------------- -**str** | | +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +str, | str, | | -#### ABSchema +# ABSchema -Type | Description | Notes -------------- | ------------- | ------------- -**str** | | +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +str, | str, | | -#### AbSchema +# AbSchema -Type | Description | Notes -------------- | ------------- | ------------- -**str** | | +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +str, | str, | | -#### ModelSelfSchema +# ModelSelfSchema -Type | Description | Notes -------------- | ------------- | ------------- -**str** | | +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +str, | str, | | -#### ABSchema +# ABSchema -Type | Description | Notes -------------- | ------------- | ------------- -**str** | | +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +str, | str, | | ### cookie_params #### RequestCookieParams @@ -2476,58 +2609,61 @@ Ab | AbSchema | | optional self | ModelSelfSchema | | optional A-B | ABSchema | | optional -#### Model1Schema +# Model1Schema -Type | Description | Notes -------------- | ------------- | ------------- -**str** | | +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +str, | str, | | -#### ABSchema +# ABSchema -Type | Description | Notes -------------- | ------------- | ------------- -**str** | | +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +str, | str, | | -#### AbSchema +# AbSchema -Type | Description | Notes -------------- | ------------- | ------------- -**str** | | +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +str, | str, | | -#### ModelSelfSchema +# ModelSelfSchema -Type | Description | Notes -------------- | ------------- | ------------- -**str** | | +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +str, | str, | | -#### ABSchema +# ABSchema -Type | Description | Notes -------------- | ------------- | ------------- -**str** | | +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +str, | str, | | ### Return Types, Responses Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned -200 | ApiResponseFor200 | success +200 | [ApiResponseFor200](#parameter_collisions.ApiResponseFor200) | success -#### ApiResponseFor200 +#### parameter_collisions.ApiResponseFor200 Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | - - -**bool, date, datetime, dict, float, int, list, str, none_type** +## 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 | | ### Authorization @@ -2609,40 +2745,70 @@ context | ContextSchema | | refParam | RefParamSchema | | -#### PipeSchema +# PipeSchema -Type | Description | Notes -------------- | ------------- | ------------- -**[str]** | | +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +list, tuple, | tuple, | | -#### IoutilSchema +### Tuple Items +Class Name | Input Type | Accessed Type | Description | Notes +------------- | ------------- | ------------- | ------------- | ------------- +items | str, | str, | | -Type | Description | Notes -------------- | ------------- | ------------- -**[str]** | | +# IoutilSchema -#### HttpSchema +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +list, tuple, | tuple, | | -Type | Description | Notes -------------- | ------------- | ------------- -**[str]** | | +### Tuple Items +Class Name | Input Type | Accessed Type | Description | Notes +------------- | ------------- | ------------- | ------------- | ------------- +items | str, | str, | | -#### UrlSchema +# HttpSchema -Type | Description | Notes -------------- | ------------- | ------------- -**[str]** | | +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +list, tuple, | tuple, | | -#### ContextSchema +### Tuple Items +Class Name | Input Type | Accessed Type | Description | Notes +------------- | ------------- | ------------- | ------------- | ------------- +items | str, | str, | | -Type | Description | Notes -------------- | ------------- | ------------- -**[str]** | | +# UrlSchema + +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +list, tuple, | tuple, | | -#### RefParamSchema +### Tuple Items +Class Name | Input Type | Accessed Type | Description | Notes +------------- | ------------- | ------------- | ------------- | ------------- +items | str, | str, | | + +# ContextSchema + +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +list, tuple, | tuple, | | + +### Tuple Items +Class Name | Input Type | Accessed Type | Description | Notes +------------- | ------------- | ------------- | ------------- | ------------- +items | str, | str, | | + +# RefParamSchema Type | Description | Notes ------------- | ------------- | ------------- -[**StringWithValidation**](StringWithValidation.md) | | +[**StringWithValidation**](../../models/StringWithValidation.md) | | ### Return Types, Responses @@ -2650,18 +2816,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned -200 | ApiResponseFor200 | Success +200 | [ApiResponseFor200](#query_parameter_collection_format.ApiResponseFor200) | Success -#### ApiResponseFor200 +#### query_parameter_collection_format.ApiResponseFor200 Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -2723,10 +2886,10 @@ Name | Type | Description | Notes mapBean | MapBeanSchema | | optional -#### MapBeanSchema +# MapBeanSchema Type | Description | Notes ------------- | ------------- | ------------- -[**Foo**](Foo.md) | | +[**Foo**](../../models/Foo.md) | | ### Return Types, Responses @@ -2734,18 +2897,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned -200 | ApiResponseFor200 | ok +200 | [ApiResponseFor200](#ref_object_in_query.ApiResponseFor200) | ok -#### ApiResponseFor200 +#### ref_object_in_query.ApiResponseFor200 Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -2790,18 +2950,15 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned -200 | ApiResponseFor200 | contents without schema definition +200 | [ApiResponseFor200](#response_without_schema.ApiResponseFor200) | contents without schema definition -#### ApiResponseFor200 +#### response_without_schema.ApiResponseFor200 Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[Unset, Unset, ] | | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -2856,34 +3013,33 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson -Type | Description | Notes -------------- | ------------- | ------------- -**str** | | +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +str, | str, | | ### Return Types, Responses Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned -200 | ApiResponseFor200 | Output string +200 | [ApiResponseFor200](#string.ApiResponseFor200) | Output string -#### ApiResponseFor200 +#### string.ApiResponseFor200 Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson - -Type | Description | Notes -------------- | ------------- | ------------- -**str** | | - +# SchemaFor200ResponseBodyApplicationJson -**str** +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +str, | str, | | ### Authorization @@ -2940,10 +3096,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**StringEnum**](StringEnum.md) | | +[**StringEnum**](../../models/StringEnum.md) | | ### Return Types, Responses @@ -2951,24 +3107,21 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned -200 | ApiResponseFor200 | Output enum +200 | [ApiResponseFor200](#string_enum.ApiResponseFor200) | Output enum -#### ApiResponseFor200 +#### string_enum.ApiResponseFor200 Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**StringEnum**](StringEnum.md) | | - +[**StringEnum**](../../models/StringEnum.md) | | -[**StringEnum**](StringEnum.md) - ### Authorization No authorization required @@ -3022,38 +3175,37 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationOctetStream +# SchemaForRequestBodyApplicationOctetStream file to upload -Type | Description | Notes -------------- | ------------- | ------------- -**file_type** | file to upload | +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +bytes, io.FileIO, io.BufferedReader, | bytes, FileIO, | file to upload | ### Return Types, Responses Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned -200 | ApiResponseFor200 | successful operation +200 | [ApiResponseFor200](#upload_download_file.ApiResponseFor200) | successful operation -#### ApiResponseFor200 +#### upload_download_file.ApiResponseFor200 Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationOctetStream, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationOctetStream +# SchemaFor200ResponseBodyApplicationOctetStream file to download -Type | Description | Notes -------------- | ------------- | ------------- -**file_type** | file to download | - - -**file_type** +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +bytes, io.FileIO, io.BufferedReader, | bytes, FileIO, | file to download | ### Authorization @@ -3112,37 +3264,39 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyMultipartFormData +# SchemaForRequestBodyMultipartFormData -#### Properties -Name | Type | Description | Notes +## Model Type Info +Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**file** | **file_type** | file to upload | -**additionalMetadata** | **str** | Additional data to pass to server | [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] +dict, frozendict.frozendict, | frozendict.frozendict, | | + +### Dictionary Keys +Key | Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- | ------------- +**file** | bytes, io.FileIO, io.BufferedReader, | bytes, FileIO, | file to upload | +**additionalMetadata** | str, | str, | Additional data to pass to server | [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 Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned -200 | ApiResponseFor200 | successful operation +200 | [ApiResponseFor200](#upload_file.ApiResponseFor200) | successful operation -#### ApiResponseFor200 +#### upload_file.ApiResponseFor200 Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**ApiResponse**](ApiResponse.md) | | - - +[**ApiResponse**](../../models/ApiResponse.md) | | -[**ApiResponse**](ApiResponse.md) ### Authorization @@ -3202,36 +3356,50 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyMultipartFormData +# SchemaForRequestBodyMultipartFormData -#### Properties -Name | Type | Description | Notes +## Model Type Info +Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**files** | **[file_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] +dict, frozendict.frozendict, | frozendict.frozendict, | | + +### Dictionary Keys +Key | Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- | ------------- +**[files](#files)** | list, tuple, | tuple, | | [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] + +# files + +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +list, tuple, | tuple, | | + +### Tuple Items +Class Name | Input Type | Accessed Type | Description | Notes +------------- | ------------- | ------------- | ------------- | ------------- +items | bytes, io.FileIO, io.BufferedReader, | bytes, FileIO, | | ### Return Types, Responses Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned -200 | ApiResponseFor200 | successful operation +200 | [ApiResponseFor200](#upload_files.ApiResponseFor200) | successful operation -#### ApiResponseFor200 +#### upload_files.ApiResponseFor200 Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**ApiResponse**](ApiResponse.md) | | - - +[**ApiResponse**](../../models/ApiResponse.md) | | -[**ApiResponse**](ApiResponse.md) ### Authorization diff --git a/samples/openapi3/client/petstore/python-experimental/docs/apis/tags/FakeClassnameTags123Api.md b/samples/openapi3/client/petstore/python-experimental/docs/apis/tags/FakeClassnameTags123Api.md index 4194a0b17984..87b99456ada3 100644 --- a/samples/openapi3/client/petstore/python-experimental/docs/apis/tags/FakeClassnameTags123Api.md +++ b/samples/openapi3/client/petstore/python-experimental/docs/apis/tags/FakeClassnameTags123Api.md @@ -70,10 +70,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**Client**](Client.md) | | +[**Client**](../../models/Client.md) | | ### Return Types, Responses @@ -81,24 +81,21 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned -200 | ApiResponseFor200 | successful operation +200 | [ApiResponseFor200](#classname.ApiResponseFor200) | successful operation -#### ApiResponseFor200 +#### classname.ApiResponseFor200 Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**Client**](Client.md) | | +[**Client**](../../models/Client.md) | | - -[**Client**](Client.md) - ### Authorization [api_key_query](../../../README.md#api_key_query) diff --git a/samples/openapi3/client/petstore/python-experimental/docs/apis/tags/PetApi.md b/samples/openapi3/client/petstore/python-experimental/docs/apis/tags/PetApi.md index f165afbe6fac..a295a0d499ba 100644 --- a/samples/openapi3/client/petstore/python-experimental/docs/apis/tags/PetApi.md +++ b/samples/openapi3/client/petstore/python-experimental/docs/apis/tags/PetApi.md @@ -152,16 +152,16 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**Pet**](Pet.md) | | +[**Pet**](../../models/Pet.md) | | -#### SchemaForRequestBodyApplicationXml +# SchemaForRequestBodyApplicationXml Type | Description | Notes ------------- | ------------- | ------------- -[**Pet**](Pet.md) | | +[**Pet**](../../models/Pet.md) | | ### Return Types, Responses @@ -169,26 +169,23 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned -200 | ApiResponseFor200 | Ok -405 | ApiResponseFor405 | Invalid input +200 | [ApiResponseFor200](#add_pet.ApiResponseFor200) | Ok +405 | [ApiResponseFor405](#add_pet.ApiResponseFor405) | Invalid input -#### ApiResponseFor200 +#### add_pet.ApiResponseFor200 Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | -#### ApiResponseFor405 +#### add_pet.ApiResponseFor405 Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization [http_signature_test](../../../README.md#http_signature_test), [petstore_auth](../../../README.md#petstore_auth) @@ -277,11 +274,12 @@ Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- api_key | ApiKeySchema | | optional -#### ApiKeySchema +# ApiKeySchema -Type | Description | Notes -------------- | ------------- | ------------- -**str** | | +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +str, | str, | | ### path_params #### RequestPathParams @@ -290,29 +288,27 @@ Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- petId | PetIdSchema | | -#### PetIdSchema +# PetIdSchema -Type | Description | Notes -------------- | ------------- | ------------- -**int** | | +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +decimal.Decimal, int, | decimal.Decimal, | | value must be a 64 bit integer ### Return Types, Responses Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned -400 | ApiResponseFor400 | Invalid pet value +400 | [ApiResponseFor400](#delete_pet.ApiResponseFor400) | Invalid pet value -#### ApiResponseFor400 +#### delete_pet.ApiResponseFor400 Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization [petstore_auth](../../../README.md#petstore_auth) @@ -449,49 +445,64 @@ Name | Type | Description | Notes status | StatusSchema | | -#### StatusSchema +# StatusSchema -Type | Description | Notes -------------- | ------------- | ------------- -**[str]** | | +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +list, tuple, | tuple, | | + +### Tuple Items +Class Name | Input Type | Accessed Type | Description | Notes +------------- | ------------- | ------------- | ------------- | ------------- +items | str, | str, | | must be one of ["available", "pending", "sold", ] if omitted the server will use the default value of "available" ### Return Types, Responses Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned -200 | ApiResponseFor200 | successful operation -400 | ApiResponseFor400 | Invalid status value +200 | [ApiResponseFor200](#find_pets_by_status.ApiResponseFor200) | successful operation +400 | [ApiResponseFor400](#find_pets_by_status.ApiResponseFor400) | Invalid status value -#### ApiResponseFor200 +#### find_pets_by_status.ApiResponseFor200 Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationXml, SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationXml +# SchemaFor200ResponseBodyApplicationXml -Type | Description | Notes -------------- | ------------- | ------------- -**[Pet]** | | +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +list, tuple, | tuple, | | -#### SchemaFor200ResponseBodyApplicationJson +### Tuple Items +Class Name | Input Type | Accessed Type | Description | Notes +------------- | ------------- | ------------- | ------------- | ------------- +[**Pet**]({{complexTypePrefix}}Pet.md) | [**Pet**]({{complexTypePrefix}}Pet.md) | [**Pet**]({{complexTypePrefix}}Pet.md) | | -Type | Description | Notes -------------- | ------------- | ------------- -**[Pet]** | | +# SchemaFor200ResponseBodyApplicationJson + +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +list, tuple, | tuple, | | + +### Tuple Items +Class Name | Input Type | Accessed Type | Description | Notes +------------- | ------------- | ------------- | ------------- | ------------- +[**Pet**]({{complexTypePrefix}}Pet.md) | [**Pet**]({{complexTypePrefix}}Pet.md) | [**Pet**]({{complexTypePrefix}}Pet.md) | | -#### ApiResponseFor400 +#### find_pets_by_status.ApiResponseFor400 Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -[**[Pet]**](Pet.md) - ### Authorization [http_signature_test](../../../README.md#http_signature_test), [petstore_auth](../../../README.md#petstore_auth) @@ -628,49 +639,64 @@ Name | Type | Description | Notes tags | TagsSchema | | -#### TagsSchema +# TagsSchema -Type | Description | Notes -------------- | ------------- | ------------- -**[str]** | | +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +list, tuple, | tuple, | | + +### Tuple Items +Class Name | Input Type | Accessed Type | Description | Notes +------------- | ------------- | ------------- | ------------- | ------------- +items | str, | str, | | ### Return Types, Responses Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned -200 | ApiResponseFor200 | successful operation -400 | ApiResponseFor400 | Invalid tag value +200 | [ApiResponseFor200](#find_pets_by_tags.ApiResponseFor200) | successful operation +400 | [ApiResponseFor400](#find_pets_by_tags.ApiResponseFor400) | Invalid tag value -#### ApiResponseFor200 +#### find_pets_by_tags.ApiResponseFor200 Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationXml, SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationXml +# SchemaFor200ResponseBodyApplicationXml -Type | Description | Notes -------------- | ------------- | ------------- -**[Pet]** | | +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +list, tuple, | tuple, | | -#### SchemaFor200ResponseBodyApplicationJson +### Tuple Items +Class Name | Input Type | Accessed Type | Description | Notes +------------- | ------------- | ------------- | ------------- | ------------- +[**Pet**]({{complexTypePrefix}}Pet.md) | [**Pet**]({{complexTypePrefix}}Pet.md) | [**Pet**]({{complexTypePrefix}}Pet.md) | | -Type | Description | Notes -------------- | ------------- | ------------- -**[Pet]** | | +# SchemaFor200ResponseBodyApplicationJson -#### ApiResponseFor400 +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +list, tuple, | tuple, | | + +### Tuple Items +Class Name | Input Type | Accessed Type | Description | Notes +------------- | ------------- | ------------- | ------------- | ------------- +[**Pet**]({{complexTypePrefix}}Pet.md) | [**Pet**]({{complexTypePrefix}}Pet.md) | [**Pet**]({{complexTypePrefix}}Pet.md) | | + +#### find_pets_by_tags.ApiResponseFor400 Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -[**[Pet]**](Pet.md) - ### Authorization [http_signature_test](../../../README.md#http_signature_test), [petstore_auth](../../../README.md#petstore_auth) @@ -744,57 +770,55 @@ Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- petId | PetIdSchema | | -#### PetIdSchema +# PetIdSchema -Type | Description | Notes -------------- | ------------- | ------------- -**int** | | +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +decimal.Decimal, int, | decimal.Decimal, | | value must be a 64 bit integer ### Return Types, Responses Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned -200 | ApiResponseFor200 | successful operation -400 | ApiResponseFor400 | Invalid ID supplied -404 | ApiResponseFor404 | Pet not found +200 | [ApiResponseFor200](#get_pet_by_id.ApiResponseFor200) | successful operation +400 | [ApiResponseFor400](#get_pet_by_id.ApiResponseFor400) | Invalid ID supplied +404 | [ApiResponseFor404](#get_pet_by_id.ApiResponseFor404) | Pet not found -#### ApiResponseFor200 +#### get_pet_by_id.ApiResponseFor200 Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationXml, SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationXml +# SchemaFor200ResponseBodyApplicationXml Type | Description | Notes ------------- | ------------- | ------------- -[**Pet**](Pet.md) | | +[**Pet**](../../models/Pet.md) | | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**Pet**](Pet.md) | | +[**Pet**](../../models/Pet.md) | | -#### ApiResponseFor400 +#### get_pet_by_id.ApiResponseFor400 Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | -#### ApiResponseFor404 +#### get_pet_by_id.ApiResponseFor404 Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -[**Pet**](Pet.md) - ### Authorization [api_key](../../../README.md#api_key) @@ -936,16 +960,16 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**Pet**](Pet.md) | | +[**Pet**](../../models/Pet.md) | | -#### SchemaForRequestBodyApplicationXml +# SchemaForRequestBodyApplicationXml Type | Description | Notes ------------- | ------------- | ------------- -[**Pet**](Pet.md) | | +[**Pet**](../../models/Pet.md) | | ### Return Types, Responses @@ -953,34 +977,31 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned -400 | ApiResponseFor400 | Invalid ID supplied -404 | ApiResponseFor404 | Pet not found -405 | ApiResponseFor405 | Validation exception +400 | [ApiResponseFor400](#update_pet.ApiResponseFor400) | Invalid ID supplied +404 | [ApiResponseFor404](#update_pet.ApiResponseFor404) | Pet not found +405 | [ApiResponseFor405](#update_pet.ApiResponseFor405) | Validation exception -#### ApiResponseFor400 +#### update_pet.ApiResponseFor400 Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | -#### ApiResponseFor404 +#### update_pet.ApiResponseFor404 Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | -#### ApiResponseFor405 +#### update_pet.ApiResponseFor405 Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization [http_signature_test](../../../README.md#http_signature_test), [petstore_auth](../../../README.md#petstore_auth) @@ -1063,14 +1084,19 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationXWwwFormUrlencoded +# SchemaForRequestBodyApplicationXWwwFormUrlencoded -#### Properties -Name | Type | Description | Notes +## Model Type Info +Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**name** | **str** | Updated name of the pet | [optional] -**status** | **str** | Updated status of the pet | [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] +dict, frozendict.frozendict, | frozendict.frozendict, | | + +### Dictionary Keys +Key | Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- | ------------- +**name** | str, | str, | Updated name of the pet | [optional] +**status** | str, | str, | Updated status of the pet | [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] ### path_params #### RequestPathParams @@ -1079,29 +1105,27 @@ Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- petId | PetIdSchema | | -#### PetIdSchema +# PetIdSchema -Type | Description | Notes -------------- | ------------- | ------------- -**int** | | +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +decimal.Decimal, int, | decimal.Decimal, | | value must be a 64 bit integer ### Return Types, Responses Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned -405 | ApiResponseFor405 | Invalid input +405 | [ApiResponseFor405](#update_pet_with_form.ApiResponseFor405) | Invalid input -#### ApiResponseFor405 +#### update_pet_with_form.ApiResponseFor405 Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization [petstore_auth](../../../README.md#petstore_auth) @@ -1188,14 +1212,19 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyMultipartFormData +# SchemaForRequestBodyMultipartFormData -#### Properties -Name | Type | Description | Notes +## Model Type Info +Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**requiredFile** | **file_type** | file to upload | -**additionalMetadata** | **str** | Additional data to pass to server | [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] +dict, frozendict.frozendict, | frozendict.frozendict, | | + +### Dictionary Keys +Key | Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- | ------------- +**requiredFile** | bytes, io.FileIO, io.BufferedReader, | bytes, FileIO, | file to upload | +**additionalMetadata** | str, | str, | Additional data to pass to server | [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] ### path_params #### RequestPathParams @@ -1204,35 +1233,33 @@ Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- petId | PetIdSchema | | -#### PetIdSchema +# PetIdSchema -Type | Description | Notes -------------- | ------------- | ------------- -**int** | | +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +decimal.Decimal, int, | decimal.Decimal, | | value must be a 64 bit integer ### Return Types, Responses Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned -200 | ApiResponseFor200 | successful operation +200 | [ApiResponseFor200](#upload_file_with_required_file.ApiResponseFor200) | successful operation -#### ApiResponseFor200 +#### upload_file_with_required_file.ApiResponseFor200 Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**ApiResponse**](ApiResponse.md) | | - +[**ApiResponse**](../../models/ApiResponse.md) | | -[**ApiResponse**](ApiResponse.md) - ### Authorization [petstore_auth](../../../README.md#petstore_auth) @@ -1319,14 +1346,19 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyMultipartFormData +# SchemaForRequestBodyMultipartFormData -#### Properties -Name | Type | Description | Notes +## Model Type Info +Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**additionalMetadata** | **str** | Additional data to pass to server | [optional] -**file** | **file_type** | file to upload | [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] +dict, frozendict.frozendict, | frozendict.frozendict, | | + +### Dictionary Keys +Key | Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- | ------------- +**additionalMetadata** | str, | str, | Additional data to pass to server | [optional] +**file** | bytes, io.FileIO, io.BufferedReader, | bytes, FileIO, | file to upload | [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] ### path_params #### RequestPathParams @@ -1335,34 +1367,32 @@ Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- petId | PetIdSchema | | -#### PetIdSchema +# PetIdSchema -Type | Description | Notes -------------- | ------------- | ------------- -**int** | | +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +decimal.Decimal, int, | decimal.Decimal, | | value must be a 64 bit integer ### Return Types, Responses Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned -200 | ApiResponseFor200 | successful operation +200 | [ApiResponseFor200](#upload_image.ApiResponseFor200) | successful operation -#### ApiResponseFor200 +#### upload_image.ApiResponseFor200 Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**ApiResponse**](ApiResponse.md) | | - - +[**ApiResponse**](../../models/ApiResponse.md) | | -[**ApiResponse**](ApiResponse.md) ### Authorization diff --git a/samples/openapi3/client/petstore/python-experimental/docs/apis/tags/StoreApi.md b/samples/openapi3/client/petstore/python-experimental/docs/apis/tags/StoreApi.md index c197a18a7a9e..a75abbcffc0d 100644 --- a/samples/openapi3/client/petstore/python-experimental/docs/apis/tags/StoreApi.md +++ b/samples/openapi3/client/petstore/python-experimental/docs/apis/tags/StoreApi.md @@ -63,37 +63,35 @@ Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- order_id | OrderIdSchema | | -#### OrderIdSchema +# OrderIdSchema -Type | Description | Notes -------------- | ------------- | ------------- -**str** | | +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +str, | str, | | ### Return Types, Responses Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned -400 | ApiResponseFor400 | Invalid ID supplied -404 | ApiResponseFor404 | Order not found +400 | [ApiResponseFor400](#delete_order.ApiResponseFor400) | Invalid ID supplied +404 | [ApiResponseFor404](#delete_order.ApiResponseFor404) | Order not found -#### ApiResponseFor400 +#### delete_order.ApiResponseFor400 Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | -#### ApiResponseFor404 +#### delete_order.ApiResponseFor404 Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -152,24 +150,26 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned -200 | ApiResponseFor200 | successful operation +200 | [ApiResponseFor200](#get_inventory.ApiResponseFor200) | successful operation -#### ApiResponseFor200 +#### get_inventory.ApiResponseFor200 Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson -#### Properties -Name | Type | Description | Notes +## Model Type Info +Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**any string name** | **int** | any string name can be used but the value must be the correct type | [optional] - +dict, frozendict.frozendict, | frozendict.frozendict, | | -**{str: (int,)}** +### Dictionary Keys +Key | Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- | ------------- +**any_string_name** | decimal.Decimal, int, | decimal.Decimal, | any string name can be used but the value must be the correct type | [optional] value must be a 32 bit integer ### Authorization @@ -233,57 +233,55 @@ Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- order_id | OrderIdSchema | | -#### OrderIdSchema +# OrderIdSchema -Type | Description | Notes -------------- | ------------- | ------------- -**int** | | +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +decimal.Decimal, int, | decimal.Decimal, | | value must be a 64 bit integer ### Return Types, Responses Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned -200 | ApiResponseFor200 | successful operation -400 | ApiResponseFor400 | Invalid ID supplied -404 | ApiResponseFor404 | Order not found +200 | [ApiResponseFor200](#get_order_by_id.ApiResponseFor200) | successful operation +400 | [ApiResponseFor400](#get_order_by_id.ApiResponseFor400) | Invalid ID supplied +404 | [ApiResponseFor404](#get_order_by_id.ApiResponseFor404) | Order not found -#### ApiResponseFor200 +#### get_order_by_id.ApiResponseFor200 Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationXml, SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationXml +# SchemaFor200ResponseBodyApplicationXml Type | Description | Notes ------------- | ------------- | ------------- -[**Order**](Order.md) | | +[**Order**](../../models/Order.md) | | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**Order**](Order.md) | | +[**Order**](../../models/Order.md) | | -#### ApiResponseFor400 +#### get_order_by_id.ApiResponseFor400 Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | -#### ApiResponseFor404 +#### get_order_by_id.ApiResponseFor404 Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -[**Order**](Order.md) - ### Authorization No authorization required @@ -345,10 +343,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**Order**](Order.md) | | +[**Order**](../../models/Order.md) | | ### Return Types, Responses @@ -356,38 +354,35 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned -200 | ApiResponseFor200 | successful operation -400 | ApiResponseFor400 | Invalid Order +200 | [ApiResponseFor200](#place_order.ApiResponseFor200) | successful operation +400 | [ApiResponseFor400](#place_order.ApiResponseFor400) | Invalid Order -#### ApiResponseFor200 +#### place_order.ApiResponseFor200 Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationXml, SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationXml +# SchemaFor200ResponseBodyApplicationXml Type | Description | Notes ------------- | ------------- | ------------- -[**Order**](Order.md) | | +[**Order**](../../models/Order.md) | | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**Order**](Order.md) | | +[**Order**](../../models/Order.md) | | -#### ApiResponseFor400 +#### place_order.ApiResponseFor400 Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -[**Order**](Order.md) - ### Authorization No authorization required diff --git a/samples/openapi3/client/petstore/python-experimental/docs/apis/tags/UserApi.md b/samples/openapi3/client/petstore/python-experimental/docs/apis/tags/UserApi.md index 8a948b820b1d..f2d02572af57 100644 --- a/samples/openapi3/client/petstore/python-experimental/docs/apis/tags/UserApi.md +++ b/samples/openapi3/client/petstore/python-experimental/docs/apis/tags/UserApi.md @@ -76,10 +76,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**User**](User.md) | | +[**User**](../../models/User.md) | | ### Return Types, Responses @@ -87,18 +87,15 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned -default | ApiResponseForDefault | successful operation +default | [ApiResponseForDefault](#create_user.ApiResponseForDefault) | successful operation -#### ApiResponseForDefault +#### create_user.ApiResponseForDefault Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -167,29 +164,32 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson -Type | Description | Notes -------------- | ------------- | ------------- -**[User]** | | +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +list, tuple, | tuple, | | + +### Tuple Items +Class Name | Input Type | Accessed Type | Description | Notes +------------- | ------------- | ------------- | ------------- | ------------- +[**User**]({{complexTypePrefix}}User.md) | [**User**]({{complexTypePrefix}}User.md) | [**User**]({{complexTypePrefix}}User.md) | | ### Return Types, Responses Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned -default | ApiResponseForDefault | successful operation +default | [ApiResponseForDefault](#create_users_with_array_input.ApiResponseForDefault) | successful operation -#### ApiResponseForDefault +#### create_users_with_array_input.ApiResponseForDefault Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -258,29 +258,32 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson -Type | Description | Notes -------------- | ------------- | ------------- -**[User]** | | +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +list, tuple, | tuple, | | + +### Tuple Items +Class Name | Input Type | Accessed Type | Description | Notes +------------- | ------------- | ------------- | ------------- | ------------- +[**User**]({{complexTypePrefix}}User.md) | [**User**]({{complexTypePrefix}}User.md) | [**User**]({{complexTypePrefix}}User.md) | | ### Return Types, Responses Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned -default | ApiResponseForDefault | successful operation +default | [ApiResponseForDefault](#create_users_with_list_input.ApiResponseForDefault) | successful operation -#### ApiResponseForDefault +#### create_users_with_list_input.ApiResponseForDefault Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -340,37 +343,35 @@ Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- username | UsernameSchema | | -#### UsernameSchema +# UsernameSchema -Type | Description | Notes -------------- | ------------- | ------------- -**str** | | +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +str, | str, | | ### Return Types, Responses Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned -400 | ApiResponseFor400 | Invalid username supplied -404 | ApiResponseFor404 | User not found +400 | [ApiResponseFor400](#delete_user.ApiResponseFor400) | Invalid username supplied +404 | [ApiResponseFor404](#delete_user.ApiResponseFor404) | User not found -#### ApiResponseFor400 +#### delete_user.ApiResponseFor400 Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | -#### ApiResponseFor404 +#### delete_user.ApiResponseFor404 Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -431,57 +432,55 @@ Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- username | UsernameSchema | | -#### UsernameSchema +# UsernameSchema -Type | Description | Notes -------------- | ------------- | ------------- -**str** | | +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +str, | str, | | ### Return Types, Responses Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned -200 | ApiResponseFor200 | successful operation -400 | ApiResponseFor400 | Invalid username supplied -404 | ApiResponseFor404 | User not found +200 | [ApiResponseFor200](#get_user_by_name.ApiResponseFor200) | successful operation +400 | [ApiResponseFor400](#get_user_by_name.ApiResponseFor400) | Invalid username supplied +404 | [ApiResponseFor404](#get_user_by_name.ApiResponseFor404) | User not found -#### ApiResponseFor200 +#### get_user_by_name.ApiResponseFor200 Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationXml, SchemaFor200ResponseBodyApplicationJson, ] | | headers | Unset | headers were not defined | -#### SchemaFor200ResponseBodyApplicationXml +# SchemaFor200ResponseBodyApplicationXml Type | Description | Notes ------------- | ------------- | ------------- -[**User**](User.md) | | +[**User**](../../models/User.md) | | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**User**](User.md) | | +[**User**](../../models/User.md) | | -#### ApiResponseFor400 +#### get_user_by_name.ApiResponseFor400 Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | -#### ApiResponseFor404 +#### get_user_by_name.ApiResponseFor404 Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -[**User**](User.md) - ### Authorization No authorization required @@ -544,44 +543,48 @@ username | UsernameSchema | | password | PasswordSchema | | -#### UsernameSchema +# UsernameSchema -Type | Description | Notes -------------- | ------------- | ------------- -**str** | | +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +str, | str, | | -#### PasswordSchema +# PasswordSchema -Type | Description | Notes -------------- | ------------- | ------------- -**str** | | +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +str, | str, | | ### Return Types, Responses Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned -200 | ApiResponseFor200 | successful operation -400 | ApiResponseFor400 | Invalid username/password supplied +200 | [ApiResponseFor200](#login_user.ApiResponseFor200) | successful operation +400 | [ApiResponseFor400](#login_user.ApiResponseFor400) | Invalid username/password supplied -#### ApiResponseFor200 +#### login_user.ApiResponseFor200 Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | typing.Union[SchemaFor200ResponseBodyApplicationXml, SchemaFor200ResponseBodyApplicationJson, ] | | headers | ResponseHeadersFor200 | | -#### SchemaFor200ResponseBodyApplicationXml +# SchemaFor200ResponseBodyApplicationXml -Type | Description | Notes -------------- | ------------- | ------------- -**str** | | +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +str, | str, | | -#### SchemaFor200ResponseBodyApplicationJson +# SchemaFor200ResponseBodyApplicationJson -Type | Description | Notes -------------- | ------------- | ------------- -**str** | | +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +str, | str, | | #### ResponseHeadersFor200 Name | Type | Description | Notes @@ -589,33 +592,32 @@ Name | Type | Description | Notes X-Rate-Limit | XRateLimitSchema | | optional X-Expires-After | XExpiresAfterSchema | | optional -#### XRateLimitSchema +# XRateLimitSchema calls per hour allowed by the user -Type | Description | Notes -------------- | ------------- | ------------- -**int** | calls per hour allowed by the user | +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +decimal.Decimal, int, | decimal.Decimal, | calls per hour allowed by the user | value must be a 32 bit integer -#### XExpiresAfterSchema +# XExpiresAfterSchema date in UTC when token expires -Type | Description | Notes -------------- | ------------- | ------------- -**datetime** | date in UTC when token expires | +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +str, datetime, | str, | date in UTC when token expires | value must conform to RFC-3339 date-time -#### ApiResponseFor400 +#### login_user.ApiResponseFor400 Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -**str** - ### Authorization No authorization required @@ -660,18 +662,15 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned -default | ApiResponseForDefault | successful operation +default | [ApiResponseForDefault](#logout_user.ApiResponseForDefault) | successful operation -#### ApiResponseForDefault +#### logout_user.ApiResponseForDefault Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required @@ -745,10 +744,10 @@ skip_deserialization | bool | default is False | when True, headers and body wil ### body -#### SchemaForRequestBodyApplicationJson +# SchemaForRequestBodyApplicationJson Type | Description | Notes ------------- | ------------- | ------------- -[**User**](User.md) | | +[**User**](../../models/User.md) | | ### path_params @@ -758,37 +757,35 @@ Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- username | UsernameSchema | | -#### UsernameSchema +# UsernameSchema -Type | Description | Notes -------------- | ------------- | ------------- -**str** | | +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +str, | str, | | ### Return Types, Responses Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned -400 | ApiResponseFor400 | Invalid user supplied -404 | ApiResponseFor404 | User not found +400 | [ApiResponseFor400](#update_user.ApiResponseFor400) | Invalid user supplied +404 | [ApiResponseFor404](#update_user.ApiResponseFor404) | User not found -#### ApiResponseFor400 +#### update_user.ApiResponseFor400 Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | -#### ApiResponseFor404 +#### update_user.ApiResponseFor404 Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | - -void (empty response body) - ### Authorization No authorization required diff --git a/samples/openapi3/client/petstore/python-experimental/docs/models/AdditionalPropertiesClass.md b/samples/openapi3/client/petstore/python-experimental/docs/models/AdditionalPropertiesClass.md index 938f852d4d67..80e4e7709919 100644 --- a/samples/openapi3/client/petstore/python-experimental/docs/models/AdditionalPropertiesClass.md +++ b/samples/openapi3/client/petstore/python-experimental/docs/models/AdditionalPropertiesClass.md @@ -1,17 +1,109 @@ # petstore_api.model.additional_properties_class.AdditionalPropertiesClass -#### Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**map_property** | **{str: (str,)}** | | [optional] -**map_of_map_property** | **{str: ({str: (str,)},)}** | | [optional] -**anytype_1** | **bool, date, datetime, dict, float, int, list, str, none_type** | | [optional] -**map_with_undeclared_properties_anytype_1** | **{str: (bool, date, datetime, dict, float, int, list, str, none_type)}** | | [optional] -**map_with_undeclared_properties_anytype_2** | **{str: (bool, date, datetime, dict, float, int, list, str, none_type)}** | | [optional] -**map_with_undeclared_properties_anytype_3** | **{str: (bool, date, datetime, dict, float, int, list, str, none_type)}** | | [optional] -**empty_map** | **{str: typing.Any}** | an object with no declared properties and no undeclared properties, hence it's an empty map. | [optional] -**map_with_undeclared_properties_string** | **{str: (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] +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +dict, frozendict.frozendict, | frozendict.frozendict, | | + +### Dictionary Keys +Key | Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- | ------------- +**[map_property](#map_property)** | dict, frozendict.frozendict, | frozendict.frozendict, | | [optional] +**[map_of_map_property](#map_of_map_property)** | dict, frozendict.frozendict, | frozendict.frozendict, | | [optional] +**anytype_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 | | [optional] +**[map_with_undeclared_properties_anytype_1](#map_with_undeclared_properties_anytype_1)** | dict, frozendict.frozendict, | frozendict.frozendict, | | [optional] +**[map_with_undeclared_properties_anytype_2](#map_with_undeclared_properties_anytype_2)** | dict, frozendict.frozendict, | frozendict.frozendict, | | [optional] +**[map_with_undeclared_properties_anytype_3](#map_with_undeclared_properties_anytype_3)** | dict, frozendict.frozendict, | frozendict.frozendict, | | [optional] +**[empty_map](#empty_map)** | dict, frozendict.frozendict, | frozendict.frozendict, | an object with no declared properties and no undeclared properties, hence it's an empty map. | [optional] +**[map_with_undeclared_properties_string](#map_with_undeclared_properties_string)** | dict, frozendict.frozendict, | frozendict.frozendict, | | [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] + +# map_property + +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +dict, frozendict.frozendict, | frozendict.frozendict, | | + +### Dictionary Keys +Key | Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- | ------------- +**any_string_name** | str, | str, | any string name can be used but the value must be the correct type | [optional] + +# map_of_map_property + +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +dict, frozendict.frozendict, | frozendict.frozendict, | | + +### Dictionary Keys +Key | Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- | ------------- +**[any_string_name](#any_string_name)** | dict, frozendict.frozendict, | frozendict.frozendict, | any string name can be used but the value must be the correct type | [optional] + +# any_string_name + +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +dict, frozendict.frozendict, | frozendict.frozendict, | | + +### Dictionary Keys +Key | Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- | ------------- +**any_string_name** | str, | str, | any string name can be used but the value must be the correct type | [optional] + +# map_with_undeclared_properties_anytype_1 + +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +dict, frozendict.frozendict, | frozendict.frozendict, | | + +# map_with_undeclared_properties_anytype_2 + +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +dict, frozendict.frozendict, | frozendict.frozendict, | | + +# map_with_undeclared_properties_anytype_3 + +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +dict, frozendict.frozendict, | frozendict.frozendict, | | + +### Dictionary Keys +Key | Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- | ------------- +**any_string_name** | 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 can be used but the value must be the correct type | [optional] + +# empty_map + +an object with no declared properties and no undeclared properties, hence it's an empty map. + +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +dict, frozendict.frozendict, | frozendict.frozendict, | an object with no declared properties and no undeclared properties, hence it's an empty map. | + +### Dictionary Keys +Key | Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- | ------------- + +# map_with_undeclared_properties_string + +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +dict, frozendict.frozendict, | frozendict.frozendict, | | + +### Dictionary Keys +Key | Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- | ------------- +**any_string_name** | str, | str, | 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) diff --git a/samples/openapi3/client/petstore/python-experimental/docs/models/AdditionalPropertiesValidator.md b/samples/openapi3/client/petstore/python-experimental/docs/models/AdditionalPropertiesValidator.md index 601107887d72..4a386a3864c4 100644 --- a/samples/openapi3/client/petstore/python-experimental/docs/models/AdditionalPropertiesValidator.md +++ b/samples/openapi3/client/petstore/python-experimental/docs/models/AdditionalPropertiesValidator.md @@ -1,8 +1,53 @@ # petstore_api.model.additional_properties_validator.AdditionalPropertiesValidator -Type | Description | Notes -------------- | ------------- | ------------- -**object** | | +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +dict, frozendict.frozendict, | frozendict.frozendict, | | + +### Composed Schemas (allOf/anyOf/oneOf/not) +#### allOf +Class Name | Input Type | Accessed Type | Description | Notes +------------- | ------------- | ------------- | ------------- | ------------- +[all_of_0](#all_of_0) | dict, frozendict.frozendict, | frozendict.frozendict, | | +[all_of_1](#all_of_1) | dict, frozendict.frozendict, | frozendict.frozendict, | | +[all_of_2](#all_of_2) | dict, frozendict.frozendict, | frozendict.frozendict, | | + +# all_of_0 + +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +dict, frozendict.frozendict, | frozendict.frozendict, | | + +### Dictionary Keys +Key | Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- | ------------- +**any_string_name** | 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 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, | frozendict.frozendict, | | + +### Dictionary Keys +Key | Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- | ------------- +**any_string_name** | 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 can be used but the value must be the correct type | [optional] + +# all_of_2 + +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +dict, frozendict.frozendict, | frozendict.frozendict, | | + +### Dictionary Keys +Key | Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- | ------------- +**any_string_name** | 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 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) diff --git a/samples/openapi3/client/petstore/python-experimental/docs/models/AdditionalPropertiesWithArrayOfEnums.md b/samples/openapi3/client/petstore/python-experimental/docs/models/AdditionalPropertiesWithArrayOfEnums.md index 3fc1ac9fbdf0..22dd693183c0 100644 --- a/samples/openapi3/client/petstore/python-experimental/docs/models/AdditionalPropertiesWithArrayOfEnums.md +++ b/samples/openapi3/client/petstore/python-experimental/docs/models/AdditionalPropertiesWithArrayOfEnums.md @@ -1,9 +1,26 @@ # petstore_api.model.additional_properties_with_array_of_enums.AdditionalPropertiesWithArrayOfEnums -#### Properties -Name | Type | Description | Notes +## Model Type Info +Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**any string name** | **[EnumClass]** | 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](#any_string_name)** | list, tuple, | tuple, | any string name can be used but the value must be the correct type | [optional] + +# any_string_name + +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +list, tuple, | tuple, | | + +### Tuple Items +Class Name | Input Type | Accessed Type | Description | Notes +------------- | ------------- | ------------- | ------------- | ------------- +[**EnumClass**](EnumClass.md) | [**EnumClass**](EnumClass.md) | [**EnumClass**](EnumClass.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) diff --git a/samples/openapi3/client/petstore/python-experimental/docs/models/Address.md b/samples/openapi3/client/petstore/python-experimental/docs/models/Address.md index badfd3c37057..1ec43dfd0bcf 100644 --- a/samples/openapi3/client/petstore/python-experimental/docs/models/Address.md +++ b/samples/openapi3/client/petstore/python-experimental/docs/models/Address.md @@ -1,9 +1,14 @@ # petstore_api.model.address.Address -#### Properties -Name | Type | Description | Notes +## Model Type Info +Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**any string name** | **int** | 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** | decimal.Decimal, int, | decimal.Decimal, | 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) diff --git a/samples/openapi3/client/petstore/python-experimental/docs/models/Animal.md b/samples/openapi3/client/petstore/python-experimental/docs/models/Animal.md index a12bd27f3ba6..bf064d289ed1 100644 --- a/samples/openapi3/client/petstore/python-experimental/docs/models/Animal.md +++ b/samples/openapi3/client/petstore/python-experimental/docs/models/Animal.md @@ -1,11 +1,16 @@ # petstore_api.model.animal.Animal -#### Properties -Name | Type | Description | Notes +## Model Type Info +Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**className** | **str** | | -**color** | **str** | | [optional] if omitted the server will use the default value of "red" -**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] +dict, frozendict.frozendict, | frozendict.frozendict, | | + +### Dictionary Keys +Key | Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- | ------------- +**className** | str, | str, | | +**color** | str, | str, | | [optional] if omitted the server will use the default value of "red" +**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) diff --git a/samples/openapi3/client/petstore/python-experimental/docs/models/AnimalFarm.md b/samples/openapi3/client/petstore/python-experimental/docs/models/AnimalFarm.md index 2adb90a0cf11..f1b1468e77e3 100644 --- a/samples/openapi3/client/petstore/python-experimental/docs/models/AnimalFarm.md +++ b/samples/openapi3/client/petstore/python-experimental/docs/models/AnimalFarm.md @@ -1,8 +1,14 @@ # petstore_api.model.animal_farm.AnimalFarm -Type | Description | Notes -------------- | ------------- | ------------- -**[Animal]** | | +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +list, tuple, | tuple, | | + +### Tuple Items +Class Name | Input Type | Accessed Type | Description | Notes +------------- | ------------- | ------------- | ------------- | ------------- +[**Animal**](Animal.md) | [**Animal**](Animal.md) | [**Animal**](Animal.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) diff --git a/samples/openapi3/client/petstore/python-experimental/docs/models/AnyTypeAndFormat.md b/samples/openapi3/client/petstore/python-experimental/docs/models/AnyTypeAndFormat.md index 0c55af0f59d3..812e5c6a1ee1 100644 --- a/samples/openapi3/client/petstore/python-experimental/docs/models/AnyTypeAndFormat.md +++ b/samples/openapi3/client/petstore/python-experimental/docs/models/AnyTypeAndFormat.md @@ -1,18 +1,23 @@ # petstore_api.model.any_type_and_format.AnyTypeAndFormat -#### Properties -Name | Type | Description | Notes +## Model Type Info +Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**uuid** | **bool, date, datetime, dict, float, int, list, str, none_type** | | [optional] -**date** | **bool, date, datetime, dict, float, int, list, str, none_type** | | [optional] -**date-time** | **bool, date, datetime, dict, float, int, list, str, none_type** | | [optional] -**number** | **bool, date, datetime, dict, float, int, list, str, none_type** | | [optional] -**binary** | **bool, date, datetime, dict, float, int, list, str, none_type** | | [optional] -**int32** | **bool, date, datetime, dict, float, int, list, str, none_type** | | [optional] -**int64** | **bool, date, datetime, dict, float, int, list, str, none_type** | | [optional] -**double** | **bool, date, datetime, dict, float, int, list, str, none_type** | | [optional] -**float** | **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] +dict, frozendict.frozendict, | frozendict.frozendict, | | + +### Dictionary Keys +Key | Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- | ------------- +**uuid** | 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] value must be a uuid +**date** | 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] value must conform to RFC-3339 full-date YYYY-MM-DD +**date-time** | 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] value must conform to RFC-3339 date-time +**number** | 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] value must be numeric and storable in decimal.Decimal +**binary** | 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] +**int32** | 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] value must be a 32 bit integer +**int64** | 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] value must be a 64 bit integer +**double** | 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] value must be a 64 bit float +**float** | 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] value must be a 32 bit float +**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) diff --git a/samples/openapi3/client/petstore/python-experimental/docs/models/AnyTypeNotString.md b/samples/openapi3/client/petstore/python-experimental/docs/models/AnyTypeNotString.md index b779ad8ff2c1..ff57ed8d2136 100644 --- a/samples/openapi3/client/petstore/python-experimental/docs/models/AnyTypeNotString.md +++ b/samples/openapi3/client/petstore/python-experimental/docs/models/AnyTypeNotString.md @@ -1,8 +1,22 @@ # petstore_api.model.any_type_not_string.AnyTypeNotString -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | +## 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) | str, | str, | | + +# not_schema + +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +str, | str, | | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) diff --git a/samples/openapi3/client/petstore/python-experimental/docs/models/ApiResponse.md b/samples/openapi3/client/petstore/python-experimental/docs/models/ApiResponse.md index b22ca66e2595..578aa06cb50b 100644 --- a/samples/openapi3/client/petstore/python-experimental/docs/models/ApiResponse.md +++ b/samples/openapi3/client/petstore/python-experimental/docs/models/ApiResponse.md @@ -1,12 +1,17 @@ # petstore_api.model.api_response.ApiResponse -#### Properties -Name | Type | Description | Notes +## Model Type Info +Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**code** | **int** | | [optional] -**type** | **str** | | [optional] -**message** | **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] +dict, frozendict.frozendict, | frozendict.frozendict, | | + +### Dictionary Keys +Key | Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- | ------------- +**code** | decimal.Decimal, int, | decimal.Decimal, | | [optional] value must be a 32 bit integer +**type** | str, | str, | | [optional] +**message** | 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) diff --git a/samples/openapi3/client/petstore/python-experimental/docs/models/Apple.md b/samples/openapi3/client/petstore/python-experimental/docs/models/Apple.md index 5b85514299ef..84c3ab8da584 100644 --- a/samples/openapi3/client/petstore/python-experimental/docs/models/Apple.md +++ b/samples/openapi3/client/petstore/python-experimental/docs/models/Apple.md @@ -1,11 +1,16 @@ # petstore_api.model.apple.Apple -#### Properties -Name | Type | Description | Notes +## Model Type Info +Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**cultivar** | **str** | | -**origin** | **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] +dict, frozendict.frozendict, None, | frozendict.frozendict, NoneClass, | | + +### Dictionary Keys +Key | Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- | ------------- +**cultivar** | str, | str, | | +**origin** | 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) diff --git a/samples/openapi3/client/petstore/python-experimental/docs/models/AppleReq.md b/samples/openapi3/client/petstore/python-experimental/docs/models/AppleReq.md index 17b7d6db227f..59e2c1b00c83 100644 --- a/samples/openapi3/client/petstore/python-experimental/docs/models/AppleReq.md +++ b/samples/openapi3/client/petstore/python-experimental/docs/models/AppleReq.md @@ -1,10 +1,15 @@ # petstore_api.model.apple_req.AppleReq -#### Properties -Name | Type | Description | Notes +## Model Type Info +Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**cultivar** | **str** | | -**mealy** | **bool** | | [optional] +dict, frozendict.frozendict, | frozendict.frozendict, | | + +### Dictionary Keys +Key | Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- | ------------- +**cultivar** | str, | str, | | +**mealy** | bool, | BoolClass, | | [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) diff --git a/samples/openapi3/client/petstore/python-experimental/docs/models/ArrayHoldingAnyType.md b/samples/openapi3/client/petstore/python-experimental/docs/models/ArrayHoldingAnyType.md index f3491b361f8a..7dc14c3018ec 100644 --- a/samples/openapi3/client/petstore/python-experimental/docs/models/ArrayHoldingAnyType.md +++ b/samples/openapi3/client/petstore/python-experimental/docs/models/ArrayHoldingAnyType.md @@ -1,8 +1,14 @@ # petstore_api.model.array_holding_any_type.ArrayHoldingAnyType -Type | Description | Notes -------------- | ------------- | ------------- -**[bool, date, datetime, dict, float, int, list, str, none_type]** | | +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +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 | any type can be stored here | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) diff --git a/samples/openapi3/client/petstore/python-experimental/docs/models/ArrayOfArrayOfNumberOnly.md b/samples/openapi3/client/petstore/python-experimental/docs/models/ArrayOfArrayOfNumberOnly.md index 745774d3dd45..b3e7a281e0a6 100644 --- a/samples/openapi3/client/petstore/python-experimental/docs/models/ArrayOfArrayOfNumberOnly.md +++ b/samples/openapi3/client/petstore/python-experimental/docs/models/ArrayOfArrayOfNumberOnly.md @@ -1,10 +1,39 @@ # petstore_api.model.array_of_array_of_number_only.ArrayOfArrayOfNumberOnly -#### Properties -Name | Type | Description | Notes +## Model Type Info +Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**ArrayArrayNumber** | **[[int, float]]** | | [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] +dict, frozendict.frozendict, | frozendict.frozendict, | | + +### Dictionary Keys +Key | Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- | ------------- +**[ArrayArrayNumber](#ArrayArrayNumber)** | list, tuple, | tuple, | | [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] + +# ArrayArrayNumber + +## 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) diff --git a/samples/openapi3/client/petstore/python-experimental/docs/models/ArrayOfEnums.md b/samples/openapi3/client/petstore/python-experimental/docs/models/ArrayOfEnums.md index 9fea01a24851..dca614b9ae6e 100644 --- a/samples/openapi3/client/petstore/python-experimental/docs/models/ArrayOfEnums.md +++ b/samples/openapi3/client/petstore/python-experimental/docs/models/ArrayOfEnums.md @@ -1,8 +1,14 @@ # petstore_api.model.array_of_enums.ArrayOfEnums -Type | Description | Notes -------------- | ------------- | ------------- -**[StringEnum]** | | +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +list, tuple, | tuple, | | + +### Tuple Items +Class Name | Input Type | Accessed Type | Description | Notes +------------- | ------------- | ------------- | ------------- | ------------- +[**StringEnum**](StringEnum.md) | [**StringEnum**](StringEnum.md) | [**StringEnum**](StringEnum.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) diff --git a/samples/openapi3/client/petstore/python-experimental/docs/models/ArrayOfNumberOnly.md b/samples/openapi3/client/petstore/python-experimental/docs/models/ArrayOfNumberOnly.md index 1e0bf6061632..271dff52fd01 100644 --- a/samples/openapi3/client/petstore/python-experimental/docs/models/ArrayOfNumberOnly.md +++ b/samples/openapi3/client/petstore/python-experimental/docs/models/ArrayOfNumberOnly.md @@ -1,10 +1,27 @@ # petstore_api.model.array_of_number_only.ArrayOfNumberOnly -#### Properties -Name | Type | Description | Notes +## Model Type Info +Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**ArrayNumber** | **[int, float]** | | [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] +dict, frozendict.frozendict, | frozendict.frozendict, | | + +### Dictionary Keys +Key | Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- | ------------- +**[ArrayNumber](#ArrayNumber)** | list, tuple, | tuple, | | [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] + +# ArrayNumber + +## 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) diff --git a/samples/openapi3/client/petstore/python-experimental/docs/models/ArrayTest.md b/samples/openapi3/client/petstore/python-experimental/docs/models/ArrayTest.md index d12c6a2ebaa6..657329575ee5 100644 --- a/samples/openapi3/client/petstore/python-experimental/docs/models/ArrayTest.md +++ b/samples/openapi3/client/petstore/python-experimental/docs/models/ArrayTest.md @@ -1,12 +1,77 @@ # petstore_api.model.array_test.ArrayTest -#### Properties -Name | Type | Description | Notes +## Model Type Info +Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**array_of_string** | **[str]** | | [optional] -**array_array_of_integer** | **[[int]]** | | [optional] -**array_array_of_model** | **[[ReadOnlyFirst]]** | | [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] +dict, frozendict.frozendict, | frozendict.frozendict, | | + +### Dictionary Keys +Key | Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- | ------------- +**[array_of_string](#array_of_string)** | list, tuple, | tuple, | | [optional] +**[array_array_of_integer](#array_array_of_integer)** | list, tuple, | tuple, | | [optional] +**[array_array_of_model](#array_array_of_model)** | list, tuple, | tuple, | | [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] + +# array_of_string + +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +list, tuple, | tuple, | | + +### Tuple Items +Class Name | Input Type | Accessed Type | Description | Notes +------------- | ------------- | ------------- | ------------- | ------------- +items | str, | str, | | + +# array_array_of_integer + +## 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, | decimal.Decimal, | | value must be a 64 bit integer + +# array_array_of_model + +## 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 +------------- | ------------- | ------------- | ------------- | ------------- +[**ReadOnlyFirst**](ReadOnlyFirst.md) | [**ReadOnlyFirst**](ReadOnlyFirst.md) | [**ReadOnlyFirst**](ReadOnlyFirst.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) diff --git a/samples/openapi3/client/petstore/python-experimental/docs/models/ArrayWithValidationsInItems.md b/samples/openapi3/client/petstore/python-experimental/docs/models/ArrayWithValidationsInItems.md index 66e0ee53bd92..b81ab8cd5d66 100644 --- a/samples/openapi3/client/petstore/python-experimental/docs/models/ArrayWithValidationsInItems.md +++ b/samples/openapi3/client/petstore/python-experimental/docs/models/ArrayWithValidationsInItems.md @@ -1,8 +1,14 @@ # petstore_api.model.array_with_validations_in_items.ArrayWithValidationsInItems -Type | Description | Notes -------------- | ------------- | ------------- -**[int]** | | +## 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, | decimal.Decimal, | | value must be a 64 bit integer [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) diff --git a/samples/openapi3/client/petstore/python-experimental/docs/models/Banana.md b/samples/openapi3/client/petstore/python-experimental/docs/models/Banana.md index 8a3ba11bf7bc..034c7f777096 100644 --- a/samples/openapi3/client/petstore/python-experimental/docs/models/Banana.md +++ b/samples/openapi3/client/petstore/python-experimental/docs/models/Banana.md @@ -1,10 +1,15 @@ # petstore_api.model.banana.Banana -#### Properties -Name | Type | Description | Notes +## Model Type Info +Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**lengthCm** | **int, float** | | -**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] +dict, frozendict.frozendict, | frozendict.frozendict, | | + +### Dictionary Keys +Key | Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- | ------------- +**lengthCm** | decimal.Decimal, int, float, | 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] [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) diff --git a/samples/openapi3/client/petstore/python-experimental/docs/models/BananaReq.md b/samples/openapi3/client/petstore/python-experimental/docs/models/BananaReq.md index a386d04fd26f..ae53efbfe95a 100644 --- a/samples/openapi3/client/petstore/python-experimental/docs/models/BananaReq.md +++ b/samples/openapi3/client/petstore/python-experimental/docs/models/BananaReq.md @@ -1,10 +1,15 @@ # petstore_api.model.banana_req.BananaReq -#### Properties -Name | Type | Description | Notes +## Model Type Info +Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**lengthCm** | **int, float** | | -**sweet** | **bool** | | [optional] +dict, frozendict.frozendict, | frozendict.frozendict, | | + +### Dictionary Keys +Key | Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- | ------------- +**lengthCm** | decimal.Decimal, int, float, | decimal.Decimal, | | +**sweet** | bool, | BoolClass, | | [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) diff --git a/samples/openapi3/client/petstore/python-experimental/docs/models/Bar.md b/samples/openapi3/client/petstore/python-experimental/docs/models/Bar.md index 8cebd519a0eb..55aa05fa1808 100644 --- a/samples/openapi3/client/petstore/python-experimental/docs/models/Bar.md +++ b/samples/openapi3/client/petstore/python-experimental/docs/models/Bar.md @@ -1,8 +1,9 @@ # petstore_api.model.bar.Bar -Type | Description | Notes -------------- | ------------- | ------------- -**str** | | defaults to "bar" +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +str, | str, | | if omitted the server will use the default value of "bar" [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) diff --git a/samples/openapi3/client/petstore/python-experimental/docs/models/BasquePig.md b/samples/openapi3/client/petstore/python-experimental/docs/models/BasquePig.md index 738b66e70615..b0860be169af 100644 --- a/samples/openapi3/client/petstore/python-experimental/docs/models/BasquePig.md +++ b/samples/openapi3/client/petstore/python-experimental/docs/models/BasquePig.md @@ -1,10 +1,15 @@ # petstore_api.model.basque_pig.BasquePig -#### Properties -Name | Type | Description | Notes +## Model Type Info +Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**className** | **str** | | -**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] +dict, frozendict.frozendict, | frozendict.frozendict, | | + +### Dictionary Keys +Key | Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- | ------------- +**className** | str, | str, | | must be one of ["BasquePig", ] +**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) diff --git a/samples/openapi3/client/petstore/python-experimental/docs/models/Boolean.md b/samples/openapi3/client/petstore/python-experimental/docs/models/Boolean.md index 1b0df546798c..c2e0e952acac 100644 --- a/samples/openapi3/client/petstore/python-experimental/docs/models/Boolean.md +++ b/samples/openapi3/client/petstore/python-experimental/docs/models/Boolean.md @@ -1,8 +1,9 @@ # petstore_api.model.boolean.Boolean -Type | Description | Notes -------------- | ------------- | ------------- -**bool** | | +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +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) diff --git a/samples/openapi3/client/petstore/python-experimental/docs/models/BooleanEnum.md b/samples/openapi3/client/petstore/python-experimental/docs/models/BooleanEnum.md index 61b8e47b6e07..5d807cf82d5e 100644 --- a/samples/openapi3/client/petstore/python-experimental/docs/models/BooleanEnum.md +++ b/samples/openapi3/client/petstore/python-experimental/docs/models/BooleanEnum.md @@ -1,8 +1,9 @@ # petstore_api.model.boolean_enum.BooleanEnum -Type | Description | Notes -------------- | ------------- | ------------- -**bool** | | must be one of [schemas.BoolClass.TRUE, ] +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +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) diff --git a/samples/openapi3/client/petstore/python-experimental/docs/models/Capitalization.md b/samples/openapi3/client/petstore/python-experimental/docs/models/Capitalization.md index 97cb810c4a43..cc39af70e1e7 100644 --- a/samples/openapi3/client/petstore/python-experimental/docs/models/Capitalization.md +++ b/samples/openapi3/client/petstore/python-experimental/docs/models/Capitalization.md @@ -1,15 +1,20 @@ # petstore_api.model.capitalization.Capitalization -#### Properties -Name | Type | Description | Notes +## Model Type Info +Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**smallCamel** | **str** | | [optional] -**CapitalCamel** | **str** | | [optional] -**small_Snake** | **str** | | [optional] -**Capital_Snake** | **str** | | [optional] -**SCA_ETH_Flow_Points** | **str** | | [optional] -**ATT_NAME** | **str** | Name of the pet | [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] +dict, frozendict.frozendict, | frozendict.frozendict, | | + +### Dictionary Keys +Key | Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- | ------------- +**smallCamel** | str, | str, | | [optional] +**CapitalCamel** | str, | str, | | [optional] +**small_Snake** | str, | str, | | [optional] +**Capital_Snake** | str, | str, | | [optional] +**SCA_ETH_Flow_Points** | str, | str, | | [optional] +**ATT_NAME** | str, | str, | Name of the pet | [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) diff --git a/samples/openapi3/client/petstore/python-experimental/docs/models/Cat.md b/samples/openapi3/client/petstore/python-experimental/docs/models/Cat.md index 2174bd863e2e..b5e0986f57b8 100644 --- a/samples/openapi3/client/petstore/python-experimental/docs/models/Cat.md +++ b/samples/openapi3/client/petstore/python-experimental/docs/models/Cat.md @@ -1,8 +1,29 @@ # petstore_api.model.cat.Cat -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | +## 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 +------------- | ------------- | ------------- | ------------- | ------------- +[Animal](Animal.md) | [**Animal**](Animal.md) | [**Animal**](Animal.md) | | +[all_of_1](#all_of_1) | dict, frozendict.frozendict, | frozendict.frozendict, | | + +# all_of_1 + +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +dict, frozendict.frozendict, | frozendict.frozendict, | | + +### Dictionary Keys +Key | Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- | ------------- +**declawed** | bool, | BoolClass, | | [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) diff --git a/samples/openapi3/client/petstore/python-experimental/docs/models/Category.md b/samples/openapi3/client/petstore/python-experimental/docs/models/Category.md index fede79479786..0087571a3a69 100644 --- a/samples/openapi3/client/petstore/python-experimental/docs/models/Category.md +++ b/samples/openapi3/client/petstore/python-experimental/docs/models/Category.md @@ -1,11 +1,16 @@ # petstore_api.model.category.Category -#### Properties -Name | Type | Description | Notes +## Model Type Info +Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**name** | **str** | | if omitted the server will use the default value of "default-name" -**id** | **int** | | [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] +dict, frozendict.frozendict, | frozendict.frozendict, | | + +### Dictionary Keys +Key | Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- | ------------- +**name** | str, | str, | | if omitted the server will use the default value of "default-name" +**id** | decimal.Decimal, int, | decimal.Decimal, | | [optional] value must be a 64 bit integer +**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) diff --git a/samples/openapi3/client/petstore/python-experimental/docs/models/ChildCat.md b/samples/openapi3/client/petstore/python-experimental/docs/models/ChildCat.md index f478bc3bed69..645ea5062dd1 100644 --- a/samples/openapi3/client/petstore/python-experimental/docs/models/ChildCat.md +++ b/samples/openapi3/client/petstore/python-experimental/docs/models/ChildCat.md @@ -1,8 +1,29 @@ # petstore_api.model.child_cat.ChildCat -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | +## 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 +------------- | ------------- | ------------- | ------------- | ------------- +[ParentPet](ParentPet.md) | [**ParentPet**](ParentPet.md) | [**ParentPet**](ParentPet.md) | | +[all_of_1](#all_of_1) | dict, frozendict.frozendict, | frozendict.frozendict, | | + +# all_of_1 + +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +dict, frozendict.frozendict, | frozendict.frozendict, | | + +### Dictionary Keys +Key | Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- | ------------- +**name** | 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) diff --git a/samples/openapi3/client/petstore/python-experimental/docs/models/ClassModel.md b/samples/openapi3/client/petstore/python-experimental/docs/models/ClassModel.md index c4dd643e9323..b1686ebb799d 100644 --- a/samples/openapi3/client/petstore/python-experimental/docs/models/ClassModel.md +++ b/samples/openapi3/client/petstore/python-experimental/docs/models/ClassModel.md @@ -2,11 +2,16 @@ Model for testing model with \"_class\" property -#### Properties -Name | Type | Description | Notes +## Model Type Info +Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**_class** | **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] +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 | Model for testing model with \"_class\" property | + +### Dictionary Keys +Key | Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- | ------------- +**_class** | 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) diff --git a/samples/openapi3/client/petstore/python-experimental/docs/models/Client.md b/samples/openapi3/client/petstore/python-experimental/docs/models/Client.md index eb5f2cf0cea4..e94c360dd286 100644 --- a/samples/openapi3/client/petstore/python-experimental/docs/models/Client.md +++ b/samples/openapi3/client/petstore/python-experimental/docs/models/Client.md @@ -1,10 +1,15 @@ # petstore_api.model.client.Client -#### Properties -Name | Type | Description | Notes +## Model Type Info +Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**client** | **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] +dict, frozendict.frozendict, | frozendict.frozendict, | | + +### Dictionary Keys +Key | Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- | ------------- +**client** | 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) diff --git a/samples/openapi3/client/petstore/python-experimental/docs/models/ComplexQuadrilateral.md b/samples/openapi3/client/petstore/python-experimental/docs/models/ComplexQuadrilateral.md index 70c0632a4302..a00ac0d9da67 100644 --- a/samples/openapi3/client/petstore/python-experimental/docs/models/ComplexQuadrilateral.md +++ b/samples/openapi3/client/petstore/python-experimental/docs/models/ComplexQuadrilateral.md @@ -1,8 +1,29 @@ # petstore_api.model.complex_quadrilateral.ComplexQuadrilateral -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | +## 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 +------------- | ------------- | ------------- | ------------- | ------------- +[QuadrilateralInterface](QuadrilateralInterface.md) | [**QuadrilateralInterface**](QuadrilateralInterface.md) | [**QuadrilateralInterface**](QuadrilateralInterface.md) | | +[all_of_1](#all_of_1) | dict, frozendict.frozendict, | frozendict.frozendict, | | + +# all_of_1 + +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +dict, frozendict.frozendict, | frozendict.frozendict, | | + +### Dictionary Keys +Key | Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- | ------------- +**quadrilateralType** | str, | str, | | [optional] must be one of ["ComplexQuadrilateral", ] +**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) diff --git a/samples/openapi3/client/petstore/python-experimental/docs/models/ComposedAnyOfDifferentTypesNoValidations.md b/samples/openapi3/client/petstore/python-experimental/docs/models/ComposedAnyOfDifferentTypesNoValidations.md index 837c2631dbfb..f4389c50eb23 100644 --- a/samples/openapi3/client/petstore/python-experimental/docs/models/ComposedAnyOfDifferentTypesNoValidations.md +++ b/samples/openapi3/client/petstore/python-experimental/docs/models/ComposedAnyOfDifferentTypesNoValidations.md @@ -1,8 +1,147 @@ # petstore_api.model.composed_any_of_different_types_no_validations.ComposedAnyOfDifferentTypesNoValidations -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | +## 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) | dict, frozendict.frozendict, | frozendict.frozendict, | | +[any_of_1](#any_of_1) | str, date, | str, | | value must conform to RFC-3339 full-date YYYY-MM-DD +[any_of_2](#any_of_2) | str, datetime, | str, | | value must conform to RFC-3339 date-time +[any_of_3](#any_of_3) | bytes, io.FileIO, io.BufferedReader, | bytes, FileIO, | | +[any_of_4](#any_of_4) | str, | str, | | +[any_of_5](#any_of_5) | str, | str, | | +[any_of_6](#any_of_6) | dict, frozendict.frozendict, | frozendict.frozendict, | | +[any_of_7](#any_of_7) | bool, | BoolClass, | | +[any_of_8](#any_of_8) | None, | NoneClass, | | +[any_of_9](#any_of_9) | list, tuple, | tuple, | | +[any_of_10](#any_of_10) | decimal.Decimal, int, float, | decimal.Decimal, | | +[any_of_11](#any_of_11) | decimal.Decimal, int, float, | decimal.Decimal, | | value must be a 32 bit float +[any_of_12](#any_of_12) | decimal.Decimal, int, float, | decimal.Decimal, | | value must be a 64 bit float +[any_of_13](#any_of_13) | decimal.Decimal, int, | decimal.Decimal, | | +[any_of_14](#any_of_14) | decimal.Decimal, int, | decimal.Decimal, | | value must be a 32 bit integer +[any_of_15](#any_of_15) | decimal.Decimal, int, | decimal.Decimal, | | value must be a 64 bit integer + +# any_of_0 + +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +dict, frozendict.frozendict, | frozendict.frozendict, | | + +# any_of_1 + +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +str, date, | str, | | value must conform to RFC-3339 full-date YYYY-MM-DD + +# any_of_2 + +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +str, datetime, | str, | | value must conform to RFC-3339 date-time + +# any_of_3 + +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +bytes, io.FileIO, io.BufferedReader, | bytes, FileIO, | | + +# any_of_4 + +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +str, | str, | | + +# any_of_5 + +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +str, | str, | | + +# any_of_6 + +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +dict, frozendict.frozendict, | frozendict.frozendict, | | + +# any_of_7 + +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +bool, | BoolClass, | | + +# any_of_8 + +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +None, | NoneClass, | | + +# any_of_9 + +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +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 | | + +# any_of_10 + +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +decimal.Decimal, int, float, | decimal.Decimal, | | + +# any_of_11 + +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +decimal.Decimal, int, float, | decimal.Decimal, | | value must be a 32 bit float + +# any_of_12 + +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +decimal.Decimal, int, float, | decimal.Decimal, | | value must be a 64 bit float + +# any_of_13 + +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +decimal.Decimal, int, | decimal.Decimal, | | + +# any_of_14 + +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +decimal.Decimal, int, | decimal.Decimal, | | value must be a 32 bit integer + +# any_of_15 + +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +decimal.Decimal, int, | decimal.Decimal, | | value must be a 64 bit integer [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) diff --git a/samples/openapi3/client/petstore/python-experimental/docs/models/ComposedArray.md b/samples/openapi3/client/petstore/python-experimental/docs/models/ComposedArray.md index 6b9d163d5702..bc506aa5f8ac 100644 --- a/samples/openapi3/client/petstore/python-experimental/docs/models/ComposedArray.md +++ b/samples/openapi3/client/petstore/python-experimental/docs/models/ComposedArray.md @@ -1,8 +1,14 @@ # petstore_api.model.composed_array.ComposedArray -Type | Description | Notes -------------- | ------------- | ------------- -**[bool, date, datetime, dict, float, int, list, str, none_type]** | | +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +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) diff --git a/samples/openapi3/client/petstore/python-experimental/docs/models/ComposedBool.md b/samples/openapi3/client/petstore/python-experimental/docs/models/ComposedBool.md index f61ba872b8a5..29ed69f72f18 100644 --- a/samples/openapi3/client/petstore/python-experimental/docs/models/ComposedBool.md +++ b/samples/openapi3/client/petstore/python-experimental/docs/models/ComposedBool.md @@ -1,8 +1,22 @@ # petstore_api.model.composed_bool.ComposedBool -Type | Description | Notes -------------- | ------------- | ------------- -**bool** | | +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +bool, | BoolClass, | | + +### 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) diff --git a/samples/openapi3/client/petstore/python-experimental/docs/models/ComposedNone.md b/samples/openapi3/client/petstore/python-experimental/docs/models/ComposedNone.md index 25f1e132ce02..df4ec85f2cc9 100644 --- a/samples/openapi3/client/petstore/python-experimental/docs/models/ComposedNone.md +++ b/samples/openapi3/client/petstore/python-experimental/docs/models/ComposedNone.md @@ -1,8 +1,22 @@ # petstore_api.model.composed_none.ComposedNone -Type | Description | Notes -------------- | ------------- | ------------- -**none_type** | | +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +None, | NoneClass, | | + +### 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) diff --git a/samples/openapi3/client/petstore/python-experimental/docs/models/ComposedNumber.md b/samples/openapi3/client/petstore/python-experimental/docs/models/ComposedNumber.md index d97f928e0bae..fa1f87c730c9 100644 --- a/samples/openapi3/client/petstore/python-experimental/docs/models/ComposedNumber.md +++ b/samples/openapi3/client/petstore/python-experimental/docs/models/ComposedNumber.md @@ -1,8 +1,22 @@ # petstore_api.model.composed_number.ComposedNumber -Type | Description | Notes -------------- | ------------- | ------------- -**float** | | +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +decimal.Decimal, int, float, | decimal.Decimal, | | + +### 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) diff --git a/samples/openapi3/client/petstore/python-experimental/docs/models/ComposedObject.md b/samples/openapi3/client/petstore/python-experimental/docs/models/ComposedObject.md index 74e7e988c1d3..ebbbaede6b7c 100644 --- a/samples/openapi3/client/petstore/python-experimental/docs/models/ComposedObject.md +++ b/samples/openapi3/client/petstore/python-experimental/docs/models/ComposedObject.md @@ -1,8 +1,22 @@ # petstore_api.model.composed_object.ComposedObject -Type | Description | Notes -------------- | ------------- | ------------- -**object** | | +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +dict, frozendict.frozendict, | frozendict.frozendict, | | + +### 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) diff --git a/samples/openapi3/client/petstore/python-experimental/docs/models/ComposedOneOfDifferentTypes.md b/samples/openapi3/client/petstore/python-experimental/docs/models/ComposedOneOfDifferentTypes.md index 1a44907c478f..0094f7e44c56 100644 --- a/samples/openapi3/client/petstore/python-experimental/docs/models/ComposedOneOfDifferentTypes.md +++ b/samples/openapi3/client/petstore/python-experimental/docs/models/ComposedOneOfDifferentTypes.md @@ -2,9 +2,62 @@ this is a model that allows payloads of type object or number -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | +## 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 | this is a model that allows payloads of type object or number | + +### Composed Schemas (allOf/anyOf/oneOf/not) +#### oneOf +Class Name | Input Type | Accessed Type | Description | Notes +------------- | ------------- | ------------- | ------------- | ------------- +[NumberWithValidations](NumberWithValidations.md) | [**NumberWithValidations**](NumberWithValidations.md) | [**NumberWithValidations**](NumberWithValidations.md) | | +[Animal](Animal.md) | [**Animal**](Animal.md) | [**Animal**](Animal.md) | | +[one_of_2](#one_of_2) | None, | NoneClass, | | +[one_of_3](#one_of_3) | str, date, | str, | | value must conform to RFC-3339 full-date YYYY-MM-DD +[one_of_4](#one_of_4) | dict, frozendict.frozendict, | frozendict.frozendict, | | +[one_of_5](#one_of_5) | list, tuple, | tuple, | | +[one_of_6](#one_of_6) | str, datetime, | str, | | value must conform to RFC-3339 date-time + +# one_of_2 + +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +None, | NoneClass, | | + +# one_of_3 + +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +str, date, | str, | | value must conform to RFC-3339 full-date YYYY-MM-DD + +# one_of_4 + +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +dict, frozendict.frozendict, | frozendict.frozendict, | | + +# one_of_5 + +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +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 | | + +# one_of_6 + +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +str, datetime, | str, | | 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) diff --git a/samples/openapi3/client/petstore/python-experimental/docs/models/ComposedString.md b/samples/openapi3/client/petstore/python-experimental/docs/models/ComposedString.md index 4c218ccf9354..235511b37a2a 100644 --- a/samples/openapi3/client/petstore/python-experimental/docs/models/ComposedString.md +++ b/samples/openapi3/client/petstore/python-experimental/docs/models/ComposedString.md @@ -1,8 +1,22 @@ # petstore_api.model.composed_string.ComposedString -Type | Description | Notes -------------- | ------------- | ------------- -**str** | | +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +str, | str, | | + +### 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) diff --git a/samples/openapi3/client/petstore/python-experimental/docs/models/Currency.md b/samples/openapi3/client/petstore/python-experimental/docs/models/Currency.md index 44b10b8829db..eeb1c6a47db1 100644 --- a/samples/openapi3/client/petstore/python-experimental/docs/models/Currency.md +++ b/samples/openapi3/client/petstore/python-experimental/docs/models/Currency.md @@ -1,8 +1,9 @@ # petstore_api.model.currency.Currency -Type | Description | Notes -------------- | ------------- | ------------- -**str** | | must be one of ["eur", "usd", ] +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +str, | str, | | must be one of ["eur", "usd", ] [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) diff --git a/samples/openapi3/client/petstore/python-experimental/docs/models/DanishPig.md b/samples/openapi3/client/petstore/python-experimental/docs/models/DanishPig.md index b9511bc1c0a5..15917a42ef80 100644 --- a/samples/openapi3/client/petstore/python-experimental/docs/models/DanishPig.md +++ b/samples/openapi3/client/petstore/python-experimental/docs/models/DanishPig.md @@ -1,10 +1,15 @@ # petstore_api.model.danish_pig.DanishPig -#### Properties -Name | Type | Description | Notes +## Model Type Info +Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**className** | **str** | | -**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] +dict, frozendict.frozendict, | frozendict.frozendict, | | + +### Dictionary Keys +Key | Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- | ------------- +**className** | str, | str, | | must be one of ["DanishPig", ] +**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) diff --git a/samples/openapi3/client/petstore/python-experimental/docs/models/DateTimeTest.md b/samples/openapi3/client/petstore/python-experimental/docs/models/DateTimeTest.md index 353be8f57528..ccfc8df59360 100644 --- a/samples/openapi3/client/petstore/python-experimental/docs/models/DateTimeTest.md +++ b/samples/openapi3/client/petstore/python-experimental/docs/models/DateTimeTest.md @@ -1,8 +1,9 @@ # petstore_api.model.date_time_test.DateTimeTest -Type | Description | Notes -------------- | ------------- | ------------- -**datetime** | | defaults to 2010-01-01T10:10:10.000111+01:00 +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +str, datetime, | str, | | if omitted the server will use the default value of 2010-01-01T10:10:10.000111+01:00value 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) diff --git a/samples/openapi3/client/petstore/python-experimental/docs/models/DateTimeWithValidations.md b/samples/openapi3/client/petstore/python-experimental/docs/models/DateTimeWithValidations.md index 2653f4ce21d1..ed7dfc06d13d 100644 --- a/samples/openapi3/client/petstore/python-experimental/docs/models/DateTimeWithValidations.md +++ b/samples/openapi3/client/petstore/python-experimental/docs/models/DateTimeWithValidations.md @@ -1,8 +1,9 @@ # petstore_api.model.date_time_with_validations.DateTimeWithValidations -Type | Description | Notes -------------- | ------------- | ------------- -**datetime** | | +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +str, datetime, | str, | | 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) diff --git a/samples/openapi3/client/petstore/python-experimental/docs/models/DateWithValidations.md b/samples/openapi3/client/petstore/python-experimental/docs/models/DateWithValidations.md index 9cc45db22330..97901a33f55a 100644 --- a/samples/openapi3/client/petstore/python-experimental/docs/models/DateWithValidations.md +++ b/samples/openapi3/client/petstore/python-experimental/docs/models/DateWithValidations.md @@ -1,8 +1,9 @@ # petstore_api.model.date_with_validations.DateWithValidations -Type | Description | Notes -------------- | ------------- | ------------- -**date** | | +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +str, date, | str, | | value must conform to RFC-3339 full-date YYYY-MM-DD [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) diff --git a/samples/openapi3/client/petstore/python-experimental/docs/models/DecimalPayload.md b/samples/openapi3/client/petstore/python-experimental/docs/models/DecimalPayload.md index 3d1d41f4378f..26ef601ff9fc 100644 --- a/samples/openapi3/client/petstore/python-experimental/docs/models/DecimalPayload.md +++ b/samples/openapi3/client/petstore/python-experimental/docs/models/DecimalPayload.md @@ -1,8 +1,9 @@ # petstore_api.model.decimal_payload.DecimalPayload -Type | Description | Notes -------------- | ------------- | ------------- -**str** | | +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +str, | str, | | value must be numeric and storable in 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) diff --git a/samples/openapi3/client/petstore/python-experimental/docs/models/Dog.md b/samples/openapi3/client/petstore/python-experimental/docs/models/Dog.md index 444e60a90632..08201e4423b6 100644 --- a/samples/openapi3/client/petstore/python-experimental/docs/models/Dog.md +++ b/samples/openapi3/client/petstore/python-experimental/docs/models/Dog.md @@ -1,8 +1,29 @@ # petstore_api.model.dog.Dog -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | +## 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 +------------- | ------------- | ------------- | ------------- | ------------- +[Animal](Animal.md) | [**Animal**](Animal.md) | [**Animal**](Animal.md) | | +[all_of_1](#all_of_1) | dict, frozendict.frozendict, | frozendict.frozendict, | | + +# all_of_1 + +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +dict, frozendict.frozendict, | frozendict.frozendict, | | + +### Dictionary Keys +Key | Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- | ------------- +**breed** | 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) diff --git a/samples/openapi3/client/petstore/python-experimental/docs/models/Drawing.md b/samples/openapi3/client/petstore/python-experimental/docs/models/Drawing.md index 17309a02c80e..dce65cbb0b57 100644 --- a/samples/openapi3/client/petstore/python-experimental/docs/models/Drawing.md +++ b/samples/openapi3/client/petstore/python-experimental/docs/models/Drawing.md @@ -1,13 +1,30 @@ # petstore_api.model.drawing.Drawing -#### Properties -Name | Type | Description | Notes +## Model Type Info +Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**mainShape** | [**Shape**](Shape.md) | | [optional] -**shapeOrNull** | [**ShapeOrNull**](ShapeOrNull.md) | | [optional] -**nullableShape** | [**NullableShape**](NullableShape.md) | | [optional] -**shapes** | **[Shape]** | | [optional] -**any string name** | [**Fruit**](Fruit.md) | 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 +------------ | ------------- | ------------- | ------------- | ------------- +**mainShape** | [**Shape**](Shape.md) | [**Shape**](Shape.md) | | [optional] +**shapeOrNull** | [**ShapeOrNull**](ShapeOrNull.md) | [**ShapeOrNull**](ShapeOrNull.md) | | [optional] +**nullableShape** | [**NullableShape**](NullableShape.md) | [**NullableShape**](NullableShape.md) | | [optional] +**[shapes](#shapes)** | list, tuple, | tuple, | | [optional] +**any_string_name** | [**Fruit**](Fruit.md) | [**Fruit**](Fruit.md) | any string name can be used but the value must be the correct type | [optional] + +# shapes + +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +list, tuple, | tuple, | | + +### Tuple Items +Class Name | Input Type | Accessed Type | Description | Notes +------------- | ------------- | ------------- | ------------- | ------------- +[**Shape**](Shape.md) | [**Shape**](Shape.md) | [**Shape**](Shape.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) diff --git a/samples/openapi3/client/petstore/python-experimental/docs/models/EnumArrays.md b/samples/openapi3/client/petstore/python-experimental/docs/models/EnumArrays.md index a1c65c2a11d6..cfff6ea29bd1 100644 --- a/samples/openapi3/client/petstore/python-experimental/docs/models/EnumArrays.md +++ b/samples/openapi3/client/petstore/python-experimental/docs/models/EnumArrays.md @@ -1,11 +1,28 @@ # petstore_api.model.enum_arrays.EnumArrays -#### Properties -Name | Type | Description | Notes +## Model Type Info +Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**just_symbol** | **str** | | [optional] -**array_enum** | **[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] +dict, frozendict.frozendict, | frozendict.frozendict, | | + +### Dictionary Keys +Key | Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- | ------------- +**just_symbol** | str, | str, | | [optional] must be one of [">=", "$", ] +**[array_enum](#array_enum)** | list, tuple, | tuple, | | [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] + +# array_enum + +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +list, tuple, | tuple, | | + +### Tuple Items +Class Name | Input Type | Accessed Type | Description | Notes +------------- | ------------- | ------------- | ------------- | ------------- +items | str, | str, | | must be one of ["fish", "crab", ] [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) diff --git a/samples/openapi3/client/petstore/python-experimental/docs/models/EnumClass.md b/samples/openapi3/client/petstore/python-experimental/docs/models/EnumClass.md index 085bdb483897..9e08aab14551 100644 --- a/samples/openapi3/client/petstore/python-experimental/docs/models/EnumClass.md +++ b/samples/openapi3/client/petstore/python-experimental/docs/models/EnumClass.md @@ -1,8 +1,9 @@ # petstore_api.model.enum_class.EnumClass -Type | Description | Notes -------------- | ------------- | ------------- -**str** | | defaults to "-efg", must be one of ["_abc", "-efg", "(xyz)", "COUNT_1M", "COUNT_50M", ] +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +str, | str, | | must be one of ["_abc", "-efg", "(xyz)", "COUNT_1M", "COUNT_50M", ] if omitted the server will use the default value of "-efg" [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) diff --git a/samples/openapi3/client/petstore/python-experimental/docs/models/EnumTest.md b/samples/openapi3/client/petstore/python-experimental/docs/models/EnumTest.md index 10a029d4f9cb..02c3b08a201f 100644 --- a/samples/openapi3/client/petstore/python-experimental/docs/models/EnumTest.md +++ b/samples/openapi3/client/petstore/python-experimental/docs/models/EnumTest.md @@ -1,18 +1,23 @@ # petstore_api.model.enum_test.EnumTest -#### Properties -Name | Type | Description | Notes +## Model Type Info +Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**enum_string_required** | **str** | | -**enum_string** | **str** | | [optional] -**enum_integer** | **int** | | [optional] -**enum_number** | **int, float** | | [optional] -**stringEnum** | [**StringEnum**](StringEnum.md) | | [optional] -**IntegerEnum** | [**IntegerEnum**](IntegerEnum.md) | | [optional] -**StringEnumWithDefaultValue** | [**StringEnumWithDefaultValue**](StringEnumWithDefaultValue.md) | | [optional] -**IntegerEnumWithDefaultValue** | [**IntegerEnumWithDefaultValue**](IntegerEnumWithDefaultValue.md) | | [optional] -**IntegerEnumOneValue** | [**IntegerEnumOneValue**](IntegerEnumOneValue.md) | | [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] +dict, frozendict.frozendict, | frozendict.frozendict, | | + +### Dictionary Keys +Key | Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- | ------------- +**enum_string_required** | str, | str, | | must be one of ["UPPER", "lower", "", ] +**enum_string** | str, | str, | | [optional] must be one of ["UPPER", "lower", "", ] +**enum_integer** | decimal.Decimal, int, | decimal.Decimal, | | [optional] must be one of [1, -1, ] value must be a 32 bit integer +**enum_number** | decimal.Decimal, int, float, | decimal.Decimal, | | [optional] must be one of [1.1, -1.2, ] value must be a 64 bit float +**stringEnum** | [**StringEnum**](StringEnum.md) | [**StringEnum**](StringEnum.md) | | [optional] +**IntegerEnum** | [**IntegerEnum**](IntegerEnum.md) | [**IntegerEnum**](IntegerEnum.md) | | [optional] +**StringEnumWithDefaultValue** | [**StringEnumWithDefaultValue**](StringEnumWithDefaultValue.md) | [**StringEnumWithDefaultValue**](StringEnumWithDefaultValue.md) | | [optional] +**IntegerEnumWithDefaultValue** | [**IntegerEnumWithDefaultValue**](IntegerEnumWithDefaultValue.md) | [**IntegerEnumWithDefaultValue**](IntegerEnumWithDefaultValue.md) | | [optional] +**IntegerEnumOneValue** | [**IntegerEnumOneValue**](IntegerEnumOneValue.md) | [**IntegerEnumOneValue**](IntegerEnumOneValue.md) | | [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) diff --git a/samples/openapi3/client/petstore/python-experimental/docs/models/EquilateralTriangle.md b/samples/openapi3/client/petstore/python-experimental/docs/models/EquilateralTriangle.md index 9da57bb03a76..96971a1c0c6a 100644 --- a/samples/openapi3/client/petstore/python-experimental/docs/models/EquilateralTriangle.md +++ b/samples/openapi3/client/petstore/python-experimental/docs/models/EquilateralTriangle.md @@ -1,8 +1,29 @@ # petstore_api.model.equilateral_triangle.EquilateralTriangle -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | +## 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 +------------- | ------------- | ------------- | ------------- | ------------- +[TriangleInterface](TriangleInterface.md) | [**TriangleInterface**](TriangleInterface.md) | [**TriangleInterface**](TriangleInterface.md) | | +[all_of_1](#all_of_1) | dict, frozendict.frozendict, | frozendict.frozendict, | | + +# all_of_1 + +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +dict, frozendict.frozendict, | frozendict.frozendict, | | + +### Dictionary Keys +Key | Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- | ------------- +**triangleType** | str, | str, | | [optional] must be one of ["EquilateralTriangle", ] +**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) diff --git a/samples/openapi3/client/petstore/python-experimental/docs/models/File.md b/samples/openapi3/client/petstore/python-experimental/docs/models/File.md index 097a045cc5ed..d85669c84f57 100644 --- a/samples/openapi3/client/petstore/python-experimental/docs/models/File.md +++ b/samples/openapi3/client/petstore/python-experimental/docs/models/File.md @@ -2,11 +2,16 @@ Must be named `File` for test. -#### Properties -Name | Type | Description | Notes +## Model Type Info +Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**sourceURI** | **str** | Test capitalization | [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] +dict, frozendict.frozendict, | frozendict.frozendict, | Must be named `File` for test. | + +### Dictionary Keys +Key | Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- | ------------- +**sourceURI** | str, | str, | Test capitalization | [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) diff --git a/samples/openapi3/client/petstore/python-experimental/docs/models/FileSchemaTestClass.md b/samples/openapi3/client/petstore/python-experimental/docs/models/FileSchemaTestClass.md index 365acbe3760b..35dcfdca4ecc 100644 --- a/samples/openapi3/client/petstore/python-experimental/docs/models/FileSchemaTestClass.md +++ b/samples/openapi3/client/petstore/python-experimental/docs/models/FileSchemaTestClass.md @@ -1,11 +1,28 @@ # petstore_api.model.file_schema_test_class.FileSchemaTestClass -#### Properties -Name | Type | Description | Notes +## Model Type Info +Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**file** | [**File**](File.md) | | [optional] -**files** | **[File]** | | [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] +dict, frozendict.frozendict, | frozendict.frozendict, | | + +### Dictionary Keys +Key | Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- | ------------- +**file** | [**File**](File.md) | [**File**](File.md) | | [optional] +**[files](#files)** | list, tuple, | tuple, | | [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] + +# files + +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +list, tuple, | tuple, | | + +### Tuple Items +Class Name | Input Type | Accessed Type | Description | Notes +------------- | ------------- | ------------- | ------------- | ------------- +[**File**](File.md) | [**File**](File.md) | [**File**](File.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) diff --git a/samples/openapi3/client/petstore/python-experimental/docs/models/Foo.md b/samples/openapi3/client/petstore/python-experimental/docs/models/Foo.md index a7112c289625..5ea8d33d3694 100644 --- a/samples/openapi3/client/petstore/python-experimental/docs/models/Foo.md +++ b/samples/openapi3/client/petstore/python-experimental/docs/models/Foo.md @@ -1,10 +1,15 @@ # petstore_api.model.foo.Foo -#### Properties -Name | Type | Description | Notes +## Model Type Info +Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**bar** | **str** | | [optional] if omitted the server will use the default value of "bar" -**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] +dict, frozendict.frozendict, | frozendict.frozendict, | | + +### Dictionary Keys +Key | Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- | ------------- +**bar** | str, | str, | | [optional] if omitted the server will use the default value of "bar" +**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) diff --git a/samples/openapi3/client/petstore/python-experimental/docs/models/FormatTest.md b/samples/openapi3/client/petstore/python-experimental/docs/models/FormatTest.md index 0f790bfc7f4c..55ca4583a1b3 100644 --- a/samples/openapi3/client/petstore/python-experimental/docs/models/FormatTest.md +++ b/samples/openapi3/client/petstore/python-experimental/docs/models/FormatTest.md @@ -1,30 +1,47 @@ # petstore_api.model.format_test.FormatTest -#### Properties -Name | Type | Description | Notes +## Model Type Info +Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**date** | **date** | | -**number** | **int, float** | | -**password** | **str** | | -**byte** | **str** | | -**integer** | **int** | | [optional] -**int32** | **int** | | [optional] -**int32withValidations** | **int** | | [optional] -**int64** | **int** | | [optional] -**float** | **int, float** | this is a reserved python keyword | [optional] -**float32** | **int, float** | | [optional] -**double** | **int, float** | | [optional] -**float64** | **int, float** | | [optional] -**arrayWithUniqueItems** | **[int, float]** | | [optional] -**string** | **str** | | [optional] -**binary** | **file_type** | | [optional] -**dateTime** | **datetime** | | [optional] -**uuid** | **str** | | [optional] -**uuidNoExample** | **str** | | [optional] -**pattern_with_digits** | **str** | A string that is a 10 digit number. Can have leading zeros. | [optional] -**pattern_with_digits_and_delimiter** | **str** | A string starting with 'image_' (case insensitive) and one to three digits following i.e. Image_01. | [optional] -**noneProp** | **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] +dict, frozendict.frozendict, | frozendict.frozendict, | | + +### Dictionary Keys +Key | Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- | ------------- +**date** | str, date, | str, | | value must conform to RFC-3339 full-date YYYY-MM-DD +**number** | decimal.Decimal, int, float, | decimal.Decimal, | | +**password** | str, | str, | | +**byte** | str, | str, | | +**integer** | decimal.Decimal, int, | decimal.Decimal, | | [optional] +**int32** | decimal.Decimal, int, | decimal.Decimal, | | [optional] value must be a 32 bit integer +**int32withValidations** | decimal.Decimal, int, | decimal.Decimal, | | [optional] value must be a 32 bit integer +**int64** | decimal.Decimal, int, | decimal.Decimal, | | [optional] value must be a 64 bit integer +**float** | decimal.Decimal, int, float, | decimal.Decimal, | this is a reserved python keyword | [optional] value must be a 32 bit float +**float32** | decimal.Decimal, int, float, | decimal.Decimal, | | [optional] value must be a 32 bit float +**double** | decimal.Decimal, int, float, | decimal.Decimal, | | [optional] value must be a 64 bit float +**float64** | decimal.Decimal, int, float, | decimal.Decimal, | | [optional] value must be a 64 bit float +**[arrayWithUniqueItems](#arrayWithUniqueItems)** | list, tuple, | tuple, | | [optional] +**string** | str, | str, | | [optional] +**binary** | bytes, io.FileIO, io.BufferedReader, | bytes, FileIO, | | [optional] +**dateTime** | str, datetime, | str, | | [optional] value must conform to RFC-3339 date-time +**uuid** | str, uuid.UUID, | str, | | [optional] value must be a uuid +**uuidNoExample** | str, uuid.UUID, | str, | | [optional] value must be a uuid +**pattern_with_digits** | str, | str, | A string that is a 10 digit number. Can have leading zeros. | [optional] +**pattern_with_digits_and_delimiter** | str, | str, | A string starting with 'image_' (case insensitive) and one to three digits following i.e. Image_01. | [optional] +**noneProp** | None, | NoneClass, | | [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] + +# arrayWithUniqueItems + +## 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) diff --git a/samples/openapi3/client/petstore/python-experimental/docs/models/Fruit.md b/samples/openapi3/client/petstore/python-experimental/docs/models/Fruit.md index 90c546886976..44d670623fe0 100644 --- a/samples/openapi3/client/petstore/python-experimental/docs/models/Fruit.md +++ b/samples/openapi3/client/petstore/python-experimental/docs/models/Fruit.md @@ -1,10 +1,22 @@ # petstore_api.model.fruit.Fruit -#### Properties -Name | Type | Description | Notes +## Model Type Info +Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**color** | **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] +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 +------------ | ------------- | ------------- | ------------- | ------------- +**color** | 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] + +### Composed Schemas (allOf/anyOf/oneOf/not) +#### oneOf +Class Name | Input Type | Accessed Type | Description | Notes +------------- | ------------- | ------------- | ------------- | ------------- +[Apple](Apple.md) | [**Apple**](Apple.md) | [**Apple**](Apple.md) | | +[Banana](Banana.md) | [**Banana**](Banana.md) | [**Banana**](Banana.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) diff --git a/samples/openapi3/client/petstore/python-experimental/docs/models/FruitReq.md b/samples/openapi3/client/petstore/python-experimental/docs/models/FruitReq.md index b3aa4b4647e1..c4c18e3e4c9c 100644 --- a/samples/openapi3/client/petstore/python-experimental/docs/models/FruitReq.md +++ b/samples/openapi3/client/petstore/python-experimental/docs/models/FruitReq.md @@ -1,8 +1,24 @@ # petstore_api.model.fruit_req.FruitReq -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | +## 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, | | +[AppleReq](AppleReq.md) | [**AppleReq**](AppleReq.md) | [**AppleReq**](AppleReq.md) | | +[BananaReq](BananaReq.md) | [**BananaReq**](BananaReq.md) | [**BananaReq**](BananaReq.md) | | + +# 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) diff --git a/samples/openapi3/client/petstore/python-experimental/docs/models/GmFruit.md b/samples/openapi3/client/petstore/python-experimental/docs/models/GmFruit.md index 55ce85a46bc2..6515df977c90 100644 --- a/samples/openapi3/client/petstore/python-experimental/docs/models/GmFruit.md +++ b/samples/openapi3/client/petstore/python-experimental/docs/models/GmFruit.md @@ -1,10 +1,22 @@ # petstore_api.model.gm_fruit.GmFruit -#### Properties -Name | Type | Description | Notes +## Model Type Info +Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**color** | **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] +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 +------------ | ------------- | ------------- | ------------- | ------------- +**color** | 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] + +### Composed Schemas (allOf/anyOf/oneOf/not) +#### anyOf +Class Name | Input Type | Accessed Type | Description | Notes +------------- | ------------- | ------------- | ------------- | ------------- +[Apple](Apple.md) | [**Apple**](Apple.md) | [**Apple**](Apple.md) | | +[Banana](Banana.md) | [**Banana**](Banana.md) | [**Banana**](Banana.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) diff --git a/samples/openapi3/client/petstore/python-experimental/docs/models/GrandparentAnimal.md b/samples/openapi3/client/petstore/python-experimental/docs/models/GrandparentAnimal.md index 612d8becc301..813fe61b95a1 100644 --- a/samples/openapi3/client/petstore/python-experimental/docs/models/GrandparentAnimal.md +++ b/samples/openapi3/client/petstore/python-experimental/docs/models/GrandparentAnimal.md @@ -1,10 +1,15 @@ # petstore_api.model.grandparent_animal.GrandparentAnimal -#### Properties -Name | Type | Description | Notes +## Model Type Info +Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**pet_type** | **str** | | -**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] +dict, frozendict.frozendict, | frozendict.frozendict, | | + +### Dictionary Keys +Key | Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- | ------------- +**pet_type** | 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) diff --git a/samples/openapi3/client/petstore/python-experimental/docs/models/HasOnlyReadOnly.md b/samples/openapi3/client/petstore/python-experimental/docs/models/HasOnlyReadOnly.md index ccce56daf26d..d9de17196fa3 100644 --- a/samples/openapi3/client/petstore/python-experimental/docs/models/HasOnlyReadOnly.md +++ b/samples/openapi3/client/petstore/python-experimental/docs/models/HasOnlyReadOnly.md @@ -1,11 +1,16 @@ # petstore_api.model.has_only_read_only.HasOnlyReadOnly -#### Properties -Name | Type | Description | Notes +## Model Type Info +Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**bar** | **str** | | [optional] [readonly] -**foo** | **str** | | [optional] [readonly] -**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] +dict, frozendict.frozendict, | frozendict.frozendict, | | + +### Dictionary Keys +Key | Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- | ------------- +**bar** | str, | str, | | [optional] +**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) diff --git a/samples/openapi3/client/petstore/python-experimental/docs/models/HealthCheckResult.md b/samples/openapi3/client/petstore/python-experimental/docs/models/HealthCheckResult.md index 502688954aa4..0985cffd05ef 100644 --- a/samples/openapi3/client/petstore/python-experimental/docs/models/HealthCheckResult.md +++ b/samples/openapi3/client/petstore/python-experimental/docs/models/HealthCheckResult.md @@ -2,11 +2,16 @@ Just a string to inform instance is up and running. Make it nullable in hope to get it as pointer in generated model. -#### Properties -Name | Type | Description | Notes +## Model Type Info +Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**NullableMessage** | **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] +dict, frozendict.frozendict, | frozendict.frozendict, | Just a string to inform instance is up and running. Make it nullable in hope to get it as pointer in generated model. | + +### Dictionary Keys +Key | Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- | ------------- +**NullableMessage** | None, str, | NoneClass, 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) diff --git a/samples/openapi3/client/petstore/python-experimental/docs/models/IntegerEnum.md b/samples/openapi3/client/petstore/python-experimental/docs/models/IntegerEnum.md index d465cd74119b..59dd6239f785 100644 --- a/samples/openapi3/client/petstore/python-experimental/docs/models/IntegerEnum.md +++ b/samples/openapi3/client/petstore/python-experimental/docs/models/IntegerEnum.md @@ -1,8 +1,9 @@ # petstore_api.model.integer_enum.IntegerEnum -Type | Description | Notes -------------- | ------------- | ------------- -**int** | | must be one of [0, 1, 2, ] +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +decimal.Decimal, int, | decimal.Decimal, | | must be one of [0, 1, 2, ] [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) diff --git a/samples/openapi3/client/petstore/python-experimental/docs/models/IntegerEnumBig.md b/samples/openapi3/client/petstore/python-experimental/docs/models/IntegerEnumBig.md index 264e2ed4ac33..d4891543c05b 100644 --- a/samples/openapi3/client/petstore/python-experimental/docs/models/IntegerEnumBig.md +++ b/samples/openapi3/client/petstore/python-experimental/docs/models/IntegerEnumBig.md @@ -1,8 +1,9 @@ # petstore_api.model.integer_enum_big.IntegerEnumBig -Type | Description | Notes -------------- | ------------- | ------------- -**int** | | must be one of [10, 11, 12, ] +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +decimal.Decimal, int, | decimal.Decimal, | | must be one of [10, 11, 12, ] [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) diff --git a/samples/openapi3/client/petstore/python-experimental/docs/models/IntegerEnumOneValue.md b/samples/openapi3/client/petstore/python-experimental/docs/models/IntegerEnumOneValue.md index 4c71f4973788..c2dd787bc570 100644 --- a/samples/openapi3/client/petstore/python-experimental/docs/models/IntegerEnumOneValue.md +++ b/samples/openapi3/client/petstore/python-experimental/docs/models/IntegerEnumOneValue.md @@ -1,8 +1,9 @@ # petstore_api.model.integer_enum_one_value.IntegerEnumOneValue -Type | Description | Notes -------------- | ------------- | ------------- -**int** | | must be one of [0, ] +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +decimal.Decimal, int, | 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) diff --git a/samples/openapi3/client/petstore/python-experimental/docs/models/IntegerEnumWithDefaultValue.md b/samples/openapi3/client/petstore/python-experimental/docs/models/IntegerEnumWithDefaultValue.md index 421771d9f575..4eef737f884f 100644 --- a/samples/openapi3/client/petstore/python-experimental/docs/models/IntegerEnumWithDefaultValue.md +++ b/samples/openapi3/client/petstore/python-experimental/docs/models/IntegerEnumWithDefaultValue.md @@ -1,8 +1,9 @@ # petstore_api.model.integer_enum_with_default_value.IntegerEnumWithDefaultValue -Type | Description | Notes -------------- | ------------- | ------------- -**int** | | defaults to 0, must be one of [0, 1, 2, ] +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +decimal.Decimal, int, | decimal.Decimal, | | must be one of [0, 1, 2, ] if omitted the server will use the default value 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) diff --git a/samples/openapi3/client/petstore/python-experimental/docs/models/IntegerMax10.md b/samples/openapi3/client/petstore/python-experimental/docs/models/IntegerMax10.md index 98812fd64cc8..93f3c2825212 100644 --- a/samples/openapi3/client/petstore/python-experimental/docs/models/IntegerMax10.md +++ b/samples/openapi3/client/petstore/python-experimental/docs/models/IntegerMax10.md @@ -1,8 +1,9 @@ # petstore_api.model.integer_max10.IntegerMax10 -Type | Description | Notes -------------- | ------------- | ------------- -**int** | | +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +decimal.Decimal, int, | decimal.Decimal, | | value must be a 64 bit integer [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) diff --git a/samples/openapi3/client/petstore/python-experimental/docs/models/IntegerMin15.md b/samples/openapi3/client/petstore/python-experimental/docs/models/IntegerMin15.md index c4ca8fecfdbe..1a900cf7b432 100644 --- a/samples/openapi3/client/petstore/python-experimental/docs/models/IntegerMin15.md +++ b/samples/openapi3/client/petstore/python-experimental/docs/models/IntegerMin15.md @@ -1,8 +1,9 @@ # petstore_api.model.integer_min15.IntegerMin15 -Type | Description | Notes -------------- | ------------- | ------------- -**int** | | +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +decimal.Decimal, int, | decimal.Decimal, | | value must be a 64 bit integer [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) diff --git a/samples/openapi3/client/petstore/python-experimental/docs/models/IsoscelesTriangle.md b/samples/openapi3/client/petstore/python-experimental/docs/models/IsoscelesTriangle.md index 2fea6b6f075f..3a05686f411e 100644 --- a/samples/openapi3/client/petstore/python-experimental/docs/models/IsoscelesTriangle.md +++ b/samples/openapi3/client/petstore/python-experimental/docs/models/IsoscelesTriangle.md @@ -1,8 +1,29 @@ # petstore_api.model.isosceles_triangle.IsoscelesTriangle -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | +## 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 +------------- | ------------- | ------------- | ------------- | ------------- +[TriangleInterface](TriangleInterface.md) | [**TriangleInterface**](TriangleInterface.md) | [**TriangleInterface**](TriangleInterface.md) | | +[all_of_1](#all_of_1) | dict, frozendict.frozendict, | frozendict.frozendict, | | + +# all_of_1 + +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +dict, frozendict.frozendict, | frozendict.frozendict, | | + +### Dictionary Keys +Key | Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- | ------------- +**triangleType** | str, | str, | | [optional] must be one of ["IsoscelesTriangle", ] +**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) diff --git a/samples/openapi3/client/petstore/python-experimental/docs/models/JSONPatchRequest.md b/samples/openapi3/client/petstore/python-experimental/docs/models/JSONPatchRequest.md index eaf835a0e8a7..fbc12502927f 100644 --- a/samples/openapi3/client/petstore/python-experimental/docs/models/JSONPatchRequest.md +++ b/samples/openapi3/client/petstore/python-experimental/docs/models/JSONPatchRequest.md @@ -1,8 +1,29 @@ # petstore_api.model.json_patch_request.JSONPatchRequest -Type | Description | Notes -------------- | ------------- | ------------- -**[bool, date, datetime, dict, float, int, list, str, none_type]** | | +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +list, tuple, | tuple, | | + +### Tuple Items +Class Name | Input Type | Accessed Type | Description | Notes +------------- | ------------- | ------------- | ------------- | ------------- +[items](#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 | | + +# items + +## 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 +------------- | ------------- | ------------- | ------------- | ------------- +[JSONPatchRequestAddReplaceTest](JSONPatchRequestAddReplaceTest.md) | [**JSONPatchRequestAddReplaceTest**](JSONPatchRequestAddReplaceTest.md) | [**JSONPatchRequestAddReplaceTest**](JSONPatchRequestAddReplaceTest.md) | | +[JSONPatchRequestRemove](JSONPatchRequestRemove.md) | [**JSONPatchRequestRemove**](JSONPatchRequestRemove.md) | [**JSONPatchRequestRemove**](JSONPatchRequestRemove.md) | | +[JSONPatchRequestMoveCopy](JSONPatchRequestMoveCopy.md) | [**JSONPatchRequestMoveCopy**](JSONPatchRequestMoveCopy.md) | [**JSONPatchRequestMoveCopy**](JSONPatchRequestMoveCopy.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) diff --git a/samples/openapi3/client/petstore/python-experimental/docs/models/JSONPatchRequestAddReplaceTest.md b/samples/openapi3/client/petstore/python-experimental/docs/models/JSONPatchRequestAddReplaceTest.md index ca4e31cc06d1..a95e8f95743b 100644 --- a/samples/openapi3/client/petstore/python-experimental/docs/models/JSONPatchRequestAddReplaceTest.md +++ b/samples/openapi3/client/petstore/python-experimental/docs/models/JSONPatchRequestAddReplaceTest.md @@ -1,11 +1,16 @@ # petstore_api.model.json_patch_request_add_replace_test.JSONPatchRequestAddReplaceTest -#### Properties -Name | Type | Description | Notes +## Model Type Info +Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**op** | **str** | The operation to perform. | -**path** | **str** | A JSON Pointer path. | -**value** | **bool, date, datetime, dict, float, int, list, str, none_type** | The value to add, replace or test. | +dict, frozendict.frozendict, | frozendict.frozendict, | | + +### Dictionary Keys +Key | Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- | ------------- +**op** | str, | str, | The operation to perform. | must be one of ["add", "replace", "test", ] +**path** | str, | str, | A JSON Pointer path. | +**value** | 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 | The value to add, replace or test. | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) diff --git a/samples/openapi3/client/petstore/python-experimental/docs/models/JSONPatchRequestMoveCopy.md b/samples/openapi3/client/petstore/python-experimental/docs/models/JSONPatchRequestMoveCopy.md index 78349508e092..56c8fac4b779 100644 --- a/samples/openapi3/client/petstore/python-experimental/docs/models/JSONPatchRequestMoveCopy.md +++ b/samples/openapi3/client/petstore/python-experimental/docs/models/JSONPatchRequestMoveCopy.md @@ -1,11 +1,16 @@ # petstore_api.model.json_patch_request_move_copy.JSONPatchRequestMoveCopy -#### Properties -Name | Type | Description | Notes +## Model Type Info +Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**op** | **str** | The operation to perform. | -**path** | **str** | A JSON Pointer path. | -**from** | +dict, frozendict.frozendict, | frozendict.frozendict, | | + +### Dictionary Keys +Key | Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- | ------------- +**op** | str, | str, | The operation to perform. | must be one of ["move", "copy", ] +**path** | str, | str, | A JSON Pointer path. | +**from** | str, | str, | A JSON Pointer path. | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) diff --git a/samples/openapi3/client/petstore/python-experimental/docs/models/JSONPatchRequestRemove.md b/samples/openapi3/client/petstore/python-experimental/docs/models/JSONPatchRequestRemove.md index a0c67f67d312..a57981c57c9f 100644 --- a/samples/openapi3/client/petstore/python-experimental/docs/models/JSONPatchRequestRemove.md +++ b/samples/openapi3/client/petstore/python-experimental/docs/models/JSONPatchRequestRemove.md @@ -1,10 +1,15 @@ # petstore_api.model.json_patch_request_remove.JSONPatchRequestRemove -#### Properties -Name | Type | Description | Notes +## Model Type Info +Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**op** | **str** | The operation to perform. | -**path** | **str** | A JSON Pointer path. | +dict, frozendict.frozendict, | frozendict.frozendict, | | + +### Dictionary Keys +Key | Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- | ------------- +**op** | str, | str, | The operation to perform. | must be one of ["remove", ] +**path** | str, | str, | A JSON Pointer path. | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) diff --git a/samples/openapi3/client/petstore/python-experimental/docs/models/Mammal.md b/samples/openapi3/client/petstore/python-experimental/docs/models/Mammal.md index e3fa4f3bff5d..12ac20a82003 100644 --- a/samples/openapi3/client/petstore/python-experimental/docs/models/Mammal.md +++ b/samples/openapi3/client/petstore/python-experimental/docs/models/Mammal.md @@ -1,8 +1,17 @@ # petstore_api.model.mammal.Mammal -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | +## 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 +------------- | ------------- | ------------- | ------------- | ------------- +[Whale](Whale.md) | [**Whale**](Whale.md) | [**Whale**](Whale.md) | | +[Zebra](Zebra.md) | [**Zebra**](Zebra.md) | [**Zebra**](Zebra.md) | | +[Pig](Pig.md) | [**Pig**](Pig.md) | [**Pig**](Pig.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) diff --git a/samples/openapi3/client/petstore/python-experimental/docs/models/MapTest.md b/samples/openapi3/client/petstore/python-experimental/docs/models/MapTest.md index 16beabc74add..68c8d882955d 100644 --- a/samples/openapi3/client/petstore/python-experimental/docs/models/MapTest.md +++ b/samples/openapi3/client/petstore/python-experimental/docs/models/MapTest.md @@ -1,13 +1,66 @@ # petstore_api.model.map_test.MapTest -#### Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**map_map_of_string** | **{str: ({str: (str,)},)}** | | [optional] -**map_of_enum_string** | **{str: (str,)}** | | [optional] -**direct_map** | **{str: (bool,)}** | | [optional] -**indirect_map** | [**StringBooleanMap**](StringBooleanMap.md) | | [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] +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +dict, frozendict.frozendict, | frozendict.frozendict, | | + +### Dictionary Keys +Key | Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- | ------------- +**[map_map_of_string](#map_map_of_string)** | dict, frozendict.frozendict, | frozendict.frozendict, | | [optional] +**[map_of_enum_string](#map_of_enum_string)** | dict, frozendict.frozendict, | frozendict.frozendict, | | [optional] +**[direct_map](#direct_map)** | dict, frozendict.frozendict, | frozendict.frozendict, | | [optional] +**indirect_map** | [**StringBooleanMap**](StringBooleanMap.md) | [**StringBooleanMap**](StringBooleanMap.md) | | [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] + +# map_map_of_string + +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +dict, frozendict.frozendict, | frozendict.frozendict, | | + +### Dictionary Keys +Key | Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- | ------------- +**[any_string_name](#any_string_name)** | dict, frozendict.frozendict, | frozendict.frozendict, | any string name can be used but the value must be the correct type | [optional] + +# any_string_name + +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +dict, frozendict.frozendict, | frozendict.frozendict, | | + +### Dictionary Keys +Key | Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- | ------------- +**any_string_name** | str, | str, | any string name can be used but the value must be the correct type | [optional] + +# map_of_enum_string + +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +dict, frozendict.frozendict, | frozendict.frozendict, | | + +### Dictionary Keys +Key | Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- | ------------- +**any_string_name** | str, | str, | any string name can be used but the value must be the correct type | [optional] must be one of ["UPPER", "lower", ] + +# direct_map + +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +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) diff --git a/samples/openapi3/client/petstore/python-experimental/docs/models/MixedPropertiesAndAdditionalPropertiesClass.md b/samples/openapi3/client/petstore/python-experimental/docs/models/MixedPropertiesAndAdditionalPropertiesClass.md index aad0cf7e64b4..f85a43f4c7dd 100644 --- a/samples/openapi3/client/petstore/python-experimental/docs/models/MixedPropertiesAndAdditionalPropertiesClass.md +++ b/samples/openapi3/client/petstore/python-experimental/docs/models/MixedPropertiesAndAdditionalPropertiesClass.md @@ -1,12 +1,29 @@ # petstore_api.model.mixed_properties_and_additional_properties_class.MixedPropertiesAndAdditionalPropertiesClass -#### Properties -Name | Type | Description | Notes +## Model Type Info +Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**uuid** | **str** | | [optional] -**dateTime** | **datetime** | | [optional] -**map** | **{str: (Animal,)}** | | [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] +dict, frozendict.frozendict, | frozendict.frozendict, | | + +### Dictionary Keys +Key | Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- | ------------- +**uuid** | str, uuid.UUID, | str, | | [optional] value must be a uuid +**dateTime** | str, datetime, | str, | | [optional] value must conform to RFC-3339 date-time +**[map](#map)** | dict, frozendict.frozendict, | frozendict.frozendict, | | [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] + +# map + +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +dict, frozendict.frozendict, | frozendict.frozendict, | | + +### Dictionary Keys +Key | Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- | ------------- +**any_string_name** | [**Animal**](Animal.md) | [**Animal**](Animal.md) | 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) diff --git a/samples/openapi3/client/petstore/python-experimental/docs/models/Model200Response.md b/samples/openapi3/client/petstore/python-experimental/docs/models/Model200Response.md index 415ada0af110..90e17dd402ba 100644 --- a/samples/openapi3/client/petstore/python-experimental/docs/models/Model200Response.md +++ b/samples/openapi3/client/petstore/python-experimental/docs/models/Model200Response.md @@ -2,12 +2,17 @@ model with an invalid class name for python, starts with a number -#### Properties -Name | Type | Description | Notes +## Model Type Info +Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**name** | **int** | | [optional] -**class** | **str** | this is a reserved python keyword | [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] +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 | model with an invalid class name for python, starts with a number | + +### Dictionary Keys +Key | Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- | ------------- +**name** | decimal.Decimal, int, | decimal.Decimal, | | [optional] value must be a 32 bit integer +**class** | str, | str, | this is a reserved python keyword | [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) diff --git a/samples/openapi3/client/petstore/python-experimental/docs/models/ModelReturn.md b/samples/openapi3/client/petstore/python-experimental/docs/models/ModelReturn.md index 438525d796bd..d896e1fbacbb 100644 --- a/samples/openapi3/client/petstore/python-experimental/docs/models/ModelReturn.md +++ b/samples/openapi3/client/petstore/python-experimental/docs/models/ModelReturn.md @@ -2,11 +2,16 @@ Model for testing reserved words -#### Properties -Name | Type | Description | Notes +## Model Type Info +Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**return** | **int** | this is a reserved python keyword | [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] +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 | Model for testing reserved words | + +### Dictionary Keys +Key | Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- | ------------- +**return** | decimal.Decimal, int, | decimal.Decimal, | this is a reserved python keyword | [optional] value must be a 32 bit integer +**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) diff --git a/samples/openapi3/client/petstore/python-experimental/docs/models/Money.md b/samples/openapi3/client/petstore/python-experimental/docs/models/Money.md index 7d45ccd17e17..f6e182a846d6 100644 --- a/samples/openapi3/client/petstore/python-experimental/docs/models/Money.md +++ b/samples/openapi3/client/petstore/python-experimental/docs/models/Money.md @@ -1,11 +1,16 @@ # petstore_api.model.money.Money -#### Properties -Name | Type | Description | Notes +## Model Type Info +Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**amount** | **str** | | -**currency** | [**Currency**](Currency.md) | | -**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] +dict, frozendict.frozendict, | frozendict.frozendict, | | + +### Dictionary Keys +Key | Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- | ------------- +**amount** | str, | str, | | value must be numeric and storable in decimal.Decimal +**currency** | [**Currency**](Currency.md) | [**Currency**](Currency.md) | | +**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) diff --git a/samples/openapi3/client/petstore/python-experimental/docs/models/Name.md b/samples/openapi3/client/petstore/python-experimental/docs/models/Name.md index ac40314bc1b7..9e53cbabab1c 100644 --- a/samples/openapi3/client/petstore/python-experimental/docs/models/Name.md +++ b/samples/openapi3/client/petstore/python-experimental/docs/models/Name.md @@ -2,13 +2,18 @@ Model for testing model name same as property name -#### Properties -Name | Type | Description | Notes +## Model Type Info +Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**name** | **int** | | -**snake_case** | **int** | | [optional] [readonly] -**property** | **str** | this is a reserved python keyword | [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] +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 | Model for testing model name same as property name | + +### Dictionary Keys +Key | Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- | ------------- +**name** | decimal.Decimal, int, | decimal.Decimal, | | value must be a 32 bit integer +**snake_case** | decimal.Decimal, int, | decimal.Decimal, | | [optional] value must be a 32 bit integer +**property** | str, | str, | this is a reserved python keyword | [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) diff --git a/samples/openapi3/client/petstore/python-experimental/docs/models/NoAdditionalProperties.md b/samples/openapi3/client/petstore/python-experimental/docs/models/NoAdditionalProperties.md index 0f916cd6d88e..70e6c8c12059 100644 --- a/samples/openapi3/client/petstore/python-experimental/docs/models/NoAdditionalProperties.md +++ b/samples/openapi3/client/petstore/python-experimental/docs/models/NoAdditionalProperties.md @@ -1,10 +1,15 @@ # petstore_api.model.no_additional_properties.NoAdditionalProperties -#### Properties -Name | Type | Description | Notes +## Model Type Info +Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**id** | **int** | | -**petId** | **int** | | [optional] +dict, frozendict.frozendict, | frozendict.frozendict, | | + +### Dictionary Keys +Key | Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- | ------------- +**id** | decimal.Decimal, int, | decimal.Decimal, | | value must be a 64 bit integer +**petId** | decimal.Decimal, int, | decimal.Decimal, | | [optional] value must be a 64 bit integer [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) diff --git a/samples/openapi3/client/petstore/python-experimental/docs/models/NullableClass.md b/samples/openapi3/client/petstore/python-experimental/docs/models/NullableClass.md index ce345d5536ef..d9ad10591458 100644 --- a/samples/openapi3/client/petstore/python-experimental/docs/models/NullableClass.md +++ b/samples/openapi3/client/petstore/python-experimental/docs/models/NullableClass.md @@ -1,21 +1,147 @@ # petstore_api.model.nullable_class.NullableClass -#### Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**integer_prop** | **int, none_type** | | [optional] -**number_prop** | **int, float, none_type** | | [optional] -**boolean_prop** | **bool, none_type** | | [optional] -**string_prop** | **str, none_type** | | [optional] -**date_prop** | **date, none_type** | | [optional] -**datetime_prop** | **datetime, none_type** | | [optional] -**array_nullable_prop** | **[{str: (bool, date, datetime, dict, float, int, list, str, none_type)}], none_type** | | [optional] -**array_and_items_nullable_prop** | **[{str: (bool, date, datetime, dict, float, int, list, str, none_type)}, none_type], none_type** | | [optional] -**array_items_nullable** | **[{str: (bool, date, datetime, dict, float, int, list, str, none_type)}, none_type]** | | [optional] -**object_nullable_prop** | **{str: ({str: (bool, date, datetime, dict, float, int, list, str, none_type)},)}, none_type** | | [optional] -**object_and_items_nullable_prop** | **{str: ({str: (bool, date, datetime, dict, float, int, list, str, none_type)}, none_type)}, none_type** | | [optional] -**object_items_nullable** | **{str: ({str: (bool, date, datetime, dict, float, int, list, str, none_type)}, none_type)}** | | [optional] -**any string name** | **{str: (bool, date, datetime, dict, float, int, list, str, none_type)}, none_type** | any string name can be used but the value must be the correct type | [optional] +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +dict, frozendict.frozendict, | frozendict.frozendict, | | + +### Dictionary Keys +Key | Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- | ------------- +**integer_prop** | None, decimal.Decimal, int, | NoneClass, decimal.Decimal, | | [optional] +**number_prop** | None, decimal.Decimal, int, float, | NoneClass, decimal.Decimal, | | [optional] +**boolean_prop** | None, bool, | NoneClass, BoolClass, | | [optional] +**string_prop** | None, str, | NoneClass, str, | | [optional] +**date_prop** | None, str, date, | NoneClass, str, | | [optional] value must conform to RFC-3339 full-date YYYY-MM-DD +**datetime_prop** | None, str, datetime, | NoneClass, str, | | [optional] value must conform to RFC-3339 date-time +**[array_nullable_prop](#array_nullable_prop)** | list, tuple, None, | tuple, NoneClass, | | [optional] +**[array_and_items_nullable_prop](#array_and_items_nullable_prop)** | list, tuple, None, | tuple, NoneClass, | | [optional] +**[array_items_nullable](#array_items_nullable)** | list, tuple, | tuple, | | [optional] +**[object_nullable_prop](#object_nullable_prop)** | dict, frozendict.frozendict, None, | frozendict.frozendict, NoneClass, | | [optional] +**[object_and_items_nullable_prop](#object_and_items_nullable_prop)** | dict, frozendict.frozendict, None, | frozendict.frozendict, NoneClass, | | [optional] +**[object_items_nullable](#object_items_nullable)** | dict, frozendict.frozendict, | frozendict.frozendict, | | [optional] +**[any_string_name](#any_string_name)** | dict, frozendict.frozendict, None, | frozendict.frozendict, NoneClass, | any string name can be used but the value must be the correct type | [optional] + +# array_nullable_prop + +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +list, tuple, None, | tuple, NoneClass, | | + +### Tuple Items +Class Name | Input Type | Accessed Type | Description | Notes +------------- | ------------- | ------------- | ------------- | ------------- +[items](#items) | dict, frozendict.frozendict, | frozendict.frozendict, | | + +# items + +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +dict, frozendict.frozendict, | frozendict.frozendict, | | + +# array_and_items_nullable_prop + +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +list, tuple, None, | tuple, NoneClass, | | + +### Tuple Items +Class Name | Input Type | Accessed Type | Description | Notes +------------- | ------------- | ------------- | ------------- | ------------- +[items](#items) | dict, frozendict.frozendict, None, | frozendict.frozendict, NoneClass, | | + +# items + +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +dict, frozendict.frozendict, None, | frozendict.frozendict, NoneClass, | | + +# array_items_nullable + +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +list, tuple, | tuple, | | + +### Tuple Items +Class Name | Input Type | Accessed Type | Description | Notes +------------- | ------------- | ------------- | ------------- | ------------- +[items](#items) | dict, frozendict.frozendict, None, | frozendict.frozendict, NoneClass, | | + +# items + +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +dict, frozendict.frozendict, None, | frozendict.frozendict, NoneClass, | | + +# object_nullable_prop + +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +dict, frozendict.frozendict, None, | frozendict.frozendict, NoneClass, | | + +### Dictionary Keys +Key | Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- | ------------- +**[any_string_name](#any_string_name)** | dict, frozendict.frozendict, | frozendict.frozendict, | any string name can be used but the value must be the correct type | [optional] + +# any_string_name + +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +dict, frozendict.frozendict, | frozendict.frozendict, | | + +# object_and_items_nullable_prop + +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +dict, frozendict.frozendict, None, | frozendict.frozendict, NoneClass, | | + +### Dictionary Keys +Key | Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- | ------------- +**[any_string_name](#any_string_name)** | dict, frozendict.frozendict, None, | frozendict.frozendict, NoneClass, | any string name can be used but the value must be the correct type | [optional] + +# any_string_name + +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +dict, frozendict.frozendict, None, | frozendict.frozendict, NoneClass, | | + +# object_items_nullable + +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +dict, frozendict.frozendict, | frozendict.frozendict, | | + +### Dictionary Keys +Key | Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- | ------------- +**[any_string_name](#any_string_name)** | dict, frozendict.frozendict, None, | frozendict.frozendict, NoneClass, | any string name can be used but the value must be the correct type | [optional] + +# any_string_name + +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +dict, frozendict.frozendict, None, | frozendict.frozendict, NoneClass, | | + +# any_string_name + +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +dict, frozendict.frozendict, None, | frozendict.frozendict, 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) diff --git a/samples/openapi3/client/petstore/python-experimental/docs/models/NullableShape.md b/samples/openapi3/client/petstore/python-experimental/docs/models/NullableShape.md index 6a037b7a2356..9871dfe1e103 100644 --- a/samples/openapi3/client/petstore/python-experimental/docs/models/NullableShape.md +++ b/samples/openapi3/client/petstore/python-experimental/docs/models/NullableShape.md @@ -2,9 +2,25 @@ The value may be a shape or the 'null' value. For a composed schema to validate a null payload, one of its chosen oneOf schemas must be type null or nullable (introduced in OAS schema >= 3.0) -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | +## 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 | The value may be a shape or the 'null' value. For a composed schema to validate a null payload, one of its chosen oneOf schemas must be type null or nullable (introduced in OAS schema >= 3.0) | + +### Composed Schemas (allOf/anyOf/oneOf/not) +#### oneOf +Class Name | Input Type | Accessed Type | Description | Notes +------------- | ------------- | ------------- | ------------- | ------------- +[Triangle](Triangle.md) | [**Triangle**](Triangle.md) | [**Triangle**](Triangle.md) | | +[Quadrilateral](Quadrilateral.md) | [**Quadrilateral**](Quadrilateral.md) | [**Quadrilateral**](Quadrilateral.md) | | +[one_of_2](#one_of_2) | None, | NoneClass, | | + +# one_of_2 + +## 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) diff --git a/samples/openapi3/client/petstore/python-experimental/docs/models/NullableString.md b/samples/openapi3/client/petstore/python-experimental/docs/models/NullableString.md index 5fa2aeec2b61..60b4aba31683 100644 --- a/samples/openapi3/client/petstore/python-experimental/docs/models/NullableString.md +++ b/samples/openapi3/client/petstore/python-experimental/docs/models/NullableString.md @@ -1,8 +1,9 @@ # petstore_api.model.nullable_string.NullableString -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[None, str, ] | | +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +None, str, | NoneClass, str, | | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) diff --git a/samples/openapi3/client/petstore/python-experimental/docs/models/Number.md b/samples/openapi3/client/petstore/python-experimental/docs/models/Number.md index c97589020182..b1172e284fca 100644 --- a/samples/openapi3/client/petstore/python-experimental/docs/models/Number.md +++ b/samples/openapi3/client/petstore/python-experimental/docs/models/Number.md @@ -1,8 +1,9 @@ # petstore_api.model.number.Number -Type | Description | Notes -------------- | ------------- | ------------- -**float** | | +## 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) diff --git a/samples/openapi3/client/petstore/python-experimental/docs/models/NumberOnly.md b/samples/openapi3/client/petstore/python-experimental/docs/models/NumberOnly.md index 05bc4185c8d1..42996c4e4cdf 100644 --- a/samples/openapi3/client/petstore/python-experimental/docs/models/NumberOnly.md +++ b/samples/openapi3/client/petstore/python-experimental/docs/models/NumberOnly.md @@ -1,10 +1,15 @@ # petstore_api.model.number_only.NumberOnly -#### Properties -Name | Type | Description | Notes +## Model Type Info +Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**JustNumber** | **int, float** | | [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] +dict, frozendict.frozendict, | frozendict.frozendict, | | + +### Dictionary Keys +Key | Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- | ------------- +**JustNumber** | decimal.Decimal, int, float, | decimal.Decimal, | | [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) diff --git a/samples/openapi3/client/petstore/python-experimental/docs/models/NumberWithValidations.md b/samples/openapi3/client/petstore/python-experimental/docs/models/NumberWithValidations.md index f6e090ba19cb..fac4f59efe71 100644 --- a/samples/openapi3/client/petstore/python-experimental/docs/models/NumberWithValidations.md +++ b/samples/openapi3/client/petstore/python-experimental/docs/models/NumberWithValidations.md @@ -1,8 +1,9 @@ # petstore_api.model.number_with_validations.NumberWithValidations -Type | Description | Notes -------------- | ------------- | ------------- -**float** | | +## 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) diff --git a/samples/openapi3/client/petstore/python-experimental/docs/models/ObjectInterface.md b/samples/openapi3/client/petstore/python-experimental/docs/models/ObjectInterface.md index 0a722a18b547..e818da00c6f7 100644 --- a/samples/openapi3/client/petstore/python-experimental/docs/models/ObjectInterface.md +++ b/samples/openapi3/client/petstore/python-experimental/docs/models/ObjectInterface.md @@ -1,8 +1,9 @@ # petstore_api.model.object_interface.ObjectInterface -Type | Description | Notes -------------- | ------------- | ------------- -**object** | | +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +dict, frozendict.frozendict, | frozendict.frozendict, | | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) diff --git a/samples/openapi3/client/petstore/python-experimental/docs/models/ObjectModelWithRefProps.md b/samples/openapi3/client/petstore/python-experimental/docs/models/ObjectModelWithRefProps.md index 246c8374ac4c..8bb001aa7713 100644 --- a/samples/openapi3/client/petstore/python-experimental/docs/models/ObjectModelWithRefProps.md +++ b/samples/openapi3/client/petstore/python-experimental/docs/models/ObjectModelWithRefProps.md @@ -2,13 +2,18 @@ a model that includes properties which should stay primitive (String + Boolean) and one which is defined as a class, NumberWithValidations -#### Properties -Name | Type | Description | Notes +## Model Type Info +Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**myNumber** | [**NumberWithValidations**](NumberWithValidations.md) | | [optional] -**myString** | **str** | | [optional] -**myBoolean** | **bool** | | [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] +dict, frozendict.frozendict, | frozendict.frozendict, | a model that includes properties which should stay primitive (String + Boolean) and one which is defined as a class, NumberWithValidations | + +### Dictionary Keys +Key | Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- | ------------- +**myNumber** | [**NumberWithValidations**](NumberWithValidations.md) | [**NumberWithValidations**](NumberWithValidations.md) | | [optional] +**myString** | str, | str, | | [optional] +**myBoolean** | bool, | BoolClass, | | [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) diff --git a/samples/openapi3/client/petstore/python-experimental/docs/models/ObjectWithDecimalProperties.md b/samples/openapi3/client/petstore/python-experimental/docs/models/ObjectWithDecimalProperties.md index 1986343d3edd..82c1abadd60b 100644 --- a/samples/openapi3/client/petstore/python-experimental/docs/models/ObjectWithDecimalProperties.md +++ b/samples/openapi3/client/petstore/python-experimental/docs/models/ObjectWithDecimalProperties.md @@ -1,12 +1,17 @@ # petstore_api.model.object_with_decimal_properties.ObjectWithDecimalProperties -#### Properties -Name | Type | Description | Notes +## Model Type Info +Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**length** | **str** | | [optional] -**width** | **str** | | [optional] -**cost** | [**Money**](Money.md) | | [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] +dict, frozendict.frozendict, | frozendict.frozendict, | | + +### Dictionary Keys +Key | Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- | ------------- +**length** | str, | str, | | [optional] value must be numeric and storable in decimal.Decimal +**width** | str, | str, | | [optional] value must be numeric and storable in decimal.Decimal +**cost** | [**Money**](Money.md) | [**Money**](Money.md) | | [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) diff --git a/samples/openapi3/client/petstore/python-experimental/docs/models/ObjectWithDifficultlyNamedProps.md b/samples/openapi3/client/petstore/python-experimental/docs/models/ObjectWithDifficultlyNamedProps.md index d8301cc9cfbf..13ca7fa14586 100644 --- a/samples/openapi3/client/petstore/python-experimental/docs/models/ObjectWithDifficultlyNamedProps.md +++ b/samples/openapi3/client/petstore/python-experimental/docs/models/ObjectWithDifficultlyNamedProps.md @@ -2,13 +2,18 @@ model with properties that have invalid names for python -#### Properties -Name | Type | Description | Notes +## Model Type Info +Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**123-list** | **str** | | -**$special[property.name]** | **int** | | [optional] -**123Number** | **int** | | [optional] [readonly] -**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] +dict, frozendict.frozendict, | frozendict.frozendict, | model with properties that have invalid names for python | + +### Dictionary Keys +Key | Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- | ------------- +**123-list** | str, | str, | | +**$special[property.name]** | decimal.Decimal, int, | decimal.Decimal, | | [optional] value must be a 64 bit integer +**123Number** | decimal.Decimal, int, | decimal.Decimal, | | [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) diff --git a/samples/openapi3/client/petstore/python-experimental/docs/models/ObjectWithInlineCompositionProperty.md b/samples/openapi3/client/petstore/python-experimental/docs/models/ObjectWithInlineCompositionProperty.md index ed9bcb7f40e9..ddf1df421757 100644 --- a/samples/openapi3/client/petstore/python-experimental/docs/models/ObjectWithInlineCompositionProperty.md +++ b/samples/openapi3/client/petstore/python-experimental/docs/models/ObjectWithInlineCompositionProperty.md @@ -1,10 +1,35 @@ # petstore_api.model.object_with_inline_composition_property.ObjectWithInlineCompositionProperty -#### Properties -Name | Type | Description | Notes +## Model Type Info +Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**someProp** | **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] +dict, frozendict.frozendict, | frozendict.frozendict, | | + +### Dictionary Keys +Key | Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- | ------------- +**[someProp](#someProp)** | 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] + +# someProp + +## 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) | str, | str, | | + +# all_of_0 + +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +str, | str, | | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) diff --git a/samples/openapi3/client/petstore/python-experimental/docs/models/ObjectWithValidations.md b/samples/openapi3/client/petstore/python-experimental/docs/models/ObjectWithValidations.md index 4aa75a5bbf20..be9d36e49b66 100644 --- a/samples/openapi3/client/petstore/python-experimental/docs/models/ObjectWithValidations.md +++ b/samples/openapi3/client/petstore/python-experimental/docs/models/ObjectWithValidations.md @@ -1,8 +1,9 @@ # petstore_api.model.object_with_validations.ObjectWithValidations -Type | Description | Notes -------------- | ------------- | ------------- -**object** | | +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +dict, frozendict.frozendict, | frozendict.frozendict, | | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) diff --git a/samples/openapi3/client/petstore/python-experimental/docs/models/Order.md b/samples/openapi3/client/petstore/python-experimental/docs/models/Order.md index 06edf39531c3..0007dc9178df 100644 --- a/samples/openapi3/client/petstore/python-experimental/docs/models/Order.md +++ b/samples/openapi3/client/petstore/python-experimental/docs/models/Order.md @@ -1,15 +1,20 @@ # petstore_api.model.order.Order -#### Properties -Name | Type | Description | Notes +## Model Type Info +Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**id** | **int** | | [optional] -**petId** | **int** | | [optional] -**quantity** | **int** | | [optional] -**shipDate** | **datetime** | | [optional] -**status** | **str** | Order Status | [optional] -**complete** | **bool** | | [optional] if omitted the server will use the default value of False -**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] +dict, frozendict.frozendict, | frozendict.frozendict, | | + +### Dictionary Keys +Key | Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- | ------------- +**id** | decimal.Decimal, int, | decimal.Decimal, | | [optional] value must be a 64 bit integer +**petId** | decimal.Decimal, int, | decimal.Decimal, | | [optional] value must be a 64 bit integer +**quantity** | decimal.Decimal, int, | decimal.Decimal, | | [optional] value must be a 32 bit integer +**shipDate** | str, datetime, | str, | | [optional] value must conform to RFC-3339 date-time +**status** | str, | str, | Order Status | [optional] must be one of ["placed", "approved", "delivered", ] +**complete** | bool, | BoolClass, | | [optional] if omitted the server will use the default value of False +**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) diff --git a/samples/openapi3/client/petstore/python-experimental/docs/models/ParentPet.md b/samples/openapi3/client/petstore/python-experimental/docs/models/ParentPet.md index ed9ce86c7e4c..1baad19537ff 100644 --- a/samples/openapi3/client/petstore/python-experimental/docs/models/ParentPet.md +++ b/samples/openapi3/client/petstore/python-experimental/docs/models/ParentPet.md @@ -1,8 +1,15 @@ # petstore_api.model.parent_pet.ParentPet -Type | Description | Notes -------------- | ------------- | ------------- -**object** | | +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +dict, frozendict.frozendict, | frozendict.frozendict, | | + +### Composed Schemas (allOf/anyOf/oneOf/not) +#### allOf +Class Name | Input Type | Accessed Type | Description | Notes +------------- | ------------- | ------------- | ------------- | ------------- +[GrandparentAnimal](GrandparentAnimal.md) | [**GrandparentAnimal**](GrandparentAnimal.md) | [**GrandparentAnimal**](GrandparentAnimal.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) diff --git a/samples/openapi3/client/petstore/python-experimental/docs/models/Pet.md b/samples/openapi3/client/petstore/python-experimental/docs/models/Pet.md index 0a194ddef4b8..eacf6aa431d0 100644 --- a/samples/openapi3/client/petstore/python-experimental/docs/models/Pet.md +++ b/samples/openapi3/client/petstore/python-experimental/docs/models/Pet.md @@ -2,16 +2,45 @@ Pet object that needs to be added to the store -#### Properties -Name | Type | Description | Notes +## Model Type Info +Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**photoUrls** | **[str]** | | -**name** | **str** | | -**id** | **int** | | [optional] -**category** | [**Category**](Category.md) | | [optional] -**tags** | **[Tag]** | | [optional] -**status** | **str** | pet status in the store | [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] +dict, frozendict.frozendict, | frozendict.frozendict, | Pet object that needs to be added to the store | + +### Dictionary Keys +Key | Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- | ------------- +**[photoUrls](#photoUrls)** | list, tuple, | tuple, | | +**name** | str, | str, | | +**id** | decimal.Decimal, int, | decimal.Decimal, | | [optional] value must be a 64 bit integer +**category** | [**Category**](Category.md) | [**Category**](Category.md) | | [optional] +**[tags](#tags)** | list, tuple, | tuple, | | [optional] +**status** | str, | str, | pet status in the store | [optional] must be one of ["available", "pending", "sold", ] +**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] + +# photoUrls + +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +list, tuple, | tuple, | | + +### Tuple Items +Class Name | Input Type | Accessed Type | Description | Notes +------------- | ------------- | ------------- | ------------- | ------------- +items | str, | str, | | + +# tags + +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +list, tuple, | tuple, | | + +### Tuple Items +Class Name | Input Type | Accessed Type | Description | Notes +------------- | ------------- | ------------- | ------------- | ------------- +[**Tag**](Tag.md) | [**Tag**](Tag.md) | [**Tag**](Tag.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) diff --git a/samples/openapi3/client/petstore/python-experimental/docs/models/Pig.md b/samples/openapi3/client/petstore/python-experimental/docs/models/Pig.md index 4fca1b6833f1..33a8aca85ea8 100644 --- a/samples/openapi3/client/petstore/python-experimental/docs/models/Pig.md +++ b/samples/openapi3/client/petstore/python-experimental/docs/models/Pig.md @@ -1,8 +1,16 @@ # petstore_api.model.pig.Pig -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | +## 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 +------------- | ------------- | ------------- | ------------- | ------------- +[BasquePig](BasquePig.md) | [**BasquePig**](BasquePig.md) | [**BasquePig**](BasquePig.md) | | +[DanishPig](DanishPig.md) | [**DanishPig**](DanishPig.md) | [**DanishPig**](DanishPig.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) diff --git a/samples/openapi3/client/petstore/python-experimental/docs/models/Player.md b/samples/openapi3/client/petstore/python-experimental/docs/models/Player.md index bcd2aa8890f3..98ec6b5d1529 100644 --- a/samples/openapi3/client/petstore/python-experimental/docs/models/Player.md +++ b/samples/openapi3/client/petstore/python-experimental/docs/models/Player.md @@ -2,12 +2,17 @@ a model that includes a self reference this forces properties and additionalProperties to be lazy loaded in python models because the Player class has not fully loaded when defining properties -#### Properties -Name | Type | Description | Notes +## Model Type Info +Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**name** | **str** | | [optional] -**enemyPlayer** | [**Player**](Player.md) | | [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] +dict, frozendict.frozendict, | frozendict.frozendict, | a model that includes a self reference this forces properties and additionalProperties to be lazy loaded in python models because the Player class has not fully loaded when defining properties | + +### Dictionary Keys +Key | Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- | ------------- +**name** | str, | str, | | [optional] +**enemyPlayer** | [**Player**](Player.md) | [**Player**](Player.md) | | [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) diff --git a/samples/openapi3/client/petstore/python-experimental/docs/models/Quadrilateral.md b/samples/openapi3/client/petstore/python-experimental/docs/models/Quadrilateral.md index ac7de750d0ce..55f18627244d 100644 --- a/samples/openapi3/client/petstore/python-experimental/docs/models/Quadrilateral.md +++ b/samples/openapi3/client/petstore/python-experimental/docs/models/Quadrilateral.md @@ -1,8 +1,16 @@ # petstore_api.model.quadrilateral.Quadrilateral -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | +## 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 +------------- | ------------- | ------------- | ------------- | ------------- +[SimpleQuadrilateral](SimpleQuadrilateral.md) | [**SimpleQuadrilateral**](SimpleQuadrilateral.md) | [**SimpleQuadrilateral**](SimpleQuadrilateral.md) | | +[ComplexQuadrilateral](ComplexQuadrilateral.md) | [**ComplexQuadrilateral**](ComplexQuadrilateral.md) | [**ComplexQuadrilateral**](ComplexQuadrilateral.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) diff --git a/samples/openapi3/client/petstore/python-experimental/docs/models/QuadrilateralInterface.md b/samples/openapi3/client/petstore/python-experimental/docs/models/QuadrilateralInterface.md index 2d050c4d33d7..8344d0ffbafa 100644 --- a/samples/openapi3/client/petstore/python-experimental/docs/models/QuadrilateralInterface.md +++ b/samples/openapi3/client/petstore/python-experimental/docs/models/QuadrilateralInterface.md @@ -1,11 +1,16 @@ # petstore_api.model.quadrilateral_interface.QuadrilateralInterface -#### Properties -Name | Type | Description | Notes +## Model Type Info +Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**shapeType** | **str** | | -**quadrilateralType** | **str** | | -**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] +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 +------------ | ------------- | ------------- | ------------- | ------------- +**shapeType** | str, | str, | | must be one of ["Quadrilateral", ] +**quadrilateralType** | 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) diff --git a/samples/openapi3/client/petstore/python-experimental/docs/models/ReadOnlyFirst.md b/samples/openapi3/client/petstore/python-experimental/docs/models/ReadOnlyFirst.md index 8875616fa123..a8f4053a418b 100644 --- a/samples/openapi3/client/petstore/python-experimental/docs/models/ReadOnlyFirst.md +++ b/samples/openapi3/client/petstore/python-experimental/docs/models/ReadOnlyFirst.md @@ -1,11 +1,16 @@ # petstore_api.model.read_only_first.ReadOnlyFirst -#### Properties -Name | Type | Description | Notes +## Model Type Info +Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**bar** | **str** | | [optional] [readonly] -**baz** | **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] +dict, frozendict.frozendict, | frozendict.frozendict, | | + +### Dictionary Keys +Key | Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- | ------------- +**bar** | str, | str, | | [optional] +**baz** | 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) diff --git a/samples/openapi3/client/petstore/python-experimental/docs/models/ScaleneTriangle.md b/samples/openapi3/client/petstore/python-experimental/docs/models/ScaleneTriangle.md index 38200b13d5ca..dde662e47e20 100644 --- a/samples/openapi3/client/petstore/python-experimental/docs/models/ScaleneTriangle.md +++ b/samples/openapi3/client/petstore/python-experimental/docs/models/ScaleneTriangle.md @@ -1,8 +1,29 @@ # petstore_api.model.scalene_triangle.ScaleneTriangle -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | +## 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 +------------- | ------------- | ------------- | ------------- | ------------- +[TriangleInterface](TriangleInterface.md) | [**TriangleInterface**](TriangleInterface.md) | [**TriangleInterface**](TriangleInterface.md) | | +[all_of_1](#all_of_1) | dict, frozendict.frozendict, | frozendict.frozendict, | | + +# all_of_1 + +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +dict, frozendict.frozendict, | frozendict.frozendict, | | + +### Dictionary Keys +Key | Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- | ------------- +**triangleType** | str, | str, | | [optional] must be one of ["ScaleneTriangle", ] +**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) diff --git a/samples/openapi3/client/petstore/python-experimental/docs/models/Shape.md b/samples/openapi3/client/petstore/python-experimental/docs/models/Shape.md index 5569bfd24b2e..f8bec209ec26 100644 --- a/samples/openapi3/client/petstore/python-experimental/docs/models/Shape.md +++ b/samples/openapi3/client/petstore/python-experimental/docs/models/Shape.md @@ -1,8 +1,16 @@ # petstore_api.model.shape.Shape -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | +## 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 +------------- | ------------- | ------------- | ------------- | ------------- +[Triangle](Triangle.md) | [**Triangle**](Triangle.md) | [**Triangle**](Triangle.md) | | +[Quadrilateral](Quadrilateral.md) | [**Quadrilateral**](Quadrilateral.md) | [**Quadrilateral**](Quadrilateral.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) diff --git a/samples/openapi3/client/petstore/python-experimental/docs/models/ShapeOrNull.md b/samples/openapi3/client/petstore/python-experimental/docs/models/ShapeOrNull.md index 7b872844d8a7..908b69e0587b 100644 --- a/samples/openapi3/client/petstore/python-experimental/docs/models/ShapeOrNull.md +++ b/samples/openapi3/client/petstore/python-experimental/docs/models/ShapeOrNull.md @@ -2,9 +2,25 @@ The value may be a shape or the 'null' value. This is introduced in OAS schema >= 3.1. -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | +## 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 | The value may be a shape or the 'null' value. This is introduced in OAS schema >= 3.1. | + +### Composed Schemas (allOf/anyOf/oneOf/not) +#### oneOf +Class Name | Input Type | Accessed Type | Description | Notes +------------- | ------------- | ------------- | ------------- | ------------- +[one_of_0](#one_of_0) | None, | NoneClass, | | +[Triangle](Triangle.md) | [**Triangle**](Triangle.md) | [**Triangle**](Triangle.md) | | +[Quadrilateral](Quadrilateral.md) | [**Quadrilateral**](Quadrilateral.md) | [**Quadrilateral**](Quadrilateral.md) | | + +# 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) diff --git a/samples/openapi3/client/petstore/python-experimental/docs/models/SimpleQuadrilateral.md b/samples/openapi3/client/petstore/python-experimental/docs/models/SimpleQuadrilateral.md index 16d6041e05a7..288684f5dccd 100644 --- a/samples/openapi3/client/petstore/python-experimental/docs/models/SimpleQuadrilateral.md +++ b/samples/openapi3/client/petstore/python-experimental/docs/models/SimpleQuadrilateral.md @@ -1,8 +1,29 @@ # petstore_api.model.simple_quadrilateral.SimpleQuadrilateral -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | +## 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 +------------- | ------------- | ------------- | ------------- | ------------- +[QuadrilateralInterface](QuadrilateralInterface.md) | [**QuadrilateralInterface**](QuadrilateralInterface.md) | [**QuadrilateralInterface**](QuadrilateralInterface.md) | | +[all_of_1](#all_of_1) | dict, frozendict.frozendict, | frozendict.frozendict, | | + +# all_of_1 + +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +dict, frozendict.frozendict, | frozendict.frozendict, | | + +### Dictionary Keys +Key | Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- | ------------- +**quadrilateralType** | str, | str, | | [optional] must be one of ["SimpleQuadrilateral", ] +**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) diff --git a/samples/openapi3/client/petstore/python-experimental/docs/models/SomeObject.md b/samples/openapi3/client/petstore/python-experimental/docs/models/SomeObject.md index 6396fd35d090..7599329a36d1 100644 --- a/samples/openapi3/client/petstore/python-experimental/docs/models/SomeObject.md +++ b/samples/openapi3/client/petstore/python-experimental/docs/models/SomeObject.md @@ -1,8 +1,15 @@ # petstore_api.model.some_object.SomeObject -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | +## 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 +------------- | ------------- | ------------- | ------------- | ------------- +[ObjectInterface](ObjectInterface.md) | [**ObjectInterface**](ObjectInterface.md) | [**ObjectInterface**](ObjectInterface.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) diff --git a/samples/openapi3/client/petstore/python-experimental/docs/models/SpecialModelName.md b/samples/openapi3/client/petstore/python-experimental/docs/models/SpecialModelName.md index 2f836a7ca7a9..f40d98660aa8 100644 --- a/samples/openapi3/client/petstore/python-experimental/docs/models/SpecialModelName.md +++ b/samples/openapi3/client/petstore/python-experimental/docs/models/SpecialModelName.md @@ -2,11 +2,16 @@ model with an invalid class name for python -#### Properties -Name | Type | Description | Notes +## Model Type Info +Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**a** | **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] +dict, frozendict.frozendict, | frozendict.frozendict, | model with an invalid class name for python | + +### Dictionary Keys +Key | Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- | ------------- +**a** | 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) diff --git a/samples/openapi3/client/petstore/python-experimental/docs/models/String.md b/samples/openapi3/client/petstore/python-experimental/docs/models/String.md index c21295f81bfa..75fc685c2ca7 100644 --- a/samples/openapi3/client/petstore/python-experimental/docs/models/String.md +++ b/samples/openapi3/client/petstore/python-experimental/docs/models/String.md @@ -1,8 +1,9 @@ # petstore_api.model.string.String -Type | Description | Notes -------------- | ------------- | ------------- -**str** | | +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +str, | str, | | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) diff --git a/samples/openapi3/client/petstore/python-experimental/docs/models/StringBooleanMap.md b/samples/openapi3/client/petstore/python-experimental/docs/models/StringBooleanMap.md index 175455f31c12..48f1fe881e25 100644 --- a/samples/openapi3/client/petstore/python-experimental/docs/models/StringBooleanMap.md +++ b/samples/openapi3/client/petstore/python-experimental/docs/models/StringBooleanMap.md @@ -1,9 +1,14 @@ # petstore_api.model.string_boolean_map.StringBooleanMap -#### Properties -Name | Type | Description | Notes +## Model Type Info +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) diff --git a/samples/openapi3/client/petstore/python-experimental/docs/models/StringEnum.md b/samples/openapi3/client/petstore/python-experimental/docs/models/StringEnum.md index eabb1c1181f7..219962d20541 100644 --- a/samples/openapi3/client/petstore/python-experimental/docs/models/StringEnum.md +++ b/samples/openapi3/client/petstore/python-experimental/docs/models/StringEnum.md @@ -1,8 +1,9 @@ # petstore_api.model.string_enum.StringEnum -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[None, str, ] | | must be one of ["placed", "approved", "delivered", "single quoted", "multiple\nlines", "double quote \n with newline", ] +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +None, str, | NoneClass, str, | | must be one of ["placed", "approved", "delivered", "single quoted", "multiple\nlines", "double quote \n with newline", ] [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) diff --git a/samples/openapi3/client/petstore/python-experimental/docs/models/StringEnumWithDefaultValue.md b/samples/openapi3/client/petstore/python-experimental/docs/models/StringEnumWithDefaultValue.md index 26e46959c02a..028f1b3733cc 100644 --- a/samples/openapi3/client/petstore/python-experimental/docs/models/StringEnumWithDefaultValue.md +++ b/samples/openapi3/client/petstore/python-experimental/docs/models/StringEnumWithDefaultValue.md @@ -1,8 +1,9 @@ # petstore_api.model.string_enum_with_default_value.StringEnumWithDefaultValue -Type | Description | Notes -------------- | ------------- | ------------- -**str** | | defaults to "placed", must be one of ["placed", "approved", "delivered", ] +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +str, | str, | | must be one of ["placed", "approved", "delivered", ] if omitted the server will use the default value of "placed" [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) diff --git a/samples/openapi3/client/petstore/python-experimental/docs/models/StringWithValidation.md b/samples/openapi3/client/petstore/python-experimental/docs/models/StringWithValidation.md index aca795787df2..3effe032b8cd 100644 --- a/samples/openapi3/client/petstore/python-experimental/docs/models/StringWithValidation.md +++ b/samples/openapi3/client/petstore/python-experimental/docs/models/StringWithValidation.md @@ -1,8 +1,9 @@ # petstore_api.model.string_with_validation.StringWithValidation -Type | Description | Notes -------------- | ------------- | ------------- -**str** | | +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +str, | str, | | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) diff --git a/samples/openapi3/client/petstore/python-experimental/docs/models/Tag.md b/samples/openapi3/client/petstore/python-experimental/docs/models/Tag.md index 6aea7dc5b1a5..7e61a1fffa91 100644 --- a/samples/openapi3/client/petstore/python-experimental/docs/models/Tag.md +++ b/samples/openapi3/client/petstore/python-experimental/docs/models/Tag.md @@ -1,11 +1,16 @@ # petstore_api.model.tag.Tag -#### Properties -Name | Type | Description | Notes +## Model Type Info +Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**id** | **int** | | [optional] -**name** | **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] +dict, frozendict.frozendict, | frozendict.frozendict, | | + +### Dictionary Keys +Key | Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- | ------------- +**id** | decimal.Decimal, int, | decimal.Decimal, | | [optional] value must be a 64 bit integer +**name** | 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) diff --git a/samples/openapi3/client/petstore/python-experimental/docs/models/Triangle.md b/samples/openapi3/client/petstore/python-experimental/docs/models/Triangle.md index 6f034cba509c..c89258b99fe0 100644 --- a/samples/openapi3/client/petstore/python-experimental/docs/models/Triangle.md +++ b/samples/openapi3/client/petstore/python-experimental/docs/models/Triangle.md @@ -1,8 +1,17 @@ # petstore_api.model.triangle.Triangle -Type | Description | Notes -------------- | ------------- | ------------- -typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | | +## 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 +------------- | ------------- | ------------- | ------------- | ------------- +[EquilateralTriangle](EquilateralTriangle.md) | [**EquilateralTriangle**](EquilateralTriangle.md) | [**EquilateralTriangle**](EquilateralTriangle.md) | | +[IsoscelesTriangle](IsoscelesTriangle.md) | [**IsoscelesTriangle**](IsoscelesTriangle.md) | [**IsoscelesTriangle**](IsoscelesTriangle.md) | | +[ScaleneTriangle](ScaleneTriangle.md) | [**ScaleneTriangle**](ScaleneTriangle.md) | [**ScaleneTriangle**](ScaleneTriangle.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) diff --git a/samples/openapi3/client/petstore/python-experimental/docs/models/TriangleInterface.md b/samples/openapi3/client/petstore/python-experimental/docs/models/TriangleInterface.md index 87b482fb6e3a..259594c78804 100644 --- a/samples/openapi3/client/petstore/python-experimental/docs/models/TriangleInterface.md +++ b/samples/openapi3/client/petstore/python-experimental/docs/models/TriangleInterface.md @@ -1,11 +1,16 @@ # petstore_api.model.triangle_interface.TriangleInterface -#### Properties -Name | Type | Description | Notes +## Model Type Info +Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**shapeType** | **str** | | -**triangleType** | **str** | | -**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] +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 +------------ | ------------- | ------------- | ------------- | ------------- +**shapeType** | str, | str, | | must be one of ["Triangle", ] +**triangleType** | 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) diff --git a/samples/openapi3/client/petstore/python-experimental/docs/models/UUIDString.md b/samples/openapi3/client/petstore/python-experimental/docs/models/UUIDString.md index ce1d012e43ac..020676d58434 100644 --- a/samples/openapi3/client/petstore/python-experimental/docs/models/UUIDString.md +++ b/samples/openapi3/client/petstore/python-experimental/docs/models/UUIDString.md @@ -1,8 +1,9 @@ # petstore_api.model.uuid_string.UUIDString -Type | Description | Notes -------------- | ------------- | ------------- -**str** | | +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +str, uuid.UUID, | str, | | value must be a uuid [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) diff --git a/samples/openapi3/client/petstore/python-experimental/docs/models/User.md b/samples/openapi3/client/petstore/python-experimental/docs/models/User.md index 2f40d1c8e672..11da137c6404 100644 --- a/samples/openapi3/client/petstore/python-experimental/docs/models/User.md +++ b/samples/openapi3/client/petstore/python-experimental/docs/models/User.md @@ -1,22 +1,67 @@ # petstore_api.model.user.User -#### Properties -Name | Type | Description | Notes +## Model Type Info +Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**id** | **int** | | [optional] -**username** | **str** | | [optional] -**firstName** | **str** | | [optional] -**lastName** | **str** | | [optional] -**email** | **str** | | [optional] -**password** | **str** | | [optional] -**phone** | **str** | | [optional] -**userStatus** | **int** | User Status | [optional] -**objectWithNoDeclaredProps** | **{str: (bool, date, datetime, dict, float, int, list, str, none_type)}** | test code generation for objects Value must be a map of strings to values. It cannot be the 'null' value. | [optional] -**objectWithNoDeclaredPropsNullable** | **{str: (bool, date, datetime, dict, float, int, list, str, none_type)}, none_type** | test code generation for nullable objects. Value must be a map of strings to values or the 'null' value. | [optional] -**anyTypeProp** | **bool, date, datetime, dict, float, int, list, str, none_type** | test code generation for any type Here the 'type' attribute is not specified, which means the value can be anything, including the null value, string, number, boolean, array or object. See https://github.com/OAI/OpenAPI-Specification/issues/1389 | [optional] -**anyTypeExceptNullProp** | **bool, date, datetime, dict, float, int, list, str, none_type** | any type except 'null' Here the 'type' attribute is not specified, which means the value can be anything, including the null value, string, number, boolean, array or object. | [optional] -**anyTypePropNullable** | **bool, date, datetime, dict, float, int, list, str, none_type** | test code generation for any type Here the 'type' attribute is not specified, which means the value can be anything, including the null value, string, number, boolean, array or object. The 'nullable' attribute does not change the allowed values. | [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] +dict, frozendict.frozendict, | frozendict.frozendict, | | + +### Dictionary Keys +Key | Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- | ------------- +**id** | decimal.Decimal, int, | decimal.Decimal, | | [optional] value must be a 64 bit integer +**username** | str, | str, | | [optional] +**firstName** | str, | str, | | [optional] +**lastName** | str, | str, | | [optional] +**email** | str, | str, | | [optional] +**password** | str, | str, | | [optional] +**phone** | str, | str, | | [optional] +**userStatus** | decimal.Decimal, int, | decimal.Decimal, | User Status | [optional] value must be a 32 bit integer +**[objectWithNoDeclaredProps](#objectWithNoDeclaredProps)** | dict, frozendict.frozendict, | frozendict.frozendict, | test code generation for objects Value must be a map of strings to values. It cannot be the 'null' value. | [optional] +**[objectWithNoDeclaredPropsNullable](#objectWithNoDeclaredPropsNullable)** | dict, frozendict.frozendict, None, | frozendict.frozendict, NoneClass, | test code generation for nullable objects. Value must be a map of strings to values or the 'null' value. | [optional] +**anyTypeProp** | 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 | test code generation for any type Here the 'type' attribute is not specified, which means the value can be anything, including the null value, string, number, boolean, array or object. See https://github.com/OAI/OpenAPI-Specification/issues/1389 | [optional] +**[anyTypeExceptNullProp](#anyTypeExceptNullProp)** | 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 type except 'null' Here the 'type' attribute is not specified, which means the value can be anything, including the null value, string, number, boolean, array or object. | [optional] +**anyTypePropNullable** | 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 | test code generation for any type Here the 'type' attribute is not specified, which means the value can be anything, including the null value, string, number, boolean, array or object. The 'nullable' attribute does not change the allowed values. | [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] + +# objectWithNoDeclaredProps + +test code generation for objects Value must be a map of strings to values. It cannot be the 'null' value. + +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +dict, frozendict.frozendict, | frozendict.frozendict, | test code generation for objects Value must be a map of strings to values. It cannot be the 'null' value. | + +# objectWithNoDeclaredPropsNullable + +test code generation for nullable objects. Value must be a map of strings to values or the 'null' value. + +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +dict, frozendict.frozendict, None, | frozendict.frozendict, NoneClass, | test code generation for nullable objects. Value must be a map of strings to values or the 'null' value. | + +# anyTypeExceptNullProp + +any type except 'null' Here the 'type' attribute is not specified, which means the value can be anything, including the null value, string, number, boolean, array or object. + +## 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 type except 'null' Here the 'type' attribute is not specified, which means the value can be anything, including the null value, string, number, boolean, array or object. | + +### Composed Schemas (allOf/anyOf/oneOf/not) +#### not +Class Name | Input Type | Accessed Type | Description | Notes +------------- | ------------- | ------------- | ------------- | ------------- +[not_schema](#not_schema) | None, | NoneClass, | | + +# not_schema + +## 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) diff --git a/samples/openapi3/client/petstore/python-experimental/docs/models/Whale.md b/samples/openapi3/client/petstore/python-experimental/docs/models/Whale.md index 8bfa4cf41cc9..bd92a1048d41 100644 --- a/samples/openapi3/client/petstore/python-experimental/docs/models/Whale.md +++ b/samples/openapi3/client/petstore/python-experimental/docs/models/Whale.md @@ -1,12 +1,17 @@ # petstore_api.model.whale.Whale -#### Properties -Name | Type | Description | Notes +## Model Type Info +Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**className** | **str** | | -**hasBaleen** | **bool** | | [optional] -**hasTeeth** | **bool** | | [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] +dict, frozendict.frozendict, | frozendict.frozendict, | | + +### Dictionary Keys +Key | Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- | ------------- +**className** | str, | str, | | must be one of ["whale", ] +**hasBaleen** | bool, | BoolClass, | | [optional] +**hasTeeth** | bool, | BoolClass, | | [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) diff --git a/samples/openapi3/client/petstore/python-experimental/docs/models/Zebra.md b/samples/openapi3/client/petstore/python-experimental/docs/models/Zebra.md index d8d2fc8c7330..c710364ef8cf 100644 --- a/samples/openapi3/client/petstore/python-experimental/docs/models/Zebra.md +++ b/samples/openapi3/client/petstore/python-experimental/docs/models/Zebra.md @@ -1,11 +1,16 @@ # petstore_api.model.zebra.Zebra -#### Properties -Name | Type | Description | Notes +## Model Type Info +Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**className** | **str** | | -**type** | **str** | | [optional] -**any string name** | dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, | 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 +------------ | ------------- | ------------- | ------------- | ------------- +**className** | str, | str, | | must be one of ["zebra", ] +**type** | str, | str, | | [optional] must be one of ["plains", "mountain", "grevys", ] +**any_string_name** | 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 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) diff --git a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/additional_properties_class.py b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/additional_properties_class.py index 828b4d14bebc..91c05f7740b4 100644 --- a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/additional_properties_class.py +++ b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/additional_properties_class.py @@ -145,7 +145,7 @@ def __new__( cls, *args: typing.Union[dict, frozendict.frozendict, ], _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[MetaOapg.additional_properties, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + **kwargs: typing.Union[MetaOapg.additional_properties, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], ) -> 'map_with_undeclared_properties_anytype_3': return super().__new__( cls, @@ -281,7 +281,7 @@ def __new__( *args: typing.Union[dict, frozendict.frozendict, ], map_property: typing.Union[MetaOapg.properties.map_property, dict, frozendict.frozendict, schemas.Unset] = schemas.unset, map_of_map_property: typing.Union[MetaOapg.properties.map_of_map_property, dict, frozendict.frozendict, schemas.Unset] = schemas.unset, - anytype_1: typing.Union[MetaOapg.properties.anytype_1, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, schemas.Unset] = schemas.unset, + anytype_1: typing.Union[MetaOapg.properties.anytype_1, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, map_with_undeclared_properties_anytype_1: typing.Union[MetaOapg.properties.map_with_undeclared_properties_anytype_1, dict, frozendict.frozendict, schemas.Unset] = schemas.unset, map_with_undeclared_properties_anytype_2: typing.Union[MetaOapg.properties.map_with_undeclared_properties_anytype_2, dict, frozendict.frozendict, schemas.Unset] = schemas.unset, map_with_undeclared_properties_anytype_3: typing.Union[MetaOapg.properties.map_with_undeclared_properties_anytype_3, dict, frozendict.frozendict, schemas.Unset] = schemas.unset, diff --git a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/additional_properties_class.pyi b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/additional_properties_class.pyi index 828b4d14bebc..91c05f7740b4 100644 --- a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/additional_properties_class.pyi +++ b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/additional_properties_class.pyi @@ -145,7 +145,7 @@ class AdditionalPropertiesClass( cls, *args: typing.Union[dict, frozendict.frozendict, ], _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[MetaOapg.additional_properties, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + **kwargs: typing.Union[MetaOapg.additional_properties, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], ) -> 'map_with_undeclared_properties_anytype_3': return super().__new__( cls, @@ -281,7 +281,7 @@ class AdditionalPropertiesClass( *args: typing.Union[dict, frozendict.frozendict, ], map_property: typing.Union[MetaOapg.properties.map_property, dict, frozendict.frozendict, schemas.Unset] = schemas.unset, map_of_map_property: typing.Union[MetaOapg.properties.map_of_map_property, dict, frozendict.frozendict, schemas.Unset] = schemas.unset, - anytype_1: typing.Union[MetaOapg.properties.anytype_1, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, schemas.Unset] = schemas.unset, + anytype_1: typing.Union[MetaOapg.properties.anytype_1, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, map_with_undeclared_properties_anytype_1: typing.Union[MetaOapg.properties.map_with_undeclared_properties_anytype_1, dict, frozendict.frozendict, schemas.Unset] = schemas.unset, map_with_undeclared_properties_anytype_2: typing.Union[MetaOapg.properties.map_with_undeclared_properties_anytype_2, dict, frozendict.frozendict, schemas.Unset] = schemas.unset, map_with_undeclared_properties_anytype_3: typing.Union[MetaOapg.properties.map_with_undeclared_properties_anytype_3, dict, frozendict.frozendict, schemas.Unset] = schemas.unset, diff --git a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/additional_properties_validator.py b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/additional_properties_validator.py index 3789f6913acc..9096dd4344d9 100644 --- a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/additional_properties_validator.py +++ b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/additional_properties_validator.py @@ -55,7 +55,7 @@ def __new__( cls, *args: typing.Union[dict, frozendict.frozendict, ], _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[MetaOapg.additional_properties, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + **kwargs: typing.Union[MetaOapg.additional_properties, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], ) -> 'all_of_0': return super().__new__( cls, @@ -84,7 +84,7 @@ class MetaOapg: def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'additional_properties': @@ -106,7 +106,7 @@ def __new__( cls, *args: typing.Union[dict, frozendict.frozendict, ], _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[MetaOapg.additional_properties, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + **kwargs: typing.Union[MetaOapg.additional_properties, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], ) -> 'all_of_1': return super().__new__( cls, @@ -135,7 +135,7 @@ class MetaOapg: def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'additional_properties': @@ -157,7 +157,7 @@ def __new__( cls, *args: typing.Union[dict, frozendict.frozendict, ], _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[MetaOapg.additional_properties, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + **kwargs: typing.Union[MetaOapg.additional_properties, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], ) -> 'all_of_2': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/additional_properties_validator.pyi b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/additional_properties_validator.pyi index fd7ab0bee1b3..b992cdd524c8 100644 --- a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/additional_properties_validator.pyi +++ b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/additional_properties_validator.pyi @@ -55,7 +55,7 @@ class AdditionalPropertiesValidator( cls, *args: typing.Union[dict, frozendict.frozendict, ], _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[MetaOapg.additional_properties, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + **kwargs: typing.Union[MetaOapg.additional_properties, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], ) -> 'all_of_0': return super().__new__( cls, @@ -83,7 +83,7 @@ class AdditionalPropertiesValidator( def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'additional_properties': @@ -105,7 +105,7 @@ class AdditionalPropertiesValidator( cls, *args: typing.Union[dict, frozendict.frozendict, ], _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[MetaOapg.additional_properties, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + **kwargs: typing.Union[MetaOapg.additional_properties, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], ) -> 'all_of_1': return super().__new__( cls, @@ -133,7 +133,7 @@ class AdditionalPropertiesValidator( def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'additional_properties': @@ -155,7 +155,7 @@ class AdditionalPropertiesValidator( cls, *args: typing.Union[dict, frozendict.frozendict, ], _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[MetaOapg.additional_properties, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + **kwargs: typing.Union[MetaOapg.additional_properties, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], ) -> 'all_of_2': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/additional_properties_with_array_of_enums.py b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/additional_properties_with_array_of_enums.py index ded033832231..d54514f3ae7c 100644 --- a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/additional_properties_with_array_of_enums.py +++ b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/additional_properties_with_array_of_enums.py @@ -72,7 +72,7 @@ def __new__( cls, *args: typing.Union[dict, frozendict.frozendict, ], _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[MetaOapg.additional_properties, tuple, ], + **kwargs: typing.Union[MetaOapg.additional_properties, list, tuple, ], ) -> 'AdditionalPropertiesWithArrayOfEnums': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/additional_properties_with_array_of_enums.pyi b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/additional_properties_with_array_of_enums.pyi index ded033832231..d54514f3ae7c 100644 --- a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/additional_properties_with_array_of_enums.pyi +++ b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/additional_properties_with_array_of_enums.pyi @@ -72,7 +72,7 @@ class AdditionalPropertiesWithArrayOfEnums( cls, *args: typing.Union[dict, frozendict.frozendict, ], _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[MetaOapg.additional_properties, tuple, ], + **kwargs: typing.Union[MetaOapg.additional_properties, list, tuple, ], ) -> 'AdditionalPropertiesWithArrayOfEnums': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/any_type_and_format.py b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/any_type_and_format.py index 27f4c78af2e9..9d9640674b59 100644 --- a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/any_type_and_format.py +++ b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/any_type_and_format.py @@ -49,7 +49,7 @@ class MetaOapg: def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'uuid': @@ -73,7 +73,7 @@ class MetaOapg: def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'date': @@ -97,7 +97,7 @@ class MetaOapg: def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'date_time': @@ -121,7 +121,7 @@ class MetaOapg: def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'number': @@ -145,7 +145,7 @@ class MetaOapg: def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'binary': @@ -169,7 +169,7 @@ class MetaOapg: def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'int32': @@ -193,7 +193,7 @@ class MetaOapg: def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'int64': @@ -206,7 +206,7 @@ def __new__( class double( - schemas.Float32Base, + schemas.Float64Base, schemas.AnyTypeSchema, ): @@ -217,7 +217,7 @@ class MetaOapg: def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'double': @@ -230,7 +230,7 @@ def __new__( class _float( - schemas.Float64Base, + schemas.Float32Base, schemas.AnyTypeSchema, ): @@ -241,7 +241,7 @@ class MetaOapg: def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> '_float': @@ -335,13 +335,13 @@ def get_item_oapg(self, name: typing.Union[typing.Literal["uuid", "date", "date- def __new__( cls, *args: typing.Union[dict, frozendict.frozendict, ], - uuid: typing.Union[MetaOapg.properties.uuid, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, schemas.Unset] = schemas.unset, - date: typing.Union[MetaOapg.properties.date, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, schemas.Unset] = schemas.unset, - number: typing.Union[MetaOapg.properties.number, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, schemas.Unset] = schemas.unset, - binary: typing.Union[MetaOapg.properties.binary, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, schemas.Unset] = schemas.unset, - int32: typing.Union[MetaOapg.properties.int32, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, schemas.Unset] = schemas.unset, - int64: typing.Union[MetaOapg.properties.int64, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, schemas.Unset] = schemas.unset, - double: typing.Union[MetaOapg.properties.double, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, schemas.Unset] = schemas.unset, + uuid: typing.Union[MetaOapg.properties.uuid, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, + date: typing.Union[MetaOapg.properties.date, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, + number: typing.Union[MetaOapg.properties.number, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, + binary: typing.Union[MetaOapg.properties.binary, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, + int32: typing.Union[MetaOapg.properties.int32, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, + int64: typing.Union[MetaOapg.properties.int64, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, + double: typing.Union[MetaOapg.properties.double, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'AnyTypeAndFormat': diff --git a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/any_type_and_format.pyi b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/any_type_and_format.pyi index 27f4c78af2e9..9d9640674b59 100644 --- a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/any_type_and_format.pyi +++ b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/any_type_and_format.pyi @@ -49,7 +49,7 @@ class AnyTypeAndFormat( def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'uuid': @@ -73,7 +73,7 @@ class AnyTypeAndFormat( def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'date': @@ -97,7 +97,7 @@ class AnyTypeAndFormat( def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'date_time': @@ -121,7 +121,7 @@ class AnyTypeAndFormat( def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'number': @@ -145,7 +145,7 @@ class AnyTypeAndFormat( def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'binary': @@ -169,7 +169,7 @@ class AnyTypeAndFormat( def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'int32': @@ -193,7 +193,7 @@ class AnyTypeAndFormat( def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'int64': @@ -206,7 +206,7 @@ class AnyTypeAndFormat( class double( - schemas.Float32Base, + schemas.Float64Base, schemas.AnyTypeSchema, ): @@ -217,7 +217,7 @@ class AnyTypeAndFormat( def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'double': @@ -230,7 +230,7 @@ class AnyTypeAndFormat( class _float( - schemas.Float64Base, + schemas.Float32Base, schemas.AnyTypeSchema, ): @@ -241,7 +241,7 @@ class AnyTypeAndFormat( def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> '_float': @@ -335,13 +335,13 @@ class AnyTypeAndFormat( def __new__( cls, *args: typing.Union[dict, frozendict.frozendict, ], - uuid: typing.Union[MetaOapg.properties.uuid, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, schemas.Unset] = schemas.unset, - date: typing.Union[MetaOapg.properties.date, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, schemas.Unset] = schemas.unset, - number: typing.Union[MetaOapg.properties.number, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, schemas.Unset] = schemas.unset, - binary: typing.Union[MetaOapg.properties.binary, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, schemas.Unset] = schemas.unset, - int32: typing.Union[MetaOapg.properties.int32, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, schemas.Unset] = schemas.unset, - int64: typing.Union[MetaOapg.properties.int64, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, schemas.Unset] = schemas.unset, - double: typing.Union[MetaOapg.properties.double, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, schemas.Unset] = schemas.unset, + uuid: typing.Union[MetaOapg.properties.uuid, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, + date: typing.Union[MetaOapg.properties.date, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, + number: typing.Union[MetaOapg.properties.number, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, + binary: typing.Union[MetaOapg.properties.binary, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, + int32: typing.Union[MetaOapg.properties.int32, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, + int64: typing.Union[MetaOapg.properties.int64, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, + double: typing.Union[MetaOapg.properties.double, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'AnyTypeAndFormat': diff --git a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/any_type_not_string.py b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/any_type_not_string.py index e786a3b38957..8595658ff921 100644 --- a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/any_type_not_string.py +++ b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/any_type_not_string.py @@ -38,7 +38,7 @@ class MetaOapg: def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'AnyTypeNotString': diff --git a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/any_type_not_string.pyi b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/any_type_not_string.pyi index e786a3b38957..8595658ff921 100644 --- a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/any_type_not_string.pyi +++ b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/any_type_not_string.pyi @@ -38,7 +38,7 @@ class AnyTypeNotString( def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'AnyTypeNotString': diff --git a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/array_holding_any_type.py b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/array_holding_any_type.py index 07867f82c29d..8f499a27dd02 100644 --- a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/array_holding_any_type.py +++ b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/array_holding_any_type.py @@ -37,7 +37,7 @@ class MetaOapg: def __new__( cls, - arg: typing.Union[typing.Tuple[typing.Union[MetaOapg.items, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ]], typing.List[typing.Union[MetaOapg.items, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ]]], + arg: typing.Union[typing.Tuple[typing.Union[MetaOapg.items, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ]], typing.List[typing.Union[MetaOapg.items, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ]]], _configuration: typing.Optional[schemas.Configuration] = None, ) -> 'ArrayHoldingAnyType': return super().__new__( diff --git a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/array_holding_any_type.pyi b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/array_holding_any_type.pyi index 07867f82c29d..8f499a27dd02 100644 --- a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/array_holding_any_type.pyi +++ b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/array_holding_any_type.pyi @@ -37,7 +37,7 @@ class ArrayHoldingAnyType( def __new__( cls, - arg: typing.Union[typing.Tuple[typing.Union[MetaOapg.items, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ]], typing.List[typing.Union[MetaOapg.items, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ]]], + arg: typing.Union[typing.Tuple[typing.Union[MetaOapg.items, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ]], typing.List[typing.Union[MetaOapg.items, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ]]], _configuration: typing.Optional[schemas.Configuration] = None, ) -> 'ArrayHoldingAnyType': return super().__new__( diff --git a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/array_of_array_of_number_only.py b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/array_of_array_of_number_only.py index 2a29ef22abdc..7c61f8f88329 100644 --- a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/array_of_array_of_number_only.py +++ b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/array_of_array_of_number_only.py @@ -69,7 +69,7 @@ def __getitem__(self, i: int) -> MetaOapg.items: def __new__( cls, - arg: typing.Union[typing.Tuple[typing.Union[MetaOapg.items, tuple, ]], typing.List[typing.Union[MetaOapg.items, tuple, ]]], + arg: typing.Union[typing.Tuple[typing.Union[MetaOapg.items, list, tuple, ]], typing.List[typing.Union[MetaOapg.items, list, tuple, ]]], _configuration: typing.Optional[schemas.Configuration] = None, ) -> 'ArrayArrayNumber': return super().__new__( @@ -108,7 +108,7 @@ def get_item_oapg(self, name: typing.Union[typing.Literal["ArrayArrayNumber", ], def __new__( cls, *args: typing.Union[dict, frozendict.frozendict, ], - ArrayArrayNumber: typing.Union[MetaOapg.properties.ArrayArrayNumber, tuple, schemas.Unset] = schemas.unset, + ArrayArrayNumber: typing.Union[MetaOapg.properties.ArrayArrayNumber, list, tuple, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'ArrayOfArrayOfNumberOnly': diff --git a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/array_of_array_of_number_only.pyi b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/array_of_array_of_number_only.pyi index 2a29ef22abdc..7c61f8f88329 100644 --- a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/array_of_array_of_number_only.pyi +++ b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/array_of_array_of_number_only.pyi @@ -69,7 +69,7 @@ class ArrayOfArrayOfNumberOnly( def __new__( cls, - arg: typing.Union[typing.Tuple[typing.Union[MetaOapg.items, tuple, ]], typing.List[typing.Union[MetaOapg.items, tuple, ]]], + arg: typing.Union[typing.Tuple[typing.Union[MetaOapg.items, list, tuple, ]], typing.List[typing.Union[MetaOapg.items, list, tuple, ]]], _configuration: typing.Optional[schemas.Configuration] = None, ) -> 'ArrayArrayNumber': return super().__new__( @@ -108,7 +108,7 @@ class ArrayOfArrayOfNumberOnly( def __new__( cls, *args: typing.Union[dict, frozendict.frozendict, ], - ArrayArrayNumber: typing.Union[MetaOapg.properties.ArrayArrayNumber, tuple, schemas.Unset] = schemas.unset, + ArrayArrayNumber: typing.Union[MetaOapg.properties.ArrayArrayNumber, list, tuple, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'ArrayOfArrayOfNumberOnly': diff --git a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/array_of_number_only.py b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/array_of_number_only.py index 79a6eb0e74c6..6a6e7207ce5b 100644 --- a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/array_of_number_only.py +++ b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/array_of_number_only.py @@ -86,7 +86,7 @@ def get_item_oapg(self, name: typing.Union[typing.Literal["ArrayNumber", ], str] def __new__( cls, *args: typing.Union[dict, frozendict.frozendict, ], - ArrayNumber: typing.Union[MetaOapg.properties.ArrayNumber, tuple, schemas.Unset] = schemas.unset, + ArrayNumber: typing.Union[MetaOapg.properties.ArrayNumber, list, tuple, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'ArrayOfNumberOnly': diff --git a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/array_of_number_only.pyi b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/array_of_number_only.pyi index 79a6eb0e74c6..6a6e7207ce5b 100644 --- a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/array_of_number_only.pyi +++ b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/array_of_number_only.pyi @@ -86,7 +86,7 @@ class ArrayOfNumberOnly( def __new__( cls, *args: typing.Union[dict, frozendict.frozendict, ], - ArrayNumber: typing.Union[MetaOapg.properties.ArrayNumber, tuple, schemas.Unset] = schemas.unset, + ArrayNumber: typing.Union[MetaOapg.properties.ArrayNumber, list, tuple, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'ArrayOfNumberOnly': diff --git a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/array_test.py b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/array_test.py index e3a3e997bfd3..3825e2b8501d 100644 --- a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/array_test.py +++ b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/array_test.py @@ -92,7 +92,7 @@ def __getitem__(self, i: int) -> MetaOapg.items: def __new__( cls, - arg: typing.Union[typing.Tuple[typing.Union[MetaOapg.items, tuple, ]], typing.List[typing.Union[MetaOapg.items, tuple, ]]], + arg: typing.Union[typing.Tuple[typing.Union[MetaOapg.items, list, tuple, ]], typing.List[typing.Union[MetaOapg.items, list, tuple, ]]], _configuration: typing.Optional[schemas.Configuration] = None, ) -> 'array_array_of_integer': return super().__new__( @@ -141,7 +141,7 @@ def __getitem__(self, i: int) -> 'ReadOnlyFirst': def __new__( cls, - arg: typing.Union[typing.Tuple[typing.Union[MetaOapg.items, tuple, ]], typing.List[typing.Union[MetaOapg.items, tuple, ]]], + arg: typing.Union[typing.Tuple[typing.Union[MetaOapg.items, list, tuple, ]], typing.List[typing.Union[MetaOapg.items, list, tuple, ]]], _configuration: typing.Optional[schemas.Configuration] = None, ) -> 'array_array_of_model': return super().__new__( @@ -194,9 +194,9 @@ def get_item_oapg(self, name: typing.Union[typing.Literal["array_of_string", "ar def __new__( cls, *args: typing.Union[dict, frozendict.frozendict, ], - array_of_string: typing.Union[MetaOapg.properties.array_of_string, tuple, schemas.Unset] = schemas.unset, - array_array_of_integer: typing.Union[MetaOapg.properties.array_array_of_integer, tuple, schemas.Unset] = schemas.unset, - array_array_of_model: typing.Union[MetaOapg.properties.array_array_of_model, tuple, schemas.Unset] = schemas.unset, + array_of_string: typing.Union[MetaOapg.properties.array_of_string, list, tuple, schemas.Unset] = schemas.unset, + array_array_of_integer: typing.Union[MetaOapg.properties.array_array_of_integer, list, tuple, schemas.Unset] = schemas.unset, + array_array_of_model: typing.Union[MetaOapg.properties.array_array_of_model, list, tuple, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'ArrayTest': diff --git a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/array_test.pyi b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/array_test.pyi index e3a3e997bfd3..3825e2b8501d 100644 --- a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/array_test.pyi +++ b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/array_test.pyi @@ -92,7 +92,7 @@ class ArrayTest( def __new__( cls, - arg: typing.Union[typing.Tuple[typing.Union[MetaOapg.items, tuple, ]], typing.List[typing.Union[MetaOapg.items, tuple, ]]], + arg: typing.Union[typing.Tuple[typing.Union[MetaOapg.items, list, tuple, ]], typing.List[typing.Union[MetaOapg.items, list, tuple, ]]], _configuration: typing.Optional[schemas.Configuration] = None, ) -> 'array_array_of_integer': return super().__new__( @@ -141,7 +141,7 @@ class ArrayTest( def __new__( cls, - arg: typing.Union[typing.Tuple[typing.Union[MetaOapg.items, tuple, ]], typing.List[typing.Union[MetaOapg.items, tuple, ]]], + arg: typing.Union[typing.Tuple[typing.Union[MetaOapg.items, list, tuple, ]], typing.List[typing.Union[MetaOapg.items, list, tuple, ]]], _configuration: typing.Optional[schemas.Configuration] = None, ) -> 'array_array_of_model': return super().__new__( @@ -194,9 +194,9 @@ class ArrayTest( def __new__( cls, *args: typing.Union[dict, frozendict.frozendict, ], - array_of_string: typing.Union[MetaOapg.properties.array_of_string, tuple, schemas.Unset] = schemas.unset, - array_array_of_integer: typing.Union[MetaOapg.properties.array_array_of_integer, tuple, schemas.Unset] = schemas.unset, - array_array_of_model: typing.Union[MetaOapg.properties.array_array_of_model, tuple, schemas.Unset] = schemas.unset, + array_of_string: typing.Union[MetaOapg.properties.array_of_string, list, tuple, schemas.Unset] = schemas.unset, + array_array_of_integer: typing.Union[MetaOapg.properties.array_array_of_integer, list, tuple, schemas.Unset] = schemas.unset, + array_array_of_model: typing.Union[MetaOapg.properties.array_array_of_model, list, tuple, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'ArrayTest': diff --git a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/cat.py b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/cat.py index 73065d68f2fd..3c714db7af3f 100644 --- a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/cat.py +++ b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/cat.py @@ -103,7 +103,7 @@ def all_of(cls): def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'Cat': diff --git a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/cat.pyi b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/cat.pyi index 73065d68f2fd..3c714db7af3f 100644 --- a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/cat.pyi +++ b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/cat.pyi @@ -103,7 +103,7 @@ class Cat( def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'Cat': diff --git a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/child_cat.py b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/child_cat.py index d27651c3a817..05b4cbc6ef5a 100644 --- a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/child_cat.py +++ b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/child_cat.py @@ -103,7 +103,7 @@ def all_of(cls): def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'ChildCat': diff --git a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/child_cat.pyi b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/child_cat.pyi index d27651c3a817..05b4cbc6ef5a 100644 --- a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/child_cat.pyi +++ b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/child_cat.pyi @@ -103,7 +103,7 @@ class ChildCat( def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'ChildCat': diff --git a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/class_model.py b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/class_model.py index 79faf9089271..d753aea56ab9 100644 --- a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/class_model.py +++ b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/class_model.py @@ -66,7 +66,7 @@ def get_item_oapg(self, name: typing.Union[typing.Literal["_class", ], str]): def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _class: typing.Union[MetaOapg.properties._class, str, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], diff --git a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/class_model.pyi b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/class_model.pyi index 79faf9089271..d753aea56ab9 100644 --- a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/class_model.pyi +++ b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/class_model.pyi @@ -66,7 +66,7 @@ class ClassModel( def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _class: typing.Union[MetaOapg.properties._class, str, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], diff --git a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/complex_quadrilateral.py b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/complex_quadrilateral.py index c8180bddfe83..b6c2ada4d365 100644 --- a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/complex_quadrilateral.py +++ b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/complex_quadrilateral.py @@ -117,7 +117,7 @@ def all_of(cls): def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'ComplexQuadrilateral': diff --git a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/complex_quadrilateral.pyi b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/complex_quadrilateral.pyi index c8180bddfe83..b6c2ada4d365 100644 --- a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/complex_quadrilateral.pyi +++ b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/complex_quadrilateral.pyi @@ -117,7 +117,7 @@ class ComplexQuadrilateral( def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'ComplexQuadrilateral': diff --git a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/composed_any_of_different_types_no_validations.py b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/composed_any_of_different_types_no_validations.py index 5973784dcee6..6a1bb3dc3b7f 100644 --- a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/composed_any_of_different_types_no_validations.py +++ b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/composed_any_of_different_types_no_validations.py @@ -54,7 +54,7 @@ class MetaOapg: def __new__( cls, - arg: typing.Union[typing.Tuple[typing.Union[MetaOapg.items, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ]], typing.List[typing.Union[MetaOapg.items, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ]]], + arg: typing.Union[typing.Tuple[typing.Union[MetaOapg.items, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ]], typing.List[typing.Union[MetaOapg.items, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ]]], _configuration: typing.Optional[schemas.Configuration] = None, ) -> 'any_of_9': return super().__new__( @@ -105,7 +105,7 @@ def any_of(cls): def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'ComposedAnyOfDifferentTypesNoValidations': diff --git a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/composed_any_of_different_types_no_validations.pyi b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/composed_any_of_different_types_no_validations.pyi index 5973784dcee6..6a1bb3dc3b7f 100644 --- a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/composed_any_of_different_types_no_validations.pyi +++ b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/composed_any_of_different_types_no_validations.pyi @@ -54,7 +54,7 @@ class ComposedAnyOfDifferentTypesNoValidations( def __new__( cls, - arg: typing.Union[typing.Tuple[typing.Union[MetaOapg.items, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ]], typing.List[typing.Union[MetaOapg.items, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ]]], + arg: typing.Union[typing.Tuple[typing.Union[MetaOapg.items, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ]], typing.List[typing.Union[MetaOapg.items, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ]]], _configuration: typing.Optional[schemas.Configuration] = None, ) -> 'any_of_9': return super().__new__( @@ -105,7 +105,7 @@ class ComposedAnyOfDifferentTypesNoValidations( def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'ComposedAnyOfDifferentTypesNoValidations': diff --git a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/composed_array.py b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/composed_array.py index 8f84bd0968eb..97d4d0345872 100644 --- a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/composed_array.py +++ b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/composed_array.py @@ -37,7 +37,7 @@ class MetaOapg: def __new__( cls, - arg: typing.Union[typing.Tuple[typing.Union[MetaOapg.items, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ]], typing.List[typing.Union[MetaOapg.items, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ]]], + arg: typing.Union[typing.Tuple[typing.Union[MetaOapg.items, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ]], typing.List[typing.Union[MetaOapg.items, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ]]], _configuration: typing.Optional[schemas.Configuration] = None, ) -> 'ComposedArray': return super().__new__( diff --git a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/composed_array.pyi b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/composed_array.pyi index 8f84bd0968eb..97d4d0345872 100644 --- a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/composed_array.pyi +++ b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/composed_array.pyi @@ -37,7 +37,7 @@ class ComposedArray( def __new__( cls, - arg: typing.Union[typing.Tuple[typing.Union[MetaOapg.items, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ]], typing.List[typing.Union[MetaOapg.items, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ]]], + arg: typing.Union[typing.Tuple[typing.Union[MetaOapg.items, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ]], typing.List[typing.Union[MetaOapg.items, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ]]], _configuration: typing.Optional[schemas.Configuration] = None, ) -> 'ComposedArray': return super().__new__( diff --git a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/composed_one_of_different_types.py b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/composed_one_of_different_types.py index 49c66cbd52de..4b0b0252683b 100644 --- a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/composed_one_of_different_types.py +++ b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/composed_one_of_different_types.py @@ -74,7 +74,7 @@ class MetaOapg: def __new__( cls, - arg: typing.Union[typing.Tuple[typing.Union[MetaOapg.items, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ]], typing.List[typing.Union[MetaOapg.items, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ]]], + arg: typing.Union[typing.Tuple[typing.Union[MetaOapg.items, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ]], typing.List[typing.Union[MetaOapg.items, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ]]], _configuration: typing.Optional[schemas.Configuration] = None, ) -> 'one_of_5': return super().__new__( @@ -121,7 +121,7 @@ def one_of(cls): def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'ComposedOneOfDifferentTypes': diff --git a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/composed_one_of_different_types.pyi b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/composed_one_of_different_types.pyi index ba4d07ecdeb8..ed1917547cbd 100644 --- a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/composed_one_of_different_types.pyi +++ b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/composed_one_of_different_types.pyi @@ -67,7 +67,7 @@ class ComposedOneOfDifferentTypes( def __new__( cls, - arg: typing.Union[typing.Tuple[typing.Union[MetaOapg.items, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ]], typing.List[typing.Union[MetaOapg.items, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ]]], + arg: typing.Union[typing.Tuple[typing.Union[MetaOapg.items, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ]], typing.List[typing.Union[MetaOapg.items, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ]]], _configuration: typing.Optional[schemas.Configuration] = None, ) -> 'one_of_5': return super().__new__( @@ -109,7 +109,7 @@ class ComposedOneOfDifferentTypes( def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'ComposedOneOfDifferentTypes': diff --git a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/dog.py b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/dog.py index 37eeee0545c6..2d3c45ee8e69 100644 --- a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/dog.py +++ b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/dog.py @@ -103,7 +103,7 @@ def all_of(cls): def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'Dog': diff --git a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/dog.pyi b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/dog.pyi index 37eeee0545c6..2d3c45ee8e69 100644 --- a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/dog.pyi +++ b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/dog.pyi @@ -103,7 +103,7 @@ class Dog( def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'Dog': diff --git a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/drawing.py b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/drawing.py index 4224baeef881..1cc2c10c86ad 100644 --- a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/drawing.py +++ b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/drawing.py @@ -132,7 +132,7 @@ def __new__( mainShape: typing.Union['Shape', schemas.Unset] = schemas.unset, shapeOrNull: typing.Union['ShapeOrNull', schemas.Unset] = schemas.unset, nullableShape: typing.Union['NullableShape', schemas.Unset] = schemas.unset, - shapes: typing.Union[MetaOapg.properties.shapes, tuple, schemas.Unset] = schemas.unset, + shapes: typing.Union[MetaOapg.properties.shapes, list, tuple, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: 'Fruit', ) -> 'Drawing': diff --git a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/drawing.pyi b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/drawing.pyi index 4224baeef881..1cc2c10c86ad 100644 --- a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/drawing.pyi +++ b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/drawing.pyi @@ -132,7 +132,7 @@ class Drawing( mainShape: typing.Union['Shape', schemas.Unset] = schemas.unset, shapeOrNull: typing.Union['ShapeOrNull', schemas.Unset] = schemas.unset, nullableShape: typing.Union['NullableShape', schemas.Unset] = schemas.unset, - shapes: typing.Union[MetaOapg.properties.shapes, tuple, schemas.Unset] = schemas.unset, + shapes: typing.Union[MetaOapg.properties.shapes, list, tuple, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: 'Fruit', ) -> 'Drawing': diff --git a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/enum_arrays.py b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/enum_arrays.py index c5e7418ea56a..9e325438e812 100644 --- a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/enum_arrays.py +++ b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/enum_arrays.py @@ -135,7 +135,7 @@ def __new__( cls, *args: typing.Union[dict, frozendict.frozendict, ], just_symbol: typing.Union[MetaOapg.properties.just_symbol, str, schemas.Unset] = schemas.unset, - array_enum: typing.Union[MetaOapg.properties.array_enum, tuple, schemas.Unset] = schemas.unset, + array_enum: typing.Union[MetaOapg.properties.array_enum, list, tuple, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'EnumArrays': diff --git a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/enum_arrays.pyi b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/enum_arrays.pyi index c5e7418ea56a..9e325438e812 100644 --- a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/enum_arrays.pyi +++ b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/enum_arrays.pyi @@ -135,7 +135,7 @@ class EnumArrays( cls, *args: typing.Union[dict, frozendict.frozendict, ], just_symbol: typing.Union[MetaOapg.properties.just_symbol, str, schemas.Unset] = schemas.unset, - array_enum: typing.Union[MetaOapg.properties.array_enum, tuple, schemas.Unset] = schemas.unset, + array_enum: typing.Union[MetaOapg.properties.array_enum, list, tuple, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'EnumArrays': diff --git a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/equilateral_triangle.py b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/equilateral_triangle.py index 84a6b847a9b2..27c182fe36c4 100644 --- a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/equilateral_triangle.py +++ b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/equilateral_triangle.py @@ -117,7 +117,7 @@ def all_of(cls): def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'EquilateralTriangle': diff --git a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/equilateral_triangle.pyi b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/equilateral_triangle.pyi index 84a6b847a9b2..27c182fe36c4 100644 --- a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/equilateral_triangle.pyi +++ b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/equilateral_triangle.pyi @@ -117,7 +117,7 @@ class EquilateralTriangle( def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'EquilateralTriangle': diff --git a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/file_schema_test_class.py b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/file_schema_test_class.py index 88b6bac002ea..78c3247b4e0d 100644 --- a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/file_schema_test_class.py +++ b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/file_schema_test_class.py @@ -103,7 +103,7 @@ def __new__( cls, *args: typing.Union[dict, frozendict.frozendict, ], file: typing.Union['File', schemas.Unset] = schemas.unset, - files: typing.Union[MetaOapg.properties.files, tuple, schemas.Unset] = schemas.unset, + files: typing.Union[MetaOapg.properties.files, list, tuple, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'FileSchemaTestClass': diff --git a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/file_schema_test_class.pyi b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/file_schema_test_class.pyi index 88b6bac002ea..78c3247b4e0d 100644 --- a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/file_schema_test_class.pyi +++ b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/file_schema_test_class.pyi @@ -103,7 +103,7 @@ class FileSchemaTestClass( cls, *args: typing.Union[dict, frozendict.frozendict, ], file: typing.Union['File', schemas.Unset] = schemas.unset, - files: typing.Union[MetaOapg.properties.files, tuple, schemas.Unset] = schemas.unset, + files: typing.Union[MetaOapg.properties.files, list, tuple, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'FileSchemaTestClass': diff --git a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/format_test.py b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/format_test.py index 10d70cacab5f..2de0381e3c4b 100644 --- a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/format_test.py +++ b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/format_test.py @@ -361,7 +361,7 @@ def __new__( float32: typing.Union[MetaOapg.properties.float32, decimal.Decimal, int, float, schemas.Unset] = schemas.unset, double: typing.Union[MetaOapg.properties.double, decimal.Decimal, int, float, schemas.Unset] = schemas.unset, float64: typing.Union[MetaOapg.properties.float64, decimal.Decimal, int, float, schemas.Unset] = schemas.unset, - arrayWithUniqueItems: typing.Union[MetaOapg.properties.arrayWithUniqueItems, tuple, schemas.Unset] = schemas.unset, + arrayWithUniqueItems: typing.Union[MetaOapg.properties.arrayWithUniqueItems, list, tuple, schemas.Unset] = schemas.unset, string: typing.Union[MetaOapg.properties.string, str, schemas.Unset] = schemas.unset, binary: typing.Union[MetaOapg.properties.binary, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, dateTime: typing.Union[MetaOapg.properties.dateTime, str, datetime, schemas.Unset] = schemas.unset, diff --git a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/format_test.pyi b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/format_test.pyi index 3c748990c77b..54c03cc66e04 100644 --- a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/format_test.pyi +++ b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/format_test.pyi @@ -313,7 +313,7 @@ class FormatTest( float32: typing.Union[MetaOapg.properties.float32, decimal.Decimal, int, float, schemas.Unset] = schemas.unset, double: typing.Union[MetaOapg.properties.double, decimal.Decimal, int, float, schemas.Unset] = schemas.unset, float64: typing.Union[MetaOapg.properties.float64, decimal.Decimal, int, float, schemas.Unset] = schemas.unset, - arrayWithUniqueItems: typing.Union[MetaOapg.properties.arrayWithUniqueItems, tuple, schemas.Unset] = schemas.unset, + arrayWithUniqueItems: typing.Union[MetaOapg.properties.arrayWithUniqueItems, list, tuple, schemas.Unset] = schemas.unset, string: typing.Union[MetaOapg.properties.string, str, schemas.Unset] = schemas.unset, binary: typing.Union[MetaOapg.properties.binary, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, dateTime: typing.Union[MetaOapg.properties.dateTime, str, datetime, schemas.Unset] = schemas.unset, diff --git a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/fruit.py b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/fruit.py index b8c99842fa6e..cc6a567af2af 100644 --- a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/fruit.py +++ b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/fruit.py @@ -80,7 +80,7 @@ def get_item_oapg(self, name: typing.Union[typing.Literal["color", ], str]): def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], color: typing.Union[MetaOapg.properties.color, str, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], diff --git a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/fruit.pyi b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/fruit.pyi index b8c99842fa6e..cc6a567af2af 100644 --- a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/fruit.pyi +++ b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/fruit.pyi @@ -80,7 +80,7 @@ class Fruit( def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], color: typing.Union[MetaOapg.properties.color, str, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], diff --git a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/fruit_req.py b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/fruit_req.py index e39a2993e7ce..6e7e7424508e 100644 --- a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/fruit_req.py +++ b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/fruit_req.py @@ -55,7 +55,7 @@ def one_of(cls): def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'FruitReq': diff --git a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/fruit_req.pyi b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/fruit_req.pyi index e39a2993e7ce..6e7e7424508e 100644 --- a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/fruit_req.pyi +++ b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/fruit_req.pyi @@ -55,7 +55,7 @@ class FruitReq( def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'FruitReq': diff --git a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/gm_fruit.py b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/gm_fruit.py index ba5fc7adfe69..66092619b033 100644 --- a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/gm_fruit.py +++ b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/gm_fruit.py @@ -80,7 +80,7 @@ def get_item_oapg(self, name: typing.Union[typing.Literal["color", ], str]): def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], color: typing.Union[MetaOapg.properties.color, str, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], diff --git a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/gm_fruit.pyi b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/gm_fruit.pyi index ba5fc7adfe69..66092619b033 100644 --- a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/gm_fruit.pyi +++ b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/gm_fruit.pyi @@ -80,7 +80,7 @@ class GmFruit( def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], color: typing.Union[MetaOapg.properties.color, str, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], diff --git a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/isosceles_triangle.py b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/isosceles_triangle.py index 3f176c2c961b..15efebd452c7 100644 --- a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/isosceles_triangle.py +++ b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/isosceles_triangle.py @@ -117,7 +117,7 @@ def all_of(cls): def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'IsoscelesTriangle': diff --git a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/isosceles_triangle.pyi b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/isosceles_triangle.pyi index 3f176c2c961b..15efebd452c7 100644 --- a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/isosceles_triangle.pyi +++ b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/isosceles_triangle.pyi @@ -117,7 +117,7 @@ class IsoscelesTriangle( def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'IsoscelesTriangle': diff --git a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/json_patch_request.py b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/json_patch_request.py index 73ea772c1ab2..3ef832be70ca 100644 --- a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/json_patch_request.py +++ b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/json_patch_request.py @@ -62,7 +62,7 @@ def one_of(cls): def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'items': @@ -75,7 +75,7 @@ def __new__( def __new__( cls, - arg: typing.Union[typing.Tuple[typing.Union[MetaOapg.items, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ]], typing.List[typing.Union[MetaOapg.items, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ]]], + arg: typing.Union[typing.Tuple[typing.Union[MetaOapg.items, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ]], typing.List[typing.Union[MetaOapg.items, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ]]], _configuration: typing.Optional[schemas.Configuration] = None, ) -> 'JSONPatchRequest': return super().__new__( diff --git a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/json_patch_request.pyi b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/json_patch_request.pyi index 73ea772c1ab2..3ef832be70ca 100644 --- a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/json_patch_request.pyi +++ b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/json_patch_request.pyi @@ -62,7 +62,7 @@ class JSONPatchRequest( def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'items': @@ -75,7 +75,7 @@ class JSONPatchRequest( def __new__( cls, - arg: typing.Union[typing.Tuple[typing.Union[MetaOapg.items, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ]], typing.List[typing.Union[MetaOapg.items, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ]]], + arg: typing.Union[typing.Tuple[typing.Union[MetaOapg.items, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ]], typing.List[typing.Union[MetaOapg.items, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ]]], _configuration: typing.Optional[schemas.Configuration] = None, ) -> 'JSONPatchRequest': return super().__new__( diff --git a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/json_patch_request_add_replace_test.py b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/json_patch_request_add_replace_test.py index bb7bc4a74bbe..76d6409b05a0 100644 --- a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/json_patch_request_add_replace_test.py +++ b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/json_patch_request_add_replace_test.py @@ -110,7 +110,7 @@ def __new__( *args: typing.Union[dict, frozendict.frozendict, ], op: typing.Union[MetaOapg.properties.op, str, ], path: typing.Union[MetaOapg.properties.path, str, ], - value: typing.Union[MetaOapg.properties.value, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + value: typing.Union[MetaOapg.properties.value, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, ) -> 'JSONPatchRequestAddReplaceTest': return super().__new__( diff --git a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/json_patch_request_add_replace_test.pyi b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/json_patch_request_add_replace_test.pyi index bb7bc4a74bbe..76d6409b05a0 100644 --- a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/json_patch_request_add_replace_test.pyi +++ b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/json_patch_request_add_replace_test.pyi @@ -110,7 +110,7 @@ class JSONPatchRequestAddReplaceTest( *args: typing.Union[dict, frozendict.frozendict, ], op: typing.Union[MetaOapg.properties.op, str, ], path: typing.Union[MetaOapg.properties.path, str, ], - value: typing.Union[MetaOapg.properties.value, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + value: typing.Union[MetaOapg.properties.value, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, ) -> 'JSONPatchRequestAddReplaceTest': return super().__new__( diff --git a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/json_patch_request_move_copy.py b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/json_patch_request_move_copy.py index 8ad5a648b3c5..ca8fa160d3a7 100644 --- a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/json_patch_request_move_copy.py +++ b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/json_patch_request_move_copy.py @@ -40,6 +40,7 @@ class MetaOapg: } class properties: + _from = schemas.StrSchema path = schemas.StrSchema @@ -63,6 +64,7 @@ def MOVE(cls): def COPY(cls): return cls("copy") __annotations__ = { + "from": _from, "path": path, "op": op, } @@ -77,7 +79,10 @@ def __getitem__(self, name: typing.Literal["op"]) -> MetaOapg.properties.op: ... @typing.overload def __getitem__(self, name: typing.Literal["path"]) -> MetaOapg.properties.path: ... - def __getitem__(self, name: typing.Union[typing.Literal["op"], typing.Literal["path"], ]): + @typing.overload + def __getitem__(self, name: typing.Literal["from"]) -> MetaOapg.properties._from: ... + + def __getitem__(self, name: typing.Union[typing.Literal["op"], typing.Literal["path"], typing.Literal["from"], ]): # dict_instance[name] accessor return super().__getitem__(name) @@ -87,7 +92,10 @@ def get_item_oapg(self, name: typing.Literal["op"]) -> MetaOapg.properties.op: . @typing.overload def get_item_oapg(self, name: typing.Literal["path"]) -> MetaOapg.properties.path: ... - def get_item_oapg(self, name: typing.Union[typing.Literal["op"], typing.Literal["path"], ]): + @typing.overload + def get_item_oapg(self, name: typing.Literal["from"]) -> MetaOapg.properties._from: ... + + def get_item_oapg(self, name: typing.Union[typing.Literal["op"], typing.Literal["path"], typing.Literal["from"], ]): return super().get_item_oapg(name) def __new__( diff --git a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/json_patch_request_move_copy.pyi b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/json_patch_request_move_copy.pyi index 8ad5a648b3c5..ca8fa160d3a7 100644 --- a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/json_patch_request_move_copy.pyi +++ b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/json_patch_request_move_copy.pyi @@ -40,6 +40,7 @@ class JSONPatchRequestMoveCopy( } class properties: + _from = schemas.StrSchema path = schemas.StrSchema @@ -63,6 +64,7 @@ class JSONPatchRequestMoveCopy( def COPY(cls): return cls("copy") __annotations__ = { + "from": _from, "path": path, "op": op, } @@ -77,7 +79,10 @@ class JSONPatchRequestMoveCopy( @typing.overload def __getitem__(self, name: typing.Literal["path"]) -> MetaOapg.properties.path: ... - def __getitem__(self, name: typing.Union[typing.Literal["op"], typing.Literal["path"], ]): + @typing.overload + def __getitem__(self, name: typing.Literal["from"]) -> MetaOapg.properties._from: ... + + def __getitem__(self, name: typing.Union[typing.Literal["op"], typing.Literal["path"], typing.Literal["from"], ]): # dict_instance[name] accessor return super().__getitem__(name) @@ -87,7 +92,10 @@ class JSONPatchRequestMoveCopy( @typing.overload def get_item_oapg(self, name: typing.Literal["path"]) -> MetaOapg.properties.path: ... - def get_item_oapg(self, name: typing.Union[typing.Literal["op"], typing.Literal["path"], ]): + @typing.overload + def get_item_oapg(self, name: typing.Literal["from"]) -> MetaOapg.properties._from: ... + + def get_item_oapg(self, name: typing.Union[typing.Literal["op"], typing.Literal["path"], typing.Literal["from"], ]): return super().get_item_oapg(name) def __new__( diff --git a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/mammal.py b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/mammal.py index 85fdd917fad1..ea5638cf0fae 100644 --- a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/mammal.py +++ b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/mammal.py @@ -65,7 +65,7 @@ def one_of(cls): def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'Mammal': diff --git a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/mammal.pyi b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/mammal.pyi index 85fdd917fad1..ea5638cf0fae 100644 --- a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/mammal.pyi +++ b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/mammal.pyi @@ -65,7 +65,7 @@ class Mammal( def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'Mammal': diff --git a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/model200_response.py b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/model200_response.py index 3704f600734c..6cba7199b2bb 100644 --- a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/model200_response.py +++ b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/model200_response.py @@ -74,7 +74,7 @@ def get_item_oapg(self, name: typing.Union[typing.Literal["name", "class", ], st def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], name: typing.Union[MetaOapg.properties.name, decimal.Decimal, int, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], diff --git a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/model200_response.pyi b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/model200_response.pyi index 3704f600734c..6cba7199b2bb 100644 --- a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/model200_response.pyi +++ b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/model200_response.pyi @@ -74,7 +74,7 @@ class Model200Response( def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], name: typing.Union[MetaOapg.properties.name, decimal.Decimal, int, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], diff --git a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/model_return.py b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/model_return.py index 72515e5b777f..ff67e26ab906 100644 --- a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/model_return.py +++ b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/model_return.py @@ -66,7 +66,7 @@ def get_item_oapg(self, name: typing.Union[typing.Literal["return", ], str]): def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'ModelReturn': diff --git a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/model_return.pyi b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/model_return.pyi index 72515e5b777f..ff67e26ab906 100644 --- a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/model_return.pyi +++ b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/model_return.pyi @@ -66,7 +66,7 @@ class ModelReturn( def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'ModelReturn': diff --git a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/name.py b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/name.py index ad63c7f4bada..f02145ad8bac 100644 --- a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/name.py +++ b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/name.py @@ -87,7 +87,7 @@ def get_item_oapg(self, name: typing.Union[typing.Literal["name", "snake_case", def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], name: typing.Union[MetaOapg.properties.name, decimal.Decimal, int, ], snake_case: typing.Union[MetaOapg.properties.snake_case, decimal.Decimal, int, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, diff --git a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/name.pyi b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/name.pyi index ad63c7f4bada..f02145ad8bac 100644 --- a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/name.pyi +++ b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/name.pyi @@ -87,7 +87,7 @@ class Name( def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], name: typing.Union[MetaOapg.properties.name, decimal.Decimal, int, ], snake_case: typing.Union[MetaOapg.properties.snake_case, decimal.Decimal, int, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, diff --git a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/nullable_class.py b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/nullable_class.py index bc88a27883e6..f5352628096f 100644 --- a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/nullable_class.py +++ b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/nullable_class.py @@ -181,7 +181,7 @@ class MetaOapg: def __new__( cls, - *args: typing.Union[tuple, None, ], + *args: typing.Union[list, tuple, None, ], _configuration: typing.Optional[schemas.Configuration] = None, ) -> 'array_nullable_prop': return super().__new__( @@ -226,7 +226,7 @@ def __new__( def __new__( cls, - *args: typing.Union[tuple, None, ], + *args: typing.Union[list, tuple, None, ], _configuration: typing.Optional[schemas.Configuration] = None, ) -> 'array_and_items_nullable_prop': return super().__new__( @@ -546,9 +546,9 @@ def __new__( string_prop: typing.Union[MetaOapg.properties.string_prop, None, str, schemas.Unset] = schemas.unset, date_prop: typing.Union[MetaOapg.properties.date_prop, None, str, date, schemas.Unset] = schemas.unset, datetime_prop: typing.Union[MetaOapg.properties.datetime_prop, None, str, datetime, schemas.Unset] = schemas.unset, - array_nullable_prop: typing.Union[MetaOapg.properties.array_nullable_prop, tuple, None, schemas.Unset] = schemas.unset, - array_and_items_nullable_prop: typing.Union[MetaOapg.properties.array_and_items_nullable_prop, tuple, None, schemas.Unset] = schemas.unset, - array_items_nullable: typing.Union[MetaOapg.properties.array_items_nullable, tuple, schemas.Unset] = schemas.unset, + array_nullable_prop: typing.Union[MetaOapg.properties.array_nullable_prop, list, tuple, None, schemas.Unset] = schemas.unset, + array_and_items_nullable_prop: typing.Union[MetaOapg.properties.array_and_items_nullable_prop, list, tuple, None, schemas.Unset] = schemas.unset, + array_items_nullable: typing.Union[MetaOapg.properties.array_items_nullable, list, tuple, schemas.Unset] = schemas.unset, object_nullable_prop: typing.Union[MetaOapg.properties.object_nullable_prop, dict, frozendict.frozendict, None, schemas.Unset] = schemas.unset, object_and_items_nullable_prop: typing.Union[MetaOapg.properties.object_and_items_nullable_prop, dict, frozendict.frozendict, None, schemas.Unset] = schemas.unset, object_items_nullable: typing.Union[MetaOapg.properties.object_items_nullable, dict, frozendict.frozendict, schemas.Unset] = schemas.unset, diff --git a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/nullable_class.pyi b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/nullable_class.pyi index bc88a27883e6..f5352628096f 100644 --- a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/nullable_class.pyi +++ b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/nullable_class.pyi @@ -181,7 +181,7 @@ class NullableClass( def __new__( cls, - *args: typing.Union[tuple, None, ], + *args: typing.Union[list, tuple, None, ], _configuration: typing.Optional[schemas.Configuration] = None, ) -> 'array_nullable_prop': return super().__new__( @@ -226,7 +226,7 @@ class NullableClass( def __new__( cls, - *args: typing.Union[tuple, None, ], + *args: typing.Union[list, tuple, None, ], _configuration: typing.Optional[schemas.Configuration] = None, ) -> 'array_and_items_nullable_prop': return super().__new__( @@ -546,9 +546,9 @@ class NullableClass( string_prop: typing.Union[MetaOapg.properties.string_prop, None, str, schemas.Unset] = schemas.unset, date_prop: typing.Union[MetaOapg.properties.date_prop, None, str, date, schemas.Unset] = schemas.unset, datetime_prop: typing.Union[MetaOapg.properties.datetime_prop, None, str, datetime, schemas.Unset] = schemas.unset, - array_nullable_prop: typing.Union[MetaOapg.properties.array_nullable_prop, tuple, None, schemas.Unset] = schemas.unset, - array_and_items_nullable_prop: typing.Union[MetaOapg.properties.array_and_items_nullable_prop, tuple, None, schemas.Unset] = schemas.unset, - array_items_nullable: typing.Union[MetaOapg.properties.array_items_nullable, tuple, schemas.Unset] = schemas.unset, + array_nullable_prop: typing.Union[MetaOapg.properties.array_nullable_prop, list, tuple, None, schemas.Unset] = schemas.unset, + array_and_items_nullable_prop: typing.Union[MetaOapg.properties.array_and_items_nullable_prop, list, tuple, None, schemas.Unset] = schemas.unset, + array_items_nullable: typing.Union[MetaOapg.properties.array_items_nullable, list, tuple, schemas.Unset] = schemas.unset, object_nullable_prop: typing.Union[MetaOapg.properties.object_nullable_prop, dict, frozendict.frozendict, None, schemas.Unset] = schemas.unset, object_and_items_nullable_prop: typing.Union[MetaOapg.properties.object_and_items_nullable_prop, dict, frozendict.frozendict, None, schemas.Unset] = schemas.unset, object_items_nullable: typing.Union[MetaOapg.properties.object_items_nullable, dict, frozendict.frozendict, schemas.Unset] = schemas.unset, diff --git a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/nullable_shape.py b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/nullable_shape.py index efbdd9bc2159..4420c82300b2 100644 --- a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/nullable_shape.py +++ b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/nullable_shape.py @@ -57,7 +57,7 @@ def one_of(cls): def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'NullableShape': diff --git a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/nullable_shape.pyi b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/nullable_shape.pyi index efbdd9bc2159..4420c82300b2 100644 --- a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/nullable_shape.pyi +++ b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/nullable_shape.pyi @@ -57,7 +57,7 @@ class NullableShape( def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'NullableShape': diff --git a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/object_with_inline_composition_property.py b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/object_with_inline_composition_property.py index 26b580767c37..1c8da1560dce 100644 --- a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/object_with_inline_composition_property.py +++ b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/object_with_inline_composition_property.py @@ -71,7 +71,7 @@ def all_of(cls): def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'someProp': @@ -109,7 +109,7 @@ def get_item_oapg(self, name: typing.Union[typing.Literal["someProp", ], str]): def __new__( cls, *args: typing.Union[dict, frozendict.frozendict, ], - someProp: typing.Union[MetaOapg.properties.someProp, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, schemas.Unset] = schemas.unset, + someProp: typing.Union[MetaOapg.properties.someProp, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'ObjectWithInlineCompositionProperty': diff --git a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/object_with_inline_composition_property.pyi b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/object_with_inline_composition_property.pyi index 69292d8b4339..31f6e1026f81 100644 --- a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/object_with_inline_composition_property.pyi +++ b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/object_with_inline_composition_property.pyi @@ -68,7 +68,7 @@ class ObjectWithInlineCompositionProperty( def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'someProp': @@ -106,7 +106,7 @@ class ObjectWithInlineCompositionProperty( def __new__( cls, *args: typing.Union[dict, frozendict.frozendict, ], - someProp: typing.Union[MetaOapg.properties.someProp, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, schemas.Unset] = schemas.unset, + someProp: typing.Union[MetaOapg.properties.someProp, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'ObjectWithInlineCompositionProperty': diff --git a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/pet.py b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/pet.py index b54347039f7b..d7f9a873c45b 100644 --- a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/pet.py +++ b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/pet.py @@ -191,11 +191,11 @@ def get_item_oapg(self, name: typing.Union[typing.Literal["name", "photoUrls", " def __new__( cls, *args: typing.Union[dict, frozendict.frozendict, ], - photoUrls: typing.Union[MetaOapg.properties.photoUrls, tuple, ], + photoUrls: typing.Union[MetaOapg.properties.photoUrls, list, tuple, ], name: typing.Union[MetaOapg.properties.name, str, ], id: typing.Union[MetaOapg.properties.id, decimal.Decimal, int, schemas.Unset] = schemas.unset, category: typing.Union['Category', schemas.Unset] = schemas.unset, - tags: typing.Union[MetaOapg.properties.tags, tuple, schemas.Unset] = schemas.unset, + tags: typing.Union[MetaOapg.properties.tags, list, tuple, schemas.Unset] = schemas.unset, status: typing.Union[MetaOapg.properties.status, str, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], diff --git a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/pet.pyi b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/pet.pyi index b54347039f7b..d7f9a873c45b 100644 --- a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/pet.pyi +++ b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/pet.pyi @@ -191,11 +191,11 @@ class Pet( def __new__( cls, *args: typing.Union[dict, frozendict.frozendict, ], - photoUrls: typing.Union[MetaOapg.properties.photoUrls, tuple, ], + photoUrls: typing.Union[MetaOapg.properties.photoUrls, list, tuple, ], name: typing.Union[MetaOapg.properties.name, str, ], id: typing.Union[MetaOapg.properties.id, decimal.Decimal, int, schemas.Unset] = schemas.unset, category: typing.Union['Category', schemas.Unset] = schemas.unset, - tags: typing.Union[MetaOapg.properties.tags, tuple, schemas.Unset] = schemas.unset, + tags: typing.Union[MetaOapg.properties.tags, list, tuple, schemas.Unset] = schemas.unset, status: typing.Union[MetaOapg.properties.status, str, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], diff --git a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/pig.py b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/pig.py index 24c6e219df1e..b56f76aa425f 100644 --- a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/pig.py +++ b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/pig.py @@ -63,7 +63,7 @@ def one_of(cls): def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'Pig': diff --git a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/pig.pyi b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/pig.pyi index 24c6e219df1e..b56f76aa425f 100644 --- a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/pig.pyi +++ b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/pig.pyi @@ -63,7 +63,7 @@ class Pig( def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'Pig': diff --git a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/quadrilateral.py b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/quadrilateral.py index 31531e4e753b..a06c3c9303a3 100644 --- a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/quadrilateral.py +++ b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/quadrilateral.py @@ -63,7 +63,7 @@ def one_of(cls): def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'Quadrilateral': diff --git a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/quadrilateral.pyi b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/quadrilateral.pyi index 31531e4e753b..a06c3c9303a3 100644 --- a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/quadrilateral.pyi +++ b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/quadrilateral.pyi @@ -63,7 +63,7 @@ class Quadrilateral( def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'Quadrilateral': diff --git a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/quadrilateral_interface.py b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/quadrilateral_interface.py index 26e260d81819..dd045cd155e4 100644 --- a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/quadrilateral_interface.py +++ b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/quadrilateral_interface.py @@ -93,7 +93,7 @@ def get_item_oapg(self, name: typing.Union[typing.Literal["shapeType", "quadrila def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], shapeType: typing.Union[MetaOapg.properties.shapeType, str, ], quadrilateralType: typing.Union[MetaOapg.properties.quadrilateralType, str, ], _configuration: typing.Optional[schemas.Configuration] = None, diff --git a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/quadrilateral_interface.pyi b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/quadrilateral_interface.pyi index 26e260d81819..dd045cd155e4 100644 --- a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/quadrilateral_interface.pyi +++ b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/quadrilateral_interface.pyi @@ -93,7 +93,7 @@ class QuadrilateralInterface( def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], shapeType: typing.Union[MetaOapg.properties.shapeType, str, ], quadrilateralType: typing.Union[MetaOapg.properties.quadrilateralType, str, ], _configuration: typing.Optional[schemas.Configuration] = None, diff --git a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/scalene_triangle.py b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/scalene_triangle.py index 6f7e3f7fba9d..0305d0f9eb34 100644 --- a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/scalene_triangle.py +++ b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/scalene_triangle.py @@ -117,7 +117,7 @@ def all_of(cls): def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'ScaleneTriangle': diff --git a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/scalene_triangle.pyi b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/scalene_triangle.pyi index 6f7e3f7fba9d..0305d0f9eb34 100644 --- a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/scalene_triangle.pyi +++ b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/scalene_triangle.pyi @@ -117,7 +117,7 @@ class ScaleneTriangle( def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'ScaleneTriangle': diff --git a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/shape.py b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/shape.py index 79635173bbd9..d4754b907ad6 100644 --- a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/shape.py +++ b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/shape.py @@ -63,7 +63,7 @@ def one_of(cls): def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'Shape': diff --git a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/shape.pyi b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/shape.pyi index 79635173bbd9..d4754b907ad6 100644 --- a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/shape.pyi +++ b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/shape.pyi @@ -63,7 +63,7 @@ class Shape( def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'Shape': diff --git a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/shape_or_null.py b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/shape_or_null.py index a700c5afd4bb..f3a7195c0b03 100644 --- a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/shape_or_null.py +++ b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/shape_or_null.py @@ -67,7 +67,7 @@ def one_of(cls): def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'ShapeOrNull': diff --git a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/shape_or_null.pyi b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/shape_or_null.pyi index a700c5afd4bb..f3a7195c0b03 100644 --- a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/shape_or_null.pyi +++ b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/shape_or_null.pyi @@ -67,7 +67,7 @@ class ShapeOrNull( def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'ShapeOrNull': diff --git a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/simple_quadrilateral.py b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/simple_quadrilateral.py index 9fe6af737e37..2876821d241a 100644 --- a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/simple_quadrilateral.py +++ b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/simple_quadrilateral.py @@ -117,7 +117,7 @@ def all_of(cls): def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'SimpleQuadrilateral': diff --git a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/simple_quadrilateral.pyi b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/simple_quadrilateral.pyi index 9fe6af737e37..2876821d241a 100644 --- a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/simple_quadrilateral.pyi +++ b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/simple_quadrilateral.pyi @@ -117,7 +117,7 @@ class SimpleQuadrilateral( def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'SimpleQuadrilateral': diff --git a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/some_object.py b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/some_object.py index 3a533484ecc2..ed705b3cb90d 100644 --- a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/some_object.py +++ b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/some_object.py @@ -52,7 +52,7 @@ def all_of(cls): def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'SomeObject': diff --git a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/some_object.pyi b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/some_object.pyi index 3a533484ecc2..ed705b3cb90d 100644 --- a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/some_object.pyi +++ b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/some_object.pyi @@ -52,7 +52,7 @@ class SomeObject( def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'SomeObject': diff --git a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/triangle.py b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/triangle.py index 85e4ca929cad..affe894c3422 100644 --- a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/triangle.py +++ b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/triangle.py @@ -65,7 +65,7 @@ def one_of(cls): def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'Triangle': diff --git a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/triangle.pyi b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/triangle.pyi index 85e4ca929cad..affe894c3422 100644 --- a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/triangle.pyi +++ b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/triangle.pyi @@ -65,7 +65,7 @@ class Triangle( def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'Triangle': diff --git a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/triangle_interface.py b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/triangle_interface.py index b91e26f79adb..a6465b61ad06 100644 --- a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/triangle_interface.py +++ b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/triangle_interface.py @@ -93,7 +93,7 @@ def get_item_oapg(self, name: typing.Union[typing.Literal["shapeType", "triangle def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], shapeType: typing.Union[MetaOapg.properties.shapeType, str, ], triangleType: typing.Union[MetaOapg.properties.triangleType, str, ], _configuration: typing.Optional[schemas.Configuration] = None, diff --git a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/triangle_interface.pyi b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/triangle_interface.pyi index b91e26f79adb..a6465b61ad06 100644 --- a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/triangle_interface.pyi +++ b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/triangle_interface.pyi @@ -93,7 +93,7 @@ class TriangleInterface( def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], shapeType: typing.Union[MetaOapg.properties.shapeType, str, ], triangleType: typing.Union[MetaOapg.properties.triangleType, str, ], _configuration: typing.Optional[schemas.Configuration] = None, diff --git a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/user.py b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/user.py index 4c35fda5b333..a72414ff28b9 100644 --- a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/user.py +++ b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/user.py @@ -80,7 +80,7 @@ class MetaOapg: def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'anyTypeExceptNullProp': @@ -213,9 +213,9 @@ def __new__( userStatus: typing.Union[MetaOapg.properties.userStatus, decimal.Decimal, int, schemas.Unset] = schemas.unset, objectWithNoDeclaredProps: typing.Union[MetaOapg.properties.objectWithNoDeclaredProps, dict, frozendict.frozendict, schemas.Unset] = schemas.unset, objectWithNoDeclaredPropsNullable: typing.Union[MetaOapg.properties.objectWithNoDeclaredPropsNullable, dict, frozendict.frozendict, None, schemas.Unset] = schemas.unset, - anyTypeProp: typing.Union[MetaOapg.properties.anyTypeProp, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, schemas.Unset] = schemas.unset, - anyTypeExceptNullProp: typing.Union[MetaOapg.properties.anyTypeExceptNullProp, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, schemas.Unset] = schemas.unset, - anyTypePropNullable: typing.Union[MetaOapg.properties.anyTypePropNullable, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, schemas.Unset] = schemas.unset, + anyTypeProp: typing.Union[MetaOapg.properties.anyTypeProp, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, + anyTypeExceptNullProp: typing.Union[MetaOapg.properties.anyTypeExceptNullProp, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, + anyTypePropNullable: typing.Union[MetaOapg.properties.anyTypePropNullable, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'User': diff --git a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/user.pyi b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/user.pyi index 4c35fda5b333..a72414ff28b9 100644 --- a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/user.pyi +++ b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/user.pyi @@ -80,7 +80,7 @@ class User( def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'anyTypeExceptNullProp': @@ -213,9 +213,9 @@ class User( userStatus: typing.Union[MetaOapg.properties.userStatus, decimal.Decimal, int, schemas.Unset] = schemas.unset, objectWithNoDeclaredProps: typing.Union[MetaOapg.properties.objectWithNoDeclaredProps, dict, frozendict.frozendict, schemas.Unset] = schemas.unset, objectWithNoDeclaredPropsNullable: typing.Union[MetaOapg.properties.objectWithNoDeclaredPropsNullable, dict, frozendict.frozendict, None, schemas.Unset] = schemas.unset, - anyTypeProp: typing.Union[MetaOapg.properties.anyTypeProp, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, schemas.Unset] = schemas.unset, - anyTypeExceptNullProp: typing.Union[MetaOapg.properties.anyTypeExceptNullProp, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, schemas.Unset] = schemas.unset, - anyTypePropNullable: typing.Union[MetaOapg.properties.anyTypePropNullable, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, schemas.Unset] = schemas.unset, + anyTypeProp: typing.Union[MetaOapg.properties.anyTypeProp, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, + anyTypeExceptNullProp: typing.Union[MetaOapg.properties.anyTypeExceptNullProp, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, + anyTypePropNullable: typing.Union[MetaOapg.properties.anyTypePropNullable, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'User': diff --git a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/zebra.py b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/zebra.py index c2f8dd424eec..93ef7ba73edb 100644 --- a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/zebra.py +++ b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/zebra.py @@ -119,7 +119,7 @@ def __new__( className: typing.Union[MetaOapg.properties.className, str, ], type: typing.Union[MetaOapg.properties.type, str, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[MetaOapg.additional_properties, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + **kwargs: typing.Union[MetaOapg.additional_properties, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], ) -> 'Zebra': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/zebra.pyi b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/zebra.pyi index c2f8dd424eec..93ef7ba73edb 100644 --- a/samples/openapi3/client/petstore/python-experimental/petstore_api/model/zebra.pyi +++ b/samples/openapi3/client/petstore/python-experimental/petstore_api/model/zebra.pyi @@ -119,7 +119,7 @@ class Zebra( className: typing.Union[MetaOapg.properties.className, str, ], type: typing.Union[MetaOapg.properties.type, str, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, - **kwargs: typing.Union[MetaOapg.additional_properties, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + **kwargs: typing.Union[MetaOapg.additional_properties, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], ) -> 'Zebra': return super().__new__( cls, diff --git a/samples/openapi3/client/petstore/python-experimental/petstore_api/paths/fake_2/get.py b/samples/openapi3/client/petstore/python-experimental/petstore_api/paths/fake_2/get.py index 01854082472e..0aaa37a01f4c 100644 --- a/samples/openapi3/client/petstore/python-experimental/petstore_api/paths/fake_2/get.py +++ b/samples/openapi3/client/petstore/python-experimental/petstore_api/paths/fake_2/get.py @@ -146,7 +146,7 @@ def NEGATIVE_1_PT_2(cls): RequestOptionalQueryParams = typing.TypedDict( 'RequestOptionalQueryParams', { - 'enum_query_string_array': typing.Union[EnumQueryStringArraySchema, tuple, ], + 'enum_query_string_array': typing.Union[EnumQueryStringArraySchema, list, tuple, ], 'enum_query_string': typing.Union[EnumQueryStringSchema, str, ], 'enum_query_integer': typing.Union[EnumQueryIntegerSchema, decimal.Decimal, int, ], 'enum_query_double': typing.Union[EnumQueryDoubleSchema, decimal.Decimal, int, float, ], @@ -262,7 +262,7 @@ def XYZ(cls): RequestOptionalHeaderParams = typing.TypedDict( 'RequestOptionalHeaderParams', { - 'enum_header_string_array': typing.Union[EnumHeaderStringArraySchema, tuple, ], + 'enum_header_string_array': typing.Union[EnumHeaderStringArraySchema, list, tuple, ], 'enum_header_string': typing.Union[EnumHeaderStringSchema, str, ], }, total=False @@ -399,7 +399,7 @@ def get_item_oapg(self, name: typing.Union[typing.Literal["enum_form_string_arra def __new__( cls, *args: typing.Union[dict, frozendict.frozendict, ], - enum_form_string_array: typing.Union[MetaOapg.properties.enum_form_string_array, tuple, schemas.Unset] = schemas.unset, + enum_form_string_array: typing.Union[MetaOapg.properties.enum_form_string_array, list, tuple, schemas.Unset] = schemas.unset, enum_form_string: typing.Union[MetaOapg.properties.enum_form_string, str, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], diff --git a/samples/openapi3/client/petstore/python-experimental/petstore_api/paths/fake_2/get.pyi b/samples/openapi3/client/petstore/python-experimental/petstore_api/paths/fake_2/get.pyi index 5e96fed59085..adce8870c757 100644 --- a/samples/openapi3/client/petstore/python-experimental/petstore_api/paths/fake_2/get.pyi +++ b/samples/openapi3/client/petstore/python-experimental/petstore_api/paths/fake_2/get.pyi @@ -323,7 +323,7 @@ class SchemaForRequestBodyApplicationXWwwFormUrlencoded( def __new__( cls, *args: typing.Union[dict, frozendict.frozendict, ], - enum_form_string_array: typing.Union[MetaOapg.properties.enum_form_string_array, tuple, schemas.Unset] = schemas.unset, + enum_form_string_array: typing.Union[MetaOapg.properties.enum_form_string_array, list, tuple, schemas.Unset] = schemas.unset, enum_form_string: typing.Union[MetaOapg.properties.enum_form_string, str, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], diff --git a/samples/openapi3/client/petstore/python-experimental/petstore_api/paths/fake_inline_composition_/post.py b/samples/openapi3/client/petstore/python-experimental/petstore_api/paths/fake_inline_composition_/post.py index ce59b86fb436..3510a42cdc32 100644 --- a/samples/openapi3/client/petstore/python-experimental/petstore_api/paths/fake_inline_composition_/post.py +++ b/samples/openapi3/client/petstore/python-experimental/petstore_api/paths/fake_inline_composition_/post.py @@ -62,7 +62,7 @@ def all_of(cls): def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'CompositionAtRootSchema': @@ -118,7 +118,7 @@ def all_of(cls): def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'someProp': @@ -156,7 +156,7 @@ def get_item_oapg(self, name: typing.Union[typing.Literal["someProp", ], str]): def __new__( cls, *args: typing.Union[dict, frozendict.frozendict, ], - someProp: typing.Union[MetaOapg.properties.someProp, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, schemas.Unset] = schemas.unset, + someProp: typing.Union[MetaOapg.properties.someProp, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'CompositionInPropertySchema': @@ -175,7 +175,7 @@ def __new__( RequestOptionalQueryParams = typing.TypedDict( 'RequestOptionalQueryParams', { - 'compositionAtRoot': typing.Union[CompositionAtRootSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + 'compositionAtRoot': typing.Union[CompositionAtRootSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], 'compositionInProperty': typing.Union[CompositionInPropertySchema, dict, frozendict.frozendict, ], }, total=False @@ -235,7 +235,7 @@ def all_of(cls): def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'SchemaForRequestBodyApplicationJson': @@ -291,7 +291,7 @@ def all_of(cls): def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'someProp': @@ -329,7 +329,7 @@ def get_item_oapg(self, name: typing.Union[typing.Literal["someProp", ], str]): def __new__( cls, *args: typing.Union[dict, frozendict.frozendict, ], - someProp: typing.Union[MetaOapg.properties.someProp, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, schemas.Unset] = schemas.unset, + someProp: typing.Union[MetaOapg.properties.someProp, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'SchemaForRequestBodyMultipartFormData': @@ -386,7 +386,7 @@ def all_of(cls): def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'SchemaFor200ResponseBodyApplicationJson': @@ -442,7 +442,7 @@ def all_of(cls): def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'someProp': @@ -480,7 +480,7 @@ def get_item_oapg(self, name: typing.Union[typing.Literal["someProp", ], str]): def __new__( cls, *args: typing.Union[dict, frozendict.frozendict, ], - someProp: typing.Union[MetaOapg.properties.someProp, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, schemas.Unset] = schemas.unset, + someProp: typing.Union[MetaOapg.properties.someProp, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'SchemaFor200ResponseBodyMultipartFormData': @@ -525,7 +525,7 @@ class BaseApi(api_client.Api): def _inline_composition_oapg( self: api_client.Api, - body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, SchemaForRequestBodyMultipartFormData, dict, frozendict.frozendict, schemas.Unset] = schemas.unset, + body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, SchemaForRequestBodyMultipartFormData, dict, frozendict.frozendict, schemas.Unset] = schemas.unset, query_params: RequestQueryParams = frozendict.frozendict(), content_type: str = 'application/json', accept_content_types: typing.Tuple[str] = _all_accept_content_types, @@ -604,7 +604,7 @@ class InlineComposition(BaseApi): def inline_composition( self: BaseApi, - body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, SchemaForRequestBodyMultipartFormData, dict, frozendict.frozendict, schemas.Unset] = schemas.unset, + body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, SchemaForRequestBodyMultipartFormData, dict, frozendict.frozendict, schemas.Unset] = schemas.unset, query_params: RequestQueryParams = frozendict.frozendict(), content_type: str = 'application/json', accept_content_types: typing.Tuple[str] = _all_accept_content_types, @@ -631,7 +631,7 @@ class ApiForpost(BaseApi): def post( self: BaseApi, - body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, SchemaForRequestBodyMultipartFormData, dict, frozendict.frozendict, schemas.Unset] = schemas.unset, + body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, SchemaForRequestBodyMultipartFormData, dict, frozendict.frozendict, schemas.Unset] = schemas.unset, query_params: RequestQueryParams = frozendict.frozendict(), content_type: str = 'application/json', accept_content_types: typing.Tuple[str] = _all_accept_content_types, diff --git a/samples/openapi3/client/petstore/python-experimental/petstore_api/paths/fake_inline_composition_/post.pyi b/samples/openapi3/client/petstore/python-experimental/petstore_api/paths/fake_inline_composition_/post.pyi index 34412cce21e7..6c58553a404c 100644 --- a/samples/openapi3/client/petstore/python-experimental/petstore_api/paths/fake_inline_composition_/post.pyi +++ b/samples/openapi3/client/petstore/python-experimental/petstore_api/paths/fake_inline_composition_/post.pyi @@ -57,7 +57,7 @@ class CompositionAtRootSchema( def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'CompositionAtRootSchema': @@ -110,7 +110,7 @@ class CompositionInPropertySchema( def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'someProp': @@ -148,7 +148,7 @@ class CompositionInPropertySchema( def __new__( cls, *args: typing.Union[dict, frozendict.frozendict, ], - someProp: typing.Union[MetaOapg.properties.someProp, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, schemas.Unset] = schemas.unset, + someProp: typing.Union[MetaOapg.properties.someProp, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'CompositionInPropertySchema': @@ -193,7 +193,7 @@ class SchemaForRequestBodyApplicationJson( def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'SchemaForRequestBodyApplicationJson': @@ -246,7 +246,7 @@ class SchemaForRequestBodyMultipartFormData( def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'someProp': @@ -284,7 +284,7 @@ class SchemaForRequestBodyMultipartFormData( def __new__( cls, *args: typing.Union[dict, frozendict.frozendict, ], - someProp: typing.Union[MetaOapg.properties.someProp, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, schemas.Unset] = schemas.unset, + someProp: typing.Union[MetaOapg.properties.someProp, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'SchemaForRequestBodyMultipartFormData': @@ -328,7 +328,7 @@ class SchemaFor200ResponseBodyApplicationJson( def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'SchemaFor200ResponseBodyApplicationJson': @@ -381,7 +381,7 @@ class SchemaFor200ResponseBodyMultipartFormData( def __new__( cls, - *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ], + *args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'someProp': @@ -419,7 +419,7 @@ class SchemaFor200ResponseBodyMultipartFormData( def __new__( cls, *args: typing.Union[dict, frozendict.frozendict, ], - someProp: typing.Union[MetaOapg.properties.someProp, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, schemas.Unset] = schemas.unset, + someProp: typing.Union[MetaOapg.properties.someProp, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'SchemaFor200ResponseBodyMultipartFormData': @@ -440,7 +440,7 @@ class BaseApi(api_client.Api): def _inline_composition_oapg( self: api_client.Api, - body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, SchemaForRequestBodyMultipartFormData, dict, frozendict.frozendict, schemas.Unset] = schemas.unset, + body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, SchemaForRequestBodyMultipartFormData, dict, frozendict.frozendict, schemas.Unset] = schemas.unset, query_params: RequestQueryParams = frozendict.frozendict(), content_type: str = 'application/json', accept_content_types: typing.Tuple[str] = _all_accept_content_types, @@ -519,7 +519,7 @@ class InlineComposition(BaseApi): def inline_composition( self: BaseApi, - body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, SchemaForRequestBodyMultipartFormData, dict, frozendict.frozendict, schemas.Unset] = schemas.unset, + body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, SchemaForRequestBodyMultipartFormData, dict, frozendict.frozendict, schemas.Unset] = schemas.unset, query_params: RequestQueryParams = frozendict.frozendict(), content_type: str = 'application/json', accept_content_types: typing.Tuple[str] = _all_accept_content_types, @@ -546,7 +546,7 @@ class ApiForpost(BaseApi): def post( self: BaseApi, - body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, SchemaForRequestBodyMultipartFormData, dict, frozendict.frozendict, schemas.Unset] = schemas.unset, + body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, SchemaForRequestBodyMultipartFormData, dict, frozendict.frozendict, schemas.Unset] = schemas.unset, query_params: RequestQueryParams = frozendict.frozendict(), content_type: str = 'application/json', accept_content_types: typing.Tuple[str] = _all_accept_content_types, diff --git a/samples/openapi3/client/petstore/python-experimental/petstore_api/paths/fake_json_with_charset/post.py b/samples/openapi3/client/petstore/python-experimental/petstore_api/paths/fake_json_with_charset/post.py index c5ead8e1b8e2..478b441a51a7 100644 --- a/samples/openapi3/client/petstore/python-experimental/petstore_api/paths/fake_json_with_charset/post.py +++ b/samples/openapi3/client/petstore/python-experimental/petstore_api/paths/fake_json_with_charset/post.py @@ -66,7 +66,7 @@ class BaseApi(api_client.Api): def _json_with_charset_oapg( self: api_client.Api, - body: typing.Union[SchemaForRequestBodyApplicationJsonCharsetutf8, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, schemas.Unset] = schemas.unset, + body: typing.Union[SchemaForRequestBodyApplicationJsonCharsetutf8, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, content_type: str = 'application/json; charset=utf-8', accept_content_types: typing.Tuple[str] = _all_accept_content_types, stream: bool = False, @@ -129,7 +129,7 @@ class JsonWithCharset(BaseApi): def json_with_charset( self: BaseApi, - body: typing.Union[SchemaForRequestBodyApplicationJsonCharsetutf8, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, schemas.Unset] = schemas.unset, + body: typing.Union[SchemaForRequestBodyApplicationJsonCharsetutf8, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, content_type: str = 'application/json; charset=utf-8', accept_content_types: typing.Tuple[str] = _all_accept_content_types, stream: bool = False, @@ -154,7 +154,7 @@ class ApiForpost(BaseApi): def post( self: BaseApi, - body: typing.Union[SchemaForRequestBodyApplicationJsonCharsetutf8, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, schemas.Unset] = schemas.unset, + body: typing.Union[SchemaForRequestBodyApplicationJsonCharsetutf8, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, content_type: str = 'application/json; charset=utf-8', accept_content_types: typing.Tuple[str] = _all_accept_content_types, stream: bool = False, diff --git a/samples/openapi3/client/petstore/python-experimental/petstore_api/paths/fake_json_with_charset/post.pyi b/samples/openapi3/client/petstore/python-experimental/petstore_api/paths/fake_json_with_charset/post.pyi index ad75c903b148..463facbd750c 100644 --- a/samples/openapi3/client/petstore/python-experimental/petstore_api/paths/fake_json_with_charset/post.pyi +++ b/samples/openapi3/client/petstore/python-experimental/petstore_api/paths/fake_json_with_charset/post.pyi @@ -35,7 +35,7 @@ class BaseApi(api_client.Api): def _json_with_charset_oapg( self: api_client.Api, - body: typing.Union[SchemaForRequestBodyApplicationJsonCharsetutf8, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, schemas.Unset] = schemas.unset, + body: typing.Union[SchemaForRequestBodyApplicationJsonCharsetutf8, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, content_type: str = 'application/json; charset=utf-8', accept_content_types: typing.Tuple[str] = _all_accept_content_types, stream: bool = False, @@ -98,7 +98,7 @@ class JsonWithCharset(BaseApi): def json_with_charset( self: BaseApi, - body: typing.Union[SchemaForRequestBodyApplicationJsonCharsetutf8, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, schemas.Unset] = schemas.unset, + body: typing.Union[SchemaForRequestBodyApplicationJsonCharsetutf8, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, content_type: str = 'application/json; charset=utf-8', accept_content_types: typing.Tuple[str] = _all_accept_content_types, stream: bool = False, @@ -123,7 +123,7 @@ class ApiForpost(BaseApi): def post( self: BaseApi, - body: typing.Union[SchemaForRequestBodyApplicationJsonCharsetutf8, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, schemas.Unset] = schemas.unset, + body: typing.Union[SchemaForRequestBodyApplicationJsonCharsetutf8, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, content_type: str = 'application/json; charset=utf-8', accept_content_types: typing.Tuple[str] = _all_accept_content_types, stream: bool = False, diff --git a/samples/openapi3/client/petstore/python-experimental/petstore_api/paths/fake_parameter_collisions_1_a_b_ab_self_a_b_/post.py b/samples/openapi3/client/petstore/python-experimental/petstore_api/paths/fake_parameter_collisions_1_a_b_ab_self_a_b_/post.py index 4c20144fc0ff..7bebd0c90146 100644 --- a/samples/openapi3/client/petstore/python-experimental/petstore_api/paths/fake_parameter_collisions_1_a_b_ab_self_a_b_/post.py +++ b/samples/openapi3/client/petstore/python-experimental/petstore_api/paths/fake_parameter_collisions_1_a_b_ab_self_a_b_/post.py @@ -286,7 +286,7 @@ class BaseApi(api_client.Api): def _parameter_collisions_oapg( self: api_client.Api, - body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, schemas.Unset] = schemas.unset, + body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, query_params: RequestQueryParams = frozendict.frozendict(), header_params: RequestHeaderParams = frozendict.frozendict(), path_params: RequestPathParams = frozendict.frozendict(), @@ -402,7 +402,7 @@ class ParameterCollisions(BaseApi): def parameter_collisions( self: BaseApi, - body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, schemas.Unset] = schemas.unset, + body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, query_params: RequestQueryParams = frozendict.frozendict(), header_params: RequestHeaderParams = frozendict.frozendict(), path_params: RequestPathParams = frozendict.frozendict(), @@ -435,7 +435,7 @@ class ApiForpost(BaseApi): def post( self: BaseApi, - body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, schemas.Unset] = schemas.unset, + body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, query_params: RequestQueryParams = frozendict.frozendict(), header_params: RequestHeaderParams = frozendict.frozendict(), path_params: RequestPathParams = frozendict.frozendict(), diff --git a/samples/openapi3/client/petstore/python-experimental/petstore_api/paths/fake_parameter_collisions_1_a_b_ab_self_a_b_/post.pyi b/samples/openapi3/client/petstore/python-experimental/petstore_api/paths/fake_parameter_collisions_1_a_b_ab_self_a_b_/post.pyi index d39eec1f6719..01a29e9256b9 100644 --- a/samples/openapi3/client/petstore/python-experimental/petstore_api/paths/fake_parameter_collisions_1_a_b_ab_self_a_b_/post.pyi +++ b/samples/openapi3/client/petstore/python-experimental/petstore_api/paths/fake_parameter_collisions_1_a_b_ab_self_a_b_/post.pyi @@ -58,7 +58,7 @@ class BaseApi(api_client.Api): def _parameter_collisions_oapg( self: api_client.Api, - body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, schemas.Unset] = schemas.unset, + body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, query_params: RequestQueryParams = frozendict.frozendict(), header_params: RequestHeaderParams = frozendict.frozendict(), path_params: RequestPathParams = frozendict.frozendict(), @@ -174,7 +174,7 @@ class ParameterCollisions(BaseApi): def parameter_collisions( self: BaseApi, - body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, schemas.Unset] = schemas.unset, + body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, query_params: RequestQueryParams = frozendict.frozendict(), header_params: RequestHeaderParams = frozendict.frozendict(), path_params: RequestPathParams = frozendict.frozendict(), @@ -207,7 +207,7 @@ class ApiForpost(BaseApi): def post( self: BaseApi, - body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, schemas.Unset] = schemas.unset, + body: typing.Union[SchemaForRequestBodyApplicationJson, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, schemas.Unset] = schemas.unset, query_params: RequestQueryParams = frozendict.frozendict(), header_params: RequestHeaderParams = frozendict.frozendict(), path_params: RequestPathParams = frozendict.frozendict(), diff --git a/samples/openapi3/client/petstore/python-experimental/petstore_api/paths/fake_test_query_paramters/put.py b/samples/openapi3/client/petstore/python-experimental/petstore_api/paths/fake_test_query_paramters/put.py index 26bf8198db58..74896bc5ca8c 100644 --- a/samples/openapi3/client/petstore/python-experimental/petstore_api/paths/fake_test_query_paramters/put.py +++ b/samples/openapi3/client/petstore/python-experimental/petstore_api/paths/fake_test_query_paramters/put.py @@ -146,11 +146,11 @@ def __getitem__(self, i: int) -> MetaOapg.items: RequestRequiredQueryParams = typing.TypedDict( 'RequestRequiredQueryParams', { - 'pipe': typing.Union[PipeSchema, tuple, ], - 'ioutil': typing.Union[IoutilSchema, tuple, ], - 'http': typing.Union[HttpSchema, tuple, ], - 'url': typing.Union[UrlSchema, tuple, ], - 'context': typing.Union[ContextSchema, tuple, ], + 'pipe': typing.Union[PipeSchema, list, tuple, ], + 'ioutil': typing.Union[IoutilSchema, list, tuple, ], + 'http': typing.Union[HttpSchema, list, tuple, ], + 'url': typing.Union[UrlSchema, list, tuple, ], + 'context': typing.Union[ContextSchema, list, tuple, ], 'refParam': typing.Union[RefParamSchema, ], } ) diff --git a/samples/openapi3/client/petstore/python-experimental/petstore_api/paths/fake_upload_files/post.py b/samples/openapi3/client/petstore/python-experimental/petstore_api/paths/fake_upload_files/post.py index 32f9927c0369..4cf3f1066412 100644 --- a/samples/openapi3/client/petstore/python-experimental/petstore_api/paths/fake_upload_files/post.py +++ b/samples/openapi3/client/petstore/python-experimental/petstore_api/paths/fake_upload_files/post.py @@ -89,7 +89,7 @@ def get_item_oapg(self, name: typing.Union[typing.Literal["files", ], str]): def __new__( cls, *args: typing.Union[dict, frozendict.frozendict, ], - files: typing.Union[MetaOapg.properties.files, tuple, schemas.Unset] = schemas.unset, + files: typing.Union[MetaOapg.properties.files, list, tuple, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'SchemaForRequestBodyMultipartFormData': diff --git a/samples/openapi3/client/petstore/python-experimental/petstore_api/paths/fake_upload_files/post.pyi b/samples/openapi3/client/petstore/python-experimental/petstore_api/paths/fake_upload_files/post.pyi index 0b68c63d36a2..eac2bbb44ed0 100644 --- a/samples/openapi3/client/petstore/python-experimental/petstore_api/paths/fake_upload_files/post.pyi +++ b/samples/openapi3/client/petstore/python-experimental/petstore_api/paths/fake_upload_files/post.pyi @@ -87,7 +87,7 @@ class SchemaForRequestBodyMultipartFormData( def __new__( cls, *args: typing.Union[dict, frozendict.frozendict, ], - files: typing.Union[MetaOapg.properties.files, tuple, schemas.Unset] = schemas.unset, + files: typing.Union[MetaOapg.properties.files, list, tuple, schemas.Unset] = schemas.unset, _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'SchemaForRequestBodyMultipartFormData': diff --git a/samples/openapi3/client/petstore/python-experimental/petstore_api/paths/pet_find_by_status/get.py b/samples/openapi3/client/petstore/python-experimental/petstore_api/paths/pet_find_by_status/get.py index 0cfe3e590000..31d20798924d 100644 --- a/samples/openapi3/client/petstore/python-experimental/petstore_api/paths/pet_find_by_status/get.py +++ b/samples/openapi3/client/petstore/python-experimental/petstore_api/paths/pet_find_by_status/get.py @@ -80,7 +80,7 @@ def __getitem__(self, i: int) -> MetaOapg.items: RequestRequiredQueryParams = typing.TypedDict( 'RequestRequiredQueryParams', { - 'status': typing.Union[StatusSchema, tuple, ], + 'status': typing.Union[StatusSchema, list, tuple, ], } ) RequestOptionalQueryParams = typing.TypedDict( diff --git a/samples/openapi3/client/petstore/python-experimental/petstore_api/paths/pet_find_by_tags/get.py b/samples/openapi3/client/petstore/python-experimental/petstore_api/paths/pet_find_by_tags/get.py index a0004174f2a5..638b6f9f2f41 100644 --- a/samples/openapi3/client/petstore/python-experimental/petstore_api/paths/pet_find_by_tags/get.py +++ b/samples/openapi3/client/petstore/python-experimental/petstore_api/paths/pet_find_by_tags/get.py @@ -54,7 +54,7 @@ def __getitem__(self, i: int) -> MetaOapg.items: RequestRequiredQueryParams = typing.TypedDict( 'RequestRequiredQueryParams', { - 'tags': typing.Union[TagsSchema, tuple, ], + 'tags': typing.Union[TagsSchema, list, tuple, ], } ) RequestOptionalQueryParams = typing.TypedDict( diff --git a/samples/openapi3/client/petstore/python-experimental/petstore_api/paths/user_create_with_array/post.py b/samples/openapi3/client/petstore/python-experimental/petstore_api/paths/user_create_with_array/post.py index 36333467e3bf..3588996c2aa7 100644 --- a/samples/openapi3/client/petstore/python-experimental/petstore_api/paths/user_create_with_array/post.py +++ b/samples/openapi3/client/petstore/python-experimental/petstore_api/paths/user_create_with_array/post.py @@ -85,7 +85,7 @@ class BaseApi(api_client.Api): def _create_users_with_array_input_oapg( self: api_client.Api, - body: typing.Union[SchemaForRequestBodyApplicationJson, tuple, ], + body: typing.Union[SchemaForRequestBodyApplicationJson, list, tuple, ], content_type: str = 'application/json', stream: bool = False, timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, @@ -150,7 +150,7 @@ class CreateUsersWithArrayInput(BaseApi): def create_users_with_array_input( self: BaseApi, - body: typing.Union[SchemaForRequestBodyApplicationJson, tuple, ], + body: typing.Union[SchemaForRequestBodyApplicationJson, list, tuple, ], content_type: str = 'application/json', stream: bool = False, timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, @@ -173,7 +173,7 @@ class ApiForpost(BaseApi): def post( self: BaseApi, - body: typing.Union[SchemaForRequestBodyApplicationJson, tuple, ], + body: typing.Union[SchemaForRequestBodyApplicationJson, list, tuple, ], content_type: str = 'application/json', stream: bool = False, timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, diff --git a/samples/openapi3/client/petstore/python-experimental/petstore_api/paths/user_create_with_array/post.pyi b/samples/openapi3/client/petstore/python-experimental/petstore_api/paths/user_create_with_array/post.pyi index 561320c69d42..4cc093a8adaa 100644 --- a/samples/openapi3/client/petstore/python-experimental/petstore_api/paths/user_create_with_array/post.pyi +++ b/samples/openapi3/client/petstore/python-experimental/petstore_api/paths/user_create_with_array/post.pyi @@ -59,7 +59,7 @@ class BaseApi(api_client.Api): def _create_users_with_array_input_oapg( self: api_client.Api, - body: typing.Union[SchemaForRequestBodyApplicationJson, tuple, ], + body: typing.Union[SchemaForRequestBodyApplicationJson, list, tuple, ], content_type: str = 'application/json', stream: bool = False, timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, @@ -124,7 +124,7 @@ class CreateUsersWithArrayInput(BaseApi): def create_users_with_array_input( self: BaseApi, - body: typing.Union[SchemaForRequestBodyApplicationJson, tuple, ], + body: typing.Union[SchemaForRequestBodyApplicationJson, list, tuple, ], content_type: str = 'application/json', stream: bool = False, timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, @@ -147,7 +147,7 @@ class ApiForpost(BaseApi): def post( self: BaseApi, - body: typing.Union[SchemaForRequestBodyApplicationJson, tuple, ], + body: typing.Union[SchemaForRequestBodyApplicationJson, list, tuple, ], content_type: str = 'application/json', stream: bool = False, timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, diff --git a/samples/openapi3/client/petstore/python-experimental/petstore_api/paths/user_create_with_list/post.py b/samples/openapi3/client/petstore/python-experimental/petstore_api/paths/user_create_with_list/post.py index 6ad6fe0f7ba2..3b6625b03551 100644 --- a/samples/openapi3/client/petstore/python-experimental/petstore_api/paths/user_create_with_list/post.py +++ b/samples/openapi3/client/petstore/python-experimental/petstore_api/paths/user_create_with_list/post.py @@ -85,7 +85,7 @@ class BaseApi(api_client.Api): def _create_users_with_list_input_oapg( self: api_client.Api, - body: typing.Union[SchemaForRequestBodyApplicationJson, tuple, ], + body: typing.Union[SchemaForRequestBodyApplicationJson, list, tuple, ], content_type: str = 'application/json', stream: bool = False, timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, @@ -150,7 +150,7 @@ class CreateUsersWithListInput(BaseApi): def create_users_with_list_input( self: BaseApi, - body: typing.Union[SchemaForRequestBodyApplicationJson, tuple, ], + body: typing.Union[SchemaForRequestBodyApplicationJson, list, tuple, ], content_type: str = 'application/json', stream: bool = False, timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, @@ -173,7 +173,7 @@ class ApiForpost(BaseApi): def post( self: BaseApi, - body: typing.Union[SchemaForRequestBodyApplicationJson, tuple, ], + body: typing.Union[SchemaForRequestBodyApplicationJson, list, tuple, ], content_type: str = 'application/json', stream: bool = False, timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, diff --git a/samples/openapi3/client/petstore/python-experimental/petstore_api/paths/user_create_with_list/post.pyi b/samples/openapi3/client/petstore/python-experimental/petstore_api/paths/user_create_with_list/post.pyi index 6b588699813b..8cd0b172ea22 100644 --- a/samples/openapi3/client/petstore/python-experimental/petstore_api/paths/user_create_with_list/post.pyi +++ b/samples/openapi3/client/petstore/python-experimental/petstore_api/paths/user_create_with_list/post.pyi @@ -59,7 +59,7 @@ class BaseApi(api_client.Api): def _create_users_with_list_input_oapg( self: api_client.Api, - body: typing.Union[SchemaForRequestBodyApplicationJson, tuple, ], + body: typing.Union[SchemaForRequestBodyApplicationJson, list, tuple, ], content_type: str = 'application/json', stream: bool = False, timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, @@ -124,7 +124,7 @@ class CreateUsersWithListInput(BaseApi): def create_users_with_list_input( self: BaseApi, - body: typing.Union[SchemaForRequestBodyApplicationJson, tuple, ], + body: typing.Union[SchemaForRequestBodyApplicationJson, list, tuple, ], content_type: str = 'application/json', stream: bool = False, timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, @@ -147,7 +147,7 @@ class ApiForpost(BaseApi): def post( self: BaseApi, - body: typing.Union[SchemaForRequestBodyApplicationJson, tuple, ], + body: typing.Union[SchemaForRequestBodyApplicationJson, list, tuple, ], content_type: str = 'application/json', stream: bool = False, timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, diff --git a/samples/openapi3/client/petstore/python-experimental/tests_manual/test_any_type_and_format.py b/samples/openapi3/client/petstore/python-experimental/tests_manual/test_any_type_and_format.py index 413edc83b2b6..3882982711ae 100644 --- a/samples/openapi3/client/petstore/python-experimental/tests_manual/test_any_type_and_format.py +++ b/samples/openapi3/client/petstore/python-experimental/tests_manual/test_any_type_and_format.py @@ -169,7 +169,7 @@ def test_int64(self): with self.assertRaises(exceptions.ApiValueError): AnyTypeAndFormat(int64=invalid_value) - def test_double(self): + def test_float(self): min_bound = decimal.Decimal(-3.4028234663852886e+38) max_bound = decimal.Decimal(3.4028234663852886e+38) valid_values = [ @@ -197,9 +197,9 @@ def test_double(self): ) for invalid_value in invalid_values: with self.assertRaises(exceptions.ApiValueError): - AnyTypeAndFormat(double=invalid_value) + AnyTypeAndFormat(float=invalid_value) - def test_float(self): + def test_double(self): min_bound = decimal.Decimal(-1.7976931348623157E+308) max_bound = decimal.Decimal(1.7976931348623157E+308) valid_values = [ @@ -216,7 +216,7 @@ def test_float(self): b'abc' ] for valid_value in valid_values: - AnyTypeAndFormat(float=valid_value) + AnyTypeAndFormat(double=valid_value) with decimal.localcontext() as ctx: ctx.prec = 310 @@ -230,7 +230,7 @@ def test_float(self): # invalid values do not work for invalid_value in invalid_values: with self.assertRaises(exceptions.ApiValueError): - AnyTypeAndFormat(float=invalid_value) + AnyTypeAndFormat(double=invalid_value) if __name__ == '__main__':