From 5385bcbad4e60e96592f14b4603701c83ee18a1c Mon Sep 17 00:00:00 2001 From: "github.com" <7936720+kdipippo@users.noreply.github.com> Date: Thu, 11 Apr 2024 13:26:10 -0400 Subject: [PATCH 1/2] Update Python mustache templates to fix _form_ typo and correct casing for class name when calling from_dict() --- .../src/main/resources/python-fastapi/model_doc.mustache | 2 +- .../src/main/resources/python-pydantic-v1/model_doc.mustache | 2 +- .../src/main/resources/python/model_doc.mustache | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/openapi-generator/src/main/resources/python-fastapi/model_doc.mustache b/modules/openapi-generator/src/main/resources/python-fastapi/model_doc.mustache index deb49f248848..1a745348960a 100644 --- a/modules/openapi-generator/src/main/resources/python-fastapi/model_doc.mustache +++ b/modules/openapi-generator/src/main/resources/python-fastapi/model_doc.mustache @@ -26,7 +26,7 @@ print {{classname}}.to_json() # convert the object into a dict {{#lambda.snakecase}}{{classname}}{{/lambda.snakecase}}_dict = {{#lambda.snakecase}}{{classname}}{{/lambda.snakecase}}_instance.to_dict() # create an instance of {{classname}} from a dict -{{#lambda.snakecase}}{{classname}}{{/lambda.snakecase}}_form_dict = {{#lambda.snakecase}}{{classname}}{{/lambda.snakecase}}.from_dict({{#lambda.snakecase}}{{classname}}{{/lambda.snakecase}}_dict) +{{#lambda.snakecase}}{{classname}}{{/lambda.snakecase}}_from_dict = {{classname}}.from_dict({{#lambda.snakecase}}{{classname}}{{/lambda.snakecase}}_dict) ``` {{/isEnum}} [[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/modules/openapi-generator/src/main/resources/python-pydantic-v1/model_doc.mustache b/modules/openapi-generator/src/main/resources/python-pydantic-v1/model_doc.mustache index dd54470b3be5..1f8d55555f73 100644 --- a/modules/openapi-generator/src/main/resources/python-pydantic-v1/model_doc.mustache +++ b/modules/openapi-generator/src/main/resources/python-pydantic-v1/model_doc.mustache @@ -25,7 +25,7 @@ print {{classname}}.to_json() # convert the object into a dict {{#lambda.snakecase}}{{classname}}{{/lambda.snakecase}}_dict = {{#lambda.snakecase}}{{classname}}{{/lambda.snakecase}}_instance.to_dict() # create an instance of {{classname}} from a dict -{{#lambda.snakecase}}{{classname}}{{/lambda.snakecase}}_form_dict = {{#lambda.snakecase}}{{classname}}{{/lambda.snakecase}}.from_dict({{#lambda.snakecase}}{{classname}}{{/lambda.snakecase}}_dict) +{{#lambda.snakecase}}{{classname}}{{/lambda.snakecase}}_from_dict = {{classname}}.from_dict({{#lambda.snakecase}}{{classname}}{{/lambda.snakecase}}_dict) ``` {{/isEnum}} [[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/modules/openapi-generator/src/main/resources/python/model_doc.mustache b/modules/openapi-generator/src/main/resources/python/model_doc.mustache index eff8f21e3e0b..6099ddf1954a 100644 --- a/modules/openapi-generator/src/main/resources/python/model_doc.mustache +++ b/modules/openapi-generator/src/main/resources/python/model_doc.mustache @@ -26,7 +26,7 @@ print({{classname}}.to_json()) # convert the object into a dict {{#lambda.snakecase}}{{classname}}{{/lambda.snakecase}}_dict = {{#lambda.snakecase}}{{classname}}{{/lambda.snakecase}}_instance.to_dict() # create an instance of {{classname}} from a dict -{{#lambda.snakecase}}{{classname}}{{/lambda.snakecase}}_form_dict = {{#lambda.snakecase}}{{classname}}{{/lambda.snakecase}}.from_dict({{#lambda.snakecase}}{{classname}}{{/lambda.snakecase}}_dict) +{{#lambda.snakecase}}{{classname}}{{/lambda.snakecase}}_from_dict = {{classname}}.from_dict({{#lambda.snakecase}}{{classname}}{{/lambda.snakecase}}_dict) ``` {{/isEnum}} [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) From 4bca3e12b7580b7fae21dff28b0403ab314aaf1b Mon Sep 17 00:00:00 2001 From: "github.com" <7936720+kdipippo@users.noreply.github.com> Date: Thu, 11 Apr 2024 13:36:07 -0400 Subject: [PATCH 2/2] Results of 'build the project' checklist step --- .../docs/Bird.md | 2 +- .../docs/Category.md | 2 +- .../docs/DataQuery.md | 2 +- .../docs/DefaultValue.md | 2 +- .../docs/NumberPropertiesOnly.md | 2 +- .../python-disallowAdditionalPropertiesIfNotPresent/docs/Pet.md | 2 +- .../docs/Query.md | 2 +- .../python-disallowAdditionalPropertiesIfNotPresent/docs/Tag.md | 2 +- .../docs/TestFormObjectMultipartRequestMarker.md | 2 +- ...StyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter.md | 2 +- ...tQueryStyleFormExplodeTrueArrayStringQueryObjectParameter.md | 2 +- samples/client/echo_api/python-pydantic-v1/docs/Bird.md | 2 +- samples/client/echo_api/python-pydantic-v1/docs/Category.md | 2 +- samples/client/echo_api/python-pydantic-v1/docs/DataQuery.md | 2 +- samples/client/echo_api/python-pydantic-v1/docs/DefaultValue.md | 2 +- .../echo_api/python-pydantic-v1/docs/NumberPropertiesOnly.md | 2 +- samples/client/echo_api/python-pydantic-v1/docs/Pet.md | 2 +- samples/client/echo_api/python-pydantic-v1/docs/Query.md | 2 +- samples/client/echo_api/python-pydantic-v1/docs/Tag.md | 2 +- .../docs/TestFormObjectMultipartRequestMarker.md | 2 +- ...StyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter.md | 2 +- ...tQueryStyleFormExplodeTrueArrayStringQueryObjectParameter.md | 2 +- samples/client/echo_api/python/docs/Bird.md | 2 +- samples/client/echo_api/python/docs/Category.md | 2 +- samples/client/echo_api/python/docs/DataQuery.md | 2 +- samples/client/echo_api/python/docs/DefaultValue.md | 2 +- samples/client/echo_api/python/docs/NumberPropertiesOnly.md | 2 +- samples/client/echo_api/python/docs/Pet.md | 2 +- samples/client/echo_api/python/docs/Query.md | 2 +- samples/client/echo_api/python/docs/Tag.md | 2 +- .../python/docs/TestFormObjectMultipartRequestMarker.md | 2 +- ...StyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter.md | 2 +- ...tQueryStyleFormExplodeTrueArrayStringQueryObjectParameter.md | 2 +- .../petstore/python-aiohttp/docs/AdditionalPropertiesAnyType.md | 2 +- .../petstore/python-aiohttp/docs/AdditionalPropertiesClass.md | 2 +- .../petstore/python-aiohttp/docs/AdditionalPropertiesObject.md | 2 +- .../docs/AdditionalPropertiesWithDescriptionOnly.md | 2 +- .../client/petstore/python-aiohttp/docs/AllOfSuperModel.md | 2 +- .../client/petstore/python-aiohttp/docs/AllOfWithSingleRef.md | 2 +- samples/openapi3/client/petstore/python-aiohttp/docs/Animal.md | 2 +- .../openapi3/client/petstore/python-aiohttp/docs/AnyOfColor.md | 2 +- .../openapi3/client/petstore/python-aiohttp/docs/AnyOfPig.md | 2 +- .../client/petstore/python-aiohttp/docs/ArrayOfArrayOfModel.md | 2 +- .../petstore/python-aiohttp/docs/ArrayOfArrayOfNumberOnly.md | 2 +- .../client/petstore/python-aiohttp/docs/ArrayOfNumberOnly.md | 2 +- .../openapi3/client/petstore/python-aiohttp/docs/ArrayTest.md | 2 +- .../openapi3/client/petstore/python-aiohttp/docs/BasquePig.md | 2 +- samples/openapi3/client/petstore/python-aiohttp/docs/Bathing.md | 2 +- .../client/petstore/python-aiohttp/docs/Capitalization.md | 2 +- samples/openapi3/client/petstore/python-aiohttp/docs/Cat.md | 2 +- .../openapi3/client/petstore/python-aiohttp/docs/Category.md | 2 +- .../client/petstore/python-aiohttp/docs/CircularAllOfRef.md | 2 +- .../petstore/python-aiohttp/docs/CircularReferenceModel.md | 2 +- .../openapi3/client/petstore/python-aiohttp/docs/ClassModel.md | 2 +- samples/openapi3/client/petstore/python-aiohttp/docs/Client.md | 2 +- samples/openapi3/client/petstore/python-aiohttp/docs/Color.md | 2 +- .../openapi3/client/petstore/python-aiohttp/docs/Creature.md | 2 +- .../client/petstore/python-aiohttp/docs/CreatureInfo.md | 2 +- .../openapi3/client/petstore/python-aiohttp/docs/DanishPig.md | 2 +- .../client/petstore/python-aiohttp/docs/DeprecatedObject.md | 2 +- .../petstore/python-aiohttp/docs/DiscriminatorAllOfSub.md | 2 +- .../petstore/python-aiohttp/docs/DiscriminatorAllOfSuper.md | 2 +- samples/openapi3/client/petstore/python-aiohttp/docs/Dog.md | 2 +- .../openapi3/client/petstore/python-aiohttp/docs/DummyModel.md | 2 +- .../openapi3/client/petstore/python-aiohttp/docs/EnumArrays.md | 2 +- .../openapi3/client/petstore/python-aiohttp/docs/EnumTest.md | 2 +- samples/openapi3/client/petstore/python-aiohttp/docs/Feeding.md | 2 +- samples/openapi3/client/petstore/python-aiohttp/docs/File.md | 2 +- .../client/petstore/python-aiohttp/docs/FileSchemaTestClass.md | 2 +- .../openapi3/client/petstore/python-aiohttp/docs/FirstRef.md | 2 +- samples/openapi3/client/petstore/python-aiohttp/docs/Foo.md | 2 +- .../petstore/python-aiohttp/docs/FooGetDefaultResponse.md | 2 +- .../openapi3/client/petstore/python-aiohttp/docs/FormatTest.md | 2 +- .../client/petstore/python-aiohttp/docs/HasOnlyReadOnly.md | 2 +- .../client/petstore/python-aiohttp/docs/HealthCheckResult.md | 2 +- .../petstore/python-aiohttp/docs/InnerDictWithProperty.md | 2 +- .../openapi3/client/petstore/python-aiohttp/docs/InputAllOf.md | 2 +- .../openapi3/client/petstore/python-aiohttp/docs/IntOrString.md | 2 +- .../openapi3/client/petstore/python-aiohttp/docs/ListClass.md | 2 +- .../client/petstore/python-aiohttp/docs/MapOfArrayOfModel.md | 2 +- samples/openapi3/client/petstore/python-aiohttp/docs/MapTest.md | 2 +- .../docs/MixedPropertiesAndAdditionalPropertiesClass.md | 2 +- .../client/petstore/python-aiohttp/docs/Model200Response.md | 2 +- .../client/petstore/python-aiohttp/docs/ModelApiResponse.md | 2 +- .../openapi3/client/petstore/python-aiohttp/docs/ModelField.md | 2 +- .../openapi3/client/petstore/python-aiohttp/docs/ModelReturn.md | 2 +- samples/openapi3/client/petstore/python-aiohttp/docs/Name.md | 2 +- .../client/petstore/python-aiohttp/docs/NullableClass.md | 2 +- .../client/petstore/python-aiohttp/docs/NullableProperty.md | 2 +- .../openapi3/client/petstore/python-aiohttp/docs/NumberOnly.md | 2 +- .../python-aiohttp/docs/ObjectToTestAdditionalProperties.md | 2 +- .../petstore/python-aiohttp/docs/ObjectWithDeprecatedFields.md | 2 +- .../client/petstore/python-aiohttp/docs/OneOfEnumString.md | 2 +- samples/openapi3/client/petstore/python-aiohttp/docs/Order.md | 2 +- .../client/petstore/python-aiohttp/docs/OuterComposite.md | 2 +- .../petstore/python-aiohttp/docs/OuterObjectWithEnumProperty.md | 2 +- samples/openapi3/client/petstore/python-aiohttp/docs/Parent.md | 2 +- .../petstore/python-aiohttp/docs/ParentWithOptionalDict.md | 2 +- samples/openapi3/client/petstore/python-aiohttp/docs/Pet.md | 2 +- samples/openapi3/client/petstore/python-aiohttp/docs/Pig.md | 2 +- .../client/petstore/python-aiohttp/docs/PoopCleaning.md | 2 +- .../openapi3/client/petstore/python-aiohttp/docs/PropertyMap.md | 2 +- .../petstore/python-aiohttp/docs/PropertyNameCollision.md | 2 +- .../client/petstore/python-aiohttp/docs/ReadOnlyFirst.md | 2 +- .../petstore/python-aiohttp/docs/SecondCircularAllOfRef.md | 2 +- .../openapi3/client/petstore/python-aiohttp/docs/SecondRef.md | 2 +- .../client/petstore/python-aiohttp/docs/SelfReferenceModel.md | 2 +- .../client/petstore/python-aiohttp/docs/SpecialModelName.md | 2 +- .../openapi3/client/petstore/python-aiohttp/docs/SpecialName.md | 2 +- samples/openapi3/client/petstore/python-aiohttp/docs/Tag.md | 2 +- samples/openapi3/client/petstore/python-aiohttp/docs/Task.md | 2 +- .../client/petstore/python-aiohttp/docs/TaskActivity.md | 2 +- .../docs/TestErrorResponsesWithModel400Response.md | 2 +- .../docs/TestErrorResponsesWithModel404Response.md | 2 +- .../docs/TestInlineFreeformAdditionalPropertiesRequest.md | 2 +- .../docs/TestObjectForMultipartRequestsRequestMarker.md | 2 +- samples/openapi3/client/petstore/python-aiohttp/docs/Tiger.md | 2 +- .../docs/UnnamedDictWithAdditionalModelListProperties.md | 2 +- .../docs/UnnamedDictWithAdditionalStringListProperties.md | 2 +- samples/openapi3/client/petstore/python-aiohttp/docs/User.md | 2 +- .../client/petstore/python-aiohttp/docs/WithNestedOneOf.md | 2 +- .../docs/AdditionalPropertiesAnyType.md | 2 +- .../docs/AdditionalPropertiesClass.md | 2 +- .../docs/AdditionalPropertiesObject.md | 2 +- .../docs/AdditionalPropertiesWithDescriptionOnly.md | 2 +- .../petstore/python-pydantic-v1-aiohttp/docs/AllOfSuperModel.md | 2 +- .../python-pydantic-v1-aiohttp/docs/AllOfWithSingleRef.md | 2 +- .../client/petstore/python-pydantic-v1-aiohttp/docs/Animal.md | 2 +- .../petstore/python-pydantic-v1-aiohttp/docs/AnyOfColor.md | 2 +- .../client/petstore/python-pydantic-v1-aiohttp/docs/AnyOfPig.md | 2 +- .../petstore/python-pydantic-v1-aiohttp/docs/ApiResponse.md | 2 +- .../python-pydantic-v1-aiohttp/docs/ArrayOfArrayOfModel.md | 2 +- .../python-pydantic-v1-aiohttp/docs/ArrayOfArrayOfNumberOnly.md | 2 +- .../python-pydantic-v1-aiohttp/docs/ArrayOfNumberOnly.md | 2 +- .../petstore/python-pydantic-v1-aiohttp/docs/ArrayTest.md | 2 +- .../petstore/python-pydantic-v1-aiohttp/docs/BasquePig.md | 2 +- .../client/petstore/python-pydantic-v1-aiohttp/docs/Bathing.md | 2 +- .../petstore/python-pydantic-v1-aiohttp/docs/Capitalization.md | 2 +- .../client/petstore/python-pydantic-v1-aiohttp/docs/Cat.md | 2 +- .../client/petstore/python-pydantic-v1-aiohttp/docs/Category.md | 2 +- .../python-pydantic-v1-aiohttp/docs/CircularAllOfRef.md | 2 +- .../python-pydantic-v1-aiohttp/docs/CircularReferenceModel.md | 2 +- .../petstore/python-pydantic-v1-aiohttp/docs/ClassModel.md | 2 +- .../client/petstore/python-pydantic-v1-aiohttp/docs/Client.md | 2 +- .../client/petstore/python-pydantic-v1-aiohttp/docs/Color.md | 2 +- .../client/petstore/python-pydantic-v1-aiohttp/docs/Creature.md | 2 +- .../petstore/python-pydantic-v1-aiohttp/docs/CreatureInfo.md | 2 +- .../petstore/python-pydantic-v1-aiohttp/docs/DanishPig.md | 2 +- .../python-pydantic-v1-aiohttp/docs/DeprecatedObject.md | 2 +- .../python-pydantic-v1-aiohttp/docs/DiscriminatorAllOfSub.md | 2 +- .../python-pydantic-v1-aiohttp/docs/DiscriminatorAllOfSuper.md | 2 +- .../client/petstore/python-pydantic-v1-aiohttp/docs/Dog.md | 2 +- .../petstore/python-pydantic-v1-aiohttp/docs/DummyModel.md | 2 +- .../petstore/python-pydantic-v1-aiohttp/docs/EnumArrays.md | 2 +- .../client/petstore/python-pydantic-v1-aiohttp/docs/EnumTest.md | 2 +- .../client/petstore/python-pydantic-v1-aiohttp/docs/Feeding.md | 2 +- .../client/petstore/python-pydantic-v1-aiohttp/docs/Field.md | 2 +- .../client/petstore/python-pydantic-v1-aiohttp/docs/File.md | 2 +- .../python-pydantic-v1-aiohttp/docs/FileSchemaTestClass.md | 2 +- .../client/petstore/python-pydantic-v1-aiohttp/docs/FirstRef.md | 2 +- .../client/petstore/python-pydantic-v1-aiohttp/docs/Foo.md | 2 +- .../python-pydantic-v1-aiohttp/docs/FooGetDefaultResponse.md | 2 +- .../petstore/python-pydantic-v1-aiohttp/docs/FormatTest.md | 2 +- .../petstore/python-pydantic-v1-aiohttp/docs/HasOnlyReadOnly.md | 2 +- .../python-pydantic-v1-aiohttp/docs/HealthCheckResult.md | 2 +- .../python-pydantic-v1-aiohttp/docs/InnerDictWithProperty.md | 2 +- .../petstore/python-pydantic-v1-aiohttp/docs/InputAllOf.md | 2 +- .../petstore/python-pydantic-v1-aiohttp/docs/IntOrString.md | 2 +- .../petstore/python-pydantic-v1-aiohttp/docs/ListClass.md | 2 +- .../python-pydantic-v1-aiohttp/docs/MapOfArrayOfModel.md | 2 +- .../client/petstore/python-pydantic-v1-aiohttp/docs/MapTest.md | 2 +- .../docs/MixedPropertiesAndAdditionalPropertiesClass.md | 2 +- .../python-pydantic-v1-aiohttp/docs/Model200Response.md | 2 +- .../petstore/python-pydantic-v1-aiohttp/docs/ModelReturn.md | 2 +- .../client/petstore/python-pydantic-v1-aiohttp/docs/Name.md | 2 +- .../petstore/python-pydantic-v1-aiohttp/docs/NullableClass.md | 2 +- .../python-pydantic-v1-aiohttp/docs/NullableProperty.md | 2 +- .../petstore/python-pydantic-v1-aiohttp/docs/NumberOnly.md | 2 +- .../docs/ObjectToTestAdditionalProperties.md | 2 +- .../docs/ObjectWithDeprecatedFields.md | 2 +- .../petstore/python-pydantic-v1-aiohttp/docs/OneOfEnumString.md | 2 +- .../client/petstore/python-pydantic-v1-aiohttp/docs/Order.md | 2 +- .../petstore/python-pydantic-v1-aiohttp/docs/OuterComposite.md | 2 +- .../docs/OuterObjectWithEnumProperty.md | 2 +- .../client/petstore/python-pydantic-v1-aiohttp/docs/Parent.md | 2 +- .../python-pydantic-v1-aiohttp/docs/ParentWithOptionalDict.md | 2 +- .../client/petstore/python-pydantic-v1-aiohttp/docs/Pet.md | 2 +- .../client/petstore/python-pydantic-v1-aiohttp/docs/Pig.md | 2 +- .../petstore/python-pydantic-v1-aiohttp/docs/PoopCleaning.md | 2 +- .../petstore/python-pydantic-v1-aiohttp/docs/PropertyMap.md | 2 +- .../python-pydantic-v1-aiohttp/docs/PropertyNameCollision.md | 2 +- .../petstore/python-pydantic-v1-aiohttp/docs/ReadOnlyFirst.md | 2 +- .../python-pydantic-v1-aiohttp/docs/SecondCircularAllOfRef.md | 2 +- .../petstore/python-pydantic-v1-aiohttp/docs/SecondRef.md | 2 +- .../python-pydantic-v1-aiohttp/docs/SelfReferenceModel.md | 2 +- .../python-pydantic-v1-aiohttp/docs/SpecialModelName.md | 2 +- .../petstore/python-pydantic-v1-aiohttp/docs/SpecialName.md | 2 +- .../client/petstore/python-pydantic-v1-aiohttp/docs/Tag.md | 2 +- .../client/petstore/python-pydantic-v1-aiohttp/docs/Task.md | 2 +- .../petstore/python-pydantic-v1-aiohttp/docs/TaskActivity.md | 2 +- .../docs/TestErrorResponsesWithModel400Response.md | 2 +- .../docs/TestErrorResponsesWithModel404Response.md | 2 +- .../docs/TestInlineFreeformAdditionalPropertiesRequest.md | 2 +- .../docs/TestObjectForMultipartRequestsRequestMarker.md | 2 +- .../client/petstore/python-pydantic-v1-aiohttp/docs/Tiger.md | 2 +- .../docs/UnnamedDictWithAdditionalModelListProperties.md | 2 +- .../docs/UnnamedDictWithAdditionalStringListProperties.md | 2 +- .../client/petstore/python-pydantic-v1-aiohttp/docs/User.md | 2 +- .../petstore/python-pydantic-v1-aiohttp/docs/WithNestedOneOf.md | 2 +- .../python-pydantic-v1/docs/AdditionalPropertiesAnyType.md | 2 +- .../python-pydantic-v1/docs/AdditionalPropertiesClass.md | 2 +- .../python-pydantic-v1/docs/AdditionalPropertiesObject.md | 2 +- .../docs/AdditionalPropertiesWithDescriptionOnly.md | 2 +- .../client/petstore/python-pydantic-v1/docs/AllOfSuperModel.md | 2 +- .../petstore/python-pydantic-v1/docs/AllOfWithSingleRef.md | 2 +- .../openapi3/client/petstore/python-pydantic-v1/docs/Animal.md | 2 +- .../client/petstore/python-pydantic-v1/docs/AnyOfColor.md | 2 +- .../client/petstore/python-pydantic-v1/docs/AnyOfPig.md | 2 +- .../client/petstore/python-pydantic-v1/docs/ApiResponse.md | 2 +- .../petstore/python-pydantic-v1/docs/ArrayOfArrayOfModel.md | 2 +- .../python-pydantic-v1/docs/ArrayOfArrayOfNumberOnly.md | 2 +- .../petstore/python-pydantic-v1/docs/ArrayOfNumberOnly.md | 2 +- .../client/petstore/python-pydantic-v1/docs/ArrayTest.md | 2 +- .../client/petstore/python-pydantic-v1/docs/BasquePig.md | 2 +- .../openapi3/client/petstore/python-pydantic-v1/docs/Bathing.md | 2 +- .../client/petstore/python-pydantic-v1/docs/Capitalization.md | 2 +- samples/openapi3/client/petstore/python-pydantic-v1/docs/Cat.md | 2 +- .../client/petstore/python-pydantic-v1/docs/Category.md | 2 +- .../client/petstore/python-pydantic-v1/docs/CircularAllOfRef.md | 2 +- .../petstore/python-pydantic-v1/docs/CircularReferenceModel.md | 2 +- .../client/petstore/python-pydantic-v1/docs/ClassModel.md | 2 +- .../openapi3/client/petstore/python-pydantic-v1/docs/Client.md | 2 +- .../openapi3/client/petstore/python-pydantic-v1/docs/Color.md | 2 +- .../client/petstore/python-pydantic-v1/docs/Creature.md | 2 +- .../client/petstore/python-pydantic-v1/docs/CreatureInfo.md | 2 +- .../client/petstore/python-pydantic-v1/docs/DanishPig.md | 2 +- .../client/petstore/python-pydantic-v1/docs/DeprecatedObject.md | 2 +- .../petstore/python-pydantic-v1/docs/DiscriminatorAllOfSub.md | 2 +- .../petstore/python-pydantic-v1/docs/DiscriminatorAllOfSuper.md | 2 +- samples/openapi3/client/petstore/python-pydantic-v1/docs/Dog.md | 2 +- .../client/petstore/python-pydantic-v1/docs/DummyModel.md | 2 +- .../client/petstore/python-pydantic-v1/docs/EnumArrays.md | 2 +- .../client/petstore/python-pydantic-v1/docs/EnumTest.md | 2 +- .../openapi3/client/petstore/python-pydantic-v1/docs/Feeding.md | 2 +- .../openapi3/client/petstore/python-pydantic-v1/docs/Field.md | 2 +- .../openapi3/client/petstore/python-pydantic-v1/docs/File.md | 2 +- .../petstore/python-pydantic-v1/docs/FileSchemaTestClass.md | 2 +- .../client/petstore/python-pydantic-v1/docs/FirstRef.md | 2 +- samples/openapi3/client/petstore/python-pydantic-v1/docs/Foo.md | 2 +- .../petstore/python-pydantic-v1/docs/FooGetDefaultResponse.md | 2 +- .../client/petstore/python-pydantic-v1/docs/FormatTest.md | 2 +- .../client/petstore/python-pydantic-v1/docs/HasOnlyReadOnly.md | 2 +- .../petstore/python-pydantic-v1/docs/HealthCheckResult.md | 2 +- .../petstore/python-pydantic-v1/docs/InnerDictWithProperty.md | 2 +- .../client/petstore/python-pydantic-v1/docs/InputAllOf.md | 2 +- .../client/petstore/python-pydantic-v1/docs/IntOrString.md | 2 +- .../client/petstore/python-pydantic-v1/docs/ListClass.md | 2 +- .../petstore/python-pydantic-v1/docs/MapOfArrayOfModel.md | 2 +- .../openapi3/client/petstore/python-pydantic-v1/docs/MapTest.md | 2 +- .../docs/MixedPropertiesAndAdditionalPropertiesClass.md | 2 +- .../client/petstore/python-pydantic-v1/docs/Model200Response.md | 2 +- .../client/petstore/python-pydantic-v1/docs/ModelReturn.md | 2 +- .../openapi3/client/petstore/python-pydantic-v1/docs/Name.md | 2 +- .../client/petstore/python-pydantic-v1/docs/NullableClass.md | 2 +- .../client/petstore/python-pydantic-v1/docs/NullableProperty.md | 2 +- .../client/petstore/python-pydantic-v1/docs/NumberOnly.md | 2 +- .../python-pydantic-v1/docs/ObjectToTestAdditionalProperties.md | 2 +- .../python-pydantic-v1/docs/ObjectWithDeprecatedFields.md | 2 +- .../client/petstore/python-pydantic-v1/docs/OneOfEnumString.md | 2 +- .../openapi3/client/petstore/python-pydantic-v1/docs/Order.md | 2 +- .../client/petstore/python-pydantic-v1/docs/OuterComposite.md | 2 +- .../python-pydantic-v1/docs/OuterObjectWithEnumProperty.md | 2 +- .../openapi3/client/petstore/python-pydantic-v1/docs/Parent.md | 2 +- .../petstore/python-pydantic-v1/docs/ParentWithOptionalDict.md | 2 +- samples/openapi3/client/petstore/python-pydantic-v1/docs/Pet.md | 2 +- samples/openapi3/client/petstore/python-pydantic-v1/docs/Pig.md | 2 +- .../client/petstore/python-pydantic-v1/docs/PoopCleaning.md | 2 +- .../client/petstore/python-pydantic-v1/docs/PropertyMap.md | 2 +- .../petstore/python-pydantic-v1/docs/PropertyNameCollision.md | 2 +- .../client/petstore/python-pydantic-v1/docs/ReadOnlyFirst.md | 2 +- .../petstore/python-pydantic-v1/docs/SecondCircularAllOfRef.md | 2 +- .../client/petstore/python-pydantic-v1/docs/SecondRef.md | 2 +- .../petstore/python-pydantic-v1/docs/SelfReferenceModel.md | 2 +- .../client/petstore/python-pydantic-v1/docs/SpecialModelName.md | 2 +- .../client/petstore/python-pydantic-v1/docs/SpecialName.md | 2 +- samples/openapi3/client/petstore/python-pydantic-v1/docs/Tag.md | 2 +- .../openapi3/client/petstore/python-pydantic-v1/docs/Task.md | 2 +- .../client/petstore/python-pydantic-v1/docs/TaskActivity.md | 2 +- .../docs/TestErrorResponsesWithModel400Response.md | 2 +- .../docs/TestErrorResponsesWithModel404Response.md | 2 +- .../docs/TestInlineFreeformAdditionalPropertiesRequest.md | 2 +- .../docs/TestObjectForMultipartRequestsRequestMarker.md | 2 +- .../openapi3/client/petstore/python-pydantic-v1/docs/Tiger.md | 2 +- .../docs/UnnamedDictWithAdditionalModelListProperties.md | 2 +- .../docs/UnnamedDictWithAdditionalStringListProperties.md | 2 +- .../openapi3/client/petstore/python-pydantic-v1/docs/User.md | 2 +- .../client/petstore/python-pydantic-v1/docs/WithNestedOneOf.md | 2 +- .../client/petstore/python/docs/AdditionalPropertiesAnyType.md | 2 +- .../client/petstore/python/docs/AdditionalPropertiesClass.md | 2 +- .../client/petstore/python/docs/AdditionalPropertiesObject.md | 2 +- .../python/docs/AdditionalPropertiesWithDescriptionOnly.md | 2 +- samples/openapi3/client/petstore/python/docs/AllOfSuperModel.md | 2 +- .../openapi3/client/petstore/python/docs/AllOfWithSingleRef.md | 2 +- samples/openapi3/client/petstore/python/docs/Animal.md | 2 +- samples/openapi3/client/petstore/python/docs/AnyOfColor.md | 2 +- samples/openapi3/client/petstore/python/docs/AnyOfPig.md | 2 +- .../openapi3/client/petstore/python/docs/ArrayOfArrayOfModel.md | 2 +- .../client/petstore/python/docs/ArrayOfArrayOfNumberOnly.md | 2 +- .../openapi3/client/petstore/python/docs/ArrayOfNumberOnly.md | 2 +- samples/openapi3/client/petstore/python/docs/ArrayTest.md | 2 +- samples/openapi3/client/petstore/python/docs/BasquePig.md | 2 +- samples/openapi3/client/petstore/python/docs/Bathing.md | 2 +- samples/openapi3/client/petstore/python/docs/Capitalization.md | 2 +- samples/openapi3/client/petstore/python/docs/Cat.md | 2 +- samples/openapi3/client/petstore/python/docs/Category.md | 2 +- .../openapi3/client/petstore/python/docs/CircularAllOfRef.md | 2 +- .../client/petstore/python/docs/CircularReferenceModel.md | 2 +- samples/openapi3/client/petstore/python/docs/ClassModel.md | 2 +- samples/openapi3/client/petstore/python/docs/Client.md | 2 +- samples/openapi3/client/petstore/python/docs/Color.md | 2 +- samples/openapi3/client/petstore/python/docs/Creature.md | 2 +- samples/openapi3/client/petstore/python/docs/CreatureInfo.md | 2 +- samples/openapi3/client/petstore/python/docs/DanishPig.md | 2 +- .../openapi3/client/petstore/python/docs/DeprecatedObject.md | 2 +- .../client/petstore/python/docs/DiscriminatorAllOfSub.md | 2 +- .../client/petstore/python/docs/DiscriminatorAllOfSuper.md | 2 +- samples/openapi3/client/petstore/python/docs/Dog.md | 2 +- samples/openapi3/client/petstore/python/docs/DummyModel.md | 2 +- samples/openapi3/client/petstore/python/docs/EnumArrays.md | 2 +- samples/openapi3/client/petstore/python/docs/EnumTest.md | 2 +- samples/openapi3/client/petstore/python/docs/Feeding.md | 2 +- samples/openapi3/client/petstore/python/docs/File.md | 2 +- .../openapi3/client/petstore/python/docs/FileSchemaTestClass.md | 2 +- samples/openapi3/client/petstore/python/docs/FirstRef.md | 2 +- samples/openapi3/client/petstore/python/docs/Foo.md | 2 +- .../client/petstore/python/docs/FooGetDefaultResponse.md | 2 +- samples/openapi3/client/petstore/python/docs/FormatTest.md | 2 +- samples/openapi3/client/petstore/python/docs/HasOnlyReadOnly.md | 2 +- .../openapi3/client/petstore/python/docs/HealthCheckResult.md | 2 +- .../client/petstore/python/docs/InnerDictWithProperty.md | 2 +- samples/openapi3/client/petstore/python/docs/InputAllOf.md | 2 +- samples/openapi3/client/petstore/python/docs/IntOrString.md | 2 +- samples/openapi3/client/petstore/python/docs/ListClass.md | 2 +- .../openapi3/client/petstore/python/docs/MapOfArrayOfModel.md | 2 +- samples/openapi3/client/petstore/python/docs/MapTest.md | 2 +- .../python/docs/MixedPropertiesAndAdditionalPropertiesClass.md | 2 +- .../openapi3/client/petstore/python/docs/Model200Response.md | 2 +- .../openapi3/client/petstore/python/docs/ModelApiResponse.md | 2 +- samples/openapi3/client/petstore/python/docs/ModelField.md | 2 +- samples/openapi3/client/petstore/python/docs/ModelReturn.md | 2 +- samples/openapi3/client/petstore/python/docs/Name.md | 2 +- samples/openapi3/client/petstore/python/docs/NullableClass.md | 2 +- .../openapi3/client/petstore/python/docs/NullableProperty.md | 2 +- samples/openapi3/client/petstore/python/docs/NumberOnly.md | 2 +- .../petstore/python/docs/ObjectToTestAdditionalProperties.md | 2 +- .../client/petstore/python/docs/ObjectWithDeprecatedFields.md | 2 +- samples/openapi3/client/petstore/python/docs/OneOfEnumString.md | 2 +- samples/openapi3/client/petstore/python/docs/Order.md | 2 +- samples/openapi3/client/petstore/python/docs/OuterComposite.md | 2 +- .../client/petstore/python/docs/OuterObjectWithEnumProperty.md | 2 +- samples/openapi3/client/petstore/python/docs/Parent.md | 2 +- .../client/petstore/python/docs/ParentWithOptionalDict.md | 2 +- samples/openapi3/client/petstore/python/docs/Pet.md | 2 +- samples/openapi3/client/petstore/python/docs/Pig.md | 2 +- samples/openapi3/client/petstore/python/docs/PoopCleaning.md | 2 +- samples/openapi3/client/petstore/python/docs/PropertyMap.md | 2 +- .../client/petstore/python/docs/PropertyNameCollision.md | 2 +- samples/openapi3/client/petstore/python/docs/ReadOnlyFirst.md | 2 +- .../client/petstore/python/docs/SecondCircularAllOfRef.md | 2 +- samples/openapi3/client/petstore/python/docs/SecondRef.md | 2 +- .../openapi3/client/petstore/python/docs/SelfReferenceModel.md | 2 +- .../openapi3/client/petstore/python/docs/SpecialModelName.md | 2 +- samples/openapi3/client/petstore/python/docs/SpecialName.md | 2 +- samples/openapi3/client/petstore/python/docs/Tag.md | 2 +- samples/openapi3/client/petstore/python/docs/Task.md | 2 +- samples/openapi3/client/petstore/python/docs/TaskActivity.md | 2 +- .../python/docs/TestErrorResponsesWithModel400Response.md | 2 +- .../python/docs/TestErrorResponsesWithModel404Response.md | 2 +- .../docs/TestInlineFreeformAdditionalPropertiesRequest.md | 2 +- .../python/docs/TestObjectForMultipartRequestsRequestMarker.md | 2 +- samples/openapi3/client/petstore/python/docs/Tiger.md | 2 +- .../python/docs/UnnamedDictWithAdditionalModelListProperties.md | 2 +- .../docs/UnnamedDictWithAdditionalStringListProperties.md | 2 +- samples/openapi3/client/petstore/python/docs/User.md | 2 +- samples/openapi3/client/petstore/python/docs/WithNestedOneOf.md | 2 +- 385 files changed, 385 insertions(+), 385 deletions(-) diff --git a/samples/client/echo_api/python-disallowAdditionalPropertiesIfNotPresent/docs/Bird.md b/samples/client/echo_api/python-disallowAdditionalPropertiesIfNotPresent/docs/Bird.md index 84abb75d24a0..e61d8458c978 100644 --- a/samples/client/echo_api/python-disallowAdditionalPropertiesIfNotPresent/docs/Bird.md +++ b/samples/client/echo_api/python-disallowAdditionalPropertiesIfNotPresent/docs/Bird.md @@ -23,7 +23,7 @@ print(Bird.to_json()) # convert the object into a dict bird_dict = bird_instance.to_dict() # create an instance of Bird from a dict -bird_form_dict = bird.from_dict(bird_dict) +bird_from_dict = Bird.from_dict(bird_dict) ``` [[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/client/echo_api/python-disallowAdditionalPropertiesIfNotPresent/docs/Category.md b/samples/client/echo_api/python-disallowAdditionalPropertiesIfNotPresent/docs/Category.md index 73b70c88dc56..9a807466f62a 100644 --- a/samples/client/echo_api/python-disallowAdditionalPropertiesIfNotPresent/docs/Category.md +++ b/samples/client/echo_api/python-disallowAdditionalPropertiesIfNotPresent/docs/Category.md @@ -23,7 +23,7 @@ print(Category.to_json()) # convert the object into a dict category_dict = category_instance.to_dict() # create an instance of Category from a dict -category_form_dict = category.from_dict(category_dict) +category_from_dict = Category.from_dict(category_dict) ``` [[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/client/echo_api/python-disallowAdditionalPropertiesIfNotPresent/docs/DataQuery.md b/samples/client/echo_api/python-disallowAdditionalPropertiesIfNotPresent/docs/DataQuery.md index 89fcc0409e56..7ea37bfd23e1 100644 --- a/samples/client/echo_api/python-disallowAdditionalPropertiesIfNotPresent/docs/DataQuery.md +++ b/samples/client/echo_api/python-disallowAdditionalPropertiesIfNotPresent/docs/DataQuery.md @@ -24,7 +24,7 @@ print(DataQuery.to_json()) # convert the object into a dict data_query_dict = data_query_instance.to_dict() # create an instance of DataQuery from a dict -data_query_form_dict = data_query.from_dict(data_query_dict) +data_query_from_dict = DataQuery.from_dict(data_query_dict) ``` [[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/client/echo_api/python-disallowAdditionalPropertiesIfNotPresent/docs/DefaultValue.md b/samples/client/echo_api/python-disallowAdditionalPropertiesIfNotPresent/docs/DefaultValue.md index 818d4ffc745f..7c1668c0d6c6 100644 --- a/samples/client/echo_api/python-disallowAdditionalPropertiesIfNotPresent/docs/DefaultValue.md +++ b/samples/client/echo_api/python-disallowAdditionalPropertiesIfNotPresent/docs/DefaultValue.md @@ -30,7 +30,7 @@ print(DefaultValue.to_json()) # convert the object into a dict default_value_dict = default_value_instance.to_dict() # create an instance of DefaultValue from a dict -default_value_form_dict = default_value.from_dict(default_value_dict) +default_value_from_dict = DefaultValue.from_dict(default_value_dict) ``` [[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/client/echo_api/python-disallowAdditionalPropertiesIfNotPresent/docs/NumberPropertiesOnly.md b/samples/client/echo_api/python-disallowAdditionalPropertiesIfNotPresent/docs/NumberPropertiesOnly.md index 43ed07a191cc..1f9cb5a1f634 100644 --- a/samples/client/echo_api/python-disallowAdditionalPropertiesIfNotPresent/docs/NumberPropertiesOnly.md +++ b/samples/client/echo_api/python-disallowAdditionalPropertiesIfNotPresent/docs/NumberPropertiesOnly.md @@ -24,7 +24,7 @@ print(NumberPropertiesOnly.to_json()) # convert the object into a dict number_properties_only_dict = number_properties_only_instance.to_dict() # create an instance of NumberPropertiesOnly from a dict -number_properties_only_form_dict = number_properties_only.from_dict(number_properties_only_dict) +number_properties_only_from_dict = NumberPropertiesOnly.from_dict(number_properties_only_dict) ``` [[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/client/echo_api/python-disallowAdditionalPropertiesIfNotPresent/docs/Pet.md b/samples/client/echo_api/python-disallowAdditionalPropertiesIfNotPresent/docs/Pet.md index be953cc4b966..99b4bf3ab010 100644 --- a/samples/client/echo_api/python-disallowAdditionalPropertiesIfNotPresent/docs/Pet.md +++ b/samples/client/echo_api/python-disallowAdditionalPropertiesIfNotPresent/docs/Pet.md @@ -27,7 +27,7 @@ print(Pet.to_json()) # convert the object into a dict pet_dict = pet_instance.to_dict() # create an instance of Pet from a dict -pet_form_dict = pet.from_dict(pet_dict) +pet_from_dict = Pet.from_dict(pet_dict) ``` [[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/client/echo_api/python-disallowAdditionalPropertiesIfNotPresent/docs/Query.md b/samples/client/echo_api/python-disallowAdditionalPropertiesIfNotPresent/docs/Query.md index 85298b7c39aa..d39693eb5b93 100644 --- a/samples/client/echo_api/python-disallowAdditionalPropertiesIfNotPresent/docs/Query.md +++ b/samples/client/echo_api/python-disallowAdditionalPropertiesIfNotPresent/docs/Query.md @@ -23,7 +23,7 @@ print(Query.to_json()) # convert the object into a dict query_dict = query_instance.to_dict() # create an instance of Query from a dict -query_form_dict = query.from_dict(query_dict) +query_from_dict = Query.from_dict(query_dict) ``` [[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/client/echo_api/python-disallowAdditionalPropertiesIfNotPresent/docs/Tag.md b/samples/client/echo_api/python-disallowAdditionalPropertiesIfNotPresent/docs/Tag.md index 4026198dc91f..21314992cf43 100644 --- a/samples/client/echo_api/python-disallowAdditionalPropertiesIfNotPresent/docs/Tag.md +++ b/samples/client/echo_api/python-disallowAdditionalPropertiesIfNotPresent/docs/Tag.md @@ -23,7 +23,7 @@ print(Tag.to_json()) # convert the object into a dict tag_dict = tag_instance.to_dict() # create an instance of Tag from a dict -tag_form_dict = tag.from_dict(tag_dict) +tag_from_dict = Tag.from_dict(tag_dict) ``` [[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/client/echo_api/python-disallowAdditionalPropertiesIfNotPresent/docs/TestFormObjectMultipartRequestMarker.md b/samples/client/echo_api/python-disallowAdditionalPropertiesIfNotPresent/docs/TestFormObjectMultipartRequestMarker.md index 254c3b6a045a..bf4046eb4648 100644 --- a/samples/client/echo_api/python-disallowAdditionalPropertiesIfNotPresent/docs/TestFormObjectMultipartRequestMarker.md +++ b/samples/client/echo_api/python-disallowAdditionalPropertiesIfNotPresent/docs/TestFormObjectMultipartRequestMarker.md @@ -22,7 +22,7 @@ print(TestFormObjectMultipartRequestMarker.to_json()) # convert the object into a dict test_form_object_multipart_request_marker_dict = test_form_object_multipart_request_marker_instance.to_dict() # create an instance of TestFormObjectMultipartRequestMarker from a dict -test_form_object_multipart_request_marker_form_dict = test_form_object_multipart_request_marker.from_dict(test_form_object_multipart_request_marker_dict) +test_form_object_multipart_request_marker_from_dict = TestFormObjectMultipartRequestMarker.from_dict(test_form_object_multipart_request_marker_dict) ``` [[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/client/echo_api/python-disallowAdditionalPropertiesIfNotPresent/docs/TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter.md b/samples/client/echo_api/python-disallowAdditionalPropertiesIfNotPresent/docs/TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter.md index 0814a8129e6c..96c36ca12e0f 100644 --- a/samples/client/echo_api/python-disallowAdditionalPropertiesIfNotPresent/docs/TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter.md +++ b/samples/client/echo_api/python-disallowAdditionalPropertiesIfNotPresent/docs/TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter.md @@ -25,7 +25,7 @@ print(TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter.to_json # convert the object into a dict test_query_style_deep_object_explode_true_object_all_of_query_object_parameter_dict = test_query_style_deep_object_explode_true_object_all_of_query_object_parameter_instance.to_dict() # create an instance of TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter from a dict -test_query_style_deep_object_explode_true_object_all_of_query_object_parameter_form_dict = test_query_style_deep_object_explode_true_object_all_of_query_object_parameter.from_dict(test_query_style_deep_object_explode_true_object_all_of_query_object_parameter_dict) +test_query_style_deep_object_explode_true_object_all_of_query_object_parameter_from_dict = TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter.from_dict(test_query_style_deep_object_explode_true_object_all_of_query_object_parameter_dict) ``` [[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/client/echo_api/python-disallowAdditionalPropertiesIfNotPresent/docs/TestQueryStyleFormExplodeTrueArrayStringQueryObjectParameter.md b/samples/client/echo_api/python-disallowAdditionalPropertiesIfNotPresent/docs/TestQueryStyleFormExplodeTrueArrayStringQueryObjectParameter.md index e80d8cfbe1b5..846a0941a09c 100644 --- a/samples/client/echo_api/python-disallowAdditionalPropertiesIfNotPresent/docs/TestQueryStyleFormExplodeTrueArrayStringQueryObjectParameter.md +++ b/samples/client/echo_api/python-disallowAdditionalPropertiesIfNotPresent/docs/TestQueryStyleFormExplodeTrueArrayStringQueryObjectParameter.md @@ -22,7 +22,7 @@ print(TestQueryStyleFormExplodeTrueArrayStringQueryObjectParameter.to_json()) # convert the object into a dict test_query_style_form_explode_true_array_string_query_object_parameter_dict = test_query_style_form_explode_true_array_string_query_object_parameter_instance.to_dict() # create an instance of TestQueryStyleFormExplodeTrueArrayStringQueryObjectParameter from a dict -test_query_style_form_explode_true_array_string_query_object_parameter_form_dict = test_query_style_form_explode_true_array_string_query_object_parameter.from_dict(test_query_style_form_explode_true_array_string_query_object_parameter_dict) +test_query_style_form_explode_true_array_string_query_object_parameter_from_dict = TestQueryStyleFormExplodeTrueArrayStringQueryObjectParameter.from_dict(test_query_style_form_explode_true_array_string_query_object_parameter_dict) ``` [[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/client/echo_api/python-pydantic-v1/docs/Bird.md b/samples/client/echo_api/python-pydantic-v1/docs/Bird.md index f1ad71c2150f..ae753e9c6714 100644 --- a/samples/client/echo_api/python-pydantic-v1/docs/Bird.md +++ b/samples/client/echo_api/python-pydantic-v1/docs/Bird.md @@ -22,7 +22,7 @@ print Bird.to_json() # convert the object into a dict bird_dict = bird_instance.to_dict() # create an instance of Bird from a dict -bird_form_dict = bird.from_dict(bird_dict) +bird_from_dict = Bird.from_dict(bird_dict) ``` [[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/client/echo_api/python-pydantic-v1/docs/Category.md b/samples/client/echo_api/python-pydantic-v1/docs/Category.md index bf23e3b044dd..860b6b6bcb14 100644 --- a/samples/client/echo_api/python-pydantic-v1/docs/Category.md +++ b/samples/client/echo_api/python-pydantic-v1/docs/Category.md @@ -22,7 +22,7 @@ print Category.to_json() # convert the object into a dict category_dict = category_instance.to_dict() # create an instance of Category from a dict -category_form_dict = category.from_dict(category_dict) +category_from_dict = Category.from_dict(category_dict) ``` [[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/client/echo_api/python-pydantic-v1/docs/DataQuery.md b/samples/client/echo_api/python-pydantic-v1/docs/DataQuery.md index bac43a6cc706..58c08242aa08 100644 --- a/samples/client/echo_api/python-pydantic-v1/docs/DataQuery.md +++ b/samples/client/echo_api/python-pydantic-v1/docs/DataQuery.md @@ -23,7 +23,7 @@ print DataQuery.to_json() # convert the object into a dict data_query_dict = data_query_instance.to_dict() # create an instance of DataQuery from a dict -data_query_form_dict = data_query.from_dict(data_query_dict) +data_query_from_dict = DataQuery.from_dict(data_query_dict) ``` [[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/client/echo_api/python-pydantic-v1/docs/DefaultValue.md b/samples/client/echo_api/python-pydantic-v1/docs/DefaultValue.md index fcdbebf0e0ad..b2a8cdfd6216 100644 --- a/samples/client/echo_api/python-pydantic-v1/docs/DefaultValue.md +++ b/samples/client/echo_api/python-pydantic-v1/docs/DefaultValue.md @@ -29,7 +29,7 @@ print DefaultValue.to_json() # convert the object into a dict default_value_dict = default_value_instance.to_dict() # create an instance of DefaultValue from a dict -default_value_form_dict = default_value.from_dict(default_value_dict) +default_value_from_dict = DefaultValue.from_dict(default_value_dict) ``` [[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/client/echo_api/python-pydantic-v1/docs/NumberPropertiesOnly.md b/samples/client/echo_api/python-pydantic-v1/docs/NumberPropertiesOnly.md index e35fad694e77..202d7f717356 100644 --- a/samples/client/echo_api/python-pydantic-v1/docs/NumberPropertiesOnly.md +++ b/samples/client/echo_api/python-pydantic-v1/docs/NumberPropertiesOnly.md @@ -23,7 +23,7 @@ print NumberPropertiesOnly.to_json() # convert the object into a dict number_properties_only_dict = number_properties_only_instance.to_dict() # create an instance of NumberPropertiesOnly from a dict -number_properties_only_form_dict = number_properties_only.from_dict(number_properties_only_dict) +number_properties_only_from_dict = NumberPropertiesOnly.from_dict(number_properties_only_dict) ``` [[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/client/echo_api/python-pydantic-v1/docs/Pet.md b/samples/client/echo_api/python-pydantic-v1/docs/Pet.md index bd578ba9a501..82135416b79d 100644 --- a/samples/client/echo_api/python-pydantic-v1/docs/Pet.md +++ b/samples/client/echo_api/python-pydantic-v1/docs/Pet.md @@ -26,7 +26,7 @@ print Pet.to_json() # convert the object into a dict pet_dict = pet_instance.to_dict() # create an instance of Pet from a dict -pet_form_dict = pet.from_dict(pet_dict) +pet_from_dict = Pet.from_dict(pet_dict) ``` [[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/client/echo_api/python-pydantic-v1/docs/Query.md b/samples/client/echo_api/python-pydantic-v1/docs/Query.md index 8a3462120895..ff05faf95865 100644 --- a/samples/client/echo_api/python-pydantic-v1/docs/Query.md +++ b/samples/client/echo_api/python-pydantic-v1/docs/Query.md @@ -22,7 +22,7 @@ print Query.to_json() # convert the object into a dict query_dict = query_instance.to_dict() # create an instance of Query from a dict -query_form_dict = query.from_dict(query_dict) +query_from_dict = Query.from_dict(query_dict) ``` [[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/client/echo_api/python-pydantic-v1/docs/Tag.md b/samples/client/echo_api/python-pydantic-v1/docs/Tag.md index febb268b1443..6789bb7aa1d4 100644 --- a/samples/client/echo_api/python-pydantic-v1/docs/Tag.md +++ b/samples/client/echo_api/python-pydantic-v1/docs/Tag.md @@ -22,7 +22,7 @@ print Tag.to_json() # convert the object into a dict tag_dict = tag_instance.to_dict() # create an instance of Tag from a dict -tag_form_dict = tag.from_dict(tag_dict) +tag_from_dict = Tag.from_dict(tag_dict) ``` [[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/client/echo_api/python-pydantic-v1/docs/TestFormObjectMultipartRequestMarker.md b/samples/client/echo_api/python-pydantic-v1/docs/TestFormObjectMultipartRequestMarker.md index bccc9a9405f7..b436e8945baf 100644 --- a/samples/client/echo_api/python-pydantic-v1/docs/TestFormObjectMultipartRequestMarker.md +++ b/samples/client/echo_api/python-pydantic-v1/docs/TestFormObjectMultipartRequestMarker.md @@ -21,7 +21,7 @@ print TestFormObjectMultipartRequestMarker.to_json() # convert the object into a dict test_form_object_multipart_request_marker_dict = test_form_object_multipart_request_marker_instance.to_dict() # create an instance of TestFormObjectMultipartRequestMarker from a dict -test_form_object_multipart_request_marker_form_dict = test_form_object_multipart_request_marker.from_dict(test_form_object_multipart_request_marker_dict) +test_form_object_multipart_request_marker_from_dict = TestFormObjectMultipartRequestMarker.from_dict(test_form_object_multipart_request_marker_dict) ``` [[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/client/echo_api/python-pydantic-v1/docs/TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter.md b/samples/client/echo_api/python-pydantic-v1/docs/TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter.md index 3b0a87b71c53..3ed6e704f6f1 100644 --- a/samples/client/echo_api/python-pydantic-v1/docs/TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter.md +++ b/samples/client/echo_api/python-pydantic-v1/docs/TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter.md @@ -24,7 +24,7 @@ print TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter.to_json # convert the object into a dict test_query_style_deep_object_explode_true_object_all_of_query_object_parameter_dict = test_query_style_deep_object_explode_true_object_all_of_query_object_parameter_instance.to_dict() # create an instance of TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter from a dict -test_query_style_deep_object_explode_true_object_all_of_query_object_parameter_form_dict = test_query_style_deep_object_explode_true_object_all_of_query_object_parameter.from_dict(test_query_style_deep_object_explode_true_object_all_of_query_object_parameter_dict) +test_query_style_deep_object_explode_true_object_all_of_query_object_parameter_from_dict = TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter.from_dict(test_query_style_deep_object_explode_true_object_all_of_query_object_parameter_dict) ``` [[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/client/echo_api/python-pydantic-v1/docs/TestQueryStyleFormExplodeTrueArrayStringQueryObjectParameter.md b/samples/client/echo_api/python-pydantic-v1/docs/TestQueryStyleFormExplodeTrueArrayStringQueryObjectParameter.md index c741b723f003..b087d3a3774f 100644 --- a/samples/client/echo_api/python-pydantic-v1/docs/TestQueryStyleFormExplodeTrueArrayStringQueryObjectParameter.md +++ b/samples/client/echo_api/python-pydantic-v1/docs/TestQueryStyleFormExplodeTrueArrayStringQueryObjectParameter.md @@ -21,7 +21,7 @@ print TestQueryStyleFormExplodeTrueArrayStringQueryObjectParameter.to_json() # convert the object into a dict test_query_style_form_explode_true_array_string_query_object_parameter_dict = test_query_style_form_explode_true_array_string_query_object_parameter_instance.to_dict() # create an instance of TestQueryStyleFormExplodeTrueArrayStringQueryObjectParameter from a dict -test_query_style_form_explode_true_array_string_query_object_parameter_form_dict = test_query_style_form_explode_true_array_string_query_object_parameter.from_dict(test_query_style_form_explode_true_array_string_query_object_parameter_dict) +test_query_style_form_explode_true_array_string_query_object_parameter_from_dict = TestQueryStyleFormExplodeTrueArrayStringQueryObjectParameter.from_dict(test_query_style_form_explode_true_array_string_query_object_parameter_dict) ``` [[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/client/echo_api/python/docs/Bird.md b/samples/client/echo_api/python/docs/Bird.md index 84abb75d24a0..e61d8458c978 100644 --- a/samples/client/echo_api/python/docs/Bird.md +++ b/samples/client/echo_api/python/docs/Bird.md @@ -23,7 +23,7 @@ print(Bird.to_json()) # convert the object into a dict bird_dict = bird_instance.to_dict() # create an instance of Bird from a dict -bird_form_dict = bird.from_dict(bird_dict) +bird_from_dict = Bird.from_dict(bird_dict) ``` [[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/client/echo_api/python/docs/Category.md b/samples/client/echo_api/python/docs/Category.md index 73b70c88dc56..9a807466f62a 100644 --- a/samples/client/echo_api/python/docs/Category.md +++ b/samples/client/echo_api/python/docs/Category.md @@ -23,7 +23,7 @@ print(Category.to_json()) # convert the object into a dict category_dict = category_instance.to_dict() # create an instance of Category from a dict -category_form_dict = category.from_dict(category_dict) +category_from_dict = Category.from_dict(category_dict) ``` [[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/client/echo_api/python/docs/DataQuery.md b/samples/client/echo_api/python/docs/DataQuery.md index 89fcc0409e56..7ea37bfd23e1 100644 --- a/samples/client/echo_api/python/docs/DataQuery.md +++ b/samples/client/echo_api/python/docs/DataQuery.md @@ -24,7 +24,7 @@ print(DataQuery.to_json()) # convert the object into a dict data_query_dict = data_query_instance.to_dict() # create an instance of DataQuery from a dict -data_query_form_dict = data_query.from_dict(data_query_dict) +data_query_from_dict = DataQuery.from_dict(data_query_dict) ``` [[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/client/echo_api/python/docs/DefaultValue.md b/samples/client/echo_api/python/docs/DefaultValue.md index 818d4ffc745f..7c1668c0d6c6 100644 --- a/samples/client/echo_api/python/docs/DefaultValue.md +++ b/samples/client/echo_api/python/docs/DefaultValue.md @@ -30,7 +30,7 @@ print(DefaultValue.to_json()) # convert the object into a dict default_value_dict = default_value_instance.to_dict() # create an instance of DefaultValue from a dict -default_value_form_dict = default_value.from_dict(default_value_dict) +default_value_from_dict = DefaultValue.from_dict(default_value_dict) ``` [[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/client/echo_api/python/docs/NumberPropertiesOnly.md b/samples/client/echo_api/python/docs/NumberPropertiesOnly.md index 43ed07a191cc..1f9cb5a1f634 100644 --- a/samples/client/echo_api/python/docs/NumberPropertiesOnly.md +++ b/samples/client/echo_api/python/docs/NumberPropertiesOnly.md @@ -24,7 +24,7 @@ print(NumberPropertiesOnly.to_json()) # convert the object into a dict number_properties_only_dict = number_properties_only_instance.to_dict() # create an instance of NumberPropertiesOnly from a dict -number_properties_only_form_dict = number_properties_only.from_dict(number_properties_only_dict) +number_properties_only_from_dict = NumberPropertiesOnly.from_dict(number_properties_only_dict) ``` [[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/client/echo_api/python/docs/Pet.md b/samples/client/echo_api/python/docs/Pet.md index be953cc4b966..99b4bf3ab010 100644 --- a/samples/client/echo_api/python/docs/Pet.md +++ b/samples/client/echo_api/python/docs/Pet.md @@ -27,7 +27,7 @@ print(Pet.to_json()) # convert the object into a dict pet_dict = pet_instance.to_dict() # create an instance of Pet from a dict -pet_form_dict = pet.from_dict(pet_dict) +pet_from_dict = Pet.from_dict(pet_dict) ``` [[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/client/echo_api/python/docs/Query.md b/samples/client/echo_api/python/docs/Query.md index 85298b7c39aa..d39693eb5b93 100644 --- a/samples/client/echo_api/python/docs/Query.md +++ b/samples/client/echo_api/python/docs/Query.md @@ -23,7 +23,7 @@ print(Query.to_json()) # convert the object into a dict query_dict = query_instance.to_dict() # create an instance of Query from a dict -query_form_dict = query.from_dict(query_dict) +query_from_dict = Query.from_dict(query_dict) ``` [[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/client/echo_api/python/docs/Tag.md b/samples/client/echo_api/python/docs/Tag.md index 4026198dc91f..21314992cf43 100644 --- a/samples/client/echo_api/python/docs/Tag.md +++ b/samples/client/echo_api/python/docs/Tag.md @@ -23,7 +23,7 @@ print(Tag.to_json()) # convert the object into a dict tag_dict = tag_instance.to_dict() # create an instance of Tag from a dict -tag_form_dict = tag.from_dict(tag_dict) +tag_from_dict = Tag.from_dict(tag_dict) ``` [[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/client/echo_api/python/docs/TestFormObjectMultipartRequestMarker.md b/samples/client/echo_api/python/docs/TestFormObjectMultipartRequestMarker.md index 254c3b6a045a..bf4046eb4648 100644 --- a/samples/client/echo_api/python/docs/TestFormObjectMultipartRequestMarker.md +++ b/samples/client/echo_api/python/docs/TestFormObjectMultipartRequestMarker.md @@ -22,7 +22,7 @@ print(TestFormObjectMultipartRequestMarker.to_json()) # convert the object into a dict test_form_object_multipart_request_marker_dict = test_form_object_multipart_request_marker_instance.to_dict() # create an instance of TestFormObjectMultipartRequestMarker from a dict -test_form_object_multipart_request_marker_form_dict = test_form_object_multipart_request_marker.from_dict(test_form_object_multipart_request_marker_dict) +test_form_object_multipart_request_marker_from_dict = TestFormObjectMultipartRequestMarker.from_dict(test_form_object_multipart_request_marker_dict) ``` [[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/client/echo_api/python/docs/TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter.md b/samples/client/echo_api/python/docs/TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter.md index 0814a8129e6c..96c36ca12e0f 100644 --- a/samples/client/echo_api/python/docs/TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter.md +++ b/samples/client/echo_api/python/docs/TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter.md @@ -25,7 +25,7 @@ print(TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter.to_json # convert the object into a dict test_query_style_deep_object_explode_true_object_all_of_query_object_parameter_dict = test_query_style_deep_object_explode_true_object_all_of_query_object_parameter_instance.to_dict() # create an instance of TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter from a dict -test_query_style_deep_object_explode_true_object_all_of_query_object_parameter_form_dict = test_query_style_deep_object_explode_true_object_all_of_query_object_parameter.from_dict(test_query_style_deep_object_explode_true_object_all_of_query_object_parameter_dict) +test_query_style_deep_object_explode_true_object_all_of_query_object_parameter_from_dict = TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter.from_dict(test_query_style_deep_object_explode_true_object_all_of_query_object_parameter_dict) ``` [[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/client/echo_api/python/docs/TestQueryStyleFormExplodeTrueArrayStringQueryObjectParameter.md b/samples/client/echo_api/python/docs/TestQueryStyleFormExplodeTrueArrayStringQueryObjectParameter.md index e80d8cfbe1b5..846a0941a09c 100644 --- a/samples/client/echo_api/python/docs/TestQueryStyleFormExplodeTrueArrayStringQueryObjectParameter.md +++ b/samples/client/echo_api/python/docs/TestQueryStyleFormExplodeTrueArrayStringQueryObjectParameter.md @@ -22,7 +22,7 @@ print(TestQueryStyleFormExplodeTrueArrayStringQueryObjectParameter.to_json()) # convert the object into a dict test_query_style_form_explode_true_array_string_query_object_parameter_dict = test_query_style_form_explode_true_array_string_query_object_parameter_instance.to_dict() # create an instance of TestQueryStyleFormExplodeTrueArrayStringQueryObjectParameter from a dict -test_query_style_form_explode_true_array_string_query_object_parameter_form_dict = test_query_style_form_explode_true_array_string_query_object_parameter.from_dict(test_query_style_form_explode_true_array_string_query_object_parameter_dict) +test_query_style_form_explode_true_array_string_query_object_parameter_from_dict = TestQueryStyleFormExplodeTrueArrayStringQueryObjectParameter.from_dict(test_query_style_form_explode_true_array_string_query_object_parameter_dict) ``` [[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-aiohttp/docs/AdditionalPropertiesAnyType.md b/samples/openapi3/client/petstore/python-aiohttp/docs/AdditionalPropertiesAnyType.md index a47fbd732607..314cba3a614c 100644 --- a/samples/openapi3/client/petstore/python-aiohttp/docs/AdditionalPropertiesAnyType.md +++ b/samples/openapi3/client/petstore/python-aiohttp/docs/AdditionalPropertiesAnyType.md @@ -22,7 +22,7 @@ print(AdditionalPropertiesAnyType.to_json()) # convert the object into a dict additional_properties_any_type_dict = additional_properties_any_type_instance.to_dict() # create an instance of AdditionalPropertiesAnyType from a dict -additional_properties_any_type_form_dict = additional_properties_any_type.from_dict(additional_properties_any_type_dict) +additional_properties_any_type_from_dict = AdditionalPropertiesAnyType.from_dict(additional_properties_any_type_dict) ``` [[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-aiohttp/docs/AdditionalPropertiesClass.md b/samples/openapi3/client/petstore/python-aiohttp/docs/AdditionalPropertiesClass.md index a19d1b338e68..8d4c08707f55 100644 --- a/samples/openapi3/client/petstore/python-aiohttp/docs/AdditionalPropertiesClass.md +++ b/samples/openapi3/client/petstore/python-aiohttp/docs/AdditionalPropertiesClass.md @@ -23,7 +23,7 @@ print(AdditionalPropertiesClass.to_json()) # convert the object into a dict additional_properties_class_dict = additional_properties_class_instance.to_dict() # create an instance of AdditionalPropertiesClass from a dict -additional_properties_class_form_dict = additional_properties_class.from_dict(additional_properties_class_dict) +additional_properties_class_from_dict = AdditionalPropertiesClass.from_dict(additional_properties_class_dict) ``` [[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-aiohttp/docs/AdditionalPropertiesObject.md b/samples/openapi3/client/petstore/python-aiohttp/docs/AdditionalPropertiesObject.md index f9c516ee9b6b..d647ec64896f 100644 --- a/samples/openapi3/client/petstore/python-aiohttp/docs/AdditionalPropertiesObject.md +++ b/samples/openapi3/client/petstore/python-aiohttp/docs/AdditionalPropertiesObject.md @@ -22,7 +22,7 @@ print(AdditionalPropertiesObject.to_json()) # convert the object into a dict additional_properties_object_dict = additional_properties_object_instance.to_dict() # create an instance of AdditionalPropertiesObject from a dict -additional_properties_object_form_dict = additional_properties_object.from_dict(additional_properties_object_dict) +additional_properties_object_from_dict = AdditionalPropertiesObject.from_dict(additional_properties_object_dict) ``` [[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-aiohttp/docs/AdditionalPropertiesWithDescriptionOnly.md b/samples/openapi3/client/petstore/python-aiohttp/docs/AdditionalPropertiesWithDescriptionOnly.md index 3dbb9c6f3e9b..061f5524872b 100644 --- a/samples/openapi3/client/petstore/python-aiohttp/docs/AdditionalPropertiesWithDescriptionOnly.md +++ b/samples/openapi3/client/petstore/python-aiohttp/docs/AdditionalPropertiesWithDescriptionOnly.md @@ -22,7 +22,7 @@ print(AdditionalPropertiesWithDescriptionOnly.to_json()) # convert the object into a dict additional_properties_with_description_only_dict = additional_properties_with_description_only_instance.to_dict() # create an instance of AdditionalPropertiesWithDescriptionOnly from a dict -additional_properties_with_description_only_form_dict = additional_properties_with_description_only.from_dict(additional_properties_with_description_only_dict) +additional_properties_with_description_only_from_dict = AdditionalPropertiesWithDescriptionOnly.from_dict(additional_properties_with_description_only_dict) ``` [[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-aiohttp/docs/AllOfSuperModel.md b/samples/openapi3/client/petstore/python-aiohttp/docs/AllOfSuperModel.md index 1262bd9dc51f..421a1527f1ef 100644 --- a/samples/openapi3/client/petstore/python-aiohttp/docs/AllOfSuperModel.md +++ b/samples/openapi3/client/petstore/python-aiohttp/docs/AllOfSuperModel.md @@ -22,7 +22,7 @@ print(AllOfSuperModel.to_json()) # convert the object into a dict all_of_super_model_dict = all_of_super_model_instance.to_dict() # create an instance of AllOfSuperModel from a dict -all_of_super_model_form_dict = all_of_super_model.from_dict(all_of_super_model_dict) +all_of_super_model_from_dict = AllOfSuperModel.from_dict(all_of_super_model_dict) ``` [[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-aiohttp/docs/AllOfWithSingleRef.md b/samples/openapi3/client/petstore/python-aiohttp/docs/AllOfWithSingleRef.md index 6c2860c02f5f..203a4b5da3d5 100644 --- a/samples/openapi3/client/petstore/python-aiohttp/docs/AllOfWithSingleRef.md +++ b/samples/openapi3/client/petstore/python-aiohttp/docs/AllOfWithSingleRef.md @@ -23,7 +23,7 @@ print(AllOfWithSingleRef.to_json()) # convert the object into a dict all_of_with_single_ref_dict = all_of_with_single_ref_instance.to_dict() # create an instance of AllOfWithSingleRef from a dict -all_of_with_single_ref_form_dict = all_of_with_single_ref.from_dict(all_of_with_single_ref_dict) +all_of_with_single_ref_from_dict = AllOfWithSingleRef.from_dict(all_of_with_single_ref_dict) ``` [[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-aiohttp/docs/Animal.md b/samples/openapi3/client/petstore/python-aiohttp/docs/Animal.md index 4c693f09e5ff..381d27b66e44 100644 --- a/samples/openapi3/client/petstore/python-aiohttp/docs/Animal.md +++ b/samples/openapi3/client/petstore/python-aiohttp/docs/Animal.md @@ -23,7 +23,7 @@ print(Animal.to_json()) # convert the object into a dict animal_dict = animal_instance.to_dict() # create an instance of Animal from a dict -animal_form_dict = animal.from_dict(animal_dict) +animal_from_dict = Animal.from_dict(animal_dict) ``` [[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-aiohttp/docs/AnyOfColor.md b/samples/openapi3/client/petstore/python-aiohttp/docs/AnyOfColor.md index ccaf51ce9fe0..6ed75dd7b48a 100644 --- a/samples/openapi3/client/petstore/python-aiohttp/docs/AnyOfColor.md +++ b/samples/openapi3/client/petstore/python-aiohttp/docs/AnyOfColor.md @@ -22,7 +22,7 @@ print(AnyOfColor.to_json()) # convert the object into a dict any_of_color_dict = any_of_color_instance.to_dict() # create an instance of AnyOfColor from a dict -any_of_color_form_dict = any_of_color.from_dict(any_of_color_dict) +any_of_color_from_dict = AnyOfColor.from_dict(any_of_color_dict) ``` [[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-aiohttp/docs/AnyOfPig.md b/samples/openapi3/client/petstore/python-aiohttp/docs/AnyOfPig.md index 52109d6670cd..9367e2261898 100644 --- a/samples/openapi3/client/petstore/python-aiohttp/docs/AnyOfPig.md +++ b/samples/openapi3/client/petstore/python-aiohttp/docs/AnyOfPig.md @@ -24,7 +24,7 @@ print(AnyOfPig.to_json()) # convert the object into a dict any_of_pig_dict = any_of_pig_instance.to_dict() # create an instance of AnyOfPig from a dict -any_of_pig_form_dict = any_of_pig.from_dict(any_of_pig_dict) +any_of_pig_from_dict = AnyOfPig.from_dict(any_of_pig_dict) ``` [[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-aiohttp/docs/ArrayOfArrayOfModel.md b/samples/openapi3/client/petstore/python-aiohttp/docs/ArrayOfArrayOfModel.md index 1cd9c367b262..f866863d53f9 100644 --- a/samples/openapi3/client/petstore/python-aiohttp/docs/ArrayOfArrayOfModel.md +++ b/samples/openapi3/client/petstore/python-aiohttp/docs/ArrayOfArrayOfModel.md @@ -22,7 +22,7 @@ print(ArrayOfArrayOfModel.to_json()) # convert the object into a dict array_of_array_of_model_dict = array_of_array_of_model_instance.to_dict() # create an instance of ArrayOfArrayOfModel from a dict -array_of_array_of_model_form_dict = array_of_array_of_model.from_dict(array_of_array_of_model_dict) +array_of_array_of_model_from_dict = ArrayOfArrayOfModel.from_dict(array_of_array_of_model_dict) ``` [[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-aiohttp/docs/ArrayOfArrayOfNumberOnly.md b/samples/openapi3/client/petstore/python-aiohttp/docs/ArrayOfArrayOfNumberOnly.md index 3ad18d346f6b..32bd2dfbf1e2 100644 --- a/samples/openapi3/client/petstore/python-aiohttp/docs/ArrayOfArrayOfNumberOnly.md +++ b/samples/openapi3/client/petstore/python-aiohttp/docs/ArrayOfArrayOfNumberOnly.md @@ -22,7 +22,7 @@ print(ArrayOfArrayOfNumberOnly.to_json()) # convert the object into a dict array_of_array_of_number_only_dict = array_of_array_of_number_only_instance.to_dict() # create an instance of ArrayOfArrayOfNumberOnly from a dict -array_of_array_of_number_only_form_dict = array_of_array_of_number_only.from_dict(array_of_array_of_number_only_dict) +array_of_array_of_number_only_from_dict = ArrayOfArrayOfNumberOnly.from_dict(array_of_array_of_number_only_dict) ``` [[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-aiohttp/docs/ArrayOfNumberOnly.md b/samples/openapi3/client/petstore/python-aiohttp/docs/ArrayOfNumberOnly.md index a606e3a54bba..b814d7594942 100644 --- a/samples/openapi3/client/petstore/python-aiohttp/docs/ArrayOfNumberOnly.md +++ b/samples/openapi3/client/petstore/python-aiohttp/docs/ArrayOfNumberOnly.md @@ -22,7 +22,7 @@ print(ArrayOfNumberOnly.to_json()) # convert the object into a dict array_of_number_only_dict = array_of_number_only_instance.to_dict() # create an instance of ArrayOfNumberOnly from a dict -array_of_number_only_form_dict = array_of_number_only.from_dict(array_of_number_only_dict) +array_of_number_only_from_dict = ArrayOfNumberOnly.from_dict(array_of_number_only_dict) ``` [[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-aiohttp/docs/ArrayTest.md b/samples/openapi3/client/petstore/python-aiohttp/docs/ArrayTest.md index a673e8a2893e..ed871fae662d 100644 --- a/samples/openapi3/client/petstore/python-aiohttp/docs/ArrayTest.md +++ b/samples/openapi3/client/petstore/python-aiohttp/docs/ArrayTest.md @@ -25,7 +25,7 @@ print(ArrayTest.to_json()) # convert the object into a dict array_test_dict = array_test_instance.to_dict() # create an instance of ArrayTest from a dict -array_test_form_dict = array_test.from_dict(array_test_dict) +array_test_from_dict = ArrayTest.from_dict(array_test_dict) ``` [[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-aiohttp/docs/BasquePig.md b/samples/openapi3/client/petstore/python-aiohttp/docs/BasquePig.md index aa3b3d28b3eb..ee28d628722f 100644 --- a/samples/openapi3/client/petstore/python-aiohttp/docs/BasquePig.md +++ b/samples/openapi3/client/petstore/python-aiohttp/docs/BasquePig.md @@ -23,7 +23,7 @@ print(BasquePig.to_json()) # convert the object into a dict basque_pig_dict = basque_pig_instance.to_dict() # create an instance of BasquePig from a dict -basque_pig_form_dict = basque_pig.from_dict(basque_pig_dict) +basque_pig_from_dict = BasquePig.from_dict(basque_pig_dict) ``` [[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-aiohttp/docs/Bathing.md b/samples/openapi3/client/petstore/python-aiohttp/docs/Bathing.md index bb8d40ac8ab5..6ad70e2f67cc 100644 --- a/samples/openapi3/client/petstore/python-aiohttp/docs/Bathing.md +++ b/samples/openapi3/client/petstore/python-aiohttp/docs/Bathing.md @@ -24,7 +24,7 @@ print(Bathing.to_json()) # convert the object into a dict bathing_dict = bathing_instance.to_dict() # create an instance of Bathing from a dict -bathing_form_dict = bathing.from_dict(bathing_dict) +bathing_from_dict = Bathing.from_dict(bathing_dict) ``` [[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-aiohttp/docs/Capitalization.md b/samples/openapi3/client/petstore/python-aiohttp/docs/Capitalization.md index 7f1a36413d56..6f564a8ed8c9 100644 --- a/samples/openapi3/client/petstore/python-aiohttp/docs/Capitalization.md +++ b/samples/openapi3/client/petstore/python-aiohttp/docs/Capitalization.md @@ -27,7 +27,7 @@ print(Capitalization.to_json()) # convert the object into a dict capitalization_dict = capitalization_instance.to_dict() # create an instance of Capitalization from a dict -capitalization_form_dict = capitalization.from_dict(capitalization_dict) +capitalization_from_dict = Capitalization.from_dict(capitalization_dict) ``` [[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-aiohttp/docs/Cat.md b/samples/openapi3/client/petstore/python-aiohttp/docs/Cat.md index a2d4b88805f6..d0e39efdb33e 100644 --- a/samples/openapi3/client/petstore/python-aiohttp/docs/Cat.md +++ b/samples/openapi3/client/petstore/python-aiohttp/docs/Cat.md @@ -22,7 +22,7 @@ print(Cat.to_json()) # convert the object into a dict cat_dict = cat_instance.to_dict() # create an instance of Cat from a dict -cat_form_dict = cat.from_dict(cat_dict) +cat_from_dict = Cat.from_dict(cat_dict) ``` [[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-aiohttp/docs/Category.md b/samples/openapi3/client/petstore/python-aiohttp/docs/Category.md index 24160009af4b..dbde14b7344c 100644 --- a/samples/openapi3/client/petstore/python-aiohttp/docs/Category.md +++ b/samples/openapi3/client/petstore/python-aiohttp/docs/Category.md @@ -23,7 +23,7 @@ print(Category.to_json()) # convert the object into a dict category_dict = category_instance.to_dict() # create an instance of Category from a dict -category_form_dict = category.from_dict(category_dict) +category_from_dict = Category.from_dict(category_dict) ``` [[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-aiohttp/docs/CircularAllOfRef.md b/samples/openapi3/client/petstore/python-aiohttp/docs/CircularAllOfRef.md index a00be37d4d19..65b171177e58 100644 --- a/samples/openapi3/client/petstore/python-aiohttp/docs/CircularAllOfRef.md +++ b/samples/openapi3/client/petstore/python-aiohttp/docs/CircularAllOfRef.md @@ -23,7 +23,7 @@ print(CircularAllOfRef.to_json()) # convert the object into a dict circular_all_of_ref_dict = circular_all_of_ref_instance.to_dict() # create an instance of CircularAllOfRef from a dict -circular_all_of_ref_form_dict = circular_all_of_ref.from_dict(circular_all_of_ref_dict) +circular_all_of_ref_from_dict = CircularAllOfRef.from_dict(circular_all_of_ref_dict) ``` [[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-aiohttp/docs/CircularReferenceModel.md b/samples/openapi3/client/petstore/python-aiohttp/docs/CircularReferenceModel.md index 6695d4a7613b..87216f7273ab 100644 --- a/samples/openapi3/client/petstore/python-aiohttp/docs/CircularReferenceModel.md +++ b/samples/openapi3/client/petstore/python-aiohttp/docs/CircularReferenceModel.md @@ -23,7 +23,7 @@ print(CircularReferenceModel.to_json()) # convert the object into a dict circular_reference_model_dict = circular_reference_model_instance.to_dict() # create an instance of CircularReferenceModel from a dict -circular_reference_model_form_dict = circular_reference_model.from_dict(circular_reference_model_dict) +circular_reference_model_from_dict = CircularReferenceModel.from_dict(circular_reference_model_dict) ``` [[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-aiohttp/docs/ClassModel.md b/samples/openapi3/client/petstore/python-aiohttp/docs/ClassModel.md index 25351614fa43..ea76a5c157bf 100644 --- a/samples/openapi3/client/petstore/python-aiohttp/docs/ClassModel.md +++ b/samples/openapi3/client/petstore/python-aiohttp/docs/ClassModel.md @@ -23,7 +23,7 @@ print(ClassModel.to_json()) # convert the object into a dict class_model_dict = class_model_instance.to_dict() # create an instance of ClassModel from a dict -class_model_form_dict = class_model.from_dict(class_model_dict) +class_model_from_dict = ClassModel.from_dict(class_model_dict) ``` [[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-aiohttp/docs/Client.md b/samples/openapi3/client/petstore/python-aiohttp/docs/Client.md index b601737b02f1..22321c189150 100644 --- a/samples/openapi3/client/petstore/python-aiohttp/docs/Client.md +++ b/samples/openapi3/client/petstore/python-aiohttp/docs/Client.md @@ -22,7 +22,7 @@ print(Client.to_json()) # convert the object into a dict client_dict = client_instance.to_dict() # create an instance of Client from a dict -client_form_dict = client.from_dict(client_dict) +client_from_dict = Client.from_dict(client_dict) ``` [[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-aiohttp/docs/Color.md b/samples/openapi3/client/petstore/python-aiohttp/docs/Color.md index 9bd63f91d7c1..9ac3ab2e91f4 100644 --- a/samples/openapi3/client/petstore/python-aiohttp/docs/Color.md +++ b/samples/openapi3/client/petstore/python-aiohttp/docs/Color.md @@ -22,7 +22,7 @@ print(Color.to_json()) # convert the object into a dict color_dict = color_instance.to_dict() # create an instance of Color from a dict -color_form_dict = color.from_dict(color_dict) +color_from_dict = Color.from_dict(color_dict) ``` [[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-aiohttp/docs/Creature.md b/samples/openapi3/client/petstore/python-aiohttp/docs/Creature.md index fa1ec65401bd..a4710214c198 100644 --- a/samples/openapi3/client/petstore/python-aiohttp/docs/Creature.md +++ b/samples/openapi3/client/petstore/python-aiohttp/docs/Creature.md @@ -23,7 +23,7 @@ print(Creature.to_json()) # convert the object into a dict creature_dict = creature_instance.to_dict() # create an instance of Creature from a dict -creature_form_dict = creature.from_dict(creature_dict) +creature_from_dict = Creature.from_dict(creature_dict) ``` [[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-aiohttp/docs/CreatureInfo.md b/samples/openapi3/client/petstore/python-aiohttp/docs/CreatureInfo.md index fe4ab81a8071..db3b82bb9ff5 100644 --- a/samples/openapi3/client/petstore/python-aiohttp/docs/CreatureInfo.md +++ b/samples/openapi3/client/petstore/python-aiohttp/docs/CreatureInfo.md @@ -22,7 +22,7 @@ print(CreatureInfo.to_json()) # convert the object into a dict creature_info_dict = creature_info_instance.to_dict() # create an instance of CreatureInfo from a dict -creature_info_form_dict = creature_info.from_dict(creature_info_dict) +creature_info_from_dict = CreatureInfo.from_dict(creature_info_dict) ``` [[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-aiohttp/docs/DanishPig.md b/samples/openapi3/client/petstore/python-aiohttp/docs/DanishPig.md index 6aef777ffe06..16941388832a 100644 --- a/samples/openapi3/client/petstore/python-aiohttp/docs/DanishPig.md +++ b/samples/openapi3/client/petstore/python-aiohttp/docs/DanishPig.md @@ -23,7 +23,7 @@ print(DanishPig.to_json()) # convert the object into a dict danish_pig_dict = danish_pig_instance.to_dict() # create an instance of DanishPig from a dict -danish_pig_form_dict = danish_pig.from_dict(danish_pig_dict) +danish_pig_from_dict = DanishPig.from_dict(danish_pig_dict) ``` [[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-aiohttp/docs/DeprecatedObject.md b/samples/openapi3/client/petstore/python-aiohttp/docs/DeprecatedObject.md index 5de685050ffc..6b362f379ba4 100644 --- a/samples/openapi3/client/petstore/python-aiohttp/docs/DeprecatedObject.md +++ b/samples/openapi3/client/petstore/python-aiohttp/docs/DeprecatedObject.md @@ -22,7 +22,7 @@ print(DeprecatedObject.to_json()) # convert the object into a dict deprecated_object_dict = deprecated_object_instance.to_dict() # create an instance of DeprecatedObject from a dict -deprecated_object_form_dict = deprecated_object.from_dict(deprecated_object_dict) +deprecated_object_from_dict = DeprecatedObject.from_dict(deprecated_object_dict) ``` [[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-aiohttp/docs/DiscriminatorAllOfSub.md b/samples/openapi3/client/petstore/python-aiohttp/docs/DiscriminatorAllOfSub.md index e7cd36010f5b..f72b6e8e68ca 100644 --- a/samples/openapi3/client/petstore/python-aiohttp/docs/DiscriminatorAllOfSub.md +++ b/samples/openapi3/client/petstore/python-aiohttp/docs/DiscriminatorAllOfSub.md @@ -21,7 +21,7 @@ print(DiscriminatorAllOfSub.to_json()) # convert the object into a dict discriminator_all_of_sub_dict = discriminator_all_of_sub_instance.to_dict() # create an instance of DiscriminatorAllOfSub from a dict -discriminator_all_of_sub_form_dict = discriminator_all_of_sub.from_dict(discriminator_all_of_sub_dict) +discriminator_all_of_sub_from_dict = DiscriminatorAllOfSub.from_dict(discriminator_all_of_sub_dict) ``` [[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-aiohttp/docs/DiscriminatorAllOfSuper.md b/samples/openapi3/client/petstore/python-aiohttp/docs/DiscriminatorAllOfSuper.md index 4859a9a6d40b..477c05bfc446 100644 --- a/samples/openapi3/client/petstore/python-aiohttp/docs/DiscriminatorAllOfSuper.md +++ b/samples/openapi3/client/petstore/python-aiohttp/docs/DiscriminatorAllOfSuper.md @@ -22,7 +22,7 @@ print(DiscriminatorAllOfSuper.to_json()) # convert the object into a dict discriminator_all_of_super_dict = discriminator_all_of_super_instance.to_dict() # create an instance of DiscriminatorAllOfSuper from a dict -discriminator_all_of_super_form_dict = discriminator_all_of_super.from_dict(discriminator_all_of_super_dict) +discriminator_all_of_super_from_dict = DiscriminatorAllOfSuper.from_dict(discriminator_all_of_super_dict) ``` [[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-aiohttp/docs/Dog.md b/samples/openapi3/client/petstore/python-aiohttp/docs/Dog.md index ecb205929573..ed23f613d01d 100644 --- a/samples/openapi3/client/petstore/python-aiohttp/docs/Dog.md +++ b/samples/openapi3/client/petstore/python-aiohttp/docs/Dog.md @@ -22,7 +22,7 @@ print(Dog.to_json()) # convert the object into a dict dog_dict = dog_instance.to_dict() # create an instance of Dog from a dict -dog_form_dict = dog.from_dict(dog_dict) +dog_from_dict = Dog.from_dict(dog_dict) ``` [[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-aiohttp/docs/DummyModel.md b/samples/openapi3/client/petstore/python-aiohttp/docs/DummyModel.md index 21a59bef1bfd..01b675977f58 100644 --- a/samples/openapi3/client/petstore/python-aiohttp/docs/DummyModel.md +++ b/samples/openapi3/client/petstore/python-aiohttp/docs/DummyModel.md @@ -23,7 +23,7 @@ print(DummyModel.to_json()) # convert the object into a dict dummy_model_dict = dummy_model_instance.to_dict() # create an instance of DummyModel from a dict -dummy_model_form_dict = dummy_model.from_dict(dummy_model_dict) +dummy_model_from_dict = DummyModel.from_dict(dummy_model_dict) ``` [[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-aiohttp/docs/EnumArrays.md b/samples/openapi3/client/petstore/python-aiohttp/docs/EnumArrays.md index 6a5293dfcc69..f44617497bce 100644 --- a/samples/openapi3/client/petstore/python-aiohttp/docs/EnumArrays.md +++ b/samples/openapi3/client/petstore/python-aiohttp/docs/EnumArrays.md @@ -23,7 +23,7 @@ print(EnumArrays.to_json()) # convert the object into a dict enum_arrays_dict = enum_arrays_instance.to_dict() # create an instance of EnumArrays from a dict -enum_arrays_form_dict = enum_arrays.from_dict(enum_arrays_dict) +enum_arrays_from_dict = EnumArrays.from_dict(enum_arrays_dict) ``` [[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-aiohttp/docs/EnumTest.md b/samples/openapi3/client/petstore/python-aiohttp/docs/EnumTest.md index 494a4d054f06..d875c67604cf 100644 --- a/samples/openapi3/client/petstore/python-aiohttp/docs/EnumTest.md +++ b/samples/openapi3/client/petstore/python-aiohttp/docs/EnumTest.md @@ -30,7 +30,7 @@ print(EnumTest.to_json()) # convert the object into a dict enum_test_dict = enum_test_instance.to_dict() # create an instance of EnumTest from a dict -enum_test_form_dict = enum_test.from_dict(enum_test_dict) +enum_test_from_dict = EnumTest.from_dict(enum_test_dict) ``` [[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-aiohttp/docs/Feeding.md b/samples/openapi3/client/petstore/python-aiohttp/docs/Feeding.md index 7d1e83627dde..9f92b5d964d3 100644 --- a/samples/openapi3/client/petstore/python-aiohttp/docs/Feeding.md +++ b/samples/openapi3/client/petstore/python-aiohttp/docs/Feeding.md @@ -24,7 +24,7 @@ print(Feeding.to_json()) # convert the object into a dict feeding_dict = feeding_instance.to_dict() # create an instance of Feeding from a dict -feeding_form_dict = feeding.from_dict(feeding_dict) +feeding_from_dict = Feeding.from_dict(feeding_dict) ``` [[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-aiohttp/docs/File.md b/samples/openapi3/client/petstore/python-aiohttp/docs/File.md index 1b03d58761cb..23f0567411ce 100644 --- a/samples/openapi3/client/petstore/python-aiohttp/docs/File.md +++ b/samples/openapi3/client/petstore/python-aiohttp/docs/File.md @@ -23,7 +23,7 @@ print(File.to_json()) # convert the object into a dict file_dict = file_instance.to_dict() # create an instance of File from a dict -file_form_dict = file.from_dict(file_dict) +file_from_dict = File.from_dict(file_dict) ``` [[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-aiohttp/docs/FileSchemaTestClass.md b/samples/openapi3/client/petstore/python-aiohttp/docs/FileSchemaTestClass.md index 26a1758abfeb..e1118042a8ec 100644 --- a/samples/openapi3/client/petstore/python-aiohttp/docs/FileSchemaTestClass.md +++ b/samples/openapi3/client/petstore/python-aiohttp/docs/FileSchemaTestClass.md @@ -23,7 +23,7 @@ print(FileSchemaTestClass.to_json()) # convert the object into a dict file_schema_test_class_dict = file_schema_test_class_instance.to_dict() # create an instance of FileSchemaTestClass from a dict -file_schema_test_class_form_dict = file_schema_test_class.from_dict(file_schema_test_class_dict) +file_schema_test_class_from_dict = FileSchemaTestClass.from_dict(file_schema_test_class_dict) ``` [[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-aiohttp/docs/FirstRef.md b/samples/openapi3/client/petstore/python-aiohttp/docs/FirstRef.md index 5092de432d39..94b8ddc5ac22 100644 --- a/samples/openapi3/client/petstore/python-aiohttp/docs/FirstRef.md +++ b/samples/openapi3/client/petstore/python-aiohttp/docs/FirstRef.md @@ -23,7 +23,7 @@ print(FirstRef.to_json()) # convert the object into a dict first_ref_dict = first_ref_instance.to_dict() # create an instance of FirstRef from a dict -first_ref_form_dict = first_ref.from_dict(first_ref_dict) +first_ref_from_dict = FirstRef.from_dict(first_ref_dict) ``` [[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-aiohttp/docs/Foo.md b/samples/openapi3/client/petstore/python-aiohttp/docs/Foo.md index 020b8d75b76a..f635b0daa6db 100644 --- a/samples/openapi3/client/petstore/python-aiohttp/docs/Foo.md +++ b/samples/openapi3/client/petstore/python-aiohttp/docs/Foo.md @@ -22,7 +22,7 @@ print(Foo.to_json()) # convert the object into a dict foo_dict = foo_instance.to_dict() # create an instance of Foo from a dict -foo_form_dict = foo.from_dict(foo_dict) +foo_from_dict = Foo.from_dict(foo_dict) ``` [[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-aiohttp/docs/FooGetDefaultResponse.md b/samples/openapi3/client/petstore/python-aiohttp/docs/FooGetDefaultResponse.md index 755c3232bbf2..8d84f795b00a 100644 --- a/samples/openapi3/client/petstore/python-aiohttp/docs/FooGetDefaultResponse.md +++ b/samples/openapi3/client/petstore/python-aiohttp/docs/FooGetDefaultResponse.md @@ -22,7 +22,7 @@ print(FooGetDefaultResponse.to_json()) # convert the object into a dict foo_get_default_response_dict = foo_get_default_response_instance.to_dict() # create an instance of FooGetDefaultResponse from a dict -foo_get_default_response_form_dict = foo_get_default_response.from_dict(foo_get_default_response_dict) +foo_get_default_response_from_dict = FooGetDefaultResponse.from_dict(foo_get_default_response_dict) ``` [[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-aiohttp/docs/FormatTest.md b/samples/openapi3/client/petstore/python-aiohttp/docs/FormatTest.md index 3b2f44457f18..6be7fc017577 100644 --- a/samples/openapi3/client/petstore/python-aiohttp/docs/FormatTest.md +++ b/samples/openapi3/client/petstore/python-aiohttp/docs/FormatTest.md @@ -38,7 +38,7 @@ print(FormatTest.to_json()) # convert the object into a dict format_test_dict = format_test_instance.to_dict() # create an instance of FormatTest from a dict -format_test_form_dict = format_test.from_dict(format_test_dict) +format_test_from_dict = FormatTest.from_dict(format_test_dict) ``` [[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-aiohttp/docs/HasOnlyReadOnly.md b/samples/openapi3/client/petstore/python-aiohttp/docs/HasOnlyReadOnly.md index 00d2af2fd330..fdc48781b15a 100644 --- a/samples/openapi3/client/petstore/python-aiohttp/docs/HasOnlyReadOnly.md +++ b/samples/openapi3/client/petstore/python-aiohttp/docs/HasOnlyReadOnly.md @@ -23,7 +23,7 @@ print(HasOnlyReadOnly.to_json()) # convert the object into a dict has_only_read_only_dict = has_only_read_only_instance.to_dict() # create an instance of HasOnlyReadOnly from a dict -has_only_read_only_form_dict = has_only_read_only.from_dict(has_only_read_only_dict) +has_only_read_only_from_dict = HasOnlyReadOnly.from_dict(has_only_read_only_dict) ``` [[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-aiohttp/docs/HealthCheckResult.md b/samples/openapi3/client/petstore/python-aiohttp/docs/HealthCheckResult.md index d32450f4c2ea..d4a2b187167f 100644 --- a/samples/openapi3/client/petstore/python-aiohttp/docs/HealthCheckResult.md +++ b/samples/openapi3/client/petstore/python-aiohttp/docs/HealthCheckResult.md @@ -23,7 +23,7 @@ print(HealthCheckResult.to_json()) # convert the object into a dict health_check_result_dict = health_check_result_instance.to_dict() # create an instance of HealthCheckResult from a dict -health_check_result_form_dict = health_check_result.from_dict(health_check_result_dict) +health_check_result_from_dict = HealthCheckResult.from_dict(health_check_result_dict) ``` [[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-aiohttp/docs/InnerDictWithProperty.md b/samples/openapi3/client/petstore/python-aiohttp/docs/InnerDictWithProperty.md index efd91b13f3a5..7b82ebb770b8 100644 --- a/samples/openapi3/client/petstore/python-aiohttp/docs/InnerDictWithProperty.md +++ b/samples/openapi3/client/petstore/python-aiohttp/docs/InnerDictWithProperty.md @@ -22,7 +22,7 @@ print(InnerDictWithProperty.to_json()) # convert the object into a dict inner_dict_with_property_dict = inner_dict_with_property_instance.to_dict() # create an instance of InnerDictWithProperty from a dict -inner_dict_with_property_form_dict = inner_dict_with_property.from_dict(inner_dict_with_property_dict) +inner_dict_with_property_from_dict = InnerDictWithProperty.from_dict(inner_dict_with_property_dict) ``` [[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-aiohttp/docs/InputAllOf.md b/samples/openapi3/client/petstore/python-aiohttp/docs/InputAllOf.md index 7d6404e3f27e..45298f5308fc 100644 --- a/samples/openapi3/client/petstore/python-aiohttp/docs/InputAllOf.md +++ b/samples/openapi3/client/petstore/python-aiohttp/docs/InputAllOf.md @@ -22,7 +22,7 @@ print(InputAllOf.to_json()) # convert the object into a dict input_all_of_dict = input_all_of_instance.to_dict() # create an instance of InputAllOf from a dict -input_all_of_form_dict = input_all_of.from_dict(input_all_of_dict) +input_all_of_from_dict = InputAllOf.from_dict(input_all_of_dict) ``` [[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-aiohttp/docs/IntOrString.md b/samples/openapi3/client/petstore/python-aiohttp/docs/IntOrString.md index c2f6fd5838ee..b4070b9a8c79 100644 --- a/samples/openapi3/client/petstore/python-aiohttp/docs/IntOrString.md +++ b/samples/openapi3/client/petstore/python-aiohttp/docs/IntOrString.md @@ -21,7 +21,7 @@ print(IntOrString.to_json()) # convert the object into a dict int_or_string_dict = int_or_string_instance.to_dict() # create an instance of IntOrString from a dict -int_or_string_form_dict = int_or_string.from_dict(int_or_string_dict) +int_or_string_from_dict = IntOrString.from_dict(int_or_string_dict) ``` [[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-aiohttp/docs/ListClass.md b/samples/openapi3/client/petstore/python-aiohttp/docs/ListClass.md index 3595f39de141..01068b7d22c3 100644 --- a/samples/openapi3/client/petstore/python-aiohttp/docs/ListClass.md +++ b/samples/openapi3/client/petstore/python-aiohttp/docs/ListClass.md @@ -22,7 +22,7 @@ print(ListClass.to_json()) # convert the object into a dict list_class_dict = list_class_instance.to_dict() # create an instance of ListClass from a dict -list_class_form_dict = list_class.from_dict(list_class_dict) +list_class_from_dict = ListClass.from_dict(list_class_dict) ``` [[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-aiohttp/docs/MapOfArrayOfModel.md b/samples/openapi3/client/petstore/python-aiohttp/docs/MapOfArrayOfModel.md index 2220ab1f7c45..71a4ef66b682 100644 --- a/samples/openapi3/client/petstore/python-aiohttp/docs/MapOfArrayOfModel.md +++ b/samples/openapi3/client/petstore/python-aiohttp/docs/MapOfArrayOfModel.md @@ -22,7 +22,7 @@ print(MapOfArrayOfModel.to_json()) # convert the object into a dict map_of_array_of_model_dict = map_of_array_of_model_instance.to_dict() # create an instance of MapOfArrayOfModel from a dict -map_of_array_of_model_form_dict = map_of_array_of_model.from_dict(map_of_array_of_model_dict) +map_of_array_of_model_from_dict = MapOfArrayOfModel.from_dict(map_of_array_of_model_dict) ``` [[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-aiohttp/docs/MapTest.md b/samples/openapi3/client/petstore/python-aiohttp/docs/MapTest.md index bd62a851e92b..d04b82e9378c 100644 --- a/samples/openapi3/client/petstore/python-aiohttp/docs/MapTest.md +++ b/samples/openapi3/client/petstore/python-aiohttp/docs/MapTest.md @@ -25,7 +25,7 @@ print(MapTest.to_json()) # convert the object into a dict map_test_dict = map_test_instance.to_dict() # create an instance of MapTest from a dict -map_test_form_dict = map_test.from_dict(map_test_dict) +map_test_from_dict = MapTest.from_dict(map_test_dict) ``` [[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-aiohttp/docs/MixedPropertiesAndAdditionalPropertiesClass.md b/samples/openapi3/client/petstore/python-aiohttp/docs/MixedPropertiesAndAdditionalPropertiesClass.md index 7cab16af1738..0dc994275d1e 100644 --- a/samples/openapi3/client/petstore/python-aiohttp/docs/MixedPropertiesAndAdditionalPropertiesClass.md +++ b/samples/openapi3/client/petstore/python-aiohttp/docs/MixedPropertiesAndAdditionalPropertiesClass.md @@ -24,7 +24,7 @@ print(MixedPropertiesAndAdditionalPropertiesClass.to_json()) # convert the object into a dict mixed_properties_and_additional_properties_class_dict = mixed_properties_and_additional_properties_class_instance.to_dict() # create an instance of MixedPropertiesAndAdditionalPropertiesClass from a dict -mixed_properties_and_additional_properties_class_form_dict = mixed_properties_and_additional_properties_class.from_dict(mixed_properties_and_additional_properties_class_dict) +mixed_properties_and_additional_properties_class_from_dict = MixedPropertiesAndAdditionalPropertiesClass.from_dict(mixed_properties_and_additional_properties_class_dict) ``` [[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-aiohttp/docs/Model200Response.md b/samples/openapi3/client/petstore/python-aiohttp/docs/Model200Response.md index 454a4fcf30a0..7fdbdefc6cec 100644 --- a/samples/openapi3/client/petstore/python-aiohttp/docs/Model200Response.md +++ b/samples/openapi3/client/petstore/python-aiohttp/docs/Model200Response.md @@ -24,7 +24,7 @@ print(Model200Response.to_json()) # convert the object into a dict model200_response_dict = model200_response_instance.to_dict() # create an instance of Model200Response from a dict -model200_response_form_dict = model200_response.from_dict(model200_response_dict) +model200_response_from_dict = Model200Response.from_dict(model200_response_dict) ``` [[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-aiohttp/docs/ModelApiResponse.md b/samples/openapi3/client/petstore/python-aiohttp/docs/ModelApiResponse.md index 8e0a033bd648..5ddc0db2a0f3 100644 --- a/samples/openapi3/client/petstore/python-aiohttp/docs/ModelApiResponse.md +++ b/samples/openapi3/client/petstore/python-aiohttp/docs/ModelApiResponse.md @@ -24,7 +24,7 @@ print(ModelApiResponse.to_json()) # convert the object into a dict model_api_response_dict = model_api_response_instance.to_dict() # create an instance of ModelApiResponse from a dict -model_api_response_form_dict = model_api_response.from_dict(model_api_response_dict) +model_api_response_from_dict = ModelApiResponse.from_dict(model_api_response_dict) ``` [[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-aiohttp/docs/ModelField.md b/samples/openapi3/client/petstore/python-aiohttp/docs/ModelField.md index f5f03fd82d29..9073b5dbdb00 100644 --- a/samples/openapi3/client/petstore/python-aiohttp/docs/ModelField.md +++ b/samples/openapi3/client/petstore/python-aiohttp/docs/ModelField.md @@ -22,7 +22,7 @@ print(ModelField.to_json()) # convert the object into a dict model_field_dict = model_field_instance.to_dict() # create an instance of ModelField from a dict -model_field_form_dict = model_field.from_dict(model_field_dict) +model_field_from_dict = ModelField.from_dict(model_field_dict) ``` [[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-aiohttp/docs/ModelReturn.md b/samples/openapi3/client/petstore/python-aiohttp/docs/ModelReturn.md index 6b660953e1d8..7d327053b0c3 100644 --- a/samples/openapi3/client/petstore/python-aiohttp/docs/ModelReturn.md +++ b/samples/openapi3/client/petstore/python-aiohttp/docs/ModelReturn.md @@ -23,7 +23,7 @@ print(ModelReturn.to_json()) # convert the object into a dict model_return_dict = model_return_instance.to_dict() # create an instance of ModelReturn from a dict -model_return_form_dict = model_return.from_dict(model_return_dict) +model_return_from_dict = ModelReturn.from_dict(model_return_dict) ``` [[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-aiohttp/docs/Name.md b/samples/openapi3/client/petstore/python-aiohttp/docs/Name.md index 5c5986a76d0b..5a04ec1ada06 100644 --- a/samples/openapi3/client/petstore/python-aiohttp/docs/Name.md +++ b/samples/openapi3/client/petstore/python-aiohttp/docs/Name.md @@ -26,7 +26,7 @@ print(Name.to_json()) # convert the object into a dict name_dict = name_instance.to_dict() # create an instance of Name from a dict -name_form_dict = name.from_dict(name_dict) +name_from_dict = Name.from_dict(name_dict) ``` [[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-aiohttp/docs/NullableClass.md b/samples/openapi3/client/petstore/python-aiohttp/docs/NullableClass.md index 3657d21255c4..0387dcc2c67a 100644 --- a/samples/openapi3/client/petstore/python-aiohttp/docs/NullableClass.md +++ b/samples/openapi3/client/petstore/python-aiohttp/docs/NullableClass.md @@ -34,7 +34,7 @@ print(NullableClass.to_json()) # convert the object into a dict nullable_class_dict = nullable_class_instance.to_dict() # create an instance of NullableClass from a dict -nullable_class_form_dict = nullable_class.from_dict(nullable_class_dict) +nullable_class_from_dict = NullableClass.from_dict(nullable_class_dict) ``` [[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-aiohttp/docs/NullableProperty.md b/samples/openapi3/client/petstore/python-aiohttp/docs/NullableProperty.md index 27ce3192f847..30edaf4844b2 100644 --- a/samples/openapi3/client/petstore/python-aiohttp/docs/NullableProperty.md +++ b/samples/openapi3/client/petstore/python-aiohttp/docs/NullableProperty.md @@ -23,7 +23,7 @@ print(NullableProperty.to_json()) # convert the object into a dict nullable_property_dict = nullable_property_instance.to_dict() # create an instance of NullableProperty from a dict -nullable_property_form_dict = nullable_property.from_dict(nullable_property_dict) +nullable_property_from_dict = NullableProperty.from_dict(nullable_property_dict) ``` [[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-aiohttp/docs/NumberOnly.md b/samples/openapi3/client/petstore/python-aiohttp/docs/NumberOnly.md index 72e0a4bfde0b..415dd25585d4 100644 --- a/samples/openapi3/client/petstore/python-aiohttp/docs/NumberOnly.md +++ b/samples/openapi3/client/petstore/python-aiohttp/docs/NumberOnly.md @@ -22,7 +22,7 @@ print(NumberOnly.to_json()) # convert the object into a dict number_only_dict = number_only_instance.to_dict() # create an instance of NumberOnly from a dict -number_only_form_dict = number_only.from_dict(number_only_dict) +number_only_from_dict = NumberOnly.from_dict(number_only_dict) ``` [[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-aiohttp/docs/ObjectToTestAdditionalProperties.md b/samples/openapi3/client/petstore/python-aiohttp/docs/ObjectToTestAdditionalProperties.md index 5d2c76c8958e..f6bc34c98e65 100644 --- a/samples/openapi3/client/petstore/python-aiohttp/docs/ObjectToTestAdditionalProperties.md +++ b/samples/openapi3/client/petstore/python-aiohttp/docs/ObjectToTestAdditionalProperties.md @@ -23,7 +23,7 @@ print(ObjectToTestAdditionalProperties.to_json()) # convert the object into a dict object_to_test_additional_properties_dict = object_to_test_additional_properties_instance.to_dict() # create an instance of ObjectToTestAdditionalProperties from a dict -object_to_test_additional_properties_form_dict = object_to_test_additional_properties.from_dict(object_to_test_additional_properties_dict) +object_to_test_additional_properties_from_dict = ObjectToTestAdditionalProperties.from_dict(object_to_test_additional_properties_dict) ``` [[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-aiohttp/docs/ObjectWithDeprecatedFields.md b/samples/openapi3/client/petstore/python-aiohttp/docs/ObjectWithDeprecatedFields.md index b1077a60b954..6dbd2ace04f1 100644 --- a/samples/openapi3/client/petstore/python-aiohttp/docs/ObjectWithDeprecatedFields.md +++ b/samples/openapi3/client/petstore/python-aiohttp/docs/ObjectWithDeprecatedFields.md @@ -25,7 +25,7 @@ print(ObjectWithDeprecatedFields.to_json()) # convert the object into a dict object_with_deprecated_fields_dict = object_with_deprecated_fields_instance.to_dict() # create an instance of ObjectWithDeprecatedFields from a dict -object_with_deprecated_fields_form_dict = object_with_deprecated_fields.from_dict(object_with_deprecated_fields_dict) +object_with_deprecated_fields_from_dict = ObjectWithDeprecatedFields.from_dict(object_with_deprecated_fields_dict) ``` [[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-aiohttp/docs/OneOfEnumString.md b/samples/openapi3/client/petstore/python-aiohttp/docs/OneOfEnumString.md index 25fc402280f0..1d385c092934 100644 --- a/samples/openapi3/client/petstore/python-aiohttp/docs/OneOfEnumString.md +++ b/samples/openapi3/client/petstore/python-aiohttp/docs/OneOfEnumString.md @@ -22,7 +22,7 @@ print(OneOfEnumString.to_json()) # convert the object into a dict one_of_enum_string_dict = one_of_enum_string_instance.to_dict() # create an instance of OneOfEnumString from a dict -one_of_enum_string_form_dict = one_of_enum_string.from_dict(one_of_enum_string_dict) +one_of_enum_string_from_dict = OneOfEnumString.from_dict(one_of_enum_string_dict) ``` [[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-aiohttp/docs/Order.md b/samples/openapi3/client/petstore/python-aiohttp/docs/Order.md index 08b602f1669b..00526b8d04b9 100644 --- a/samples/openapi3/client/petstore/python-aiohttp/docs/Order.md +++ b/samples/openapi3/client/petstore/python-aiohttp/docs/Order.md @@ -27,7 +27,7 @@ print(Order.to_json()) # convert the object into a dict order_dict = order_instance.to_dict() # create an instance of Order from a dict -order_form_dict = order.from_dict(order_dict) +order_from_dict = Order.from_dict(order_dict) ``` [[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-aiohttp/docs/OuterComposite.md b/samples/openapi3/client/petstore/python-aiohttp/docs/OuterComposite.md index 9d4401d659b2..c8242c2d2653 100644 --- a/samples/openapi3/client/petstore/python-aiohttp/docs/OuterComposite.md +++ b/samples/openapi3/client/petstore/python-aiohttp/docs/OuterComposite.md @@ -24,7 +24,7 @@ print(OuterComposite.to_json()) # convert the object into a dict outer_composite_dict = outer_composite_instance.to_dict() # create an instance of OuterComposite from a dict -outer_composite_form_dict = outer_composite.from_dict(outer_composite_dict) +outer_composite_from_dict = OuterComposite.from_dict(outer_composite_dict) ``` [[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-aiohttp/docs/OuterObjectWithEnumProperty.md b/samples/openapi3/client/petstore/python-aiohttp/docs/OuterObjectWithEnumProperty.md index beffcbe25453..6137dbd98da6 100644 --- a/samples/openapi3/client/petstore/python-aiohttp/docs/OuterObjectWithEnumProperty.md +++ b/samples/openapi3/client/petstore/python-aiohttp/docs/OuterObjectWithEnumProperty.md @@ -23,7 +23,7 @@ print(OuterObjectWithEnumProperty.to_json()) # convert the object into a dict outer_object_with_enum_property_dict = outer_object_with_enum_property_instance.to_dict() # create an instance of OuterObjectWithEnumProperty from a dict -outer_object_with_enum_property_form_dict = outer_object_with_enum_property.from_dict(outer_object_with_enum_property_dict) +outer_object_with_enum_property_from_dict = OuterObjectWithEnumProperty.from_dict(outer_object_with_enum_property_dict) ``` [[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-aiohttp/docs/Parent.md b/samples/openapi3/client/petstore/python-aiohttp/docs/Parent.md index 3b71011330d5..7387f9250aad 100644 --- a/samples/openapi3/client/petstore/python-aiohttp/docs/Parent.md +++ b/samples/openapi3/client/petstore/python-aiohttp/docs/Parent.md @@ -22,7 +22,7 @@ print(Parent.to_json()) # convert the object into a dict parent_dict = parent_instance.to_dict() # create an instance of Parent from a dict -parent_form_dict = parent.from_dict(parent_dict) +parent_from_dict = Parent.from_dict(parent_dict) ``` [[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-aiohttp/docs/ParentWithOptionalDict.md b/samples/openapi3/client/petstore/python-aiohttp/docs/ParentWithOptionalDict.md index 23e11a6dd660..bfc8688ea26f 100644 --- a/samples/openapi3/client/petstore/python-aiohttp/docs/ParentWithOptionalDict.md +++ b/samples/openapi3/client/petstore/python-aiohttp/docs/ParentWithOptionalDict.md @@ -22,7 +22,7 @@ print(ParentWithOptionalDict.to_json()) # convert the object into a dict parent_with_optional_dict_dict = parent_with_optional_dict_instance.to_dict() # create an instance of ParentWithOptionalDict from a dict -parent_with_optional_dict_form_dict = parent_with_optional_dict.from_dict(parent_with_optional_dict_dict) +parent_with_optional_dict_from_dict = ParentWithOptionalDict.from_dict(parent_with_optional_dict_dict) ``` [[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-aiohttp/docs/Pet.md b/samples/openapi3/client/petstore/python-aiohttp/docs/Pet.md index fa9dc7bf3081..5329cf2fb925 100644 --- a/samples/openapi3/client/petstore/python-aiohttp/docs/Pet.md +++ b/samples/openapi3/client/petstore/python-aiohttp/docs/Pet.md @@ -27,7 +27,7 @@ print(Pet.to_json()) # convert the object into a dict pet_dict = pet_instance.to_dict() # create an instance of Pet from a dict -pet_form_dict = pet.from_dict(pet_dict) +pet_from_dict = Pet.from_dict(pet_dict) ``` [[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-aiohttp/docs/Pig.md b/samples/openapi3/client/petstore/python-aiohttp/docs/Pig.md index 9ad7b7904941..625930676083 100644 --- a/samples/openapi3/client/petstore/python-aiohttp/docs/Pig.md +++ b/samples/openapi3/client/petstore/python-aiohttp/docs/Pig.md @@ -24,7 +24,7 @@ print(Pig.to_json()) # convert the object into a dict pig_dict = pig_instance.to_dict() # create an instance of Pig from a dict -pig_form_dict = pig.from_dict(pig_dict) +pig_from_dict = Pig.from_dict(pig_dict) ``` [[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-aiohttp/docs/PoopCleaning.md b/samples/openapi3/client/petstore/python-aiohttp/docs/PoopCleaning.md index d96a5db0d4cd..8f9c25e08316 100644 --- a/samples/openapi3/client/petstore/python-aiohttp/docs/PoopCleaning.md +++ b/samples/openapi3/client/petstore/python-aiohttp/docs/PoopCleaning.md @@ -24,7 +24,7 @@ print(PoopCleaning.to_json()) # convert the object into a dict poop_cleaning_dict = poop_cleaning_instance.to_dict() # create an instance of PoopCleaning from a dict -poop_cleaning_form_dict = poop_cleaning.from_dict(poop_cleaning_dict) +poop_cleaning_from_dict = PoopCleaning.from_dict(poop_cleaning_dict) ``` [[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-aiohttp/docs/PropertyMap.md b/samples/openapi3/client/petstore/python-aiohttp/docs/PropertyMap.md index 3b4c0a8cc03f..a55a0e5c6f01 100644 --- a/samples/openapi3/client/petstore/python-aiohttp/docs/PropertyMap.md +++ b/samples/openapi3/client/petstore/python-aiohttp/docs/PropertyMap.md @@ -22,7 +22,7 @@ print(PropertyMap.to_json()) # convert the object into a dict property_map_dict = property_map_instance.to_dict() # create an instance of PropertyMap from a dict -property_map_form_dict = property_map.from_dict(property_map_dict) +property_map_from_dict = PropertyMap.from_dict(property_map_dict) ``` [[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-aiohttp/docs/PropertyNameCollision.md b/samples/openapi3/client/petstore/python-aiohttp/docs/PropertyNameCollision.md index 1bd7ce5ee2b8..40c233670dd0 100644 --- a/samples/openapi3/client/petstore/python-aiohttp/docs/PropertyNameCollision.md +++ b/samples/openapi3/client/petstore/python-aiohttp/docs/PropertyNameCollision.md @@ -24,7 +24,7 @@ print(PropertyNameCollision.to_json()) # convert the object into a dict property_name_collision_dict = property_name_collision_instance.to_dict() # create an instance of PropertyNameCollision from a dict -property_name_collision_form_dict = property_name_collision.from_dict(property_name_collision_dict) +property_name_collision_from_dict = PropertyNameCollision.from_dict(property_name_collision_dict) ``` [[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-aiohttp/docs/ReadOnlyFirst.md b/samples/openapi3/client/petstore/python-aiohttp/docs/ReadOnlyFirst.md index 4644f28f56a8..686ec5da41c9 100644 --- a/samples/openapi3/client/petstore/python-aiohttp/docs/ReadOnlyFirst.md +++ b/samples/openapi3/client/petstore/python-aiohttp/docs/ReadOnlyFirst.md @@ -23,7 +23,7 @@ print(ReadOnlyFirst.to_json()) # convert the object into a dict read_only_first_dict = read_only_first_instance.to_dict() # create an instance of ReadOnlyFirst from a dict -read_only_first_form_dict = read_only_first.from_dict(read_only_first_dict) +read_only_first_from_dict = ReadOnlyFirst.from_dict(read_only_first_dict) ``` [[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-aiohttp/docs/SecondCircularAllOfRef.md b/samples/openapi3/client/petstore/python-aiohttp/docs/SecondCircularAllOfRef.md index eae28911ed2c..65ebdd4c7e1d 100644 --- a/samples/openapi3/client/petstore/python-aiohttp/docs/SecondCircularAllOfRef.md +++ b/samples/openapi3/client/petstore/python-aiohttp/docs/SecondCircularAllOfRef.md @@ -23,7 +23,7 @@ print(SecondCircularAllOfRef.to_json()) # convert the object into a dict second_circular_all_of_ref_dict = second_circular_all_of_ref_instance.to_dict() # create an instance of SecondCircularAllOfRef from a dict -second_circular_all_of_ref_form_dict = second_circular_all_of_ref.from_dict(second_circular_all_of_ref_dict) +second_circular_all_of_ref_from_dict = SecondCircularAllOfRef.from_dict(second_circular_all_of_ref_dict) ``` [[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-aiohttp/docs/SecondRef.md b/samples/openapi3/client/petstore/python-aiohttp/docs/SecondRef.md index 97c65b8ef79b..dfb1a0ac6db5 100644 --- a/samples/openapi3/client/petstore/python-aiohttp/docs/SecondRef.md +++ b/samples/openapi3/client/petstore/python-aiohttp/docs/SecondRef.md @@ -23,7 +23,7 @@ print(SecondRef.to_json()) # convert the object into a dict second_ref_dict = second_ref_instance.to_dict() # create an instance of SecondRef from a dict -second_ref_form_dict = second_ref.from_dict(second_ref_dict) +second_ref_from_dict = SecondRef.from_dict(second_ref_dict) ``` [[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-aiohttp/docs/SelfReferenceModel.md b/samples/openapi3/client/petstore/python-aiohttp/docs/SelfReferenceModel.md index 2ca21efd50cc..208cdac04b6f 100644 --- a/samples/openapi3/client/petstore/python-aiohttp/docs/SelfReferenceModel.md +++ b/samples/openapi3/client/petstore/python-aiohttp/docs/SelfReferenceModel.md @@ -23,7 +23,7 @@ print(SelfReferenceModel.to_json()) # convert the object into a dict self_reference_model_dict = self_reference_model_instance.to_dict() # create an instance of SelfReferenceModel from a dict -self_reference_model_form_dict = self_reference_model.from_dict(self_reference_model_dict) +self_reference_model_from_dict = SelfReferenceModel.from_dict(self_reference_model_dict) ``` [[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-aiohttp/docs/SpecialModelName.md b/samples/openapi3/client/petstore/python-aiohttp/docs/SpecialModelName.md index ea1ef0008c81..35303f34efd2 100644 --- a/samples/openapi3/client/petstore/python-aiohttp/docs/SpecialModelName.md +++ b/samples/openapi3/client/petstore/python-aiohttp/docs/SpecialModelName.md @@ -22,7 +22,7 @@ print(SpecialModelName.to_json()) # convert the object into a dict special_model_name_dict = special_model_name_instance.to_dict() # create an instance of SpecialModelName from a dict -special_model_name_form_dict = special_model_name.from_dict(special_model_name_dict) +special_model_name_from_dict = SpecialModelName.from_dict(special_model_name_dict) ``` [[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-aiohttp/docs/SpecialName.md b/samples/openapi3/client/petstore/python-aiohttp/docs/SpecialName.md index c541b0b3d4b5..ccc550b16e33 100644 --- a/samples/openapi3/client/petstore/python-aiohttp/docs/SpecialName.md +++ b/samples/openapi3/client/petstore/python-aiohttp/docs/SpecialName.md @@ -24,7 +24,7 @@ print(SpecialName.to_json()) # convert the object into a dict special_name_dict = special_name_instance.to_dict() # create an instance of SpecialName from a dict -special_name_form_dict = special_name.from_dict(special_name_dict) +special_name_from_dict = SpecialName.from_dict(special_name_dict) ``` [[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-aiohttp/docs/Tag.md b/samples/openapi3/client/petstore/python-aiohttp/docs/Tag.md index a8d1885a938a..4106d9cfe5db 100644 --- a/samples/openapi3/client/petstore/python-aiohttp/docs/Tag.md +++ b/samples/openapi3/client/petstore/python-aiohttp/docs/Tag.md @@ -23,7 +23,7 @@ print(Tag.to_json()) # convert the object into a dict tag_dict = tag_instance.to_dict() # create an instance of Tag from a dict -tag_form_dict = tag.from_dict(tag_dict) +tag_from_dict = Tag.from_dict(tag_dict) ``` [[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-aiohttp/docs/Task.md b/samples/openapi3/client/petstore/python-aiohttp/docs/Task.md index 905cc03b65d6..211ce76cdfeb 100644 --- a/samples/openapi3/client/petstore/python-aiohttp/docs/Task.md +++ b/samples/openapi3/client/petstore/python-aiohttp/docs/Task.md @@ -24,7 +24,7 @@ print(Task.to_json()) # convert the object into a dict task_dict = task_instance.to_dict() # create an instance of Task from a dict -task_form_dict = task.from_dict(task_dict) +task_from_dict = Task.from_dict(task_dict) ``` [[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-aiohttp/docs/TaskActivity.md b/samples/openapi3/client/petstore/python-aiohttp/docs/TaskActivity.md index 36159e069b56..e905a477292d 100644 --- a/samples/openapi3/client/petstore/python-aiohttp/docs/TaskActivity.md +++ b/samples/openapi3/client/petstore/python-aiohttp/docs/TaskActivity.md @@ -24,7 +24,7 @@ print(TaskActivity.to_json()) # convert the object into a dict task_activity_dict = task_activity_instance.to_dict() # create an instance of TaskActivity from a dict -task_activity_form_dict = task_activity.from_dict(task_activity_dict) +task_activity_from_dict = TaskActivity.from_dict(task_activity_dict) ``` [[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-aiohttp/docs/TestErrorResponsesWithModel400Response.md b/samples/openapi3/client/petstore/python-aiohttp/docs/TestErrorResponsesWithModel400Response.md index 1ff12d238e00..be416bbad0f7 100644 --- a/samples/openapi3/client/petstore/python-aiohttp/docs/TestErrorResponsesWithModel400Response.md +++ b/samples/openapi3/client/petstore/python-aiohttp/docs/TestErrorResponsesWithModel400Response.md @@ -22,7 +22,7 @@ print(TestErrorResponsesWithModel400Response.to_json()) # convert the object into a dict test_error_responses_with_model400_response_dict = test_error_responses_with_model400_response_instance.to_dict() # create an instance of TestErrorResponsesWithModel400Response from a dict -test_error_responses_with_model400_response_form_dict = test_error_responses_with_model400_response.from_dict(test_error_responses_with_model400_response_dict) +test_error_responses_with_model400_response_from_dict = TestErrorResponsesWithModel400Response.from_dict(test_error_responses_with_model400_response_dict) ``` [[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-aiohttp/docs/TestErrorResponsesWithModel404Response.md b/samples/openapi3/client/petstore/python-aiohttp/docs/TestErrorResponsesWithModel404Response.md index a62725a99bb7..1c984f847bf1 100644 --- a/samples/openapi3/client/petstore/python-aiohttp/docs/TestErrorResponsesWithModel404Response.md +++ b/samples/openapi3/client/petstore/python-aiohttp/docs/TestErrorResponsesWithModel404Response.md @@ -22,7 +22,7 @@ print(TestErrorResponsesWithModel404Response.to_json()) # convert the object into a dict test_error_responses_with_model404_response_dict = test_error_responses_with_model404_response_instance.to_dict() # create an instance of TestErrorResponsesWithModel404Response from a dict -test_error_responses_with_model404_response_form_dict = test_error_responses_with_model404_response.from_dict(test_error_responses_with_model404_response_dict) +test_error_responses_with_model404_response_from_dict = TestErrorResponsesWithModel404Response.from_dict(test_error_responses_with_model404_response_dict) ``` [[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-aiohttp/docs/TestInlineFreeformAdditionalPropertiesRequest.md b/samples/openapi3/client/petstore/python-aiohttp/docs/TestInlineFreeformAdditionalPropertiesRequest.md index d678aa823e18..511132d689be 100644 --- a/samples/openapi3/client/petstore/python-aiohttp/docs/TestInlineFreeformAdditionalPropertiesRequest.md +++ b/samples/openapi3/client/petstore/python-aiohttp/docs/TestInlineFreeformAdditionalPropertiesRequest.md @@ -22,7 +22,7 @@ print(TestInlineFreeformAdditionalPropertiesRequest.to_json()) # convert the object into a dict test_inline_freeform_additional_properties_request_dict = test_inline_freeform_additional_properties_request_instance.to_dict() # create an instance of TestInlineFreeformAdditionalPropertiesRequest from a dict -test_inline_freeform_additional_properties_request_form_dict = test_inline_freeform_additional_properties_request.from_dict(test_inline_freeform_additional_properties_request_dict) +test_inline_freeform_additional_properties_request_from_dict = TestInlineFreeformAdditionalPropertiesRequest.from_dict(test_inline_freeform_additional_properties_request_dict) ``` [[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-aiohttp/docs/TestObjectForMultipartRequestsRequestMarker.md b/samples/openapi3/client/petstore/python-aiohttp/docs/TestObjectForMultipartRequestsRequestMarker.md index 75cd561ffae8..ff0ca9ee00ac 100644 --- a/samples/openapi3/client/petstore/python-aiohttp/docs/TestObjectForMultipartRequestsRequestMarker.md +++ b/samples/openapi3/client/petstore/python-aiohttp/docs/TestObjectForMultipartRequestsRequestMarker.md @@ -22,7 +22,7 @@ print(TestObjectForMultipartRequestsRequestMarker.to_json()) # convert the object into a dict test_object_for_multipart_requests_request_marker_dict = test_object_for_multipart_requests_request_marker_instance.to_dict() # create an instance of TestObjectForMultipartRequestsRequestMarker from a dict -test_object_for_multipart_requests_request_marker_form_dict = test_object_for_multipart_requests_request_marker.from_dict(test_object_for_multipart_requests_request_marker_dict) +test_object_for_multipart_requests_request_marker_from_dict = TestObjectForMultipartRequestsRequestMarker.from_dict(test_object_for_multipart_requests_request_marker_dict) ``` [[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-aiohttp/docs/Tiger.md b/samples/openapi3/client/petstore/python-aiohttp/docs/Tiger.md index f03552af0732..f1cf2133f0f7 100644 --- a/samples/openapi3/client/petstore/python-aiohttp/docs/Tiger.md +++ b/samples/openapi3/client/petstore/python-aiohttp/docs/Tiger.md @@ -22,7 +22,7 @@ print(Tiger.to_json()) # convert the object into a dict tiger_dict = tiger_instance.to_dict() # create an instance of Tiger from a dict -tiger_form_dict = tiger.from_dict(tiger_dict) +tiger_from_dict = Tiger.from_dict(tiger_dict) ``` [[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-aiohttp/docs/UnnamedDictWithAdditionalModelListProperties.md b/samples/openapi3/client/petstore/python-aiohttp/docs/UnnamedDictWithAdditionalModelListProperties.md index 201a2d8d3e83..68cd00ab0a7a 100644 --- a/samples/openapi3/client/petstore/python-aiohttp/docs/UnnamedDictWithAdditionalModelListProperties.md +++ b/samples/openapi3/client/petstore/python-aiohttp/docs/UnnamedDictWithAdditionalModelListProperties.md @@ -22,7 +22,7 @@ print(UnnamedDictWithAdditionalModelListProperties.to_json()) # convert the object into a dict unnamed_dict_with_additional_model_list_properties_dict = unnamed_dict_with_additional_model_list_properties_instance.to_dict() # create an instance of UnnamedDictWithAdditionalModelListProperties from a dict -unnamed_dict_with_additional_model_list_properties_form_dict = unnamed_dict_with_additional_model_list_properties.from_dict(unnamed_dict_with_additional_model_list_properties_dict) +unnamed_dict_with_additional_model_list_properties_from_dict = UnnamedDictWithAdditionalModelListProperties.from_dict(unnamed_dict_with_additional_model_list_properties_dict) ``` [[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-aiohttp/docs/UnnamedDictWithAdditionalStringListProperties.md b/samples/openapi3/client/petstore/python-aiohttp/docs/UnnamedDictWithAdditionalStringListProperties.md index 534b6bec7978..045b0e22ad09 100644 --- a/samples/openapi3/client/petstore/python-aiohttp/docs/UnnamedDictWithAdditionalStringListProperties.md +++ b/samples/openapi3/client/petstore/python-aiohttp/docs/UnnamedDictWithAdditionalStringListProperties.md @@ -22,7 +22,7 @@ print(UnnamedDictWithAdditionalStringListProperties.to_json()) # convert the object into a dict unnamed_dict_with_additional_string_list_properties_dict = unnamed_dict_with_additional_string_list_properties_instance.to_dict() # create an instance of UnnamedDictWithAdditionalStringListProperties from a dict -unnamed_dict_with_additional_string_list_properties_form_dict = unnamed_dict_with_additional_string_list_properties.from_dict(unnamed_dict_with_additional_string_list_properties_dict) +unnamed_dict_with_additional_string_list_properties_from_dict = UnnamedDictWithAdditionalStringListProperties.from_dict(unnamed_dict_with_additional_string_list_properties_dict) ``` [[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-aiohttp/docs/User.md b/samples/openapi3/client/petstore/python-aiohttp/docs/User.md index e9d5051b6462..c45d26d27043 100644 --- a/samples/openapi3/client/petstore/python-aiohttp/docs/User.md +++ b/samples/openapi3/client/petstore/python-aiohttp/docs/User.md @@ -29,7 +29,7 @@ print(User.to_json()) # convert the object into a dict user_dict = user_instance.to_dict() # create an instance of User from a dict -user_form_dict = user.from_dict(user_dict) +user_from_dict = User.from_dict(user_dict) ``` [[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-aiohttp/docs/WithNestedOneOf.md b/samples/openapi3/client/petstore/python-aiohttp/docs/WithNestedOneOf.md index 7fdc6cb3d215..e7bbbc28fc2d 100644 --- a/samples/openapi3/client/petstore/python-aiohttp/docs/WithNestedOneOf.md +++ b/samples/openapi3/client/petstore/python-aiohttp/docs/WithNestedOneOf.md @@ -24,7 +24,7 @@ print(WithNestedOneOf.to_json()) # convert the object into a dict with_nested_one_of_dict = with_nested_one_of_instance.to_dict() # create an instance of WithNestedOneOf from a dict -with_nested_one_of_form_dict = with_nested_one_of.from_dict(with_nested_one_of_dict) +with_nested_one_of_from_dict = WithNestedOneOf.from_dict(with_nested_one_of_dict) ``` [[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-pydantic-v1-aiohttp/docs/AdditionalPropertiesAnyType.md b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/AdditionalPropertiesAnyType.md index beedef76c051..79b75f9f010a 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/AdditionalPropertiesAnyType.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/AdditionalPropertiesAnyType.md @@ -21,7 +21,7 @@ print AdditionalPropertiesAnyType.to_json() # convert the object into a dict additional_properties_any_type_dict = additional_properties_any_type_instance.to_dict() # create an instance of AdditionalPropertiesAnyType from a dict -additional_properties_any_type_form_dict = additional_properties_any_type.from_dict(additional_properties_any_type_dict) +additional_properties_any_type_from_dict = AdditionalPropertiesAnyType.from_dict(additional_properties_any_type_dict) ``` [[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-pydantic-v1-aiohttp/docs/AdditionalPropertiesClass.md b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/AdditionalPropertiesClass.md index 6abc3136b9ca..88b80a675ffd 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/AdditionalPropertiesClass.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/AdditionalPropertiesClass.md @@ -22,7 +22,7 @@ print AdditionalPropertiesClass.to_json() # convert the object into a dict additional_properties_class_dict = additional_properties_class_instance.to_dict() # create an instance of AdditionalPropertiesClass from a dict -additional_properties_class_form_dict = additional_properties_class.from_dict(additional_properties_class_dict) +additional_properties_class_from_dict = AdditionalPropertiesClass.from_dict(additional_properties_class_dict) ``` [[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-pydantic-v1-aiohttp/docs/AdditionalPropertiesObject.md b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/AdditionalPropertiesObject.md index 8b9259c687f6..a9d656a6caf1 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/AdditionalPropertiesObject.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/AdditionalPropertiesObject.md @@ -21,7 +21,7 @@ print AdditionalPropertiesObject.to_json() # convert the object into a dict additional_properties_object_dict = additional_properties_object_instance.to_dict() # create an instance of AdditionalPropertiesObject from a dict -additional_properties_object_form_dict = additional_properties_object.from_dict(additional_properties_object_dict) +additional_properties_object_from_dict = AdditionalPropertiesObject.from_dict(additional_properties_object_dict) ``` [[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-pydantic-v1-aiohttp/docs/AdditionalPropertiesWithDescriptionOnly.md b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/AdditionalPropertiesWithDescriptionOnly.md index d66094f18e57..f86bb3f609c5 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/AdditionalPropertiesWithDescriptionOnly.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/AdditionalPropertiesWithDescriptionOnly.md @@ -21,7 +21,7 @@ print AdditionalPropertiesWithDescriptionOnly.to_json() # convert the object into a dict additional_properties_with_description_only_dict = additional_properties_with_description_only_instance.to_dict() # create an instance of AdditionalPropertiesWithDescriptionOnly from a dict -additional_properties_with_description_only_form_dict = additional_properties_with_description_only.from_dict(additional_properties_with_description_only_dict) +additional_properties_with_description_only_from_dict = AdditionalPropertiesWithDescriptionOnly.from_dict(additional_properties_with_description_only_dict) ``` [[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-pydantic-v1-aiohttp/docs/AllOfSuperModel.md b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/AllOfSuperModel.md index 0e8a9bacf0e1..e26106e3447f 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/AllOfSuperModel.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/AllOfSuperModel.md @@ -21,7 +21,7 @@ print AllOfSuperModel.to_json() # convert the object into a dict all_of_super_model_dict = all_of_super_model_instance.to_dict() # create an instance of AllOfSuperModel from a dict -all_of_super_model_form_dict = all_of_super_model.from_dict(all_of_super_model_dict) +all_of_super_model_from_dict = AllOfSuperModel.from_dict(all_of_super_model_dict) ``` [[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-pydantic-v1-aiohttp/docs/AllOfWithSingleRef.md b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/AllOfWithSingleRef.md index 1a8b4df7ecc5..8ad1d9798b77 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/AllOfWithSingleRef.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/AllOfWithSingleRef.md @@ -22,7 +22,7 @@ print AllOfWithSingleRef.to_json() # convert the object into a dict all_of_with_single_ref_dict = all_of_with_single_ref_instance.to_dict() # create an instance of AllOfWithSingleRef from a dict -all_of_with_single_ref_form_dict = all_of_with_single_ref.from_dict(all_of_with_single_ref_dict) +all_of_with_single_ref_from_dict = AllOfWithSingleRef.from_dict(all_of_with_single_ref_dict) ``` [[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-pydantic-v1-aiohttp/docs/Animal.md b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/Animal.md index b62f19690994..af4959f50c11 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/Animal.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/Animal.md @@ -22,7 +22,7 @@ print Animal.to_json() # convert the object into a dict animal_dict = animal_instance.to_dict() # create an instance of Animal from a dict -animal_form_dict = animal.from_dict(animal_dict) +animal_from_dict = Animal.from_dict(animal_dict) ``` [[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-pydantic-v1-aiohttp/docs/AnyOfColor.md b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/AnyOfColor.md index 9b161ccba1c0..96290acbf9ac 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/AnyOfColor.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/AnyOfColor.md @@ -21,7 +21,7 @@ print AnyOfColor.to_json() # convert the object into a dict any_of_color_dict = any_of_color_instance.to_dict() # create an instance of AnyOfColor from a dict -any_of_color_form_dict = any_of_color.from_dict(any_of_color_dict) +any_of_color_from_dict = AnyOfColor.from_dict(any_of_color_dict) ``` [[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-pydantic-v1-aiohttp/docs/AnyOfPig.md b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/AnyOfPig.md index 2da7ca6eefe7..7c39ea27e99c 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/AnyOfPig.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/AnyOfPig.md @@ -23,7 +23,7 @@ print AnyOfPig.to_json() # convert the object into a dict any_of_pig_dict = any_of_pig_instance.to_dict() # create an instance of AnyOfPig from a dict -any_of_pig_form_dict = any_of_pig.from_dict(any_of_pig_dict) +any_of_pig_from_dict = AnyOfPig.from_dict(any_of_pig_dict) ``` [[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-pydantic-v1-aiohttp/docs/ApiResponse.md b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/ApiResponse.md index ba35ea9e2f0e..6102313cb14e 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/ApiResponse.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/ApiResponse.md @@ -23,7 +23,7 @@ print ApiResponse.to_json() # convert the object into a dict api_response_dict = api_response_instance.to_dict() # create an instance of ApiResponse from a dict -api_response_form_dict = api_response.from_dict(api_response_dict) +api_response_from_dict = ApiResponse.from_dict(api_response_dict) ``` [[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-pydantic-v1-aiohttp/docs/ArrayOfArrayOfModel.md b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/ArrayOfArrayOfModel.md index 094061592613..0b93fb437aba 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/ArrayOfArrayOfModel.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/ArrayOfArrayOfModel.md @@ -21,7 +21,7 @@ print ArrayOfArrayOfModel.to_json() # convert the object into a dict array_of_array_of_model_dict = array_of_array_of_model_instance.to_dict() # create an instance of ArrayOfArrayOfModel from a dict -array_of_array_of_model_form_dict = array_of_array_of_model.from_dict(array_of_array_of_model_dict) +array_of_array_of_model_from_dict = ArrayOfArrayOfModel.from_dict(array_of_array_of_model_dict) ``` [[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-pydantic-v1-aiohttp/docs/ArrayOfArrayOfNumberOnly.md b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/ArrayOfArrayOfNumberOnly.md index 3f0c127d4fa3..4bb70bf2786b 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/ArrayOfArrayOfNumberOnly.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/ArrayOfArrayOfNumberOnly.md @@ -21,7 +21,7 @@ print ArrayOfArrayOfNumberOnly.to_json() # convert the object into a dict array_of_array_of_number_only_dict = array_of_array_of_number_only_instance.to_dict() # create an instance of ArrayOfArrayOfNumberOnly from a dict -array_of_array_of_number_only_form_dict = array_of_array_of_number_only.from_dict(array_of_array_of_number_only_dict) +array_of_array_of_number_only_from_dict = ArrayOfArrayOfNumberOnly.from_dict(array_of_array_of_number_only_dict) ``` [[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-pydantic-v1-aiohttp/docs/ArrayOfNumberOnly.md b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/ArrayOfNumberOnly.md index c10191915a70..395ad7f9f8bb 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/ArrayOfNumberOnly.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/ArrayOfNumberOnly.md @@ -21,7 +21,7 @@ print ArrayOfNumberOnly.to_json() # convert the object into a dict array_of_number_only_dict = array_of_number_only_instance.to_dict() # create an instance of ArrayOfNumberOnly from a dict -array_of_number_only_form_dict = array_of_number_only.from_dict(array_of_number_only_dict) +array_of_number_only_from_dict = ArrayOfNumberOnly.from_dict(array_of_number_only_dict) ``` [[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-pydantic-v1-aiohttp/docs/ArrayTest.md b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/ArrayTest.md index d99d1a3c4aed..0b2fb30bff34 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/ArrayTest.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/ArrayTest.md @@ -24,7 +24,7 @@ print ArrayTest.to_json() # convert the object into a dict array_test_dict = array_test_instance.to_dict() # create an instance of ArrayTest from a dict -array_test_form_dict = array_test.from_dict(array_test_dict) +array_test_from_dict = ArrayTest.from_dict(array_test_dict) ``` [[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-pydantic-v1-aiohttp/docs/BasquePig.md b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/BasquePig.md index 552b9390c7e5..4e3b5052dbcb 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/BasquePig.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/BasquePig.md @@ -22,7 +22,7 @@ print BasquePig.to_json() # convert the object into a dict basque_pig_dict = basque_pig_instance.to_dict() # create an instance of BasquePig from a dict -basque_pig_form_dict = basque_pig.from_dict(basque_pig_dict) +basque_pig_from_dict = BasquePig.from_dict(basque_pig_dict) ``` [[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-pydantic-v1-aiohttp/docs/Bathing.md b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/Bathing.md index f7844f95d54d..0841a9898aba 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/Bathing.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/Bathing.md @@ -23,7 +23,7 @@ print Bathing.to_json() # convert the object into a dict bathing_dict = bathing_instance.to_dict() # create an instance of Bathing from a dict -bathing_form_dict = bathing.from_dict(bathing_dict) +bathing_from_dict = Bathing.from_dict(bathing_dict) ``` [[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-pydantic-v1-aiohttp/docs/Capitalization.md b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/Capitalization.md index 99e6fae88fde..44024234da33 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/Capitalization.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/Capitalization.md @@ -26,7 +26,7 @@ print Capitalization.to_json() # convert the object into a dict capitalization_dict = capitalization_instance.to_dict() # create an instance of Capitalization from a dict -capitalization_form_dict = capitalization.from_dict(capitalization_dict) +capitalization_from_dict = Capitalization.from_dict(capitalization_dict) ``` [[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-pydantic-v1-aiohttp/docs/Cat.md b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/Cat.md index 4b509dda7ea3..0880a52adec8 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/Cat.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/Cat.md @@ -21,7 +21,7 @@ print Cat.to_json() # convert the object into a dict cat_dict = cat_instance.to_dict() # create an instance of Cat from a dict -cat_form_dict = cat.from_dict(cat_dict) +cat_from_dict = Cat.from_dict(cat_dict) ``` [[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-pydantic-v1-aiohttp/docs/Category.md b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/Category.md index c49514ef8023..072bc446592c 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/Category.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/Category.md @@ -22,7 +22,7 @@ print Category.to_json() # convert the object into a dict category_dict = category_instance.to_dict() # create an instance of Category from a dict -category_form_dict = category.from_dict(category_dict) +category_from_dict = Category.from_dict(category_dict) ``` [[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-pydantic-v1-aiohttp/docs/CircularAllOfRef.md b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/CircularAllOfRef.md index d4c78e1f4029..3c6bc5fa6f7f 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/CircularAllOfRef.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/CircularAllOfRef.md @@ -22,7 +22,7 @@ print CircularAllOfRef.to_json() # convert the object into a dict circular_all_of_ref_dict = circular_all_of_ref_instance.to_dict() # create an instance of CircularAllOfRef from a dict -circular_all_of_ref_form_dict = circular_all_of_ref.from_dict(circular_all_of_ref_dict) +circular_all_of_ref_from_dict = CircularAllOfRef.from_dict(circular_all_of_ref_dict) ``` [[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-pydantic-v1-aiohttp/docs/CircularReferenceModel.md b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/CircularReferenceModel.md index d5e97934d2be..f9cfab080e18 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/CircularReferenceModel.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/CircularReferenceModel.md @@ -22,7 +22,7 @@ print CircularReferenceModel.to_json() # convert the object into a dict circular_reference_model_dict = circular_reference_model_instance.to_dict() # create an instance of CircularReferenceModel from a dict -circular_reference_model_form_dict = circular_reference_model.from_dict(circular_reference_model_dict) +circular_reference_model_from_dict = CircularReferenceModel.from_dict(circular_reference_model_dict) ``` [[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-pydantic-v1-aiohttp/docs/ClassModel.md b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/ClassModel.md index 1b6fb7cfc77d..c8c17439ce33 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/ClassModel.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/ClassModel.md @@ -22,7 +22,7 @@ print ClassModel.to_json() # convert the object into a dict class_model_dict = class_model_instance.to_dict() # create an instance of ClassModel from a dict -class_model_form_dict = class_model.from_dict(class_model_dict) +class_model_from_dict = ClassModel.from_dict(class_model_dict) ``` [[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-pydantic-v1-aiohttp/docs/Client.md b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/Client.md index b0ded10dd762..60d8102c5423 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/Client.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/Client.md @@ -21,7 +21,7 @@ print Client.to_json() # convert the object into a dict client_dict = client_instance.to_dict() # create an instance of Client from a dict -client_form_dict = client.from_dict(client_dict) +client_from_dict = Client.from_dict(client_dict) ``` [[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-pydantic-v1-aiohttp/docs/Color.md b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/Color.md index 07fcd01991ac..b320dcf0e9a5 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/Color.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/Color.md @@ -21,7 +21,7 @@ print Color.to_json() # convert the object into a dict color_dict = color_instance.to_dict() # create an instance of Color from a dict -color_form_dict = color.from_dict(color_dict) +color_from_dict = Color.from_dict(color_dict) ``` [[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-pydantic-v1-aiohttp/docs/Creature.md b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/Creature.md index 54249d5871e0..4460f1a04c52 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/Creature.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/Creature.md @@ -22,7 +22,7 @@ print Creature.to_json() # convert the object into a dict creature_dict = creature_instance.to_dict() # create an instance of Creature from a dict -creature_form_dict = creature.from_dict(creature_dict) +creature_from_dict = Creature.from_dict(creature_dict) ``` [[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-pydantic-v1-aiohttp/docs/CreatureInfo.md b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/CreatureInfo.md index 5a600b9f3374..1df6883a71b8 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/CreatureInfo.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/CreatureInfo.md @@ -21,7 +21,7 @@ print CreatureInfo.to_json() # convert the object into a dict creature_info_dict = creature_info_instance.to_dict() # create an instance of CreatureInfo from a dict -creature_info_form_dict = creature_info.from_dict(creature_info_dict) +creature_info_from_dict = CreatureInfo.from_dict(creature_info_dict) ``` [[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-pydantic-v1-aiohttp/docs/DanishPig.md b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/DanishPig.md index 253616c2fc32..33faed741892 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/DanishPig.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/DanishPig.md @@ -22,7 +22,7 @@ print DanishPig.to_json() # convert the object into a dict danish_pig_dict = danish_pig_instance.to_dict() # create an instance of DanishPig from a dict -danish_pig_form_dict = danish_pig.from_dict(danish_pig_dict) +danish_pig_from_dict = DanishPig.from_dict(danish_pig_dict) ``` [[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-pydantic-v1-aiohttp/docs/DeprecatedObject.md b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/DeprecatedObject.md index e6cf57189634..a12d1cad419c 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/DeprecatedObject.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/DeprecatedObject.md @@ -21,7 +21,7 @@ print DeprecatedObject.to_json() # convert the object into a dict deprecated_object_dict = deprecated_object_instance.to_dict() # create an instance of DeprecatedObject from a dict -deprecated_object_form_dict = deprecated_object.from_dict(deprecated_object_dict) +deprecated_object_from_dict = DeprecatedObject.from_dict(deprecated_object_dict) ``` [[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-pydantic-v1-aiohttp/docs/DiscriminatorAllOfSub.md b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/DiscriminatorAllOfSub.md index b5dcd9919262..dc27629cd1fd 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/DiscriminatorAllOfSub.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/DiscriminatorAllOfSub.md @@ -20,7 +20,7 @@ print DiscriminatorAllOfSub.to_json() # convert the object into a dict discriminator_all_of_sub_dict = discriminator_all_of_sub_instance.to_dict() # create an instance of DiscriminatorAllOfSub from a dict -discriminator_all_of_sub_form_dict = discriminator_all_of_sub.from_dict(discriminator_all_of_sub_dict) +discriminator_all_of_sub_from_dict = DiscriminatorAllOfSub.from_dict(discriminator_all_of_sub_dict) ``` [[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-pydantic-v1-aiohttp/docs/DiscriminatorAllOfSuper.md b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/DiscriminatorAllOfSuper.md index 9564ca75c80e..7506eb150b27 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/DiscriminatorAllOfSuper.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/DiscriminatorAllOfSuper.md @@ -21,7 +21,7 @@ print DiscriminatorAllOfSuper.to_json() # convert the object into a dict discriminator_all_of_super_dict = discriminator_all_of_super_instance.to_dict() # create an instance of DiscriminatorAllOfSuper from a dict -discriminator_all_of_super_form_dict = discriminator_all_of_super.from_dict(discriminator_all_of_super_dict) +discriminator_all_of_super_from_dict = DiscriminatorAllOfSuper.from_dict(discriminator_all_of_super_dict) ``` [[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-pydantic-v1-aiohttp/docs/Dog.md b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/Dog.md index 3469be73a761..ebef27d81d6b 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/Dog.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/Dog.md @@ -21,7 +21,7 @@ print Dog.to_json() # convert the object into a dict dog_dict = dog_instance.to_dict() # create an instance of Dog from a dict -dog_form_dict = dog.from_dict(dog_dict) +dog_from_dict = Dog.from_dict(dog_dict) ``` [[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-pydantic-v1-aiohttp/docs/DummyModel.md b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/DummyModel.md index e690a8874f8c..52483957a5eb 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/DummyModel.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/DummyModel.md @@ -22,7 +22,7 @@ print DummyModel.to_json() # convert the object into a dict dummy_model_dict = dummy_model_instance.to_dict() # create an instance of DummyModel from a dict -dummy_model_form_dict = dummy_model.from_dict(dummy_model_dict) +dummy_model_from_dict = DummyModel.from_dict(dummy_model_dict) ``` [[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-pydantic-v1-aiohttp/docs/EnumArrays.md b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/EnumArrays.md index d21f58a66087..4f4004c16724 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/EnumArrays.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/EnumArrays.md @@ -22,7 +22,7 @@ print EnumArrays.to_json() # convert the object into a dict enum_arrays_dict = enum_arrays_instance.to_dict() # create an instance of EnumArrays from a dict -enum_arrays_form_dict = enum_arrays.from_dict(enum_arrays_dict) +enum_arrays_from_dict = EnumArrays.from_dict(enum_arrays_dict) ``` [[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-pydantic-v1-aiohttp/docs/EnumTest.md b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/EnumTest.md index 5bcb8e7027e3..6dee11438f2d 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/EnumTest.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/EnumTest.md @@ -29,7 +29,7 @@ print EnumTest.to_json() # convert the object into a dict enum_test_dict = enum_test_instance.to_dict() # create an instance of EnumTest from a dict -enum_test_form_dict = enum_test.from_dict(enum_test_dict) +enum_test_from_dict = EnumTest.from_dict(enum_test_dict) ``` [[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-pydantic-v1-aiohttp/docs/Feeding.md b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/Feeding.md index 30750a67a075..8bc540ad389f 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/Feeding.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/Feeding.md @@ -23,7 +23,7 @@ print Feeding.to_json() # convert the object into a dict feeding_dict = feeding_instance.to_dict() # create an instance of Feeding from a dict -feeding_form_dict = feeding.from_dict(feeding_dict) +feeding_from_dict = Feeding.from_dict(feeding_dict) ``` [[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-pydantic-v1-aiohttp/docs/Field.md b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/Field.md index 01abebbda172..0e45544dd0d4 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/Field.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/Field.md @@ -21,7 +21,7 @@ print Field.to_json() # convert the object into a dict field_dict = field_instance.to_dict() # create an instance of Field from a dict -field_form_dict = field.from_dict(field_dict) +field_from_dict = Field.from_dict(field_dict) ``` [[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-pydantic-v1-aiohttp/docs/File.md b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/File.md index 586da8e32559..019c02129a94 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/File.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/File.md @@ -22,7 +22,7 @@ print File.to_json() # convert the object into a dict file_dict = file_instance.to_dict() # create an instance of File from a dict -file_form_dict = file.from_dict(file_dict) +file_from_dict = File.from_dict(file_dict) ``` [[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-pydantic-v1-aiohttp/docs/FileSchemaTestClass.md b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/FileSchemaTestClass.md index fb967a8d9924..16f4b7a29c20 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/FileSchemaTestClass.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/FileSchemaTestClass.md @@ -22,7 +22,7 @@ print FileSchemaTestClass.to_json() # convert the object into a dict file_schema_test_class_dict = file_schema_test_class_instance.to_dict() # create an instance of FileSchemaTestClass from a dict -file_schema_test_class_form_dict = file_schema_test_class.from_dict(file_schema_test_class_dict) +file_schema_test_class_from_dict = FileSchemaTestClass.from_dict(file_schema_test_class_dict) ``` [[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-pydantic-v1-aiohttp/docs/FirstRef.md b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/FirstRef.md index b5e7ab766b45..7b4539dec25d 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/FirstRef.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/FirstRef.md @@ -22,7 +22,7 @@ print FirstRef.to_json() # convert the object into a dict first_ref_dict = first_ref_instance.to_dict() # create an instance of FirstRef from a dict -first_ref_form_dict = first_ref.from_dict(first_ref_dict) +first_ref_from_dict = FirstRef.from_dict(first_ref_dict) ``` [[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-pydantic-v1-aiohttp/docs/Foo.md b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/Foo.md index 8062d08df1dd..c337d6f1a838 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/Foo.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/Foo.md @@ -21,7 +21,7 @@ print Foo.to_json() # convert the object into a dict foo_dict = foo_instance.to_dict() # create an instance of Foo from a dict -foo_form_dict = foo.from_dict(foo_dict) +foo_from_dict = Foo.from_dict(foo_dict) ``` [[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-pydantic-v1-aiohttp/docs/FooGetDefaultResponse.md b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/FooGetDefaultResponse.md index 550fbe78fa17..311cb6d51b57 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/FooGetDefaultResponse.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/FooGetDefaultResponse.md @@ -21,7 +21,7 @@ print FooGetDefaultResponse.to_json() # convert the object into a dict foo_get_default_response_dict = foo_get_default_response_instance.to_dict() # create an instance of FooGetDefaultResponse from a dict -foo_get_default_response_form_dict = foo_get_default_response.from_dict(foo_get_default_response_dict) +foo_get_default_response_from_dict = FooGetDefaultResponse.from_dict(foo_get_default_response_dict) ``` [[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-pydantic-v1-aiohttp/docs/FormatTest.md b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/FormatTest.md index aa81e585952f..08287433303f 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/FormatTest.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/FormatTest.md @@ -37,7 +37,7 @@ print FormatTest.to_json() # convert the object into a dict format_test_dict = format_test_instance.to_dict() # create an instance of FormatTest from a dict -format_test_form_dict = format_test.from_dict(format_test_dict) +format_test_from_dict = FormatTest.from_dict(format_test_dict) ``` [[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-pydantic-v1-aiohttp/docs/HasOnlyReadOnly.md b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/HasOnlyReadOnly.md index 99573bd28a2f..cbb1af037fd3 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/HasOnlyReadOnly.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/HasOnlyReadOnly.md @@ -22,7 +22,7 @@ print HasOnlyReadOnly.to_json() # convert the object into a dict has_only_read_only_dict = has_only_read_only_instance.to_dict() # create an instance of HasOnlyReadOnly from a dict -has_only_read_only_form_dict = has_only_read_only.from_dict(has_only_read_only_dict) +has_only_read_only_from_dict = HasOnlyReadOnly.from_dict(has_only_read_only_dict) ``` [[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-pydantic-v1-aiohttp/docs/HealthCheckResult.md b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/HealthCheckResult.md index b8723e018aa1..7748c091cf4e 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/HealthCheckResult.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/HealthCheckResult.md @@ -22,7 +22,7 @@ print HealthCheckResult.to_json() # convert the object into a dict health_check_result_dict = health_check_result_instance.to_dict() # create an instance of HealthCheckResult from a dict -health_check_result_form_dict = health_check_result.from_dict(health_check_result_dict) +health_check_result_from_dict = HealthCheckResult.from_dict(health_check_result_dict) ``` [[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-pydantic-v1-aiohttp/docs/InnerDictWithProperty.md b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/InnerDictWithProperty.md index 45d76ad458c4..4571e4dc1a42 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/InnerDictWithProperty.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/InnerDictWithProperty.md @@ -21,7 +21,7 @@ print InnerDictWithProperty.to_json() # convert the object into a dict inner_dict_with_property_dict = inner_dict_with_property_instance.to_dict() # create an instance of InnerDictWithProperty from a dict -inner_dict_with_property_form_dict = inner_dict_with_property.from_dict(inner_dict_with_property_dict) +inner_dict_with_property_from_dict = InnerDictWithProperty.from_dict(inner_dict_with_property_dict) ``` [[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-pydantic-v1-aiohttp/docs/InputAllOf.md b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/InputAllOf.md index eddd22e48a4d..50e0f318e701 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/InputAllOf.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/InputAllOf.md @@ -21,7 +21,7 @@ print InputAllOf.to_json() # convert the object into a dict input_all_of_dict = input_all_of_instance.to_dict() # create an instance of InputAllOf from a dict -input_all_of_form_dict = input_all_of.from_dict(input_all_of_dict) +input_all_of_from_dict = InputAllOf.from_dict(input_all_of_dict) ``` [[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-pydantic-v1-aiohttp/docs/IntOrString.md b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/IntOrString.md index 0a441f186dbc..5f234f7d20e2 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/IntOrString.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/IntOrString.md @@ -20,7 +20,7 @@ print IntOrString.to_json() # convert the object into a dict int_or_string_dict = int_or_string_instance.to_dict() # create an instance of IntOrString from a dict -int_or_string_form_dict = int_or_string.from_dict(int_or_string_dict) +int_or_string_from_dict = IntOrString.from_dict(int_or_string_dict) ``` [[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-pydantic-v1-aiohttp/docs/ListClass.md b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/ListClass.md index ceb1f50705bd..6d84bff6a837 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/ListClass.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/ListClass.md @@ -21,7 +21,7 @@ print ListClass.to_json() # convert the object into a dict list_class_dict = list_class_instance.to_dict() # create an instance of ListClass from a dict -list_class_form_dict = list_class.from_dict(list_class_dict) +list_class_from_dict = ListClass.from_dict(list_class_dict) ``` [[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-pydantic-v1-aiohttp/docs/MapOfArrayOfModel.md b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/MapOfArrayOfModel.md index b97ace0f42c8..912a72c77431 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/MapOfArrayOfModel.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/MapOfArrayOfModel.md @@ -21,7 +21,7 @@ print MapOfArrayOfModel.to_json() # convert the object into a dict map_of_array_of_model_dict = map_of_array_of_model_instance.to_dict() # create an instance of MapOfArrayOfModel from a dict -map_of_array_of_model_form_dict = map_of_array_of_model.from_dict(map_of_array_of_model_dict) +map_of_array_of_model_from_dict = MapOfArrayOfModel.from_dict(map_of_array_of_model_dict) ``` [[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-pydantic-v1-aiohttp/docs/MapTest.md b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/MapTest.md index ba87758a5220..37d65a59c8af 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/MapTest.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/MapTest.md @@ -24,7 +24,7 @@ print MapTest.to_json() # convert the object into a dict map_test_dict = map_test_instance.to_dict() # create an instance of MapTest from a dict -map_test_form_dict = map_test.from_dict(map_test_dict) +map_test_from_dict = MapTest.from_dict(map_test_dict) ``` [[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-pydantic-v1-aiohttp/docs/MixedPropertiesAndAdditionalPropertiesClass.md b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/MixedPropertiesAndAdditionalPropertiesClass.md index 8f628d133abf..53d7988588b0 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/MixedPropertiesAndAdditionalPropertiesClass.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/MixedPropertiesAndAdditionalPropertiesClass.md @@ -23,7 +23,7 @@ print MixedPropertiesAndAdditionalPropertiesClass.to_json() # convert the object into a dict mixed_properties_and_additional_properties_class_dict = mixed_properties_and_additional_properties_class_instance.to_dict() # create an instance of MixedPropertiesAndAdditionalPropertiesClass from a dict -mixed_properties_and_additional_properties_class_form_dict = mixed_properties_and_additional_properties_class.from_dict(mixed_properties_and_additional_properties_class_dict) +mixed_properties_and_additional_properties_class_from_dict = MixedPropertiesAndAdditionalPropertiesClass.from_dict(mixed_properties_and_additional_properties_class_dict) ``` [[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-pydantic-v1-aiohttp/docs/Model200Response.md b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/Model200Response.md index 6a20cefe99cb..bd6b6ce21aab 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/Model200Response.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/Model200Response.md @@ -23,7 +23,7 @@ print Model200Response.to_json() # convert the object into a dict model200_response_dict = model200_response_instance.to_dict() # create an instance of Model200Response from a dict -model200_response_form_dict = model200_response.from_dict(model200_response_dict) +model200_response_from_dict = Model200Response.from_dict(model200_response_dict) ``` [[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-pydantic-v1-aiohttp/docs/ModelReturn.md b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/ModelReturn.md index a5b47f423c81..a69b543d4616 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/ModelReturn.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/ModelReturn.md @@ -22,7 +22,7 @@ print ModelReturn.to_json() # convert the object into a dict model_return_dict = model_return_instance.to_dict() # create an instance of ModelReturn from a dict -model_return_form_dict = model_return.from_dict(model_return_dict) +model_return_from_dict = ModelReturn.from_dict(model_return_dict) ``` [[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-pydantic-v1-aiohttp/docs/Name.md b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/Name.md index 4ccd0ce09aa2..b2cf3013a47c 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/Name.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/Name.md @@ -25,7 +25,7 @@ print Name.to_json() # convert the object into a dict name_dict = name_instance.to_dict() # create an instance of Name from a dict -name_form_dict = name.from_dict(name_dict) +name_from_dict = Name.from_dict(name_dict) ``` [[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-pydantic-v1-aiohttp/docs/NullableClass.md b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/NullableClass.md index 1658756b50e4..d6ca700c8877 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/NullableClass.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/NullableClass.md @@ -33,7 +33,7 @@ print NullableClass.to_json() # convert the object into a dict nullable_class_dict = nullable_class_instance.to_dict() # create an instance of NullableClass from a dict -nullable_class_form_dict = nullable_class.from_dict(nullable_class_dict) +nullable_class_from_dict = NullableClass.from_dict(nullable_class_dict) ``` [[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-pydantic-v1-aiohttp/docs/NullableProperty.md b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/NullableProperty.md index fd9cbbc51aaa..3771860aafb3 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/NullableProperty.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/NullableProperty.md @@ -22,7 +22,7 @@ print NullableProperty.to_json() # convert the object into a dict nullable_property_dict = nullable_property_instance.to_dict() # create an instance of NullableProperty from a dict -nullable_property_form_dict = nullable_property.from_dict(nullable_property_dict) +nullable_property_from_dict = NullableProperty.from_dict(nullable_property_dict) ``` [[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-pydantic-v1-aiohttp/docs/NumberOnly.md b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/NumberOnly.md index f49216ddaa4e..eb51449dc207 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/NumberOnly.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/NumberOnly.md @@ -21,7 +21,7 @@ print NumberOnly.to_json() # convert the object into a dict number_only_dict = number_only_instance.to_dict() # create an instance of NumberOnly from a dict -number_only_form_dict = number_only.from_dict(number_only_dict) +number_only_from_dict = NumberOnly.from_dict(number_only_dict) ``` [[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-pydantic-v1-aiohttp/docs/ObjectToTestAdditionalProperties.md b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/ObjectToTestAdditionalProperties.md index c4ba9a958503..52d741dcd51f 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/ObjectToTestAdditionalProperties.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/ObjectToTestAdditionalProperties.md @@ -22,7 +22,7 @@ print ObjectToTestAdditionalProperties.to_json() # convert the object into a dict object_to_test_additional_properties_dict = object_to_test_additional_properties_instance.to_dict() # create an instance of ObjectToTestAdditionalProperties from a dict -object_to_test_additional_properties_form_dict = object_to_test_additional_properties.from_dict(object_to_test_additional_properties_dict) +object_to_test_additional_properties_from_dict = ObjectToTestAdditionalProperties.from_dict(object_to_test_additional_properties_dict) ``` [[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-pydantic-v1-aiohttp/docs/ObjectWithDeprecatedFields.md b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/ObjectWithDeprecatedFields.md index 8daa55a39161..324130af8dd4 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/ObjectWithDeprecatedFields.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/ObjectWithDeprecatedFields.md @@ -24,7 +24,7 @@ print ObjectWithDeprecatedFields.to_json() # convert the object into a dict object_with_deprecated_fields_dict = object_with_deprecated_fields_instance.to_dict() # create an instance of ObjectWithDeprecatedFields from a dict -object_with_deprecated_fields_form_dict = object_with_deprecated_fields.from_dict(object_with_deprecated_fields_dict) +object_with_deprecated_fields_from_dict = ObjectWithDeprecatedFields.from_dict(object_with_deprecated_fields_dict) ``` [[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-pydantic-v1-aiohttp/docs/OneOfEnumString.md b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/OneOfEnumString.md index c7c28bc29440..981fae92dee3 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/OneOfEnumString.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/OneOfEnumString.md @@ -21,7 +21,7 @@ print OneOfEnumString.to_json() # convert the object into a dict one_of_enum_string_dict = one_of_enum_string_instance.to_dict() # create an instance of OneOfEnumString from a dict -one_of_enum_string_form_dict = one_of_enum_string.from_dict(one_of_enum_string_dict) +one_of_enum_string_from_dict = OneOfEnumString.from_dict(one_of_enum_string_dict) ``` [[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-pydantic-v1-aiohttp/docs/Order.md b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/Order.md index e71e955a11dd..2eaed8c9278e 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/Order.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/Order.md @@ -26,7 +26,7 @@ print Order.to_json() # convert the object into a dict order_dict = order_instance.to_dict() # create an instance of Order from a dict -order_form_dict = order.from_dict(order_dict) +order_from_dict = Order.from_dict(order_dict) ``` [[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-pydantic-v1-aiohttp/docs/OuterComposite.md b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/OuterComposite.md index 504e266f9a14..f9dc458046be 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/OuterComposite.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/OuterComposite.md @@ -23,7 +23,7 @@ print OuterComposite.to_json() # convert the object into a dict outer_composite_dict = outer_composite_instance.to_dict() # create an instance of OuterComposite from a dict -outer_composite_form_dict = outer_composite.from_dict(outer_composite_dict) +outer_composite_from_dict = OuterComposite.from_dict(outer_composite_dict) ``` [[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-pydantic-v1-aiohttp/docs/OuterObjectWithEnumProperty.md b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/OuterObjectWithEnumProperty.md index c6a1cdcbc193..f7ea908c9241 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/OuterObjectWithEnumProperty.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/OuterObjectWithEnumProperty.md @@ -22,7 +22,7 @@ print OuterObjectWithEnumProperty.to_json() # convert the object into a dict outer_object_with_enum_property_dict = outer_object_with_enum_property_instance.to_dict() # create an instance of OuterObjectWithEnumProperty from a dict -outer_object_with_enum_property_form_dict = outer_object_with_enum_property.from_dict(outer_object_with_enum_property_dict) +outer_object_with_enum_property_from_dict = OuterObjectWithEnumProperty.from_dict(outer_object_with_enum_property_dict) ``` [[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-pydantic-v1-aiohttp/docs/Parent.md b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/Parent.md index 9a963a6b722d..de6fb2bf47a9 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/Parent.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/Parent.md @@ -21,7 +21,7 @@ print Parent.to_json() # convert the object into a dict parent_dict = parent_instance.to_dict() # create an instance of Parent from a dict -parent_form_dict = parent.from_dict(parent_dict) +parent_from_dict = Parent.from_dict(parent_dict) ``` [[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-pydantic-v1-aiohttp/docs/ParentWithOptionalDict.md b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/ParentWithOptionalDict.md index 04bf94942019..817faeed32f4 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/ParentWithOptionalDict.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/ParentWithOptionalDict.md @@ -21,7 +21,7 @@ print ParentWithOptionalDict.to_json() # convert the object into a dict parent_with_optional_dict_dict = parent_with_optional_dict_instance.to_dict() # create an instance of ParentWithOptionalDict from a dict -parent_with_optional_dict_form_dict = parent_with_optional_dict.from_dict(parent_with_optional_dict_dict) +parent_with_optional_dict_from_dict = ParentWithOptionalDict.from_dict(parent_with_optional_dict_dict) ``` [[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-pydantic-v1-aiohttp/docs/Pet.md b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/Pet.md index 05a466f880a3..4eedd9366ac6 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/Pet.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/Pet.md @@ -26,7 +26,7 @@ print Pet.to_json() # convert the object into a dict pet_dict = pet_instance.to_dict() # create an instance of Pet from a dict -pet_form_dict = pet.from_dict(pet_dict) +pet_from_dict = Pet.from_dict(pet_dict) ``` [[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-pydantic-v1-aiohttp/docs/Pig.md b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/Pig.md index 398d6c6c6e38..e729adee35e7 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/Pig.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/Pig.md @@ -23,7 +23,7 @@ print Pig.to_json() # convert the object into a dict pig_dict = pig_instance.to_dict() # create an instance of Pig from a dict -pig_form_dict = pig.from_dict(pig_dict) +pig_from_dict = Pig.from_dict(pig_dict) ``` [[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-pydantic-v1-aiohttp/docs/PoopCleaning.md b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/PoopCleaning.md index bbc93c0203c0..2f0ff6470bc9 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/PoopCleaning.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/PoopCleaning.md @@ -23,7 +23,7 @@ print PoopCleaning.to_json() # convert the object into a dict poop_cleaning_dict = poop_cleaning_instance.to_dict() # create an instance of PoopCleaning from a dict -poop_cleaning_form_dict = poop_cleaning.from_dict(poop_cleaning_dict) +poop_cleaning_from_dict = PoopCleaning.from_dict(poop_cleaning_dict) ``` [[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-pydantic-v1-aiohttp/docs/PropertyMap.md b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/PropertyMap.md index f7cf4ba89338..2b727c644096 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/PropertyMap.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/PropertyMap.md @@ -21,7 +21,7 @@ print PropertyMap.to_json() # convert the object into a dict property_map_dict = property_map_instance.to_dict() # create an instance of PropertyMap from a dict -property_map_form_dict = property_map.from_dict(property_map_dict) +property_map_from_dict = PropertyMap.from_dict(property_map_dict) ``` [[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-pydantic-v1-aiohttp/docs/PropertyNameCollision.md b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/PropertyNameCollision.md index 2cc1898be69b..62fac72a7d0d 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/PropertyNameCollision.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/PropertyNameCollision.md @@ -23,7 +23,7 @@ print PropertyNameCollision.to_json() # convert the object into a dict property_name_collision_dict = property_name_collision_instance.to_dict() # create an instance of PropertyNameCollision from a dict -property_name_collision_form_dict = property_name_collision.from_dict(property_name_collision_dict) +property_name_collision_from_dict = PropertyNameCollision.from_dict(property_name_collision_dict) ``` [[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-pydantic-v1-aiohttp/docs/ReadOnlyFirst.md b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/ReadOnlyFirst.md index 22b5acca70c7..a67f2705bd10 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/ReadOnlyFirst.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/ReadOnlyFirst.md @@ -22,7 +22,7 @@ print ReadOnlyFirst.to_json() # convert the object into a dict read_only_first_dict = read_only_first_instance.to_dict() # create an instance of ReadOnlyFirst from a dict -read_only_first_form_dict = read_only_first.from_dict(read_only_first_dict) +read_only_first_from_dict = ReadOnlyFirst.from_dict(read_only_first_dict) ``` [[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-pydantic-v1-aiohttp/docs/SecondCircularAllOfRef.md b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/SecondCircularAllOfRef.md index 4460634382a2..bcb8b5fe4539 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/SecondCircularAllOfRef.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/SecondCircularAllOfRef.md @@ -22,7 +22,7 @@ print SecondCircularAllOfRef.to_json() # convert the object into a dict second_circular_all_of_ref_dict = second_circular_all_of_ref_instance.to_dict() # create an instance of SecondCircularAllOfRef from a dict -second_circular_all_of_ref_form_dict = second_circular_all_of_ref.from_dict(second_circular_all_of_ref_dict) +second_circular_all_of_ref_from_dict = SecondCircularAllOfRef.from_dict(second_circular_all_of_ref_dict) ``` [[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-pydantic-v1-aiohttp/docs/SecondRef.md b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/SecondRef.md index e6fb1e2d4f7c..a75a54047b79 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/SecondRef.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/SecondRef.md @@ -22,7 +22,7 @@ print SecondRef.to_json() # convert the object into a dict second_ref_dict = second_ref_instance.to_dict() # create an instance of SecondRef from a dict -second_ref_form_dict = second_ref.from_dict(second_ref_dict) +second_ref_from_dict = SecondRef.from_dict(second_ref_dict) ``` [[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-pydantic-v1-aiohttp/docs/SelfReferenceModel.md b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/SelfReferenceModel.md index dbf9589d576b..1761dbbf3718 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/SelfReferenceModel.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/SelfReferenceModel.md @@ -22,7 +22,7 @@ print SelfReferenceModel.to_json() # convert the object into a dict self_reference_model_dict = self_reference_model_instance.to_dict() # create an instance of SelfReferenceModel from a dict -self_reference_model_form_dict = self_reference_model.from_dict(self_reference_model_dict) +self_reference_model_from_dict = SelfReferenceModel.from_dict(self_reference_model_dict) ``` [[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-pydantic-v1-aiohttp/docs/SpecialModelName.md b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/SpecialModelName.md index 3d27640abb04..04341261b0b6 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/SpecialModelName.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/SpecialModelName.md @@ -21,7 +21,7 @@ print SpecialModelName.to_json() # convert the object into a dict special_model_name_dict = special_model_name_instance.to_dict() # create an instance of SpecialModelName from a dict -special_model_name_form_dict = special_model_name.from_dict(special_model_name_dict) +special_model_name_from_dict = SpecialModelName.from_dict(special_model_name_dict) ``` [[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-pydantic-v1-aiohttp/docs/SpecialName.md b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/SpecialName.md index 0b4129525978..ffd2b6b69ba4 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/SpecialName.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/SpecialName.md @@ -23,7 +23,7 @@ print SpecialName.to_json() # convert the object into a dict special_name_dict = special_name_instance.to_dict() # create an instance of SpecialName from a dict -special_name_form_dict = special_name.from_dict(special_name_dict) +special_name_from_dict = SpecialName.from_dict(special_name_dict) ``` [[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-pydantic-v1-aiohttp/docs/Tag.md b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/Tag.md index e680c68bedd8..008d363a3b8d 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/Tag.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/Tag.md @@ -22,7 +22,7 @@ print Tag.to_json() # convert the object into a dict tag_dict = tag_instance.to_dict() # create an instance of Tag from a dict -tag_form_dict = tag.from_dict(tag_dict) +tag_from_dict = Tag.from_dict(tag_dict) ``` [[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-pydantic-v1-aiohttp/docs/Task.md b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/Task.md index aefe66e7638b..42d4dfd17a16 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/Task.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/Task.md @@ -23,7 +23,7 @@ print Task.to_json() # convert the object into a dict task_dict = task_instance.to_dict() # create an instance of Task from a dict -task_form_dict = task.from_dict(task_dict) +task_from_dict = Task.from_dict(task_dict) ``` [[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-pydantic-v1-aiohttp/docs/TaskActivity.md b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/TaskActivity.md index eb2549061563..381e58581e68 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/TaskActivity.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/TaskActivity.md @@ -23,7 +23,7 @@ print TaskActivity.to_json() # convert the object into a dict task_activity_dict = task_activity_instance.to_dict() # create an instance of TaskActivity from a dict -task_activity_form_dict = task_activity.from_dict(task_activity_dict) +task_activity_from_dict = TaskActivity.from_dict(task_activity_dict) ``` [[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-pydantic-v1-aiohttp/docs/TestErrorResponsesWithModel400Response.md b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/TestErrorResponsesWithModel400Response.md index 1ef43ce4cadc..98d3e7fe8933 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/TestErrorResponsesWithModel400Response.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/TestErrorResponsesWithModel400Response.md @@ -21,7 +21,7 @@ print TestErrorResponsesWithModel400Response.to_json() # convert the object into a dict test_error_responses_with_model400_response_dict = test_error_responses_with_model400_response_instance.to_dict() # create an instance of TestErrorResponsesWithModel400Response from a dict -test_error_responses_with_model400_response_form_dict = test_error_responses_with_model400_response.from_dict(test_error_responses_with_model400_response_dict) +test_error_responses_with_model400_response_from_dict = TestErrorResponsesWithModel400Response.from_dict(test_error_responses_with_model400_response_dict) ``` [[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-pydantic-v1-aiohttp/docs/TestErrorResponsesWithModel404Response.md b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/TestErrorResponsesWithModel404Response.md index 9fda95537846..e36e255b21ee 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/TestErrorResponsesWithModel404Response.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/TestErrorResponsesWithModel404Response.md @@ -21,7 +21,7 @@ print TestErrorResponsesWithModel404Response.to_json() # convert the object into a dict test_error_responses_with_model404_response_dict = test_error_responses_with_model404_response_instance.to_dict() # create an instance of TestErrorResponsesWithModel404Response from a dict -test_error_responses_with_model404_response_form_dict = test_error_responses_with_model404_response.from_dict(test_error_responses_with_model404_response_dict) +test_error_responses_with_model404_response_from_dict = TestErrorResponsesWithModel404Response.from_dict(test_error_responses_with_model404_response_dict) ``` [[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-pydantic-v1-aiohttp/docs/TestInlineFreeformAdditionalPropertiesRequest.md b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/TestInlineFreeformAdditionalPropertiesRequest.md index 7cf86c5244e3..7f0046907533 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/TestInlineFreeformAdditionalPropertiesRequest.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/TestInlineFreeformAdditionalPropertiesRequest.md @@ -21,7 +21,7 @@ print TestInlineFreeformAdditionalPropertiesRequest.to_json() # convert the object into a dict test_inline_freeform_additional_properties_request_dict = test_inline_freeform_additional_properties_request_instance.to_dict() # create an instance of TestInlineFreeformAdditionalPropertiesRequest from a dict -test_inline_freeform_additional_properties_request_form_dict = test_inline_freeform_additional_properties_request.from_dict(test_inline_freeform_additional_properties_request_dict) +test_inline_freeform_additional_properties_request_from_dict = TestInlineFreeformAdditionalPropertiesRequest.from_dict(test_inline_freeform_additional_properties_request_dict) ``` [[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-pydantic-v1-aiohttp/docs/TestObjectForMultipartRequestsRequestMarker.md b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/TestObjectForMultipartRequestsRequestMarker.md index 25613918e920..c85a2648872a 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/TestObjectForMultipartRequestsRequestMarker.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/TestObjectForMultipartRequestsRequestMarker.md @@ -21,7 +21,7 @@ print TestObjectForMultipartRequestsRequestMarker.to_json() # convert the object into a dict test_object_for_multipart_requests_request_marker_dict = test_object_for_multipart_requests_request_marker_instance.to_dict() # create an instance of TestObjectForMultipartRequestsRequestMarker from a dict -test_object_for_multipart_requests_request_marker_form_dict = test_object_for_multipart_requests_request_marker.from_dict(test_object_for_multipart_requests_request_marker_dict) +test_object_for_multipart_requests_request_marker_from_dict = TestObjectForMultipartRequestsRequestMarker.from_dict(test_object_for_multipart_requests_request_marker_dict) ``` [[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-pydantic-v1-aiohttp/docs/Tiger.md b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/Tiger.md index 6ce50a31f5ae..48dd71e9c83e 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/Tiger.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/Tiger.md @@ -21,7 +21,7 @@ print Tiger.to_json() # convert the object into a dict tiger_dict = tiger_instance.to_dict() # create an instance of Tiger from a dict -tiger_form_dict = tiger.from_dict(tiger_dict) +tiger_from_dict = Tiger.from_dict(tiger_dict) ``` [[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-pydantic-v1-aiohttp/docs/UnnamedDictWithAdditionalModelListProperties.md b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/UnnamedDictWithAdditionalModelListProperties.md index c102bb86bebf..784b34c29659 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/UnnamedDictWithAdditionalModelListProperties.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/UnnamedDictWithAdditionalModelListProperties.md @@ -21,7 +21,7 @@ print UnnamedDictWithAdditionalModelListProperties.to_json() # convert the object into a dict unnamed_dict_with_additional_model_list_properties_dict = unnamed_dict_with_additional_model_list_properties_instance.to_dict() # create an instance of UnnamedDictWithAdditionalModelListProperties from a dict -unnamed_dict_with_additional_model_list_properties_form_dict = unnamed_dict_with_additional_model_list_properties.from_dict(unnamed_dict_with_additional_model_list_properties_dict) +unnamed_dict_with_additional_model_list_properties_from_dict = UnnamedDictWithAdditionalModelListProperties.from_dict(unnamed_dict_with_additional_model_list_properties_dict) ``` [[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-pydantic-v1-aiohttp/docs/UnnamedDictWithAdditionalStringListProperties.md b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/UnnamedDictWithAdditionalStringListProperties.md index 926404ccd6ee..904c007e2072 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/UnnamedDictWithAdditionalStringListProperties.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/UnnamedDictWithAdditionalStringListProperties.md @@ -21,7 +21,7 @@ print UnnamedDictWithAdditionalStringListProperties.to_json() # convert the object into a dict unnamed_dict_with_additional_string_list_properties_dict = unnamed_dict_with_additional_string_list_properties_instance.to_dict() # create an instance of UnnamedDictWithAdditionalStringListProperties from a dict -unnamed_dict_with_additional_string_list_properties_form_dict = unnamed_dict_with_additional_string_list_properties.from_dict(unnamed_dict_with_additional_string_list_properties_dict) +unnamed_dict_with_additional_string_list_properties_from_dict = UnnamedDictWithAdditionalStringListProperties.from_dict(unnamed_dict_with_additional_string_list_properties_dict) ``` [[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-pydantic-v1-aiohttp/docs/User.md b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/User.md index 6d7c357ea865..ff5b1d6f1731 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/User.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/User.md @@ -28,7 +28,7 @@ print User.to_json() # convert the object into a dict user_dict = user_instance.to_dict() # create an instance of User from a dict -user_form_dict = user.from_dict(user_dict) +user_from_dict = User.from_dict(user_dict) ``` [[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-pydantic-v1-aiohttp/docs/WithNestedOneOf.md b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/WithNestedOneOf.md index 247afcab99da..f08130c28392 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/WithNestedOneOf.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/docs/WithNestedOneOf.md @@ -23,7 +23,7 @@ print WithNestedOneOf.to_json() # convert the object into a dict with_nested_one_of_dict = with_nested_one_of_instance.to_dict() # create an instance of WithNestedOneOf from a dict -with_nested_one_of_form_dict = with_nested_one_of.from_dict(with_nested_one_of_dict) +with_nested_one_of_from_dict = WithNestedOneOf.from_dict(with_nested_one_of_dict) ``` [[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-pydantic-v1/docs/AdditionalPropertiesAnyType.md b/samples/openapi3/client/petstore/python-pydantic-v1/docs/AdditionalPropertiesAnyType.md index beedef76c051..79b75f9f010a 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1/docs/AdditionalPropertiesAnyType.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1/docs/AdditionalPropertiesAnyType.md @@ -21,7 +21,7 @@ print AdditionalPropertiesAnyType.to_json() # convert the object into a dict additional_properties_any_type_dict = additional_properties_any_type_instance.to_dict() # create an instance of AdditionalPropertiesAnyType from a dict -additional_properties_any_type_form_dict = additional_properties_any_type.from_dict(additional_properties_any_type_dict) +additional_properties_any_type_from_dict = AdditionalPropertiesAnyType.from_dict(additional_properties_any_type_dict) ``` [[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-pydantic-v1/docs/AdditionalPropertiesClass.md b/samples/openapi3/client/petstore/python-pydantic-v1/docs/AdditionalPropertiesClass.md index 6abc3136b9ca..88b80a675ffd 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1/docs/AdditionalPropertiesClass.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1/docs/AdditionalPropertiesClass.md @@ -22,7 +22,7 @@ print AdditionalPropertiesClass.to_json() # convert the object into a dict additional_properties_class_dict = additional_properties_class_instance.to_dict() # create an instance of AdditionalPropertiesClass from a dict -additional_properties_class_form_dict = additional_properties_class.from_dict(additional_properties_class_dict) +additional_properties_class_from_dict = AdditionalPropertiesClass.from_dict(additional_properties_class_dict) ``` [[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-pydantic-v1/docs/AdditionalPropertiesObject.md b/samples/openapi3/client/petstore/python-pydantic-v1/docs/AdditionalPropertiesObject.md index 8b9259c687f6..a9d656a6caf1 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1/docs/AdditionalPropertiesObject.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1/docs/AdditionalPropertiesObject.md @@ -21,7 +21,7 @@ print AdditionalPropertiesObject.to_json() # convert the object into a dict additional_properties_object_dict = additional_properties_object_instance.to_dict() # create an instance of AdditionalPropertiesObject from a dict -additional_properties_object_form_dict = additional_properties_object.from_dict(additional_properties_object_dict) +additional_properties_object_from_dict = AdditionalPropertiesObject.from_dict(additional_properties_object_dict) ``` [[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-pydantic-v1/docs/AdditionalPropertiesWithDescriptionOnly.md b/samples/openapi3/client/petstore/python-pydantic-v1/docs/AdditionalPropertiesWithDescriptionOnly.md index d66094f18e57..f86bb3f609c5 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1/docs/AdditionalPropertiesWithDescriptionOnly.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1/docs/AdditionalPropertiesWithDescriptionOnly.md @@ -21,7 +21,7 @@ print AdditionalPropertiesWithDescriptionOnly.to_json() # convert the object into a dict additional_properties_with_description_only_dict = additional_properties_with_description_only_instance.to_dict() # create an instance of AdditionalPropertiesWithDescriptionOnly from a dict -additional_properties_with_description_only_form_dict = additional_properties_with_description_only.from_dict(additional_properties_with_description_only_dict) +additional_properties_with_description_only_from_dict = AdditionalPropertiesWithDescriptionOnly.from_dict(additional_properties_with_description_only_dict) ``` [[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-pydantic-v1/docs/AllOfSuperModel.md b/samples/openapi3/client/petstore/python-pydantic-v1/docs/AllOfSuperModel.md index 0e8a9bacf0e1..e26106e3447f 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1/docs/AllOfSuperModel.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1/docs/AllOfSuperModel.md @@ -21,7 +21,7 @@ print AllOfSuperModel.to_json() # convert the object into a dict all_of_super_model_dict = all_of_super_model_instance.to_dict() # create an instance of AllOfSuperModel from a dict -all_of_super_model_form_dict = all_of_super_model.from_dict(all_of_super_model_dict) +all_of_super_model_from_dict = AllOfSuperModel.from_dict(all_of_super_model_dict) ``` [[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-pydantic-v1/docs/AllOfWithSingleRef.md b/samples/openapi3/client/petstore/python-pydantic-v1/docs/AllOfWithSingleRef.md index 1a8b4df7ecc5..8ad1d9798b77 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1/docs/AllOfWithSingleRef.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1/docs/AllOfWithSingleRef.md @@ -22,7 +22,7 @@ print AllOfWithSingleRef.to_json() # convert the object into a dict all_of_with_single_ref_dict = all_of_with_single_ref_instance.to_dict() # create an instance of AllOfWithSingleRef from a dict -all_of_with_single_ref_form_dict = all_of_with_single_ref.from_dict(all_of_with_single_ref_dict) +all_of_with_single_ref_from_dict = AllOfWithSingleRef.from_dict(all_of_with_single_ref_dict) ``` [[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-pydantic-v1/docs/Animal.md b/samples/openapi3/client/petstore/python-pydantic-v1/docs/Animal.md index b62f19690994..af4959f50c11 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1/docs/Animal.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1/docs/Animal.md @@ -22,7 +22,7 @@ print Animal.to_json() # convert the object into a dict animal_dict = animal_instance.to_dict() # create an instance of Animal from a dict -animal_form_dict = animal.from_dict(animal_dict) +animal_from_dict = Animal.from_dict(animal_dict) ``` [[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-pydantic-v1/docs/AnyOfColor.md b/samples/openapi3/client/petstore/python-pydantic-v1/docs/AnyOfColor.md index 9b161ccba1c0..96290acbf9ac 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1/docs/AnyOfColor.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1/docs/AnyOfColor.md @@ -21,7 +21,7 @@ print AnyOfColor.to_json() # convert the object into a dict any_of_color_dict = any_of_color_instance.to_dict() # create an instance of AnyOfColor from a dict -any_of_color_form_dict = any_of_color.from_dict(any_of_color_dict) +any_of_color_from_dict = AnyOfColor.from_dict(any_of_color_dict) ``` [[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-pydantic-v1/docs/AnyOfPig.md b/samples/openapi3/client/petstore/python-pydantic-v1/docs/AnyOfPig.md index 2da7ca6eefe7..7c39ea27e99c 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1/docs/AnyOfPig.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1/docs/AnyOfPig.md @@ -23,7 +23,7 @@ print AnyOfPig.to_json() # convert the object into a dict any_of_pig_dict = any_of_pig_instance.to_dict() # create an instance of AnyOfPig from a dict -any_of_pig_form_dict = any_of_pig.from_dict(any_of_pig_dict) +any_of_pig_from_dict = AnyOfPig.from_dict(any_of_pig_dict) ``` [[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-pydantic-v1/docs/ApiResponse.md b/samples/openapi3/client/petstore/python-pydantic-v1/docs/ApiResponse.md index ba35ea9e2f0e..6102313cb14e 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1/docs/ApiResponse.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1/docs/ApiResponse.md @@ -23,7 +23,7 @@ print ApiResponse.to_json() # convert the object into a dict api_response_dict = api_response_instance.to_dict() # create an instance of ApiResponse from a dict -api_response_form_dict = api_response.from_dict(api_response_dict) +api_response_from_dict = ApiResponse.from_dict(api_response_dict) ``` [[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-pydantic-v1/docs/ArrayOfArrayOfModel.md b/samples/openapi3/client/petstore/python-pydantic-v1/docs/ArrayOfArrayOfModel.md index 094061592613..0b93fb437aba 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1/docs/ArrayOfArrayOfModel.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1/docs/ArrayOfArrayOfModel.md @@ -21,7 +21,7 @@ print ArrayOfArrayOfModel.to_json() # convert the object into a dict array_of_array_of_model_dict = array_of_array_of_model_instance.to_dict() # create an instance of ArrayOfArrayOfModel from a dict -array_of_array_of_model_form_dict = array_of_array_of_model.from_dict(array_of_array_of_model_dict) +array_of_array_of_model_from_dict = ArrayOfArrayOfModel.from_dict(array_of_array_of_model_dict) ``` [[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-pydantic-v1/docs/ArrayOfArrayOfNumberOnly.md b/samples/openapi3/client/petstore/python-pydantic-v1/docs/ArrayOfArrayOfNumberOnly.md index 3f0c127d4fa3..4bb70bf2786b 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1/docs/ArrayOfArrayOfNumberOnly.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1/docs/ArrayOfArrayOfNumberOnly.md @@ -21,7 +21,7 @@ print ArrayOfArrayOfNumberOnly.to_json() # convert the object into a dict array_of_array_of_number_only_dict = array_of_array_of_number_only_instance.to_dict() # create an instance of ArrayOfArrayOfNumberOnly from a dict -array_of_array_of_number_only_form_dict = array_of_array_of_number_only.from_dict(array_of_array_of_number_only_dict) +array_of_array_of_number_only_from_dict = ArrayOfArrayOfNumberOnly.from_dict(array_of_array_of_number_only_dict) ``` [[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-pydantic-v1/docs/ArrayOfNumberOnly.md b/samples/openapi3/client/petstore/python-pydantic-v1/docs/ArrayOfNumberOnly.md index c10191915a70..395ad7f9f8bb 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1/docs/ArrayOfNumberOnly.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1/docs/ArrayOfNumberOnly.md @@ -21,7 +21,7 @@ print ArrayOfNumberOnly.to_json() # convert the object into a dict array_of_number_only_dict = array_of_number_only_instance.to_dict() # create an instance of ArrayOfNumberOnly from a dict -array_of_number_only_form_dict = array_of_number_only.from_dict(array_of_number_only_dict) +array_of_number_only_from_dict = ArrayOfNumberOnly.from_dict(array_of_number_only_dict) ``` [[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-pydantic-v1/docs/ArrayTest.md b/samples/openapi3/client/petstore/python-pydantic-v1/docs/ArrayTest.md index d99d1a3c4aed..0b2fb30bff34 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1/docs/ArrayTest.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1/docs/ArrayTest.md @@ -24,7 +24,7 @@ print ArrayTest.to_json() # convert the object into a dict array_test_dict = array_test_instance.to_dict() # create an instance of ArrayTest from a dict -array_test_form_dict = array_test.from_dict(array_test_dict) +array_test_from_dict = ArrayTest.from_dict(array_test_dict) ``` [[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-pydantic-v1/docs/BasquePig.md b/samples/openapi3/client/petstore/python-pydantic-v1/docs/BasquePig.md index 552b9390c7e5..4e3b5052dbcb 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1/docs/BasquePig.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1/docs/BasquePig.md @@ -22,7 +22,7 @@ print BasquePig.to_json() # convert the object into a dict basque_pig_dict = basque_pig_instance.to_dict() # create an instance of BasquePig from a dict -basque_pig_form_dict = basque_pig.from_dict(basque_pig_dict) +basque_pig_from_dict = BasquePig.from_dict(basque_pig_dict) ``` [[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-pydantic-v1/docs/Bathing.md b/samples/openapi3/client/petstore/python-pydantic-v1/docs/Bathing.md index f7844f95d54d..0841a9898aba 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1/docs/Bathing.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1/docs/Bathing.md @@ -23,7 +23,7 @@ print Bathing.to_json() # convert the object into a dict bathing_dict = bathing_instance.to_dict() # create an instance of Bathing from a dict -bathing_form_dict = bathing.from_dict(bathing_dict) +bathing_from_dict = Bathing.from_dict(bathing_dict) ``` [[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-pydantic-v1/docs/Capitalization.md b/samples/openapi3/client/petstore/python-pydantic-v1/docs/Capitalization.md index 99e6fae88fde..44024234da33 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1/docs/Capitalization.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1/docs/Capitalization.md @@ -26,7 +26,7 @@ print Capitalization.to_json() # convert the object into a dict capitalization_dict = capitalization_instance.to_dict() # create an instance of Capitalization from a dict -capitalization_form_dict = capitalization.from_dict(capitalization_dict) +capitalization_from_dict = Capitalization.from_dict(capitalization_dict) ``` [[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-pydantic-v1/docs/Cat.md b/samples/openapi3/client/petstore/python-pydantic-v1/docs/Cat.md index 4b509dda7ea3..0880a52adec8 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1/docs/Cat.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1/docs/Cat.md @@ -21,7 +21,7 @@ print Cat.to_json() # convert the object into a dict cat_dict = cat_instance.to_dict() # create an instance of Cat from a dict -cat_form_dict = cat.from_dict(cat_dict) +cat_from_dict = Cat.from_dict(cat_dict) ``` [[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-pydantic-v1/docs/Category.md b/samples/openapi3/client/petstore/python-pydantic-v1/docs/Category.md index c49514ef8023..072bc446592c 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1/docs/Category.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1/docs/Category.md @@ -22,7 +22,7 @@ print Category.to_json() # convert the object into a dict category_dict = category_instance.to_dict() # create an instance of Category from a dict -category_form_dict = category.from_dict(category_dict) +category_from_dict = Category.from_dict(category_dict) ``` [[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-pydantic-v1/docs/CircularAllOfRef.md b/samples/openapi3/client/petstore/python-pydantic-v1/docs/CircularAllOfRef.md index d4c78e1f4029..3c6bc5fa6f7f 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1/docs/CircularAllOfRef.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1/docs/CircularAllOfRef.md @@ -22,7 +22,7 @@ print CircularAllOfRef.to_json() # convert the object into a dict circular_all_of_ref_dict = circular_all_of_ref_instance.to_dict() # create an instance of CircularAllOfRef from a dict -circular_all_of_ref_form_dict = circular_all_of_ref.from_dict(circular_all_of_ref_dict) +circular_all_of_ref_from_dict = CircularAllOfRef.from_dict(circular_all_of_ref_dict) ``` [[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-pydantic-v1/docs/CircularReferenceModel.md b/samples/openapi3/client/petstore/python-pydantic-v1/docs/CircularReferenceModel.md index d5e97934d2be..f9cfab080e18 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1/docs/CircularReferenceModel.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1/docs/CircularReferenceModel.md @@ -22,7 +22,7 @@ print CircularReferenceModel.to_json() # convert the object into a dict circular_reference_model_dict = circular_reference_model_instance.to_dict() # create an instance of CircularReferenceModel from a dict -circular_reference_model_form_dict = circular_reference_model.from_dict(circular_reference_model_dict) +circular_reference_model_from_dict = CircularReferenceModel.from_dict(circular_reference_model_dict) ``` [[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-pydantic-v1/docs/ClassModel.md b/samples/openapi3/client/petstore/python-pydantic-v1/docs/ClassModel.md index 1b6fb7cfc77d..c8c17439ce33 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1/docs/ClassModel.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1/docs/ClassModel.md @@ -22,7 +22,7 @@ print ClassModel.to_json() # convert the object into a dict class_model_dict = class_model_instance.to_dict() # create an instance of ClassModel from a dict -class_model_form_dict = class_model.from_dict(class_model_dict) +class_model_from_dict = ClassModel.from_dict(class_model_dict) ``` [[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-pydantic-v1/docs/Client.md b/samples/openapi3/client/petstore/python-pydantic-v1/docs/Client.md index b0ded10dd762..60d8102c5423 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1/docs/Client.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1/docs/Client.md @@ -21,7 +21,7 @@ print Client.to_json() # convert the object into a dict client_dict = client_instance.to_dict() # create an instance of Client from a dict -client_form_dict = client.from_dict(client_dict) +client_from_dict = Client.from_dict(client_dict) ``` [[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-pydantic-v1/docs/Color.md b/samples/openapi3/client/petstore/python-pydantic-v1/docs/Color.md index 07fcd01991ac..b320dcf0e9a5 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1/docs/Color.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1/docs/Color.md @@ -21,7 +21,7 @@ print Color.to_json() # convert the object into a dict color_dict = color_instance.to_dict() # create an instance of Color from a dict -color_form_dict = color.from_dict(color_dict) +color_from_dict = Color.from_dict(color_dict) ``` [[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-pydantic-v1/docs/Creature.md b/samples/openapi3/client/petstore/python-pydantic-v1/docs/Creature.md index 54249d5871e0..4460f1a04c52 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1/docs/Creature.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1/docs/Creature.md @@ -22,7 +22,7 @@ print Creature.to_json() # convert the object into a dict creature_dict = creature_instance.to_dict() # create an instance of Creature from a dict -creature_form_dict = creature.from_dict(creature_dict) +creature_from_dict = Creature.from_dict(creature_dict) ``` [[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-pydantic-v1/docs/CreatureInfo.md b/samples/openapi3/client/petstore/python-pydantic-v1/docs/CreatureInfo.md index 5a600b9f3374..1df6883a71b8 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1/docs/CreatureInfo.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1/docs/CreatureInfo.md @@ -21,7 +21,7 @@ print CreatureInfo.to_json() # convert the object into a dict creature_info_dict = creature_info_instance.to_dict() # create an instance of CreatureInfo from a dict -creature_info_form_dict = creature_info.from_dict(creature_info_dict) +creature_info_from_dict = CreatureInfo.from_dict(creature_info_dict) ``` [[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-pydantic-v1/docs/DanishPig.md b/samples/openapi3/client/petstore/python-pydantic-v1/docs/DanishPig.md index 253616c2fc32..33faed741892 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1/docs/DanishPig.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1/docs/DanishPig.md @@ -22,7 +22,7 @@ print DanishPig.to_json() # convert the object into a dict danish_pig_dict = danish_pig_instance.to_dict() # create an instance of DanishPig from a dict -danish_pig_form_dict = danish_pig.from_dict(danish_pig_dict) +danish_pig_from_dict = DanishPig.from_dict(danish_pig_dict) ``` [[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-pydantic-v1/docs/DeprecatedObject.md b/samples/openapi3/client/petstore/python-pydantic-v1/docs/DeprecatedObject.md index e6cf57189634..a12d1cad419c 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1/docs/DeprecatedObject.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1/docs/DeprecatedObject.md @@ -21,7 +21,7 @@ print DeprecatedObject.to_json() # convert the object into a dict deprecated_object_dict = deprecated_object_instance.to_dict() # create an instance of DeprecatedObject from a dict -deprecated_object_form_dict = deprecated_object.from_dict(deprecated_object_dict) +deprecated_object_from_dict = DeprecatedObject.from_dict(deprecated_object_dict) ``` [[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-pydantic-v1/docs/DiscriminatorAllOfSub.md b/samples/openapi3/client/petstore/python-pydantic-v1/docs/DiscriminatorAllOfSub.md index b5dcd9919262..dc27629cd1fd 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1/docs/DiscriminatorAllOfSub.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1/docs/DiscriminatorAllOfSub.md @@ -20,7 +20,7 @@ print DiscriminatorAllOfSub.to_json() # convert the object into a dict discriminator_all_of_sub_dict = discriminator_all_of_sub_instance.to_dict() # create an instance of DiscriminatorAllOfSub from a dict -discriminator_all_of_sub_form_dict = discriminator_all_of_sub.from_dict(discriminator_all_of_sub_dict) +discriminator_all_of_sub_from_dict = DiscriminatorAllOfSub.from_dict(discriminator_all_of_sub_dict) ``` [[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-pydantic-v1/docs/DiscriminatorAllOfSuper.md b/samples/openapi3/client/petstore/python-pydantic-v1/docs/DiscriminatorAllOfSuper.md index 9564ca75c80e..7506eb150b27 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1/docs/DiscriminatorAllOfSuper.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1/docs/DiscriminatorAllOfSuper.md @@ -21,7 +21,7 @@ print DiscriminatorAllOfSuper.to_json() # convert the object into a dict discriminator_all_of_super_dict = discriminator_all_of_super_instance.to_dict() # create an instance of DiscriminatorAllOfSuper from a dict -discriminator_all_of_super_form_dict = discriminator_all_of_super.from_dict(discriminator_all_of_super_dict) +discriminator_all_of_super_from_dict = DiscriminatorAllOfSuper.from_dict(discriminator_all_of_super_dict) ``` [[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-pydantic-v1/docs/Dog.md b/samples/openapi3/client/petstore/python-pydantic-v1/docs/Dog.md index 3469be73a761..ebef27d81d6b 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1/docs/Dog.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1/docs/Dog.md @@ -21,7 +21,7 @@ print Dog.to_json() # convert the object into a dict dog_dict = dog_instance.to_dict() # create an instance of Dog from a dict -dog_form_dict = dog.from_dict(dog_dict) +dog_from_dict = Dog.from_dict(dog_dict) ``` [[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-pydantic-v1/docs/DummyModel.md b/samples/openapi3/client/petstore/python-pydantic-v1/docs/DummyModel.md index e690a8874f8c..52483957a5eb 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1/docs/DummyModel.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1/docs/DummyModel.md @@ -22,7 +22,7 @@ print DummyModel.to_json() # convert the object into a dict dummy_model_dict = dummy_model_instance.to_dict() # create an instance of DummyModel from a dict -dummy_model_form_dict = dummy_model.from_dict(dummy_model_dict) +dummy_model_from_dict = DummyModel.from_dict(dummy_model_dict) ``` [[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-pydantic-v1/docs/EnumArrays.md b/samples/openapi3/client/petstore/python-pydantic-v1/docs/EnumArrays.md index d21f58a66087..4f4004c16724 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1/docs/EnumArrays.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1/docs/EnumArrays.md @@ -22,7 +22,7 @@ print EnumArrays.to_json() # convert the object into a dict enum_arrays_dict = enum_arrays_instance.to_dict() # create an instance of EnumArrays from a dict -enum_arrays_form_dict = enum_arrays.from_dict(enum_arrays_dict) +enum_arrays_from_dict = EnumArrays.from_dict(enum_arrays_dict) ``` [[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-pydantic-v1/docs/EnumTest.md b/samples/openapi3/client/petstore/python-pydantic-v1/docs/EnumTest.md index 5bcb8e7027e3..6dee11438f2d 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1/docs/EnumTest.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1/docs/EnumTest.md @@ -29,7 +29,7 @@ print EnumTest.to_json() # convert the object into a dict enum_test_dict = enum_test_instance.to_dict() # create an instance of EnumTest from a dict -enum_test_form_dict = enum_test.from_dict(enum_test_dict) +enum_test_from_dict = EnumTest.from_dict(enum_test_dict) ``` [[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-pydantic-v1/docs/Feeding.md b/samples/openapi3/client/petstore/python-pydantic-v1/docs/Feeding.md index 30750a67a075..8bc540ad389f 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1/docs/Feeding.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1/docs/Feeding.md @@ -23,7 +23,7 @@ print Feeding.to_json() # convert the object into a dict feeding_dict = feeding_instance.to_dict() # create an instance of Feeding from a dict -feeding_form_dict = feeding.from_dict(feeding_dict) +feeding_from_dict = Feeding.from_dict(feeding_dict) ``` [[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-pydantic-v1/docs/Field.md b/samples/openapi3/client/petstore/python-pydantic-v1/docs/Field.md index 01abebbda172..0e45544dd0d4 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1/docs/Field.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1/docs/Field.md @@ -21,7 +21,7 @@ print Field.to_json() # convert the object into a dict field_dict = field_instance.to_dict() # create an instance of Field from a dict -field_form_dict = field.from_dict(field_dict) +field_from_dict = Field.from_dict(field_dict) ``` [[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-pydantic-v1/docs/File.md b/samples/openapi3/client/petstore/python-pydantic-v1/docs/File.md index 586da8e32559..019c02129a94 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1/docs/File.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1/docs/File.md @@ -22,7 +22,7 @@ print File.to_json() # convert the object into a dict file_dict = file_instance.to_dict() # create an instance of File from a dict -file_form_dict = file.from_dict(file_dict) +file_from_dict = File.from_dict(file_dict) ``` [[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-pydantic-v1/docs/FileSchemaTestClass.md b/samples/openapi3/client/petstore/python-pydantic-v1/docs/FileSchemaTestClass.md index fb967a8d9924..16f4b7a29c20 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1/docs/FileSchemaTestClass.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1/docs/FileSchemaTestClass.md @@ -22,7 +22,7 @@ print FileSchemaTestClass.to_json() # convert the object into a dict file_schema_test_class_dict = file_schema_test_class_instance.to_dict() # create an instance of FileSchemaTestClass from a dict -file_schema_test_class_form_dict = file_schema_test_class.from_dict(file_schema_test_class_dict) +file_schema_test_class_from_dict = FileSchemaTestClass.from_dict(file_schema_test_class_dict) ``` [[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-pydantic-v1/docs/FirstRef.md b/samples/openapi3/client/petstore/python-pydantic-v1/docs/FirstRef.md index b5e7ab766b45..7b4539dec25d 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1/docs/FirstRef.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1/docs/FirstRef.md @@ -22,7 +22,7 @@ print FirstRef.to_json() # convert the object into a dict first_ref_dict = first_ref_instance.to_dict() # create an instance of FirstRef from a dict -first_ref_form_dict = first_ref.from_dict(first_ref_dict) +first_ref_from_dict = FirstRef.from_dict(first_ref_dict) ``` [[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-pydantic-v1/docs/Foo.md b/samples/openapi3/client/petstore/python-pydantic-v1/docs/Foo.md index 8062d08df1dd..c337d6f1a838 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1/docs/Foo.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1/docs/Foo.md @@ -21,7 +21,7 @@ print Foo.to_json() # convert the object into a dict foo_dict = foo_instance.to_dict() # create an instance of Foo from a dict -foo_form_dict = foo.from_dict(foo_dict) +foo_from_dict = Foo.from_dict(foo_dict) ``` [[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-pydantic-v1/docs/FooGetDefaultResponse.md b/samples/openapi3/client/petstore/python-pydantic-v1/docs/FooGetDefaultResponse.md index 550fbe78fa17..311cb6d51b57 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1/docs/FooGetDefaultResponse.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1/docs/FooGetDefaultResponse.md @@ -21,7 +21,7 @@ print FooGetDefaultResponse.to_json() # convert the object into a dict foo_get_default_response_dict = foo_get_default_response_instance.to_dict() # create an instance of FooGetDefaultResponse from a dict -foo_get_default_response_form_dict = foo_get_default_response.from_dict(foo_get_default_response_dict) +foo_get_default_response_from_dict = FooGetDefaultResponse.from_dict(foo_get_default_response_dict) ``` [[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-pydantic-v1/docs/FormatTest.md b/samples/openapi3/client/petstore/python-pydantic-v1/docs/FormatTest.md index aa81e585952f..08287433303f 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1/docs/FormatTest.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1/docs/FormatTest.md @@ -37,7 +37,7 @@ print FormatTest.to_json() # convert the object into a dict format_test_dict = format_test_instance.to_dict() # create an instance of FormatTest from a dict -format_test_form_dict = format_test.from_dict(format_test_dict) +format_test_from_dict = FormatTest.from_dict(format_test_dict) ``` [[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-pydantic-v1/docs/HasOnlyReadOnly.md b/samples/openapi3/client/petstore/python-pydantic-v1/docs/HasOnlyReadOnly.md index 99573bd28a2f..cbb1af037fd3 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1/docs/HasOnlyReadOnly.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1/docs/HasOnlyReadOnly.md @@ -22,7 +22,7 @@ print HasOnlyReadOnly.to_json() # convert the object into a dict has_only_read_only_dict = has_only_read_only_instance.to_dict() # create an instance of HasOnlyReadOnly from a dict -has_only_read_only_form_dict = has_only_read_only.from_dict(has_only_read_only_dict) +has_only_read_only_from_dict = HasOnlyReadOnly.from_dict(has_only_read_only_dict) ``` [[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-pydantic-v1/docs/HealthCheckResult.md b/samples/openapi3/client/petstore/python-pydantic-v1/docs/HealthCheckResult.md index b8723e018aa1..7748c091cf4e 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1/docs/HealthCheckResult.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1/docs/HealthCheckResult.md @@ -22,7 +22,7 @@ print HealthCheckResult.to_json() # convert the object into a dict health_check_result_dict = health_check_result_instance.to_dict() # create an instance of HealthCheckResult from a dict -health_check_result_form_dict = health_check_result.from_dict(health_check_result_dict) +health_check_result_from_dict = HealthCheckResult.from_dict(health_check_result_dict) ``` [[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-pydantic-v1/docs/InnerDictWithProperty.md b/samples/openapi3/client/petstore/python-pydantic-v1/docs/InnerDictWithProperty.md index 45d76ad458c4..4571e4dc1a42 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1/docs/InnerDictWithProperty.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1/docs/InnerDictWithProperty.md @@ -21,7 +21,7 @@ print InnerDictWithProperty.to_json() # convert the object into a dict inner_dict_with_property_dict = inner_dict_with_property_instance.to_dict() # create an instance of InnerDictWithProperty from a dict -inner_dict_with_property_form_dict = inner_dict_with_property.from_dict(inner_dict_with_property_dict) +inner_dict_with_property_from_dict = InnerDictWithProperty.from_dict(inner_dict_with_property_dict) ``` [[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-pydantic-v1/docs/InputAllOf.md b/samples/openapi3/client/petstore/python-pydantic-v1/docs/InputAllOf.md index eddd22e48a4d..50e0f318e701 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1/docs/InputAllOf.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1/docs/InputAllOf.md @@ -21,7 +21,7 @@ print InputAllOf.to_json() # convert the object into a dict input_all_of_dict = input_all_of_instance.to_dict() # create an instance of InputAllOf from a dict -input_all_of_form_dict = input_all_of.from_dict(input_all_of_dict) +input_all_of_from_dict = InputAllOf.from_dict(input_all_of_dict) ``` [[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-pydantic-v1/docs/IntOrString.md b/samples/openapi3/client/petstore/python-pydantic-v1/docs/IntOrString.md index 0a441f186dbc..5f234f7d20e2 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1/docs/IntOrString.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1/docs/IntOrString.md @@ -20,7 +20,7 @@ print IntOrString.to_json() # convert the object into a dict int_or_string_dict = int_or_string_instance.to_dict() # create an instance of IntOrString from a dict -int_or_string_form_dict = int_or_string.from_dict(int_or_string_dict) +int_or_string_from_dict = IntOrString.from_dict(int_or_string_dict) ``` [[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-pydantic-v1/docs/ListClass.md b/samples/openapi3/client/petstore/python-pydantic-v1/docs/ListClass.md index ceb1f50705bd..6d84bff6a837 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1/docs/ListClass.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1/docs/ListClass.md @@ -21,7 +21,7 @@ print ListClass.to_json() # convert the object into a dict list_class_dict = list_class_instance.to_dict() # create an instance of ListClass from a dict -list_class_form_dict = list_class.from_dict(list_class_dict) +list_class_from_dict = ListClass.from_dict(list_class_dict) ``` [[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-pydantic-v1/docs/MapOfArrayOfModel.md b/samples/openapi3/client/petstore/python-pydantic-v1/docs/MapOfArrayOfModel.md index b97ace0f42c8..912a72c77431 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1/docs/MapOfArrayOfModel.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1/docs/MapOfArrayOfModel.md @@ -21,7 +21,7 @@ print MapOfArrayOfModel.to_json() # convert the object into a dict map_of_array_of_model_dict = map_of_array_of_model_instance.to_dict() # create an instance of MapOfArrayOfModel from a dict -map_of_array_of_model_form_dict = map_of_array_of_model.from_dict(map_of_array_of_model_dict) +map_of_array_of_model_from_dict = MapOfArrayOfModel.from_dict(map_of_array_of_model_dict) ``` [[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-pydantic-v1/docs/MapTest.md b/samples/openapi3/client/petstore/python-pydantic-v1/docs/MapTest.md index ba87758a5220..37d65a59c8af 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1/docs/MapTest.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1/docs/MapTest.md @@ -24,7 +24,7 @@ print MapTest.to_json() # convert the object into a dict map_test_dict = map_test_instance.to_dict() # create an instance of MapTest from a dict -map_test_form_dict = map_test.from_dict(map_test_dict) +map_test_from_dict = MapTest.from_dict(map_test_dict) ``` [[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-pydantic-v1/docs/MixedPropertiesAndAdditionalPropertiesClass.md b/samples/openapi3/client/petstore/python-pydantic-v1/docs/MixedPropertiesAndAdditionalPropertiesClass.md index 8f628d133abf..53d7988588b0 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1/docs/MixedPropertiesAndAdditionalPropertiesClass.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1/docs/MixedPropertiesAndAdditionalPropertiesClass.md @@ -23,7 +23,7 @@ print MixedPropertiesAndAdditionalPropertiesClass.to_json() # convert the object into a dict mixed_properties_and_additional_properties_class_dict = mixed_properties_and_additional_properties_class_instance.to_dict() # create an instance of MixedPropertiesAndAdditionalPropertiesClass from a dict -mixed_properties_and_additional_properties_class_form_dict = mixed_properties_and_additional_properties_class.from_dict(mixed_properties_and_additional_properties_class_dict) +mixed_properties_and_additional_properties_class_from_dict = MixedPropertiesAndAdditionalPropertiesClass.from_dict(mixed_properties_and_additional_properties_class_dict) ``` [[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-pydantic-v1/docs/Model200Response.md b/samples/openapi3/client/petstore/python-pydantic-v1/docs/Model200Response.md index 6a20cefe99cb..bd6b6ce21aab 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1/docs/Model200Response.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1/docs/Model200Response.md @@ -23,7 +23,7 @@ print Model200Response.to_json() # convert the object into a dict model200_response_dict = model200_response_instance.to_dict() # create an instance of Model200Response from a dict -model200_response_form_dict = model200_response.from_dict(model200_response_dict) +model200_response_from_dict = Model200Response.from_dict(model200_response_dict) ``` [[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-pydantic-v1/docs/ModelReturn.md b/samples/openapi3/client/petstore/python-pydantic-v1/docs/ModelReturn.md index a5b47f423c81..a69b543d4616 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1/docs/ModelReturn.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1/docs/ModelReturn.md @@ -22,7 +22,7 @@ print ModelReturn.to_json() # convert the object into a dict model_return_dict = model_return_instance.to_dict() # create an instance of ModelReturn from a dict -model_return_form_dict = model_return.from_dict(model_return_dict) +model_return_from_dict = ModelReturn.from_dict(model_return_dict) ``` [[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-pydantic-v1/docs/Name.md b/samples/openapi3/client/petstore/python-pydantic-v1/docs/Name.md index 4ccd0ce09aa2..b2cf3013a47c 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1/docs/Name.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1/docs/Name.md @@ -25,7 +25,7 @@ print Name.to_json() # convert the object into a dict name_dict = name_instance.to_dict() # create an instance of Name from a dict -name_form_dict = name.from_dict(name_dict) +name_from_dict = Name.from_dict(name_dict) ``` [[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-pydantic-v1/docs/NullableClass.md b/samples/openapi3/client/petstore/python-pydantic-v1/docs/NullableClass.md index 1658756b50e4..d6ca700c8877 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1/docs/NullableClass.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1/docs/NullableClass.md @@ -33,7 +33,7 @@ print NullableClass.to_json() # convert the object into a dict nullable_class_dict = nullable_class_instance.to_dict() # create an instance of NullableClass from a dict -nullable_class_form_dict = nullable_class.from_dict(nullable_class_dict) +nullable_class_from_dict = NullableClass.from_dict(nullable_class_dict) ``` [[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-pydantic-v1/docs/NullableProperty.md b/samples/openapi3/client/petstore/python-pydantic-v1/docs/NullableProperty.md index fd9cbbc51aaa..3771860aafb3 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1/docs/NullableProperty.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1/docs/NullableProperty.md @@ -22,7 +22,7 @@ print NullableProperty.to_json() # convert the object into a dict nullable_property_dict = nullable_property_instance.to_dict() # create an instance of NullableProperty from a dict -nullable_property_form_dict = nullable_property.from_dict(nullable_property_dict) +nullable_property_from_dict = NullableProperty.from_dict(nullable_property_dict) ``` [[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-pydantic-v1/docs/NumberOnly.md b/samples/openapi3/client/petstore/python-pydantic-v1/docs/NumberOnly.md index f49216ddaa4e..eb51449dc207 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1/docs/NumberOnly.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1/docs/NumberOnly.md @@ -21,7 +21,7 @@ print NumberOnly.to_json() # convert the object into a dict number_only_dict = number_only_instance.to_dict() # create an instance of NumberOnly from a dict -number_only_form_dict = number_only.from_dict(number_only_dict) +number_only_from_dict = NumberOnly.from_dict(number_only_dict) ``` [[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-pydantic-v1/docs/ObjectToTestAdditionalProperties.md b/samples/openapi3/client/petstore/python-pydantic-v1/docs/ObjectToTestAdditionalProperties.md index c4ba9a958503..52d741dcd51f 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1/docs/ObjectToTestAdditionalProperties.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1/docs/ObjectToTestAdditionalProperties.md @@ -22,7 +22,7 @@ print ObjectToTestAdditionalProperties.to_json() # convert the object into a dict object_to_test_additional_properties_dict = object_to_test_additional_properties_instance.to_dict() # create an instance of ObjectToTestAdditionalProperties from a dict -object_to_test_additional_properties_form_dict = object_to_test_additional_properties.from_dict(object_to_test_additional_properties_dict) +object_to_test_additional_properties_from_dict = ObjectToTestAdditionalProperties.from_dict(object_to_test_additional_properties_dict) ``` [[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-pydantic-v1/docs/ObjectWithDeprecatedFields.md b/samples/openapi3/client/petstore/python-pydantic-v1/docs/ObjectWithDeprecatedFields.md index 8daa55a39161..324130af8dd4 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1/docs/ObjectWithDeprecatedFields.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1/docs/ObjectWithDeprecatedFields.md @@ -24,7 +24,7 @@ print ObjectWithDeprecatedFields.to_json() # convert the object into a dict object_with_deprecated_fields_dict = object_with_deprecated_fields_instance.to_dict() # create an instance of ObjectWithDeprecatedFields from a dict -object_with_deprecated_fields_form_dict = object_with_deprecated_fields.from_dict(object_with_deprecated_fields_dict) +object_with_deprecated_fields_from_dict = ObjectWithDeprecatedFields.from_dict(object_with_deprecated_fields_dict) ``` [[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-pydantic-v1/docs/OneOfEnumString.md b/samples/openapi3/client/petstore/python-pydantic-v1/docs/OneOfEnumString.md index c7c28bc29440..981fae92dee3 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1/docs/OneOfEnumString.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1/docs/OneOfEnumString.md @@ -21,7 +21,7 @@ print OneOfEnumString.to_json() # convert the object into a dict one_of_enum_string_dict = one_of_enum_string_instance.to_dict() # create an instance of OneOfEnumString from a dict -one_of_enum_string_form_dict = one_of_enum_string.from_dict(one_of_enum_string_dict) +one_of_enum_string_from_dict = OneOfEnumString.from_dict(one_of_enum_string_dict) ``` [[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-pydantic-v1/docs/Order.md b/samples/openapi3/client/petstore/python-pydantic-v1/docs/Order.md index e71e955a11dd..2eaed8c9278e 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1/docs/Order.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1/docs/Order.md @@ -26,7 +26,7 @@ print Order.to_json() # convert the object into a dict order_dict = order_instance.to_dict() # create an instance of Order from a dict -order_form_dict = order.from_dict(order_dict) +order_from_dict = Order.from_dict(order_dict) ``` [[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-pydantic-v1/docs/OuterComposite.md b/samples/openapi3/client/petstore/python-pydantic-v1/docs/OuterComposite.md index 504e266f9a14..f9dc458046be 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1/docs/OuterComposite.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1/docs/OuterComposite.md @@ -23,7 +23,7 @@ print OuterComposite.to_json() # convert the object into a dict outer_composite_dict = outer_composite_instance.to_dict() # create an instance of OuterComposite from a dict -outer_composite_form_dict = outer_composite.from_dict(outer_composite_dict) +outer_composite_from_dict = OuterComposite.from_dict(outer_composite_dict) ``` [[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-pydantic-v1/docs/OuterObjectWithEnumProperty.md b/samples/openapi3/client/petstore/python-pydantic-v1/docs/OuterObjectWithEnumProperty.md index c6a1cdcbc193..f7ea908c9241 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1/docs/OuterObjectWithEnumProperty.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1/docs/OuterObjectWithEnumProperty.md @@ -22,7 +22,7 @@ print OuterObjectWithEnumProperty.to_json() # convert the object into a dict outer_object_with_enum_property_dict = outer_object_with_enum_property_instance.to_dict() # create an instance of OuterObjectWithEnumProperty from a dict -outer_object_with_enum_property_form_dict = outer_object_with_enum_property.from_dict(outer_object_with_enum_property_dict) +outer_object_with_enum_property_from_dict = OuterObjectWithEnumProperty.from_dict(outer_object_with_enum_property_dict) ``` [[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-pydantic-v1/docs/Parent.md b/samples/openapi3/client/petstore/python-pydantic-v1/docs/Parent.md index 9a963a6b722d..de6fb2bf47a9 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1/docs/Parent.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1/docs/Parent.md @@ -21,7 +21,7 @@ print Parent.to_json() # convert the object into a dict parent_dict = parent_instance.to_dict() # create an instance of Parent from a dict -parent_form_dict = parent.from_dict(parent_dict) +parent_from_dict = Parent.from_dict(parent_dict) ``` [[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-pydantic-v1/docs/ParentWithOptionalDict.md b/samples/openapi3/client/petstore/python-pydantic-v1/docs/ParentWithOptionalDict.md index 04bf94942019..817faeed32f4 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1/docs/ParentWithOptionalDict.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1/docs/ParentWithOptionalDict.md @@ -21,7 +21,7 @@ print ParentWithOptionalDict.to_json() # convert the object into a dict parent_with_optional_dict_dict = parent_with_optional_dict_instance.to_dict() # create an instance of ParentWithOptionalDict from a dict -parent_with_optional_dict_form_dict = parent_with_optional_dict.from_dict(parent_with_optional_dict_dict) +parent_with_optional_dict_from_dict = ParentWithOptionalDict.from_dict(parent_with_optional_dict_dict) ``` [[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-pydantic-v1/docs/Pet.md b/samples/openapi3/client/petstore/python-pydantic-v1/docs/Pet.md index 05a466f880a3..4eedd9366ac6 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1/docs/Pet.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1/docs/Pet.md @@ -26,7 +26,7 @@ print Pet.to_json() # convert the object into a dict pet_dict = pet_instance.to_dict() # create an instance of Pet from a dict -pet_form_dict = pet.from_dict(pet_dict) +pet_from_dict = Pet.from_dict(pet_dict) ``` [[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-pydantic-v1/docs/Pig.md b/samples/openapi3/client/petstore/python-pydantic-v1/docs/Pig.md index 398d6c6c6e38..e729adee35e7 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1/docs/Pig.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1/docs/Pig.md @@ -23,7 +23,7 @@ print Pig.to_json() # convert the object into a dict pig_dict = pig_instance.to_dict() # create an instance of Pig from a dict -pig_form_dict = pig.from_dict(pig_dict) +pig_from_dict = Pig.from_dict(pig_dict) ``` [[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-pydantic-v1/docs/PoopCleaning.md b/samples/openapi3/client/petstore/python-pydantic-v1/docs/PoopCleaning.md index bbc93c0203c0..2f0ff6470bc9 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1/docs/PoopCleaning.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1/docs/PoopCleaning.md @@ -23,7 +23,7 @@ print PoopCleaning.to_json() # convert the object into a dict poop_cleaning_dict = poop_cleaning_instance.to_dict() # create an instance of PoopCleaning from a dict -poop_cleaning_form_dict = poop_cleaning.from_dict(poop_cleaning_dict) +poop_cleaning_from_dict = PoopCleaning.from_dict(poop_cleaning_dict) ``` [[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-pydantic-v1/docs/PropertyMap.md b/samples/openapi3/client/petstore/python-pydantic-v1/docs/PropertyMap.md index f7cf4ba89338..2b727c644096 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1/docs/PropertyMap.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1/docs/PropertyMap.md @@ -21,7 +21,7 @@ print PropertyMap.to_json() # convert the object into a dict property_map_dict = property_map_instance.to_dict() # create an instance of PropertyMap from a dict -property_map_form_dict = property_map.from_dict(property_map_dict) +property_map_from_dict = PropertyMap.from_dict(property_map_dict) ``` [[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-pydantic-v1/docs/PropertyNameCollision.md b/samples/openapi3/client/petstore/python-pydantic-v1/docs/PropertyNameCollision.md index 1a9303701b0a..b3394adb08bb 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1/docs/PropertyNameCollision.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1/docs/PropertyNameCollision.md @@ -23,7 +23,7 @@ print PropertyNameCollision.to_json() # convert the object into a dict property_name_collision_dict = property_name_collision_instance.to_dict() # create an instance of PropertyNameCollision from a dict -property_name_collision_form_dict = property_name_collision.from_dict(property_name_collision_dict) +property_name_collision_from_dict = PropertyNameCollision.from_dict(property_name_collision_dict) ``` [[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-pydantic-v1/docs/ReadOnlyFirst.md b/samples/openapi3/client/petstore/python-pydantic-v1/docs/ReadOnlyFirst.md index 22b5acca70c7..a67f2705bd10 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1/docs/ReadOnlyFirst.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1/docs/ReadOnlyFirst.md @@ -22,7 +22,7 @@ print ReadOnlyFirst.to_json() # convert the object into a dict read_only_first_dict = read_only_first_instance.to_dict() # create an instance of ReadOnlyFirst from a dict -read_only_first_form_dict = read_only_first.from_dict(read_only_first_dict) +read_only_first_from_dict = ReadOnlyFirst.from_dict(read_only_first_dict) ``` [[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-pydantic-v1/docs/SecondCircularAllOfRef.md b/samples/openapi3/client/petstore/python-pydantic-v1/docs/SecondCircularAllOfRef.md index 4460634382a2..bcb8b5fe4539 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1/docs/SecondCircularAllOfRef.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1/docs/SecondCircularAllOfRef.md @@ -22,7 +22,7 @@ print SecondCircularAllOfRef.to_json() # convert the object into a dict second_circular_all_of_ref_dict = second_circular_all_of_ref_instance.to_dict() # create an instance of SecondCircularAllOfRef from a dict -second_circular_all_of_ref_form_dict = second_circular_all_of_ref.from_dict(second_circular_all_of_ref_dict) +second_circular_all_of_ref_from_dict = SecondCircularAllOfRef.from_dict(second_circular_all_of_ref_dict) ``` [[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-pydantic-v1/docs/SecondRef.md b/samples/openapi3/client/petstore/python-pydantic-v1/docs/SecondRef.md index e6fb1e2d4f7c..a75a54047b79 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1/docs/SecondRef.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1/docs/SecondRef.md @@ -22,7 +22,7 @@ print SecondRef.to_json() # convert the object into a dict second_ref_dict = second_ref_instance.to_dict() # create an instance of SecondRef from a dict -second_ref_form_dict = second_ref.from_dict(second_ref_dict) +second_ref_from_dict = SecondRef.from_dict(second_ref_dict) ``` [[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-pydantic-v1/docs/SelfReferenceModel.md b/samples/openapi3/client/petstore/python-pydantic-v1/docs/SelfReferenceModel.md index dbf9589d576b..1761dbbf3718 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1/docs/SelfReferenceModel.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1/docs/SelfReferenceModel.md @@ -22,7 +22,7 @@ print SelfReferenceModel.to_json() # convert the object into a dict self_reference_model_dict = self_reference_model_instance.to_dict() # create an instance of SelfReferenceModel from a dict -self_reference_model_form_dict = self_reference_model.from_dict(self_reference_model_dict) +self_reference_model_from_dict = SelfReferenceModel.from_dict(self_reference_model_dict) ``` [[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-pydantic-v1/docs/SpecialModelName.md b/samples/openapi3/client/petstore/python-pydantic-v1/docs/SpecialModelName.md index 3d27640abb04..04341261b0b6 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1/docs/SpecialModelName.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1/docs/SpecialModelName.md @@ -21,7 +21,7 @@ print SpecialModelName.to_json() # convert the object into a dict special_model_name_dict = special_model_name_instance.to_dict() # create an instance of SpecialModelName from a dict -special_model_name_form_dict = special_model_name.from_dict(special_model_name_dict) +special_model_name_from_dict = SpecialModelName.from_dict(special_model_name_dict) ``` [[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-pydantic-v1/docs/SpecialName.md b/samples/openapi3/client/petstore/python-pydantic-v1/docs/SpecialName.md index 0b4129525978..ffd2b6b69ba4 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1/docs/SpecialName.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1/docs/SpecialName.md @@ -23,7 +23,7 @@ print SpecialName.to_json() # convert the object into a dict special_name_dict = special_name_instance.to_dict() # create an instance of SpecialName from a dict -special_name_form_dict = special_name.from_dict(special_name_dict) +special_name_from_dict = SpecialName.from_dict(special_name_dict) ``` [[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-pydantic-v1/docs/Tag.md b/samples/openapi3/client/petstore/python-pydantic-v1/docs/Tag.md index e680c68bedd8..008d363a3b8d 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1/docs/Tag.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1/docs/Tag.md @@ -22,7 +22,7 @@ print Tag.to_json() # convert the object into a dict tag_dict = tag_instance.to_dict() # create an instance of Tag from a dict -tag_form_dict = tag.from_dict(tag_dict) +tag_from_dict = Tag.from_dict(tag_dict) ``` [[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-pydantic-v1/docs/Task.md b/samples/openapi3/client/petstore/python-pydantic-v1/docs/Task.md index aefe66e7638b..42d4dfd17a16 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1/docs/Task.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1/docs/Task.md @@ -23,7 +23,7 @@ print Task.to_json() # convert the object into a dict task_dict = task_instance.to_dict() # create an instance of Task from a dict -task_form_dict = task.from_dict(task_dict) +task_from_dict = Task.from_dict(task_dict) ``` [[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-pydantic-v1/docs/TaskActivity.md b/samples/openapi3/client/petstore/python-pydantic-v1/docs/TaskActivity.md index eb2549061563..381e58581e68 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1/docs/TaskActivity.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1/docs/TaskActivity.md @@ -23,7 +23,7 @@ print TaskActivity.to_json() # convert the object into a dict task_activity_dict = task_activity_instance.to_dict() # create an instance of TaskActivity from a dict -task_activity_form_dict = task_activity.from_dict(task_activity_dict) +task_activity_from_dict = TaskActivity.from_dict(task_activity_dict) ``` [[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-pydantic-v1/docs/TestErrorResponsesWithModel400Response.md b/samples/openapi3/client/petstore/python-pydantic-v1/docs/TestErrorResponsesWithModel400Response.md index 1ef43ce4cadc..98d3e7fe8933 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1/docs/TestErrorResponsesWithModel400Response.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1/docs/TestErrorResponsesWithModel400Response.md @@ -21,7 +21,7 @@ print TestErrorResponsesWithModel400Response.to_json() # convert the object into a dict test_error_responses_with_model400_response_dict = test_error_responses_with_model400_response_instance.to_dict() # create an instance of TestErrorResponsesWithModel400Response from a dict -test_error_responses_with_model400_response_form_dict = test_error_responses_with_model400_response.from_dict(test_error_responses_with_model400_response_dict) +test_error_responses_with_model400_response_from_dict = TestErrorResponsesWithModel400Response.from_dict(test_error_responses_with_model400_response_dict) ``` [[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-pydantic-v1/docs/TestErrorResponsesWithModel404Response.md b/samples/openapi3/client/petstore/python-pydantic-v1/docs/TestErrorResponsesWithModel404Response.md index 9fda95537846..e36e255b21ee 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1/docs/TestErrorResponsesWithModel404Response.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1/docs/TestErrorResponsesWithModel404Response.md @@ -21,7 +21,7 @@ print TestErrorResponsesWithModel404Response.to_json() # convert the object into a dict test_error_responses_with_model404_response_dict = test_error_responses_with_model404_response_instance.to_dict() # create an instance of TestErrorResponsesWithModel404Response from a dict -test_error_responses_with_model404_response_form_dict = test_error_responses_with_model404_response.from_dict(test_error_responses_with_model404_response_dict) +test_error_responses_with_model404_response_from_dict = TestErrorResponsesWithModel404Response.from_dict(test_error_responses_with_model404_response_dict) ``` [[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-pydantic-v1/docs/TestInlineFreeformAdditionalPropertiesRequest.md b/samples/openapi3/client/petstore/python-pydantic-v1/docs/TestInlineFreeformAdditionalPropertiesRequest.md index 7cf86c5244e3..7f0046907533 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1/docs/TestInlineFreeformAdditionalPropertiesRequest.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1/docs/TestInlineFreeformAdditionalPropertiesRequest.md @@ -21,7 +21,7 @@ print TestInlineFreeformAdditionalPropertiesRequest.to_json() # convert the object into a dict test_inline_freeform_additional_properties_request_dict = test_inline_freeform_additional_properties_request_instance.to_dict() # create an instance of TestInlineFreeformAdditionalPropertiesRequest from a dict -test_inline_freeform_additional_properties_request_form_dict = test_inline_freeform_additional_properties_request.from_dict(test_inline_freeform_additional_properties_request_dict) +test_inline_freeform_additional_properties_request_from_dict = TestInlineFreeformAdditionalPropertiesRequest.from_dict(test_inline_freeform_additional_properties_request_dict) ``` [[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-pydantic-v1/docs/TestObjectForMultipartRequestsRequestMarker.md b/samples/openapi3/client/petstore/python-pydantic-v1/docs/TestObjectForMultipartRequestsRequestMarker.md index 25613918e920..c85a2648872a 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1/docs/TestObjectForMultipartRequestsRequestMarker.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1/docs/TestObjectForMultipartRequestsRequestMarker.md @@ -21,7 +21,7 @@ print TestObjectForMultipartRequestsRequestMarker.to_json() # convert the object into a dict test_object_for_multipart_requests_request_marker_dict = test_object_for_multipart_requests_request_marker_instance.to_dict() # create an instance of TestObjectForMultipartRequestsRequestMarker from a dict -test_object_for_multipart_requests_request_marker_form_dict = test_object_for_multipart_requests_request_marker.from_dict(test_object_for_multipart_requests_request_marker_dict) +test_object_for_multipart_requests_request_marker_from_dict = TestObjectForMultipartRequestsRequestMarker.from_dict(test_object_for_multipart_requests_request_marker_dict) ``` [[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-pydantic-v1/docs/Tiger.md b/samples/openapi3/client/petstore/python-pydantic-v1/docs/Tiger.md index 6ce50a31f5ae..48dd71e9c83e 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1/docs/Tiger.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1/docs/Tiger.md @@ -21,7 +21,7 @@ print Tiger.to_json() # convert the object into a dict tiger_dict = tiger_instance.to_dict() # create an instance of Tiger from a dict -tiger_form_dict = tiger.from_dict(tiger_dict) +tiger_from_dict = Tiger.from_dict(tiger_dict) ``` [[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-pydantic-v1/docs/UnnamedDictWithAdditionalModelListProperties.md b/samples/openapi3/client/petstore/python-pydantic-v1/docs/UnnamedDictWithAdditionalModelListProperties.md index c102bb86bebf..784b34c29659 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1/docs/UnnamedDictWithAdditionalModelListProperties.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1/docs/UnnamedDictWithAdditionalModelListProperties.md @@ -21,7 +21,7 @@ print UnnamedDictWithAdditionalModelListProperties.to_json() # convert the object into a dict unnamed_dict_with_additional_model_list_properties_dict = unnamed_dict_with_additional_model_list_properties_instance.to_dict() # create an instance of UnnamedDictWithAdditionalModelListProperties from a dict -unnamed_dict_with_additional_model_list_properties_form_dict = unnamed_dict_with_additional_model_list_properties.from_dict(unnamed_dict_with_additional_model_list_properties_dict) +unnamed_dict_with_additional_model_list_properties_from_dict = UnnamedDictWithAdditionalModelListProperties.from_dict(unnamed_dict_with_additional_model_list_properties_dict) ``` [[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-pydantic-v1/docs/UnnamedDictWithAdditionalStringListProperties.md b/samples/openapi3/client/petstore/python-pydantic-v1/docs/UnnamedDictWithAdditionalStringListProperties.md index 926404ccd6ee..904c007e2072 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1/docs/UnnamedDictWithAdditionalStringListProperties.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1/docs/UnnamedDictWithAdditionalStringListProperties.md @@ -21,7 +21,7 @@ print UnnamedDictWithAdditionalStringListProperties.to_json() # convert the object into a dict unnamed_dict_with_additional_string_list_properties_dict = unnamed_dict_with_additional_string_list_properties_instance.to_dict() # create an instance of UnnamedDictWithAdditionalStringListProperties from a dict -unnamed_dict_with_additional_string_list_properties_form_dict = unnamed_dict_with_additional_string_list_properties.from_dict(unnamed_dict_with_additional_string_list_properties_dict) +unnamed_dict_with_additional_string_list_properties_from_dict = UnnamedDictWithAdditionalStringListProperties.from_dict(unnamed_dict_with_additional_string_list_properties_dict) ``` [[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-pydantic-v1/docs/User.md b/samples/openapi3/client/petstore/python-pydantic-v1/docs/User.md index 6d7c357ea865..ff5b1d6f1731 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1/docs/User.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1/docs/User.md @@ -28,7 +28,7 @@ print User.to_json() # convert the object into a dict user_dict = user_instance.to_dict() # create an instance of User from a dict -user_form_dict = user.from_dict(user_dict) +user_from_dict = User.from_dict(user_dict) ``` [[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-pydantic-v1/docs/WithNestedOneOf.md b/samples/openapi3/client/petstore/python-pydantic-v1/docs/WithNestedOneOf.md index 247afcab99da..f08130c28392 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1/docs/WithNestedOneOf.md +++ b/samples/openapi3/client/petstore/python-pydantic-v1/docs/WithNestedOneOf.md @@ -23,7 +23,7 @@ print WithNestedOneOf.to_json() # convert the object into a dict with_nested_one_of_dict = with_nested_one_of_instance.to_dict() # create an instance of WithNestedOneOf from a dict -with_nested_one_of_form_dict = with_nested_one_of.from_dict(with_nested_one_of_dict) +with_nested_one_of_from_dict = WithNestedOneOf.from_dict(with_nested_one_of_dict) ``` [[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/docs/AdditionalPropertiesAnyType.md b/samples/openapi3/client/petstore/python/docs/AdditionalPropertiesAnyType.md index a47fbd732607..314cba3a614c 100644 --- a/samples/openapi3/client/petstore/python/docs/AdditionalPropertiesAnyType.md +++ b/samples/openapi3/client/petstore/python/docs/AdditionalPropertiesAnyType.md @@ -22,7 +22,7 @@ print(AdditionalPropertiesAnyType.to_json()) # convert the object into a dict additional_properties_any_type_dict = additional_properties_any_type_instance.to_dict() # create an instance of AdditionalPropertiesAnyType from a dict -additional_properties_any_type_form_dict = additional_properties_any_type.from_dict(additional_properties_any_type_dict) +additional_properties_any_type_from_dict = AdditionalPropertiesAnyType.from_dict(additional_properties_any_type_dict) ``` [[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/docs/AdditionalPropertiesClass.md b/samples/openapi3/client/petstore/python/docs/AdditionalPropertiesClass.md index a19d1b338e68..8d4c08707f55 100644 --- a/samples/openapi3/client/petstore/python/docs/AdditionalPropertiesClass.md +++ b/samples/openapi3/client/petstore/python/docs/AdditionalPropertiesClass.md @@ -23,7 +23,7 @@ print(AdditionalPropertiesClass.to_json()) # convert the object into a dict additional_properties_class_dict = additional_properties_class_instance.to_dict() # create an instance of AdditionalPropertiesClass from a dict -additional_properties_class_form_dict = additional_properties_class.from_dict(additional_properties_class_dict) +additional_properties_class_from_dict = AdditionalPropertiesClass.from_dict(additional_properties_class_dict) ``` [[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/docs/AdditionalPropertiesObject.md b/samples/openapi3/client/petstore/python/docs/AdditionalPropertiesObject.md index f9c516ee9b6b..d647ec64896f 100644 --- a/samples/openapi3/client/petstore/python/docs/AdditionalPropertiesObject.md +++ b/samples/openapi3/client/petstore/python/docs/AdditionalPropertiesObject.md @@ -22,7 +22,7 @@ print(AdditionalPropertiesObject.to_json()) # convert the object into a dict additional_properties_object_dict = additional_properties_object_instance.to_dict() # create an instance of AdditionalPropertiesObject from a dict -additional_properties_object_form_dict = additional_properties_object.from_dict(additional_properties_object_dict) +additional_properties_object_from_dict = AdditionalPropertiesObject.from_dict(additional_properties_object_dict) ``` [[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/docs/AdditionalPropertiesWithDescriptionOnly.md b/samples/openapi3/client/petstore/python/docs/AdditionalPropertiesWithDescriptionOnly.md index 3dbb9c6f3e9b..061f5524872b 100644 --- a/samples/openapi3/client/petstore/python/docs/AdditionalPropertiesWithDescriptionOnly.md +++ b/samples/openapi3/client/petstore/python/docs/AdditionalPropertiesWithDescriptionOnly.md @@ -22,7 +22,7 @@ print(AdditionalPropertiesWithDescriptionOnly.to_json()) # convert the object into a dict additional_properties_with_description_only_dict = additional_properties_with_description_only_instance.to_dict() # create an instance of AdditionalPropertiesWithDescriptionOnly from a dict -additional_properties_with_description_only_form_dict = additional_properties_with_description_only.from_dict(additional_properties_with_description_only_dict) +additional_properties_with_description_only_from_dict = AdditionalPropertiesWithDescriptionOnly.from_dict(additional_properties_with_description_only_dict) ``` [[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/docs/AllOfSuperModel.md b/samples/openapi3/client/petstore/python/docs/AllOfSuperModel.md index 1262bd9dc51f..421a1527f1ef 100644 --- a/samples/openapi3/client/petstore/python/docs/AllOfSuperModel.md +++ b/samples/openapi3/client/petstore/python/docs/AllOfSuperModel.md @@ -22,7 +22,7 @@ print(AllOfSuperModel.to_json()) # convert the object into a dict all_of_super_model_dict = all_of_super_model_instance.to_dict() # create an instance of AllOfSuperModel from a dict -all_of_super_model_form_dict = all_of_super_model.from_dict(all_of_super_model_dict) +all_of_super_model_from_dict = AllOfSuperModel.from_dict(all_of_super_model_dict) ``` [[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/docs/AllOfWithSingleRef.md b/samples/openapi3/client/petstore/python/docs/AllOfWithSingleRef.md index 6c2860c02f5f..203a4b5da3d5 100644 --- a/samples/openapi3/client/petstore/python/docs/AllOfWithSingleRef.md +++ b/samples/openapi3/client/petstore/python/docs/AllOfWithSingleRef.md @@ -23,7 +23,7 @@ print(AllOfWithSingleRef.to_json()) # convert the object into a dict all_of_with_single_ref_dict = all_of_with_single_ref_instance.to_dict() # create an instance of AllOfWithSingleRef from a dict -all_of_with_single_ref_form_dict = all_of_with_single_ref.from_dict(all_of_with_single_ref_dict) +all_of_with_single_ref_from_dict = AllOfWithSingleRef.from_dict(all_of_with_single_ref_dict) ``` [[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/docs/Animal.md b/samples/openapi3/client/petstore/python/docs/Animal.md index 4c693f09e5ff..381d27b66e44 100644 --- a/samples/openapi3/client/petstore/python/docs/Animal.md +++ b/samples/openapi3/client/petstore/python/docs/Animal.md @@ -23,7 +23,7 @@ print(Animal.to_json()) # convert the object into a dict animal_dict = animal_instance.to_dict() # create an instance of Animal from a dict -animal_form_dict = animal.from_dict(animal_dict) +animal_from_dict = Animal.from_dict(animal_dict) ``` [[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/docs/AnyOfColor.md b/samples/openapi3/client/petstore/python/docs/AnyOfColor.md index ccaf51ce9fe0..6ed75dd7b48a 100644 --- a/samples/openapi3/client/petstore/python/docs/AnyOfColor.md +++ b/samples/openapi3/client/petstore/python/docs/AnyOfColor.md @@ -22,7 +22,7 @@ print(AnyOfColor.to_json()) # convert the object into a dict any_of_color_dict = any_of_color_instance.to_dict() # create an instance of AnyOfColor from a dict -any_of_color_form_dict = any_of_color.from_dict(any_of_color_dict) +any_of_color_from_dict = AnyOfColor.from_dict(any_of_color_dict) ``` [[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/docs/AnyOfPig.md b/samples/openapi3/client/petstore/python/docs/AnyOfPig.md index 52109d6670cd..9367e2261898 100644 --- a/samples/openapi3/client/petstore/python/docs/AnyOfPig.md +++ b/samples/openapi3/client/petstore/python/docs/AnyOfPig.md @@ -24,7 +24,7 @@ print(AnyOfPig.to_json()) # convert the object into a dict any_of_pig_dict = any_of_pig_instance.to_dict() # create an instance of AnyOfPig from a dict -any_of_pig_form_dict = any_of_pig.from_dict(any_of_pig_dict) +any_of_pig_from_dict = AnyOfPig.from_dict(any_of_pig_dict) ``` [[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/docs/ArrayOfArrayOfModel.md b/samples/openapi3/client/petstore/python/docs/ArrayOfArrayOfModel.md index 1cd9c367b262..f866863d53f9 100644 --- a/samples/openapi3/client/petstore/python/docs/ArrayOfArrayOfModel.md +++ b/samples/openapi3/client/petstore/python/docs/ArrayOfArrayOfModel.md @@ -22,7 +22,7 @@ print(ArrayOfArrayOfModel.to_json()) # convert the object into a dict array_of_array_of_model_dict = array_of_array_of_model_instance.to_dict() # create an instance of ArrayOfArrayOfModel from a dict -array_of_array_of_model_form_dict = array_of_array_of_model.from_dict(array_of_array_of_model_dict) +array_of_array_of_model_from_dict = ArrayOfArrayOfModel.from_dict(array_of_array_of_model_dict) ``` [[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/docs/ArrayOfArrayOfNumberOnly.md b/samples/openapi3/client/petstore/python/docs/ArrayOfArrayOfNumberOnly.md index 3ad18d346f6b..32bd2dfbf1e2 100644 --- a/samples/openapi3/client/petstore/python/docs/ArrayOfArrayOfNumberOnly.md +++ b/samples/openapi3/client/petstore/python/docs/ArrayOfArrayOfNumberOnly.md @@ -22,7 +22,7 @@ print(ArrayOfArrayOfNumberOnly.to_json()) # convert the object into a dict array_of_array_of_number_only_dict = array_of_array_of_number_only_instance.to_dict() # create an instance of ArrayOfArrayOfNumberOnly from a dict -array_of_array_of_number_only_form_dict = array_of_array_of_number_only.from_dict(array_of_array_of_number_only_dict) +array_of_array_of_number_only_from_dict = ArrayOfArrayOfNumberOnly.from_dict(array_of_array_of_number_only_dict) ``` [[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/docs/ArrayOfNumberOnly.md b/samples/openapi3/client/petstore/python/docs/ArrayOfNumberOnly.md index a606e3a54bba..b814d7594942 100644 --- a/samples/openapi3/client/petstore/python/docs/ArrayOfNumberOnly.md +++ b/samples/openapi3/client/petstore/python/docs/ArrayOfNumberOnly.md @@ -22,7 +22,7 @@ print(ArrayOfNumberOnly.to_json()) # convert the object into a dict array_of_number_only_dict = array_of_number_only_instance.to_dict() # create an instance of ArrayOfNumberOnly from a dict -array_of_number_only_form_dict = array_of_number_only.from_dict(array_of_number_only_dict) +array_of_number_only_from_dict = ArrayOfNumberOnly.from_dict(array_of_number_only_dict) ``` [[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/docs/ArrayTest.md b/samples/openapi3/client/petstore/python/docs/ArrayTest.md index a673e8a2893e..ed871fae662d 100644 --- a/samples/openapi3/client/petstore/python/docs/ArrayTest.md +++ b/samples/openapi3/client/petstore/python/docs/ArrayTest.md @@ -25,7 +25,7 @@ print(ArrayTest.to_json()) # convert the object into a dict array_test_dict = array_test_instance.to_dict() # create an instance of ArrayTest from a dict -array_test_form_dict = array_test.from_dict(array_test_dict) +array_test_from_dict = ArrayTest.from_dict(array_test_dict) ``` [[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/docs/BasquePig.md b/samples/openapi3/client/petstore/python/docs/BasquePig.md index aa3b3d28b3eb..ee28d628722f 100644 --- a/samples/openapi3/client/petstore/python/docs/BasquePig.md +++ b/samples/openapi3/client/petstore/python/docs/BasquePig.md @@ -23,7 +23,7 @@ print(BasquePig.to_json()) # convert the object into a dict basque_pig_dict = basque_pig_instance.to_dict() # create an instance of BasquePig from a dict -basque_pig_form_dict = basque_pig.from_dict(basque_pig_dict) +basque_pig_from_dict = BasquePig.from_dict(basque_pig_dict) ``` [[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/docs/Bathing.md b/samples/openapi3/client/petstore/python/docs/Bathing.md index bb8d40ac8ab5..6ad70e2f67cc 100644 --- a/samples/openapi3/client/petstore/python/docs/Bathing.md +++ b/samples/openapi3/client/petstore/python/docs/Bathing.md @@ -24,7 +24,7 @@ print(Bathing.to_json()) # convert the object into a dict bathing_dict = bathing_instance.to_dict() # create an instance of Bathing from a dict -bathing_form_dict = bathing.from_dict(bathing_dict) +bathing_from_dict = Bathing.from_dict(bathing_dict) ``` [[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/docs/Capitalization.md b/samples/openapi3/client/petstore/python/docs/Capitalization.md index 7f1a36413d56..6f564a8ed8c9 100644 --- a/samples/openapi3/client/petstore/python/docs/Capitalization.md +++ b/samples/openapi3/client/petstore/python/docs/Capitalization.md @@ -27,7 +27,7 @@ print(Capitalization.to_json()) # convert the object into a dict capitalization_dict = capitalization_instance.to_dict() # create an instance of Capitalization from a dict -capitalization_form_dict = capitalization.from_dict(capitalization_dict) +capitalization_from_dict = Capitalization.from_dict(capitalization_dict) ``` [[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/docs/Cat.md b/samples/openapi3/client/petstore/python/docs/Cat.md index a2d4b88805f6..d0e39efdb33e 100644 --- a/samples/openapi3/client/petstore/python/docs/Cat.md +++ b/samples/openapi3/client/petstore/python/docs/Cat.md @@ -22,7 +22,7 @@ print(Cat.to_json()) # convert the object into a dict cat_dict = cat_instance.to_dict() # create an instance of Cat from a dict -cat_form_dict = cat.from_dict(cat_dict) +cat_from_dict = Cat.from_dict(cat_dict) ``` [[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/docs/Category.md b/samples/openapi3/client/petstore/python/docs/Category.md index 24160009af4b..dbde14b7344c 100644 --- a/samples/openapi3/client/petstore/python/docs/Category.md +++ b/samples/openapi3/client/petstore/python/docs/Category.md @@ -23,7 +23,7 @@ print(Category.to_json()) # convert the object into a dict category_dict = category_instance.to_dict() # create an instance of Category from a dict -category_form_dict = category.from_dict(category_dict) +category_from_dict = Category.from_dict(category_dict) ``` [[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/docs/CircularAllOfRef.md b/samples/openapi3/client/petstore/python/docs/CircularAllOfRef.md index a00be37d4d19..65b171177e58 100644 --- a/samples/openapi3/client/petstore/python/docs/CircularAllOfRef.md +++ b/samples/openapi3/client/petstore/python/docs/CircularAllOfRef.md @@ -23,7 +23,7 @@ print(CircularAllOfRef.to_json()) # convert the object into a dict circular_all_of_ref_dict = circular_all_of_ref_instance.to_dict() # create an instance of CircularAllOfRef from a dict -circular_all_of_ref_form_dict = circular_all_of_ref.from_dict(circular_all_of_ref_dict) +circular_all_of_ref_from_dict = CircularAllOfRef.from_dict(circular_all_of_ref_dict) ``` [[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/docs/CircularReferenceModel.md b/samples/openapi3/client/petstore/python/docs/CircularReferenceModel.md index 6695d4a7613b..87216f7273ab 100644 --- a/samples/openapi3/client/petstore/python/docs/CircularReferenceModel.md +++ b/samples/openapi3/client/petstore/python/docs/CircularReferenceModel.md @@ -23,7 +23,7 @@ print(CircularReferenceModel.to_json()) # convert the object into a dict circular_reference_model_dict = circular_reference_model_instance.to_dict() # create an instance of CircularReferenceModel from a dict -circular_reference_model_form_dict = circular_reference_model.from_dict(circular_reference_model_dict) +circular_reference_model_from_dict = CircularReferenceModel.from_dict(circular_reference_model_dict) ``` [[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/docs/ClassModel.md b/samples/openapi3/client/petstore/python/docs/ClassModel.md index 25351614fa43..ea76a5c157bf 100644 --- a/samples/openapi3/client/petstore/python/docs/ClassModel.md +++ b/samples/openapi3/client/petstore/python/docs/ClassModel.md @@ -23,7 +23,7 @@ print(ClassModel.to_json()) # convert the object into a dict class_model_dict = class_model_instance.to_dict() # create an instance of ClassModel from a dict -class_model_form_dict = class_model.from_dict(class_model_dict) +class_model_from_dict = ClassModel.from_dict(class_model_dict) ``` [[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/docs/Client.md b/samples/openapi3/client/petstore/python/docs/Client.md index b601737b02f1..22321c189150 100644 --- a/samples/openapi3/client/petstore/python/docs/Client.md +++ b/samples/openapi3/client/petstore/python/docs/Client.md @@ -22,7 +22,7 @@ print(Client.to_json()) # convert the object into a dict client_dict = client_instance.to_dict() # create an instance of Client from a dict -client_form_dict = client.from_dict(client_dict) +client_from_dict = Client.from_dict(client_dict) ``` [[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/docs/Color.md b/samples/openapi3/client/petstore/python/docs/Color.md index 9bd63f91d7c1..9ac3ab2e91f4 100644 --- a/samples/openapi3/client/petstore/python/docs/Color.md +++ b/samples/openapi3/client/petstore/python/docs/Color.md @@ -22,7 +22,7 @@ print(Color.to_json()) # convert the object into a dict color_dict = color_instance.to_dict() # create an instance of Color from a dict -color_form_dict = color.from_dict(color_dict) +color_from_dict = Color.from_dict(color_dict) ``` [[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/docs/Creature.md b/samples/openapi3/client/petstore/python/docs/Creature.md index fa1ec65401bd..a4710214c198 100644 --- a/samples/openapi3/client/petstore/python/docs/Creature.md +++ b/samples/openapi3/client/petstore/python/docs/Creature.md @@ -23,7 +23,7 @@ print(Creature.to_json()) # convert the object into a dict creature_dict = creature_instance.to_dict() # create an instance of Creature from a dict -creature_form_dict = creature.from_dict(creature_dict) +creature_from_dict = Creature.from_dict(creature_dict) ``` [[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/docs/CreatureInfo.md b/samples/openapi3/client/petstore/python/docs/CreatureInfo.md index fe4ab81a8071..db3b82bb9ff5 100644 --- a/samples/openapi3/client/petstore/python/docs/CreatureInfo.md +++ b/samples/openapi3/client/petstore/python/docs/CreatureInfo.md @@ -22,7 +22,7 @@ print(CreatureInfo.to_json()) # convert the object into a dict creature_info_dict = creature_info_instance.to_dict() # create an instance of CreatureInfo from a dict -creature_info_form_dict = creature_info.from_dict(creature_info_dict) +creature_info_from_dict = CreatureInfo.from_dict(creature_info_dict) ``` [[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/docs/DanishPig.md b/samples/openapi3/client/petstore/python/docs/DanishPig.md index 6aef777ffe06..16941388832a 100644 --- a/samples/openapi3/client/petstore/python/docs/DanishPig.md +++ b/samples/openapi3/client/petstore/python/docs/DanishPig.md @@ -23,7 +23,7 @@ print(DanishPig.to_json()) # convert the object into a dict danish_pig_dict = danish_pig_instance.to_dict() # create an instance of DanishPig from a dict -danish_pig_form_dict = danish_pig.from_dict(danish_pig_dict) +danish_pig_from_dict = DanishPig.from_dict(danish_pig_dict) ``` [[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/docs/DeprecatedObject.md b/samples/openapi3/client/petstore/python/docs/DeprecatedObject.md index 5de685050ffc..6b362f379ba4 100644 --- a/samples/openapi3/client/petstore/python/docs/DeprecatedObject.md +++ b/samples/openapi3/client/petstore/python/docs/DeprecatedObject.md @@ -22,7 +22,7 @@ print(DeprecatedObject.to_json()) # convert the object into a dict deprecated_object_dict = deprecated_object_instance.to_dict() # create an instance of DeprecatedObject from a dict -deprecated_object_form_dict = deprecated_object.from_dict(deprecated_object_dict) +deprecated_object_from_dict = DeprecatedObject.from_dict(deprecated_object_dict) ``` [[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/docs/DiscriminatorAllOfSub.md b/samples/openapi3/client/petstore/python/docs/DiscriminatorAllOfSub.md index e7cd36010f5b..f72b6e8e68ca 100644 --- a/samples/openapi3/client/petstore/python/docs/DiscriminatorAllOfSub.md +++ b/samples/openapi3/client/petstore/python/docs/DiscriminatorAllOfSub.md @@ -21,7 +21,7 @@ print(DiscriminatorAllOfSub.to_json()) # convert the object into a dict discriminator_all_of_sub_dict = discriminator_all_of_sub_instance.to_dict() # create an instance of DiscriminatorAllOfSub from a dict -discriminator_all_of_sub_form_dict = discriminator_all_of_sub.from_dict(discriminator_all_of_sub_dict) +discriminator_all_of_sub_from_dict = DiscriminatorAllOfSub.from_dict(discriminator_all_of_sub_dict) ``` [[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/docs/DiscriminatorAllOfSuper.md b/samples/openapi3/client/petstore/python/docs/DiscriminatorAllOfSuper.md index 4859a9a6d40b..477c05bfc446 100644 --- a/samples/openapi3/client/petstore/python/docs/DiscriminatorAllOfSuper.md +++ b/samples/openapi3/client/petstore/python/docs/DiscriminatorAllOfSuper.md @@ -22,7 +22,7 @@ print(DiscriminatorAllOfSuper.to_json()) # convert the object into a dict discriminator_all_of_super_dict = discriminator_all_of_super_instance.to_dict() # create an instance of DiscriminatorAllOfSuper from a dict -discriminator_all_of_super_form_dict = discriminator_all_of_super.from_dict(discriminator_all_of_super_dict) +discriminator_all_of_super_from_dict = DiscriminatorAllOfSuper.from_dict(discriminator_all_of_super_dict) ``` [[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/docs/Dog.md b/samples/openapi3/client/petstore/python/docs/Dog.md index ecb205929573..ed23f613d01d 100644 --- a/samples/openapi3/client/petstore/python/docs/Dog.md +++ b/samples/openapi3/client/petstore/python/docs/Dog.md @@ -22,7 +22,7 @@ print(Dog.to_json()) # convert the object into a dict dog_dict = dog_instance.to_dict() # create an instance of Dog from a dict -dog_form_dict = dog.from_dict(dog_dict) +dog_from_dict = Dog.from_dict(dog_dict) ``` [[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/docs/DummyModel.md b/samples/openapi3/client/petstore/python/docs/DummyModel.md index 21a59bef1bfd..01b675977f58 100644 --- a/samples/openapi3/client/petstore/python/docs/DummyModel.md +++ b/samples/openapi3/client/petstore/python/docs/DummyModel.md @@ -23,7 +23,7 @@ print(DummyModel.to_json()) # convert the object into a dict dummy_model_dict = dummy_model_instance.to_dict() # create an instance of DummyModel from a dict -dummy_model_form_dict = dummy_model.from_dict(dummy_model_dict) +dummy_model_from_dict = DummyModel.from_dict(dummy_model_dict) ``` [[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/docs/EnumArrays.md b/samples/openapi3/client/petstore/python/docs/EnumArrays.md index 6a5293dfcc69..f44617497bce 100644 --- a/samples/openapi3/client/petstore/python/docs/EnumArrays.md +++ b/samples/openapi3/client/petstore/python/docs/EnumArrays.md @@ -23,7 +23,7 @@ print(EnumArrays.to_json()) # convert the object into a dict enum_arrays_dict = enum_arrays_instance.to_dict() # create an instance of EnumArrays from a dict -enum_arrays_form_dict = enum_arrays.from_dict(enum_arrays_dict) +enum_arrays_from_dict = EnumArrays.from_dict(enum_arrays_dict) ``` [[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/docs/EnumTest.md b/samples/openapi3/client/petstore/python/docs/EnumTest.md index 494a4d054f06..d875c67604cf 100644 --- a/samples/openapi3/client/petstore/python/docs/EnumTest.md +++ b/samples/openapi3/client/petstore/python/docs/EnumTest.md @@ -30,7 +30,7 @@ print(EnumTest.to_json()) # convert the object into a dict enum_test_dict = enum_test_instance.to_dict() # create an instance of EnumTest from a dict -enum_test_form_dict = enum_test.from_dict(enum_test_dict) +enum_test_from_dict = EnumTest.from_dict(enum_test_dict) ``` [[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/docs/Feeding.md b/samples/openapi3/client/petstore/python/docs/Feeding.md index 7d1e83627dde..9f92b5d964d3 100644 --- a/samples/openapi3/client/petstore/python/docs/Feeding.md +++ b/samples/openapi3/client/petstore/python/docs/Feeding.md @@ -24,7 +24,7 @@ print(Feeding.to_json()) # convert the object into a dict feeding_dict = feeding_instance.to_dict() # create an instance of Feeding from a dict -feeding_form_dict = feeding.from_dict(feeding_dict) +feeding_from_dict = Feeding.from_dict(feeding_dict) ``` [[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/docs/File.md b/samples/openapi3/client/petstore/python/docs/File.md index 1b03d58761cb..23f0567411ce 100644 --- a/samples/openapi3/client/petstore/python/docs/File.md +++ b/samples/openapi3/client/petstore/python/docs/File.md @@ -23,7 +23,7 @@ print(File.to_json()) # convert the object into a dict file_dict = file_instance.to_dict() # create an instance of File from a dict -file_form_dict = file.from_dict(file_dict) +file_from_dict = File.from_dict(file_dict) ``` [[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/docs/FileSchemaTestClass.md b/samples/openapi3/client/petstore/python/docs/FileSchemaTestClass.md index 26a1758abfeb..e1118042a8ec 100644 --- a/samples/openapi3/client/petstore/python/docs/FileSchemaTestClass.md +++ b/samples/openapi3/client/petstore/python/docs/FileSchemaTestClass.md @@ -23,7 +23,7 @@ print(FileSchemaTestClass.to_json()) # convert the object into a dict file_schema_test_class_dict = file_schema_test_class_instance.to_dict() # create an instance of FileSchemaTestClass from a dict -file_schema_test_class_form_dict = file_schema_test_class.from_dict(file_schema_test_class_dict) +file_schema_test_class_from_dict = FileSchemaTestClass.from_dict(file_schema_test_class_dict) ``` [[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/docs/FirstRef.md b/samples/openapi3/client/petstore/python/docs/FirstRef.md index 5092de432d39..94b8ddc5ac22 100644 --- a/samples/openapi3/client/petstore/python/docs/FirstRef.md +++ b/samples/openapi3/client/petstore/python/docs/FirstRef.md @@ -23,7 +23,7 @@ print(FirstRef.to_json()) # convert the object into a dict first_ref_dict = first_ref_instance.to_dict() # create an instance of FirstRef from a dict -first_ref_form_dict = first_ref.from_dict(first_ref_dict) +first_ref_from_dict = FirstRef.from_dict(first_ref_dict) ``` [[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/docs/Foo.md b/samples/openapi3/client/petstore/python/docs/Foo.md index 020b8d75b76a..f635b0daa6db 100644 --- a/samples/openapi3/client/petstore/python/docs/Foo.md +++ b/samples/openapi3/client/petstore/python/docs/Foo.md @@ -22,7 +22,7 @@ print(Foo.to_json()) # convert the object into a dict foo_dict = foo_instance.to_dict() # create an instance of Foo from a dict -foo_form_dict = foo.from_dict(foo_dict) +foo_from_dict = Foo.from_dict(foo_dict) ``` [[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/docs/FooGetDefaultResponse.md b/samples/openapi3/client/petstore/python/docs/FooGetDefaultResponse.md index 755c3232bbf2..8d84f795b00a 100644 --- a/samples/openapi3/client/petstore/python/docs/FooGetDefaultResponse.md +++ b/samples/openapi3/client/petstore/python/docs/FooGetDefaultResponse.md @@ -22,7 +22,7 @@ print(FooGetDefaultResponse.to_json()) # convert the object into a dict foo_get_default_response_dict = foo_get_default_response_instance.to_dict() # create an instance of FooGetDefaultResponse from a dict -foo_get_default_response_form_dict = foo_get_default_response.from_dict(foo_get_default_response_dict) +foo_get_default_response_from_dict = FooGetDefaultResponse.from_dict(foo_get_default_response_dict) ``` [[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/docs/FormatTest.md b/samples/openapi3/client/petstore/python/docs/FormatTest.md index 3b2f44457f18..6be7fc017577 100644 --- a/samples/openapi3/client/petstore/python/docs/FormatTest.md +++ b/samples/openapi3/client/petstore/python/docs/FormatTest.md @@ -38,7 +38,7 @@ print(FormatTest.to_json()) # convert the object into a dict format_test_dict = format_test_instance.to_dict() # create an instance of FormatTest from a dict -format_test_form_dict = format_test.from_dict(format_test_dict) +format_test_from_dict = FormatTest.from_dict(format_test_dict) ``` [[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/docs/HasOnlyReadOnly.md b/samples/openapi3/client/petstore/python/docs/HasOnlyReadOnly.md index 00d2af2fd330..fdc48781b15a 100644 --- a/samples/openapi3/client/petstore/python/docs/HasOnlyReadOnly.md +++ b/samples/openapi3/client/petstore/python/docs/HasOnlyReadOnly.md @@ -23,7 +23,7 @@ print(HasOnlyReadOnly.to_json()) # convert the object into a dict has_only_read_only_dict = has_only_read_only_instance.to_dict() # create an instance of HasOnlyReadOnly from a dict -has_only_read_only_form_dict = has_only_read_only.from_dict(has_only_read_only_dict) +has_only_read_only_from_dict = HasOnlyReadOnly.from_dict(has_only_read_only_dict) ``` [[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/docs/HealthCheckResult.md b/samples/openapi3/client/petstore/python/docs/HealthCheckResult.md index d32450f4c2ea..d4a2b187167f 100644 --- a/samples/openapi3/client/petstore/python/docs/HealthCheckResult.md +++ b/samples/openapi3/client/petstore/python/docs/HealthCheckResult.md @@ -23,7 +23,7 @@ print(HealthCheckResult.to_json()) # convert the object into a dict health_check_result_dict = health_check_result_instance.to_dict() # create an instance of HealthCheckResult from a dict -health_check_result_form_dict = health_check_result.from_dict(health_check_result_dict) +health_check_result_from_dict = HealthCheckResult.from_dict(health_check_result_dict) ``` [[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/docs/InnerDictWithProperty.md b/samples/openapi3/client/petstore/python/docs/InnerDictWithProperty.md index efd91b13f3a5..7b82ebb770b8 100644 --- a/samples/openapi3/client/petstore/python/docs/InnerDictWithProperty.md +++ b/samples/openapi3/client/petstore/python/docs/InnerDictWithProperty.md @@ -22,7 +22,7 @@ print(InnerDictWithProperty.to_json()) # convert the object into a dict inner_dict_with_property_dict = inner_dict_with_property_instance.to_dict() # create an instance of InnerDictWithProperty from a dict -inner_dict_with_property_form_dict = inner_dict_with_property.from_dict(inner_dict_with_property_dict) +inner_dict_with_property_from_dict = InnerDictWithProperty.from_dict(inner_dict_with_property_dict) ``` [[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/docs/InputAllOf.md b/samples/openapi3/client/petstore/python/docs/InputAllOf.md index 7d6404e3f27e..45298f5308fc 100644 --- a/samples/openapi3/client/petstore/python/docs/InputAllOf.md +++ b/samples/openapi3/client/petstore/python/docs/InputAllOf.md @@ -22,7 +22,7 @@ print(InputAllOf.to_json()) # convert the object into a dict input_all_of_dict = input_all_of_instance.to_dict() # create an instance of InputAllOf from a dict -input_all_of_form_dict = input_all_of.from_dict(input_all_of_dict) +input_all_of_from_dict = InputAllOf.from_dict(input_all_of_dict) ``` [[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/docs/IntOrString.md b/samples/openapi3/client/petstore/python/docs/IntOrString.md index c2f6fd5838ee..b4070b9a8c79 100644 --- a/samples/openapi3/client/petstore/python/docs/IntOrString.md +++ b/samples/openapi3/client/petstore/python/docs/IntOrString.md @@ -21,7 +21,7 @@ print(IntOrString.to_json()) # convert the object into a dict int_or_string_dict = int_or_string_instance.to_dict() # create an instance of IntOrString from a dict -int_or_string_form_dict = int_or_string.from_dict(int_or_string_dict) +int_or_string_from_dict = IntOrString.from_dict(int_or_string_dict) ``` [[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/docs/ListClass.md b/samples/openapi3/client/petstore/python/docs/ListClass.md index 3595f39de141..01068b7d22c3 100644 --- a/samples/openapi3/client/petstore/python/docs/ListClass.md +++ b/samples/openapi3/client/petstore/python/docs/ListClass.md @@ -22,7 +22,7 @@ print(ListClass.to_json()) # convert the object into a dict list_class_dict = list_class_instance.to_dict() # create an instance of ListClass from a dict -list_class_form_dict = list_class.from_dict(list_class_dict) +list_class_from_dict = ListClass.from_dict(list_class_dict) ``` [[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/docs/MapOfArrayOfModel.md b/samples/openapi3/client/petstore/python/docs/MapOfArrayOfModel.md index 2220ab1f7c45..71a4ef66b682 100644 --- a/samples/openapi3/client/petstore/python/docs/MapOfArrayOfModel.md +++ b/samples/openapi3/client/petstore/python/docs/MapOfArrayOfModel.md @@ -22,7 +22,7 @@ print(MapOfArrayOfModel.to_json()) # convert the object into a dict map_of_array_of_model_dict = map_of_array_of_model_instance.to_dict() # create an instance of MapOfArrayOfModel from a dict -map_of_array_of_model_form_dict = map_of_array_of_model.from_dict(map_of_array_of_model_dict) +map_of_array_of_model_from_dict = MapOfArrayOfModel.from_dict(map_of_array_of_model_dict) ``` [[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/docs/MapTest.md b/samples/openapi3/client/petstore/python/docs/MapTest.md index bd62a851e92b..d04b82e9378c 100644 --- a/samples/openapi3/client/petstore/python/docs/MapTest.md +++ b/samples/openapi3/client/petstore/python/docs/MapTest.md @@ -25,7 +25,7 @@ print(MapTest.to_json()) # convert the object into a dict map_test_dict = map_test_instance.to_dict() # create an instance of MapTest from a dict -map_test_form_dict = map_test.from_dict(map_test_dict) +map_test_from_dict = MapTest.from_dict(map_test_dict) ``` [[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/docs/MixedPropertiesAndAdditionalPropertiesClass.md b/samples/openapi3/client/petstore/python/docs/MixedPropertiesAndAdditionalPropertiesClass.md index 7cab16af1738..0dc994275d1e 100644 --- a/samples/openapi3/client/petstore/python/docs/MixedPropertiesAndAdditionalPropertiesClass.md +++ b/samples/openapi3/client/petstore/python/docs/MixedPropertiesAndAdditionalPropertiesClass.md @@ -24,7 +24,7 @@ print(MixedPropertiesAndAdditionalPropertiesClass.to_json()) # convert the object into a dict mixed_properties_and_additional_properties_class_dict = mixed_properties_and_additional_properties_class_instance.to_dict() # create an instance of MixedPropertiesAndAdditionalPropertiesClass from a dict -mixed_properties_and_additional_properties_class_form_dict = mixed_properties_and_additional_properties_class.from_dict(mixed_properties_and_additional_properties_class_dict) +mixed_properties_and_additional_properties_class_from_dict = MixedPropertiesAndAdditionalPropertiesClass.from_dict(mixed_properties_and_additional_properties_class_dict) ``` [[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/docs/Model200Response.md b/samples/openapi3/client/petstore/python/docs/Model200Response.md index 454a4fcf30a0..7fdbdefc6cec 100644 --- a/samples/openapi3/client/petstore/python/docs/Model200Response.md +++ b/samples/openapi3/client/petstore/python/docs/Model200Response.md @@ -24,7 +24,7 @@ print(Model200Response.to_json()) # convert the object into a dict model200_response_dict = model200_response_instance.to_dict() # create an instance of Model200Response from a dict -model200_response_form_dict = model200_response.from_dict(model200_response_dict) +model200_response_from_dict = Model200Response.from_dict(model200_response_dict) ``` [[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/docs/ModelApiResponse.md b/samples/openapi3/client/petstore/python/docs/ModelApiResponse.md index 8e0a033bd648..5ddc0db2a0f3 100644 --- a/samples/openapi3/client/petstore/python/docs/ModelApiResponse.md +++ b/samples/openapi3/client/petstore/python/docs/ModelApiResponse.md @@ -24,7 +24,7 @@ print(ModelApiResponse.to_json()) # convert the object into a dict model_api_response_dict = model_api_response_instance.to_dict() # create an instance of ModelApiResponse from a dict -model_api_response_form_dict = model_api_response.from_dict(model_api_response_dict) +model_api_response_from_dict = ModelApiResponse.from_dict(model_api_response_dict) ``` [[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/docs/ModelField.md b/samples/openapi3/client/petstore/python/docs/ModelField.md index f5f03fd82d29..9073b5dbdb00 100644 --- a/samples/openapi3/client/petstore/python/docs/ModelField.md +++ b/samples/openapi3/client/petstore/python/docs/ModelField.md @@ -22,7 +22,7 @@ print(ModelField.to_json()) # convert the object into a dict model_field_dict = model_field_instance.to_dict() # create an instance of ModelField from a dict -model_field_form_dict = model_field.from_dict(model_field_dict) +model_field_from_dict = ModelField.from_dict(model_field_dict) ``` [[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/docs/ModelReturn.md b/samples/openapi3/client/petstore/python/docs/ModelReturn.md index 6b660953e1d8..7d327053b0c3 100644 --- a/samples/openapi3/client/petstore/python/docs/ModelReturn.md +++ b/samples/openapi3/client/petstore/python/docs/ModelReturn.md @@ -23,7 +23,7 @@ print(ModelReturn.to_json()) # convert the object into a dict model_return_dict = model_return_instance.to_dict() # create an instance of ModelReturn from a dict -model_return_form_dict = model_return.from_dict(model_return_dict) +model_return_from_dict = ModelReturn.from_dict(model_return_dict) ``` [[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/docs/Name.md b/samples/openapi3/client/petstore/python/docs/Name.md index 5c5986a76d0b..5a04ec1ada06 100644 --- a/samples/openapi3/client/petstore/python/docs/Name.md +++ b/samples/openapi3/client/petstore/python/docs/Name.md @@ -26,7 +26,7 @@ print(Name.to_json()) # convert the object into a dict name_dict = name_instance.to_dict() # create an instance of Name from a dict -name_form_dict = name.from_dict(name_dict) +name_from_dict = Name.from_dict(name_dict) ``` [[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/docs/NullableClass.md b/samples/openapi3/client/petstore/python/docs/NullableClass.md index 3657d21255c4..0387dcc2c67a 100644 --- a/samples/openapi3/client/petstore/python/docs/NullableClass.md +++ b/samples/openapi3/client/petstore/python/docs/NullableClass.md @@ -34,7 +34,7 @@ print(NullableClass.to_json()) # convert the object into a dict nullable_class_dict = nullable_class_instance.to_dict() # create an instance of NullableClass from a dict -nullable_class_form_dict = nullable_class.from_dict(nullable_class_dict) +nullable_class_from_dict = NullableClass.from_dict(nullable_class_dict) ``` [[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/docs/NullableProperty.md b/samples/openapi3/client/petstore/python/docs/NullableProperty.md index 27ce3192f847..30edaf4844b2 100644 --- a/samples/openapi3/client/petstore/python/docs/NullableProperty.md +++ b/samples/openapi3/client/petstore/python/docs/NullableProperty.md @@ -23,7 +23,7 @@ print(NullableProperty.to_json()) # convert the object into a dict nullable_property_dict = nullable_property_instance.to_dict() # create an instance of NullableProperty from a dict -nullable_property_form_dict = nullable_property.from_dict(nullable_property_dict) +nullable_property_from_dict = NullableProperty.from_dict(nullable_property_dict) ``` [[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/docs/NumberOnly.md b/samples/openapi3/client/petstore/python/docs/NumberOnly.md index 72e0a4bfde0b..415dd25585d4 100644 --- a/samples/openapi3/client/petstore/python/docs/NumberOnly.md +++ b/samples/openapi3/client/petstore/python/docs/NumberOnly.md @@ -22,7 +22,7 @@ print(NumberOnly.to_json()) # convert the object into a dict number_only_dict = number_only_instance.to_dict() # create an instance of NumberOnly from a dict -number_only_form_dict = number_only.from_dict(number_only_dict) +number_only_from_dict = NumberOnly.from_dict(number_only_dict) ``` [[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/docs/ObjectToTestAdditionalProperties.md b/samples/openapi3/client/petstore/python/docs/ObjectToTestAdditionalProperties.md index 5d2c76c8958e..f6bc34c98e65 100644 --- a/samples/openapi3/client/petstore/python/docs/ObjectToTestAdditionalProperties.md +++ b/samples/openapi3/client/petstore/python/docs/ObjectToTestAdditionalProperties.md @@ -23,7 +23,7 @@ print(ObjectToTestAdditionalProperties.to_json()) # convert the object into a dict object_to_test_additional_properties_dict = object_to_test_additional_properties_instance.to_dict() # create an instance of ObjectToTestAdditionalProperties from a dict -object_to_test_additional_properties_form_dict = object_to_test_additional_properties.from_dict(object_to_test_additional_properties_dict) +object_to_test_additional_properties_from_dict = ObjectToTestAdditionalProperties.from_dict(object_to_test_additional_properties_dict) ``` [[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/docs/ObjectWithDeprecatedFields.md b/samples/openapi3/client/petstore/python/docs/ObjectWithDeprecatedFields.md index b1077a60b954..6dbd2ace04f1 100644 --- a/samples/openapi3/client/petstore/python/docs/ObjectWithDeprecatedFields.md +++ b/samples/openapi3/client/petstore/python/docs/ObjectWithDeprecatedFields.md @@ -25,7 +25,7 @@ print(ObjectWithDeprecatedFields.to_json()) # convert the object into a dict object_with_deprecated_fields_dict = object_with_deprecated_fields_instance.to_dict() # create an instance of ObjectWithDeprecatedFields from a dict -object_with_deprecated_fields_form_dict = object_with_deprecated_fields.from_dict(object_with_deprecated_fields_dict) +object_with_deprecated_fields_from_dict = ObjectWithDeprecatedFields.from_dict(object_with_deprecated_fields_dict) ``` [[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/docs/OneOfEnumString.md b/samples/openapi3/client/petstore/python/docs/OneOfEnumString.md index 25fc402280f0..1d385c092934 100644 --- a/samples/openapi3/client/petstore/python/docs/OneOfEnumString.md +++ b/samples/openapi3/client/petstore/python/docs/OneOfEnumString.md @@ -22,7 +22,7 @@ print(OneOfEnumString.to_json()) # convert the object into a dict one_of_enum_string_dict = one_of_enum_string_instance.to_dict() # create an instance of OneOfEnumString from a dict -one_of_enum_string_form_dict = one_of_enum_string.from_dict(one_of_enum_string_dict) +one_of_enum_string_from_dict = OneOfEnumString.from_dict(one_of_enum_string_dict) ``` [[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/docs/Order.md b/samples/openapi3/client/petstore/python/docs/Order.md index 08b602f1669b..00526b8d04b9 100644 --- a/samples/openapi3/client/petstore/python/docs/Order.md +++ b/samples/openapi3/client/petstore/python/docs/Order.md @@ -27,7 +27,7 @@ print(Order.to_json()) # convert the object into a dict order_dict = order_instance.to_dict() # create an instance of Order from a dict -order_form_dict = order.from_dict(order_dict) +order_from_dict = Order.from_dict(order_dict) ``` [[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/docs/OuterComposite.md b/samples/openapi3/client/petstore/python/docs/OuterComposite.md index 9d4401d659b2..c8242c2d2653 100644 --- a/samples/openapi3/client/petstore/python/docs/OuterComposite.md +++ b/samples/openapi3/client/petstore/python/docs/OuterComposite.md @@ -24,7 +24,7 @@ print(OuterComposite.to_json()) # convert the object into a dict outer_composite_dict = outer_composite_instance.to_dict() # create an instance of OuterComposite from a dict -outer_composite_form_dict = outer_composite.from_dict(outer_composite_dict) +outer_composite_from_dict = OuterComposite.from_dict(outer_composite_dict) ``` [[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/docs/OuterObjectWithEnumProperty.md b/samples/openapi3/client/petstore/python/docs/OuterObjectWithEnumProperty.md index beffcbe25453..6137dbd98da6 100644 --- a/samples/openapi3/client/petstore/python/docs/OuterObjectWithEnumProperty.md +++ b/samples/openapi3/client/petstore/python/docs/OuterObjectWithEnumProperty.md @@ -23,7 +23,7 @@ print(OuterObjectWithEnumProperty.to_json()) # convert the object into a dict outer_object_with_enum_property_dict = outer_object_with_enum_property_instance.to_dict() # create an instance of OuterObjectWithEnumProperty from a dict -outer_object_with_enum_property_form_dict = outer_object_with_enum_property.from_dict(outer_object_with_enum_property_dict) +outer_object_with_enum_property_from_dict = OuterObjectWithEnumProperty.from_dict(outer_object_with_enum_property_dict) ``` [[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/docs/Parent.md b/samples/openapi3/client/petstore/python/docs/Parent.md index 3b71011330d5..7387f9250aad 100644 --- a/samples/openapi3/client/petstore/python/docs/Parent.md +++ b/samples/openapi3/client/petstore/python/docs/Parent.md @@ -22,7 +22,7 @@ print(Parent.to_json()) # convert the object into a dict parent_dict = parent_instance.to_dict() # create an instance of Parent from a dict -parent_form_dict = parent.from_dict(parent_dict) +parent_from_dict = Parent.from_dict(parent_dict) ``` [[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/docs/ParentWithOptionalDict.md b/samples/openapi3/client/petstore/python/docs/ParentWithOptionalDict.md index 23e11a6dd660..bfc8688ea26f 100644 --- a/samples/openapi3/client/petstore/python/docs/ParentWithOptionalDict.md +++ b/samples/openapi3/client/petstore/python/docs/ParentWithOptionalDict.md @@ -22,7 +22,7 @@ print(ParentWithOptionalDict.to_json()) # convert the object into a dict parent_with_optional_dict_dict = parent_with_optional_dict_instance.to_dict() # create an instance of ParentWithOptionalDict from a dict -parent_with_optional_dict_form_dict = parent_with_optional_dict.from_dict(parent_with_optional_dict_dict) +parent_with_optional_dict_from_dict = ParentWithOptionalDict.from_dict(parent_with_optional_dict_dict) ``` [[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/docs/Pet.md b/samples/openapi3/client/petstore/python/docs/Pet.md index fa9dc7bf3081..5329cf2fb925 100644 --- a/samples/openapi3/client/petstore/python/docs/Pet.md +++ b/samples/openapi3/client/petstore/python/docs/Pet.md @@ -27,7 +27,7 @@ print(Pet.to_json()) # convert the object into a dict pet_dict = pet_instance.to_dict() # create an instance of Pet from a dict -pet_form_dict = pet.from_dict(pet_dict) +pet_from_dict = Pet.from_dict(pet_dict) ``` [[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/docs/Pig.md b/samples/openapi3/client/petstore/python/docs/Pig.md index 9ad7b7904941..625930676083 100644 --- a/samples/openapi3/client/petstore/python/docs/Pig.md +++ b/samples/openapi3/client/petstore/python/docs/Pig.md @@ -24,7 +24,7 @@ print(Pig.to_json()) # convert the object into a dict pig_dict = pig_instance.to_dict() # create an instance of Pig from a dict -pig_form_dict = pig.from_dict(pig_dict) +pig_from_dict = Pig.from_dict(pig_dict) ``` [[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/docs/PoopCleaning.md b/samples/openapi3/client/petstore/python/docs/PoopCleaning.md index d96a5db0d4cd..8f9c25e08316 100644 --- a/samples/openapi3/client/petstore/python/docs/PoopCleaning.md +++ b/samples/openapi3/client/petstore/python/docs/PoopCleaning.md @@ -24,7 +24,7 @@ print(PoopCleaning.to_json()) # convert the object into a dict poop_cleaning_dict = poop_cleaning_instance.to_dict() # create an instance of PoopCleaning from a dict -poop_cleaning_form_dict = poop_cleaning.from_dict(poop_cleaning_dict) +poop_cleaning_from_dict = PoopCleaning.from_dict(poop_cleaning_dict) ``` [[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/docs/PropertyMap.md b/samples/openapi3/client/petstore/python/docs/PropertyMap.md index 3b4c0a8cc03f..a55a0e5c6f01 100644 --- a/samples/openapi3/client/petstore/python/docs/PropertyMap.md +++ b/samples/openapi3/client/petstore/python/docs/PropertyMap.md @@ -22,7 +22,7 @@ print(PropertyMap.to_json()) # convert the object into a dict property_map_dict = property_map_instance.to_dict() # create an instance of PropertyMap from a dict -property_map_form_dict = property_map.from_dict(property_map_dict) +property_map_from_dict = PropertyMap.from_dict(property_map_dict) ``` [[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/docs/PropertyNameCollision.md b/samples/openapi3/client/petstore/python/docs/PropertyNameCollision.md index 1bd7ce5ee2b8..40c233670dd0 100644 --- a/samples/openapi3/client/petstore/python/docs/PropertyNameCollision.md +++ b/samples/openapi3/client/petstore/python/docs/PropertyNameCollision.md @@ -24,7 +24,7 @@ print(PropertyNameCollision.to_json()) # convert the object into a dict property_name_collision_dict = property_name_collision_instance.to_dict() # create an instance of PropertyNameCollision from a dict -property_name_collision_form_dict = property_name_collision.from_dict(property_name_collision_dict) +property_name_collision_from_dict = PropertyNameCollision.from_dict(property_name_collision_dict) ``` [[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/docs/ReadOnlyFirst.md b/samples/openapi3/client/petstore/python/docs/ReadOnlyFirst.md index 4644f28f56a8..686ec5da41c9 100644 --- a/samples/openapi3/client/petstore/python/docs/ReadOnlyFirst.md +++ b/samples/openapi3/client/petstore/python/docs/ReadOnlyFirst.md @@ -23,7 +23,7 @@ print(ReadOnlyFirst.to_json()) # convert the object into a dict read_only_first_dict = read_only_first_instance.to_dict() # create an instance of ReadOnlyFirst from a dict -read_only_first_form_dict = read_only_first.from_dict(read_only_first_dict) +read_only_first_from_dict = ReadOnlyFirst.from_dict(read_only_first_dict) ``` [[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/docs/SecondCircularAllOfRef.md b/samples/openapi3/client/petstore/python/docs/SecondCircularAllOfRef.md index eae28911ed2c..65ebdd4c7e1d 100644 --- a/samples/openapi3/client/petstore/python/docs/SecondCircularAllOfRef.md +++ b/samples/openapi3/client/petstore/python/docs/SecondCircularAllOfRef.md @@ -23,7 +23,7 @@ print(SecondCircularAllOfRef.to_json()) # convert the object into a dict second_circular_all_of_ref_dict = second_circular_all_of_ref_instance.to_dict() # create an instance of SecondCircularAllOfRef from a dict -second_circular_all_of_ref_form_dict = second_circular_all_of_ref.from_dict(second_circular_all_of_ref_dict) +second_circular_all_of_ref_from_dict = SecondCircularAllOfRef.from_dict(second_circular_all_of_ref_dict) ``` [[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/docs/SecondRef.md b/samples/openapi3/client/petstore/python/docs/SecondRef.md index 97c65b8ef79b..dfb1a0ac6db5 100644 --- a/samples/openapi3/client/petstore/python/docs/SecondRef.md +++ b/samples/openapi3/client/petstore/python/docs/SecondRef.md @@ -23,7 +23,7 @@ print(SecondRef.to_json()) # convert the object into a dict second_ref_dict = second_ref_instance.to_dict() # create an instance of SecondRef from a dict -second_ref_form_dict = second_ref.from_dict(second_ref_dict) +second_ref_from_dict = SecondRef.from_dict(second_ref_dict) ``` [[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/docs/SelfReferenceModel.md b/samples/openapi3/client/petstore/python/docs/SelfReferenceModel.md index 2ca21efd50cc..208cdac04b6f 100644 --- a/samples/openapi3/client/petstore/python/docs/SelfReferenceModel.md +++ b/samples/openapi3/client/petstore/python/docs/SelfReferenceModel.md @@ -23,7 +23,7 @@ print(SelfReferenceModel.to_json()) # convert the object into a dict self_reference_model_dict = self_reference_model_instance.to_dict() # create an instance of SelfReferenceModel from a dict -self_reference_model_form_dict = self_reference_model.from_dict(self_reference_model_dict) +self_reference_model_from_dict = SelfReferenceModel.from_dict(self_reference_model_dict) ``` [[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/docs/SpecialModelName.md b/samples/openapi3/client/petstore/python/docs/SpecialModelName.md index ea1ef0008c81..35303f34efd2 100644 --- a/samples/openapi3/client/petstore/python/docs/SpecialModelName.md +++ b/samples/openapi3/client/petstore/python/docs/SpecialModelName.md @@ -22,7 +22,7 @@ print(SpecialModelName.to_json()) # convert the object into a dict special_model_name_dict = special_model_name_instance.to_dict() # create an instance of SpecialModelName from a dict -special_model_name_form_dict = special_model_name.from_dict(special_model_name_dict) +special_model_name_from_dict = SpecialModelName.from_dict(special_model_name_dict) ``` [[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/docs/SpecialName.md b/samples/openapi3/client/petstore/python/docs/SpecialName.md index c541b0b3d4b5..ccc550b16e33 100644 --- a/samples/openapi3/client/petstore/python/docs/SpecialName.md +++ b/samples/openapi3/client/petstore/python/docs/SpecialName.md @@ -24,7 +24,7 @@ print(SpecialName.to_json()) # convert the object into a dict special_name_dict = special_name_instance.to_dict() # create an instance of SpecialName from a dict -special_name_form_dict = special_name.from_dict(special_name_dict) +special_name_from_dict = SpecialName.from_dict(special_name_dict) ``` [[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/docs/Tag.md b/samples/openapi3/client/petstore/python/docs/Tag.md index a8d1885a938a..4106d9cfe5db 100644 --- a/samples/openapi3/client/petstore/python/docs/Tag.md +++ b/samples/openapi3/client/petstore/python/docs/Tag.md @@ -23,7 +23,7 @@ print(Tag.to_json()) # convert the object into a dict tag_dict = tag_instance.to_dict() # create an instance of Tag from a dict -tag_form_dict = tag.from_dict(tag_dict) +tag_from_dict = Tag.from_dict(tag_dict) ``` [[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/docs/Task.md b/samples/openapi3/client/petstore/python/docs/Task.md index 905cc03b65d6..211ce76cdfeb 100644 --- a/samples/openapi3/client/petstore/python/docs/Task.md +++ b/samples/openapi3/client/petstore/python/docs/Task.md @@ -24,7 +24,7 @@ print(Task.to_json()) # convert the object into a dict task_dict = task_instance.to_dict() # create an instance of Task from a dict -task_form_dict = task.from_dict(task_dict) +task_from_dict = Task.from_dict(task_dict) ``` [[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/docs/TaskActivity.md b/samples/openapi3/client/petstore/python/docs/TaskActivity.md index 36159e069b56..e905a477292d 100644 --- a/samples/openapi3/client/petstore/python/docs/TaskActivity.md +++ b/samples/openapi3/client/petstore/python/docs/TaskActivity.md @@ -24,7 +24,7 @@ print(TaskActivity.to_json()) # convert the object into a dict task_activity_dict = task_activity_instance.to_dict() # create an instance of TaskActivity from a dict -task_activity_form_dict = task_activity.from_dict(task_activity_dict) +task_activity_from_dict = TaskActivity.from_dict(task_activity_dict) ``` [[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/docs/TestErrorResponsesWithModel400Response.md b/samples/openapi3/client/petstore/python/docs/TestErrorResponsesWithModel400Response.md index 1ff12d238e00..be416bbad0f7 100644 --- a/samples/openapi3/client/petstore/python/docs/TestErrorResponsesWithModel400Response.md +++ b/samples/openapi3/client/petstore/python/docs/TestErrorResponsesWithModel400Response.md @@ -22,7 +22,7 @@ print(TestErrorResponsesWithModel400Response.to_json()) # convert the object into a dict test_error_responses_with_model400_response_dict = test_error_responses_with_model400_response_instance.to_dict() # create an instance of TestErrorResponsesWithModel400Response from a dict -test_error_responses_with_model400_response_form_dict = test_error_responses_with_model400_response.from_dict(test_error_responses_with_model400_response_dict) +test_error_responses_with_model400_response_from_dict = TestErrorResponsesWithModel400Response.from_dict(test_error_responses_with_model400_response_dict) ``` [[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/docs/TestErrorResponsesWithModel404Response.md b/samples/openapi3/client/petstore/python/docs/TestErrorResponsesWithModel404Response.md index a62725a99bb7..1c984f847bf1 100644 --- a/samples/openapi3/client/petstore/python/docs/TestErrorResponsesWithModel404Response.md +++ b/samples/openapi3/client/petstore/python/docs/TestErrorResponsesWithModel404Response.md @@ -22,7 +22,7 @@ print(TestErrorResponsesWithModel404Response.to_json()) # convert the object into a dict test_error_responses_with_model404_response_dict = test_error_responses_with_model404_response_instance.to_dict() # create an instance of TestErrorResponsesWithModel404Response from a dict -test_error_responses_with_model404_response_form_dict = test_error_responses_with_model404_response.from_dict(test_error_responses_with_model404_response_dict) +test_error_responses_with_model404_response_from_dict = TestErrorResponsesWithModel404Response.from_dict(test_error_responses_with_model404_response_dict) ``` [[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/docs/TestInlineFreeformAdditionalPropertiesRequest.md b/samples/openapi3/client/petstore/python/docs/TestInlineFreeformAdditionalPropertiesRequest.md index d678aa823e18..511132d689be 100644 --- a/samples/openapi3/client/petstore/python/docs/TestInlineFreeformAdditionalPropertiesRequest.md +++ b/samples/openapi3/client/petstore/python/docs/TestInlineFreeformAdditionalPropertiesRequest.md @@ -22,7 +22,7 @@ print(TestInlineFreeformAdditionalPropertiesRequest.to_json()) # convert the object into a dict test_inline_freeform_additional_properties_request_dict = test_inline_freeform_additional_properties_request_instance.to_dict() # create an instance of TestInlineFreeformAdditionalPropertiesRequest from a dict -test_inline_freeform_additional_properties_request_form_dict = test_inline_freeform_additional_properties_request.from_dict(test_inline_freeform_additional_properties_request_dict) +test_inline_freeform_additional_properties_request_from_dict = TestInlineFreeformAdditionalPropertiesRequest.from_dict(test_inline_freeform_additional_properties_request_dict) ``` [[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/docs/TestObjectForMultipartRequestsRequestMarker.md b/samples/openapi3/client/petstore/python/docs/TestObjectForMultipartRequestsRequestMarker.md index 75cd561ffae8..ff0ca9ee00ac 100644 --- a/samples/openapi3/client/petstore/python/docs/TestObjectForMultipartRequestsRequestMarker.md +++ b/samples/openapi3/client/petstore/python/docs/TestObjectForMultipartRequestsRequestMarker.md @@ -22,7 +22,7 @@ print(TestObjectForMultipartRequestsRequestMarker.to_json()) # convert the object into a dict test_object_for_multipart_requests_request_marker_dict = test_object_for_multipart_requests_request_marker_instance.to_dict() # create an instance of TestObjectForMultipartRequestsRequestMarker from a dict -test_object_for_multipart_requests_request_marker_form_dict = test_object_for_multipart_requests_request_marker.from_dict(test_object_for_multipart_requests_request_marker_dict) +test_object_for_multipart_requests_request_marker_from_dict = TestObjectForMultipartRequestsRequestMarker.from_dict(test_object_for_multipart_requests_request_marker_dict) ``` [[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/docs/Tiger.md b/samples/openapi3/client/petstore/python/docs/Tiger.md index f03552af0732..f1cf2133f0f7 100644 --- a/samples/openapi3/client/petstore/python/docs/Tiger.md +++ b/samples/openapi3/client/petstore/python/docs/Tiger.md @@ -22,7 +22,7 @@ print(Tiger.to_json()) # convert the object into a dict tiger_dict = tiger_instance.to_dict() # create an instance of Tiger from a dict -tiger_form_dict = tiger.from_dict(tiger_dict) +tiger_from_dict = Tiger.from_dict(tiger_dict) ``` [[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/docs/UnnamedDictWithAdditionalModelListProperties.md b/samples/openapi3/client/petstore/python/docs/UnnamedDictWithAdditionalModelListProperties.md index 201a2d8d3e83..68cd00ab0a7a 100644 --- a/samples/openapi3/client/petstore/python/docs/UnnamedDictWithAdditionalModelListProperties.md +++ b/samples/openapi3/client/petstore/python/docs/UnnamedDictWithAdditionalModelListProperties.md @@ -22,7 +22,7 @@ print(UnnamedDictWithAdditionalModelListProperties.to_json()) # convert the object into a dict unnamed_dict_with_additional_model_list_properties_dict = unnamed_dict_with_additional_model_list_properties_instance.to_dict() # create an instance of UnnamedDictWithAdditionalModelListProperties from a dict -unnamed_dict_with_additional_model_list_properties_form_dict = unnamed_dict_with_additional_model_list_properties.from_dict(unnamed_dict_with_additional_model_list_properties_dict) +unnamed_dict_with_additional_model_list_properties_from_dict = UnnamedDictWithAdditionalModelListProperties.from_dict(unnamed_dict_with_additional_model_list_properties_dict) ``` [[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/docs/UnnamedDictWithAdditionalStringListProperties.md b/samples/openapi3/client/petstore/python/docs/UnnamedDictWithAdditionalStringListProperties.md index 534b6bec7978..045b0e22ad09 100644 --- a/samples/openapi3/client/petstore/python/docs/UnnamedDictWithAdditionalStringListProperties.md +++ b/samples/openapi3/client/petstore/python/docs/UnnamedDictWithAdditionalStringListProperties.md @@ -22,7 +22,7 @@ print(UnnamedDictWithAdditionalStringListProperties.to_json()) # convert the object into a dict unnamed_dict_with_additional_string_list_properties_dict = unnamed_dict_with_additional_string_list_properties_instance.to_dict() # create an instance of UnnamedDictWithAdditionalStringListProperties from a dict -unnamed_dict_with_additional_string_list_properties_form_dict = unnamed_dict_with_additional_string_list_properties.from_dict(unnamed_dict_with_additional_string_list_properties_dict) +unnamed_dict_with_additional_string_list_properties_from_dict = UnnamedDictWithAdditionalStringListProperties.from_dict(unnamed_dict_with_additional_string_list_properties_dict) ``` [[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/docs/User.md b/samples/openapi3/client/petstore/python/docs/User.md index e9d5051b6462..c45d26d27043 100644 --- a/samples/openapi3/client/petstore/python/docs/User.md +++ b/samples/openapi3/client/petstore/python/docs/User.md @@ -29,7 +29,7 @@ print(User.to_json()) # convert the object into a dict user_dict = user_instance.to_dict() # create an instance of User from a dict -user_form_dict = user.from_dict(user_dict) +user_from_dict = User.from_dict(user_dict) ``` [[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/docs/WithNestedOneOf.md b/samples/openapi3/client/petstore/python/docs/WithNestedOneOf.md index 7fdc6cb3d215..e7bbbc28fc2d 100644 --- a/samples/openapi3/client/petstore/python/docs/WithNestedOneOf.md +++ b/samples/openapi3/client/petstore/python/docs/WithNestedOneOf.md @@ -24,7 +24,7 @@ print(WithNestedOneOf.to_json()) # convert the object into a dict with_nested_one_of_dict = with_nested_one_of_instance.to_dict() # create an instance of WithNestedOneOf from a dict -with_nested_one_of_form_dict = with_nested_one_of.from_dict(with_nested_one_of_dict) +with_nested_one_of_from_dict = WithNestedOneOf.from_dict(with_nested_one_of_dict) ``` [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)