From 129dd52a77411775fb0e6a3df12e9c95bb4859bc Mon Sep 17 00:00:00 2001 From: Justin Black Date: Fri, 18 Nov 2022 20:20:11 -0800 Subject: [PATCH 1/5] Templates updated, path enum converted to typeddict --- .../codegen/languages/PythonClientCodegen.java | 14 +++++--------- .../resources/python/__init__paths_enum.handlebars | 10 +--------- .../resources/python/__init__paths_x.handlebars | 4 +--- .../resources/python/apis_path_to_api.handlebars | 9 ++++----- .../src/main/resources/python/endpoint.handlebars | 2 +- 5 files changed, 12 insertions(+), 27 deletions(-) diff --git a/modules/openapi-json-schema-generator/src/main/java/org/openapitools/codegen/languages/PythonClientCodegen.java b/modules/openapi-json-schema-generator/src/main/java/org/openapitools/codegen/languages/PythonClientCodegen.java index a95e78ba5d2..830fc35480a 100644 --- a/modules/openapi-json-schema-generator/src/main/java/org/openapitools/codegen/languages/PythonClientCodegen.java +++ b/modules/openapi-json-schema-generator/src/main/java/org/openapitools/codegen/languages/PythonClientCodegen.java @@ -658,15 +658,13 @@ protected void generateEndpoints(OperationsMap objs) { outputFilename = filenameFromRoot(Arrays.asList("test", "test_paths", "__init__.py")); testFiles.add(Arrays.asList(new HashMap<>(), "__init__test_paths.handlebars", outputFilename)); - Map pathValToVar = new LinkedHashMap<>(); Map pathModuleToApiClassname = new LinkedHashMap<>(); - Map pathEnumToApiClassname = new LinkedHashMap<>(); + Map pathToApiClassname = new LinkedHashMap<>(); for (Map.Entry pathsEntry : paths.entrySet()) { String path = pathsEntry.getKey(); String pathEnumVar = toEnumVarName(path, "str"); - pathValToVar.put(path, pathEnumVar); String apiClassName = toModelName(path); - pathEnumToApiClassname.put(pathEnumVar, apiClassName); + pathToApiClassname.put(path, apiClassName); pathModuleToApiClassname.put(toVarName(path), apiClassName); } // Note: __init__apis.handlebars is generated as a supporting file @@ -683,7 +681,7 @@ protected void generateEndpoints(OperationsMap objs) { allByPathsFileMap.put("packageName", packageName); allByPathsFileMap.put("apiClassname", "Api"); allByPathsFileMap.put("pathModuleToApiClassname", pathModuleToApiClassname); - allByPathsFileMap.put("pathEnumToApiClassname", pathEnumToApiClassname); + allByPathsFileMap.put("pathToApiClassname", pathToApiClassname); outputFilename = packageFilename(Arrays.asList(apiPackage, "path_to_api.py")); apisFiles.add(Arrays.asList(allByPathsFileMap, "apis_path_to_api.handlebars", outputFilename)); // apis.paths.__init__.py @@ -697,7 +695,6 @@ protected void generateEndpoints(OperationsMap objs) { Map initOperationMap = new HashMap<>(); initOperationMap.put("packageName", packageName); initOperationMap.put("apiClassname", "Api"); - initOperationMap.put("pathValToVar", pathValToVar); outputFilename = packageFilename(Arrays.asList("paths", "__init__.py")); pathsFiles.add(Arrays.asList(initOperationMap, "__init__paths_enum.handlebars", outputFilename)); // apis.paths.__init__.py @@ -708,17 +705,16 @@ protected void generateEndpoints(OperationsMap objs) { for (Map.Entry entry: pathModuleToPath.entrySet()) { String pathModule = entry.getKey(); String path = entry.getValue(); - String pathVar = pathValToVar.get(path); Map pathApiMap = new HashMap<>(); pathApiMap.put("packageName", packageName); pathApiMap.put("pathModule", pathModule); pathApiMap.put("apiClassName", "Api"); - pathApiMap.put("pathVar", pathVar); + pathApiMap.put("path", path); outputFilename = packageFilename(Arrays.asList("paths", pathModule, "__init__.py")); pathsFiles.add(Arrays.asList(pathApiMap, "__init__paths_x.handlebars", outputFilename)); PathItem pi = openAPI.getPaths().get(path); - String apiClassName = pathEnumToApiClassname.get(pathVar); + String apiClassName = pathToApiClassname.get(path); Map operationMap = new HashMap<>(); operationMap.put("packageName", packageName); operationMap.put("pathModule", pathModule); diff --git a/modules/openapi-json-schema-generator/src/main/resources/python/__init__paths_enum.handlebars b/modules/openapi-json-schema-generator/src/main/resources/python/__init__paths_enum.handlebars index ba97a8cd836..bfa8c59de7e 100644 --- a/modules/openapi-json-schema-generator/src/main/resources/python/__init__paths_enum.handlebars +++ b/modules/openapi-json-schema-generator/src/main/resources/python/__init__paths_enum.handlebars @@ -1,11 +1,3 @@ # do not import all endpoints into this module because that uses a lot of memory and stack frames # if you need the ability to import all endpoints from this module, import them with -# from {{packageName}}.apis.path_to_api import path_to_api - -import enum - - -class PathValues(str, enum.Enum): -{{#each pathValToVar}} - {{this}} = "{{@key}}" -{{/each}} \ No newline at end of file +# from {{packageName}}.apis.path_to_api import path_to_api \ No newline at end of file diff --git a/modules/openapi-json-schema-generator/src/main/resources/python/__init__paths_x.handlebars b/modules/openapi-json-schema-generator/src/main/resources/python/__init__paths_x.handlebars index 64d1977b67e..c35fdbbe8da 100644 --- a/modules/openapi-json-schema-generator/src/main/resources/python/__init__paths_x.handlebars +++ b/modules/openapi-json-schema-generator/src/main/resources/python/__init__paths_x.handlebars @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from {{packageName}}.paths.{{pathModule}} import {{apiClassName}} -from {{packageName}}.paths import PathValues - -path = PathValues.{{{pathVar}}} \ No newline at end of file +path = "{{{path}}}" \ No newline at end of file diff --git a/modules/openapi-json-schema-generator/src/main/resources/python/apis_path_to_api.handlebars b/modules/openapi-json-schema-generator/src/main/resources/python/apis_path_to_api.handlebars index a52df9cf152..ae860c68f95 100644 --- a/modules/openapi-json-schema-generator/src/main/resources/python/apis_path_to_api.handlebars +++ b/modules/openapi-json-schema-generator/src/main/resources/python/apis_path_to_api.handlebars @@ -1,6 +1,5 @@ import typing_extensions -from {{packageName}}.paths import PathValues {{#each pathModuleToApiClassname}} from {{packageName}}.apis.paths.{{@key}} import {{this}} {{/each}} @@ -8,16 +7,16 @@ from {{packageName}}.apis.paths.{{@key}} import {{this}} PathToApi = typing_extensions.TypedDict( 'PathToApi', { -{{#each pathEnumToApiClassname}} - PathValues.{{@key}}: {{this}}, +{{#each pathToApiClassname}} + "{{{@key}}}": {{this}}, {{/each}} } ) path_to_api = PathToApi( { -{{#each pathEnumToApiClassname}} - PathValues.{{@key}}: {{this}}, +{{#each pathToApiClassname}} + "{{{@key}}}": {{this}}, {{/each}} } ) diff --git a/modules/openapi-json-schema-generator/src/main/resources/python/endpoint.handlebars b/modules/openapi-json-schema-generator/src/main/resources/python/endpoint.handlebars index 3e46dcdc621..2e7da28a4ba 100644 --- a/modules/openapi-json-schema-generator/src/main/resources/python/endpoint.handlebars +++ b/modules/openapi-json-schema-generator/src/main/resources/python/endpoint.handlebars @@ -156,7 +156,7 @@ class BaseApi(api_client.Api): {{#if cookieParams}} self._verify_typed_dict_inputs_oapg(RequestCookieParameters.Params, cookie_params) {{/if}} - used_path = path.value + used_path = path {{#if pathParams}} _path_params = {} From 86db551ccdbde3103ac28217ed28cdfb3249ceef Mon Sep 17 00:00:00 2001 From: Justin Black Date: Fri, 18 Nov 2022 20:35:24 -0800 Subject: [PATCH 2/5] Sample regenerated --- .../python/.openapi-generator/VERSION | 2 +- .../python/petstore_api/apis/path_to_api.py | 193 +++++++++--------- .../python/petstore_api/paths/__init__.py | 55 +---- .../paths/another_fake_dummy/__init__.py | 4 +- .../another_fake_dummy/patch/__init__.py | 2 +- .../another_fake_dummy/patch/__init__.pyi | 2 +- .../petstore_api/paths/fake/__init__.py | 4 +- .../paths/fake/delete/__init__.py | 2 +- .../paths/fake/delete/__init__.pyi | 2 +- .../petstore_api/paths/fake/get/__init__.py | 2 +- .../petstore_api/paths/fake/get/__init__.pyi | 2 +- .../petstore_api/paths/fake/patch/__init__.py | 2 +- .../paths/fake/patch/__init__.pyi | 2 +- .../petstore_api/paths/fake/post/__init__.py | 2 +- .../petstore_api/paths/fake/post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../get/__init__.py | 2 +- .../get/__init__.pyi | 2 +- .../fake_body_with_file_schema/__init__.py | 4 +- .../put/__init__.py | 2 +- .../put/__init__.pyi | 2 +- .../fake_body_with_query_params/__init__.py | 4 +- .../put/__init__.py | 2 +- .../put/__init__.pyi | 2 +- .../fake_case_sensitive_params/__init__.py | 4 +- .../put/__init__.py | 2 +- .../put/__init__.pyi | 2 +- .../paths/fake_classname_test/__init__.py | 4 +- .../fake_classname_test/patch/__init__.py | 2 +- .../fake_classname_test/patch/__init__.pyi | 2 +- .../paths/fake_delete_coffee_id/__init__.py | 4 +- .../fake_delete_coffee_id/delete/__init__.py | 2 +- .../fake_delete_coffee_id/delete/__init__.pyi | 2 +- .../paths/fake_health/__init__.py | 4 +- .../paths/fake_health/get/__init__.py | 2 +- .../paths/fake_health/get/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../fake_inline_composition_/__init__.py | 4 +- .../fake_inline_composition_/post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../paths/fake_json_form_data/__init__.py | 4 +- .../paths/fake_json_form_data/get/__init__.py | 2 +- .../fake_json_form_data/get/__init__.pyi | 2 +- .../paths/fake_json_patch/__init__.py | 4 +- .../paths/fake_json_patch/patch/__init__.py | 2 +- .../paths/fake_json_patch/patch/__init__.pyi | 2 +- .../paths/fake_json_with_charset/__init__.py | 4 +- .../fake_json_with_charset/post/__init__.py | 2 +- .../fake_json_with_charset/post/__init__.pyi | 2 +- .../paths/fake_obj_in_query/__init__.py | 4 +- .../paths/fake_obj_in_query/get/__init__.py | 2 +- .../paths/fake_obj_in_query/get/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../get/__init__.py | 2 +- .../get/__init__.pyi | 2 +- .../paths/fake_ref_obj_in_query/__init__.py | 4 +- .../fake_ref_obj_in_query/get/__init__.py | 2 +- .../fake_ref_obj_in_query/get/__init__.pyi | 2 +- .../fake_refs_array_of_enums/__init__.py | 4 +- .../fake_refs_array_of_enums/post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../paths/fake_refs_arraymodel/__init__.py | 4 +- .../fake_refs_arraymodel/post/__init__.py | 2 +- .../fake_refs_arraymodel/post/__init__.pyi | 2 +- .../paths/fake_refs_boolean/__init__.py | 4 +- .../paths/fake_refs_boolean/post/__init__.py | 2 +- .../paths/fake_refs_boolean/post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../paths/fake_refs_enum/__init__.py | 4 +- .../paths/fake_refs_enum/post/__init__.py | 2 +- .../paths/fake_refs_enum/post/__init__.pyi | 2 +- .../paths/fake_refs_mammal/__init__.py | 4 +- .../paths/fake_refs_mammal/post/__init__.py | 2 +- .../paths/fake_refs_mammal/post/__init__.pyi | 2 +- .../paths/fake_refs_number/__init__.py | 4 +- .../paths/fake_refs_number/post/__init__.py | 2 +- .../paths/fake_refs_number/post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../paths/fake_refs_string/__init__.py | 4 +- .../paths/fake_refs_string/post/__init__.py | 2 +- .../paths/fake_refs_string/post/__init__.pyi | 2 +- .../fake_response_without_schema/__init__.py | 4 +- .../get/__init__.py | 2 +- .../get/__init__.pyi | 2 +- .../fake_test_query_paramters/__init__.py | 4 +- .../fake_test_query_paramters/put/__init__.py | 2 +- .../put/__init__.pyi | 2 +- .../fake_upload_download_file/__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../paths/fake_upload_file/__init__.py | 4 +- .../paths/fake_upload_file/post/__init__.py | 2 +- .../paths/fake_upload_file/post/__init__.pyi | 2 +- .../paths/fake_upload_files/__init__.py | 4 +- .../paths/fake_upload_files/post/__init__.py | 2 +- .../paths/fake_upload_files/post/__init__.pyi | 2 +- .../python/petstore_api/paths/foo/__init__.py | 4 +- .../petstore_api/paths/foo/get/__init__.py | 2 +- .../petstore_api/paths/foo/get/__init__.pyi | 2 +- .../python/petstore_api/paths/pet/__init__.py | 4 +- .../petstore_api/paths/pet/post/__init__.py | 2 +- .../petstore_api/paths/pet/post/__init__.pyi | 2 +- .../petstore_api/paths/pet/put/__init__.py | 2 +- .../petstore_api/paths/pet/put/__init__.pyi | 2 +- .../paths/pet_find_by_status/__init__.py | 4 +- .../paths/pet_find_by_status/get/__init__.py | 2 +- .../paths/pet_find_by_status/get/__init__.pyi | 2 +- .../paths/pet_find_by_tags/__init__.py | 4 +- .../paths/pet_find_by_tags/get/__init__.py | 2 +- .../paths/pet_find_by_tags/get/__init__.pyi | 2 +- .../petstore_api/paths/pet_pet_id/__init__.py | 4 +- .../paths/pet_pet_id/delete/__init__.py | 2 +- .../paths/pet_pet_id/delete/__init__.pyi | 2 +- .../paths/pet_pet_id/get/__init__.py | 2 +- .../paths/pet_pet_id/get/__init__.pyi | 2 +- .../paths/pet_pet_id/post/__init__.py | 2 +- .../paths/pet_pet_id/post/__init__.pyi | 2 +- .../paths/pet_pet_id_upload_image/__init__.py | 4 +- .../pet_pet_id_upload_image/post/__init__.py | 2 +- .../pet_pet_id_upload_image/post/__init__.pyi | 2 +- .../paths/store_inventory/__init__.py | 4 +- .../paths/store_inventory/get/__init__.py | 2 +- .../paths/store_inventory/get/__init__.pyi | 2 +- .../paths/store_order/__init__.py | 4 +- .../paths/store_order/post/__init__.py | 2 +- .../paths/store_order/post/__init__.pyi | 2 +- .../paths/store_order_order_id/__init__.py | 4 +- .../store_order_order_id/delete/__init__.py | 2 +- .../store_order_order_id/delete/__init__.pyi | 2 +- .../store_order_order_id/get/__init__.py | 2 +- .../store_order_order_id/get/__init__.pyi | 2 +- .../petstore_api/paths/user/__init__.py | 4 +- .../petstore_api/paths/user/post/__init__.py | 2 +- .../petstore_api/paths/user/post/__init__.pyi | 2 +- .../paths/user_create_with_array/__init__.py | 4 +- .../user_create_with_array/post/__init__.py | 2 +- .../user_create_with_array/post/__init__.pyi | 2 +- .../paths/user_create_with_list/__init__.py | 4 +- .../user_create_with_list/post/__init__.py | 2 +- .../user_create_with_list/post/__init__.pyi | 2 +- .../petstore_api/paths/user_login/__init__.py | 4 +- .../paths/user_login/get/__init__.py | 2 +- .../paths/user_login/get/__init__.pyi | 2 +- .../paths/user_logout/__init__.py | 4 +- .../paths/user_logout/get/__init__.py | 2 +- .../paths/user_logout/get/__init__.pyi | 2 +- .../paths/user_username/__init__.py | 4 +- .../paths/user_username/delete/__init__.py | 2 +- .../paths/user_username/delete/__init__.pyi | 2 +- .../paths/user_username/get/__init__.py | 2 +- .../paths/user_username/get/__init__.pyi | 2 +- .../paths/user_username/put/__init__.py | 2 +- .../paths/user_username/put/__init__.pyi | 2 +- 165 files changed, 260 insertions(+), 410 deletions(-) diff --git a/samples/openapi3/client/petstore/python/.openapi-generator/VERSION b/samples/openapi3/client/petstore/python/.openapi-generator/VERSION index 359a5b952d4..717311e32e3 100644 --- a/samples/openapi3/client/petstore/python/.openapi-generator/VERSION +++ b/samples/openapi3/client/petstore/python/.openapi-generator/VERSION @@ -1 +1 @@ -2.0.0 \ No newline at end of file +unset \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/petstore_api/apis/path_to_api.py b/samples/openapi3/client/petstore/python/petstore_api/apis/path_to_api.py index db788e61059..cc4c903bc52 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/apis/path_to_api.py +++ b/samples/openapi3/client/petstore/python/petstore_api/apis/path_to_api.py @@ -1,6 +1,5 @@ import typing_extensions -from petstore_api.paths import PathValues from petstore_api.apis.paths.foo import Foo from petstore_api.apis.paths.pet import Pet from petstore_api.apis.paths.pet_find_by_status import PetFindByStatus @@ -53,106 +52,106 @@ PathToApi = typing_extensions.TypedDict( 'PathToApi', { - PathValues.FOO: Foo, - PathValues.PET: Pet, - PathValues.PET_FIND_BY_STATUS: PetFindByStatus, - PathValues.PET_FIND_BY_TAGS: PetFindByTags, - PathValues.PET_PET_ID: PetPetId, - PathValues.PET_PET_ID_UPLOAD_IMAGE: PetPetIdUploadImage, - PathValues.STORE_INVENTORY: StoreInventory, - PathValues.STORE_ORDER: StoreOrder, - PathValues.STORE_ORDER_ORDER_ID: StoreOrderOrderId, - PathValues.USER: User, - PathValues.USER_CREATE_WITH_ARRAY: UserCreateWithArray, - PathValues.USER_CREATE_WITH_LIST: UserCreateWithList, - PathValues.USER_LOGIN: UserLogin, - PathValues.USER_LOGOUT: UserLogout, - PathValues.USER_USERNAME: UserUsername, - PathValues.FAKE_CLASSNAME_TEST: FakeClassnameTest, - PathValues.FAKE: Fake, - PathValues.FAKE_REFS_NUMBER: FakeRefsNumber, - PathValues.FAKE_REFS_MAMMAL: FakeRefsMammal, - PathValues.FAKE_REFS_STRING: FakeRefsString, - PathValues.FAKE_REFS_BOOLEAN: FakeRefsBoolean, - PathValues.FAKE_REFS_ARRAYMODEL: FakeRefsArraymodel, - PathValues.FAKE_REFS_COMPOSED_ONE_OF_NUMBER_WITH_VALIDATIONS: FakeRefsComposedOneOfNumberWithValidations, - PathValues.FAKE_REFS_OBJECT_MODEL_WITH_REF_PROPS: FakeRefsObjectModelWithRefProps, - PathValues.FAKE_REFS_ENUM: FakeRefsEnum, - PathValues.FAKE_REFS_ARRAYOFENUMS: FakeRefsArrayOfEnums, - PathValues.FAKE_ADDITIONALPROPERTIESWITHARRAYOFENUMS: FakeAdditionalPropertiesWithArrayOfEnums, - PathValues.FAKE_JSON_FORM_DATA: FakeJsonFormData, - PathValues.FAKE_INLINEADDITIONAL_PROPERTIES: FakeInlineAdditionalProperties, - PathValues.FAKE_BODYWITHQUERYPARAMS: FakeBodyWithQueryParams, - PathValues.ANOTHERFAKE_DUMMY: AnotherFakeDummy, - PathValues.FAKE_BODYWITHFILESCHEMA: FakeBodyWithFileSchema, - PathValues.FAKE_CASESENSITIVEPARAMS: FakeCaseSensitiveParams, - PathValues.FAKE_TESTQUERYPARAMTERS: FakeTestQueryParamters, - PathValues.FAKE_PET_ID_UPLOAD_IMAGE_WITH_REQUIRED_FILE: FakePetIdUploadImageWithRequiredFile, - PathValues.FAKE_PARAMETER_COLLISIONS_1_A_B_AB_SELF_AB_: FakeParameterCollisions1ABAbSelfAB, - PathValues.FAKE_UPLOAD_FILE: FakeUploadFile, - PathValues.FAKE_UPLOAD_FILES: FakeUploadFiles, - PathValues.FAKE_UPLOAD_DOWNLOAD_FILE: FakeUploadDownloadFile, - PathValues.FAKE_HEALTH: FakeHealth, - PathValues.FAKE_INLINE_COMPOSITION_: FakeInlineComposition, - PathValues.FAKE_OBJ_IN_QUERY: FakeObjInQuery, - PathValues.FAKE_REF_OBJ_IN_QUERY: FakeRefObjInQuery, - PathValues.FAKE_JSON_WITH_CHARSET: FakeJsonWithCharset, - PathValues.FAKE_RESPONSE_WITHOUT_SCHEMA: FakeResponseWithoutSchema, - PathValues.FAKE_JSON_PATCH: FakeJsonPatch, - PathValues.FAKE_DELETE_COFFEE_ID: FakeDeleteCoffeeId, - PathValues.FAKE_QUERY_PARAM_WITH_JSON_CONTENT_TYPE: FakeQueryParamWithJsonContentType, + "/foo": Foo, + "/pet": Pet, + "/pet/findByStatus": PetFindByStatus, + "/pet/findByTags": PetFindByTags, + "/pet/{petId}": PetPetId, + "/pet/{petId}/uploadImage": PetPetIdUploadImage, + "/store/inventory": StoreInventory, + "/store/order": StoreOrder, + "/store/order/{order_id}": StoreOrderOrderId, + "/user": User, + "/user/createWithArray": UserCreateWithArray, + "/user/createWithList": UserCreateWithList, + "/user/login": UserLogin, + "/user/logout": UserLogout, + "/user/{username}": UserUsername, + "/fake_classname_test": FakeClassnameTest, + "/fake": Fake, + "/fake/refs/number": FakeRefsNumber, + "/fake/refs/mammal": FakeRefsMammal, + "/fake/refs/string": FakeRefsString, + "/fake/refs/boolean": FakeRefsBoolean, + "/fake/refs/arraymodel": FakeRefsArraymodel, + "/fake/refs/composed_one_of_number_with_validations": FakeRefsComposedOneOfNumberWithValidations, + "/fake/refs/object_model_with_ref_props": FakeRefsObjectModelWithRefProps, + "/fake/refs/enum": FakeRefsEnum, + "/fake/refs/array-of-enums": FakeRefsArrayOfEnums, + "/fake/additional-properties-with-array-of-enums": FakeAdditionalPropertiesWithArrayOfEnums, + "/fake/jsonFormData": FakeJsonFormData, + "/fake/inline-additionalProperties": FakeInlineAdditionalProperties, + "/fake/body-with-query-params": FakeBodyWithQueryParams, + "/another-fake/dummy": AnotherFakeDummy, + "/fake/body-with-file-schema": FakeBodyWithFileSchema, + "/fake/case-sensitive-params": FakeCaseSensitiveParams, + "/fake/test-query-paramters": FakeTestQueryParamters, + "/fake/{petId}/uploadImageWithRequiredFile": FakePetIdUploadImageWithRequiredFile, + "/fake/parameterCollisions/{1}/{aB}/{Ab}/{self}/{A-B}/": FakeParameterCollisions1ABAbSelfAB, + "/fake/uploadFile": FakeUploadFile, + "/fake/uploadFiles": FakeUploadFiles, + "/fake/uploadDownloadFile": FakeUploadDownloadFile, + "/fake/health": FakeHealth, + "/fake/inlineComposition/": FakeInlineComposition, + "/fake/objInQuery": FakeObjInQuery, + "/fake/refObjInQuery": FakeRefObjInQuery, + "/fake/jsonWithCharset": FakeJsonWithCharset, + "/fake/responseWithoutSchema": FakeResponseWithoutSchema, + "/fake/jsonPatch": FakeJsonPatch, + "/fake/deleteCoffee/{id}": FakeDeleteCoffeeId, + "/fake/queryParamWithJsonContentType": FakeQueryParamWithJsonContentType, } ) path_to_api = PathToApi( { - PathValues.FOO: Foo, - PathValues.PET: Pet, - PathValues.PET_FIND_BY_STATUS: PetFindByStatus, - PathValues.PET_FIND_BY_TAGS: PetFindByTags, - PathValues.PET_PET_ID: PetPetId, - PathValues.PET_PET_ID_UPLOAD_IMAGE: PetPetIdUploadImage, - PathValues.STORE_INVENTORY: StoreInventory, - PathValues.STORE_ORDER: StoreOrder, - PathValues.STORE_ORDER_ORDER_ID: StoreOrderOrderId, - PathValues.USER: User, - PathValues.USER_CREATE_WITH_ARRAY: UserCreateWithArray, - PathValues.USER_CREATE_WITH_LIST: UserCreateWithList, - PathValues.USER_LOGIN: UserLogin, - PathValues.USER_LOGOUT: UserLogout, - PathValues.USER_USERNAME: UserUsername, - PathValues.FAKE_CLASSNAME_TEST: FakeClassnameTest, - PathValues.FAKE: Fake, - PathValues.FAKE_REFS_NUMBER: FakeRefsNumber, - PathValues.FAKE_REFS_MAMMAL: FakeRefsMammal, - PathValues.FAKE_REFS_STRING: FakeRefsString, - PathValues.FAKE_REFS_BOOLEAN: FakeRefsBoolean, - PathValues.FAKE_REFS_ARRAYMODEL: FakeRefsArraymodel, - PathValues.FAKE_REFS_COMPOSED_ONE_OF_NUMBER_WITH_VALIDATIONS: FakeRefsComposedOneOfNumberWithValidations, - PathValues.FAKE_REFS_OBJECT_MODEL_WITH_REF_PROPS: FakeRefsObjectModelWithRefProps, - PathValues.FAKE_REFS_ENUM: FakeRefsEnum, - PathValues.FAKE_REFS_ARRAYOFENUMS: FakeRefsArrayOfEnums, - PathValues.FAKE_ADDITIONALPROPERTIESWITHARRAYOFENUMS: FakeAdditionalPropertiesWithArrayOfEnums, - PathValues.FAKE_JSON_FORM_DATA: FakeJsonFormData, - PathValues.FAKE_INLINEADDITIONAL_PROPERTIES: FakeInlineAdditionalProperties, - PathValues.FAKE_BODYWITHQUERYPARAMS: FakeBodyWithQueryParams, - PathValues.ANOTHERFAKE_DUMMY: AnotherFakeDummy, - PathValues.FAKE_BODYWITHFILESCHEMA: FakeBodyWithFileSchema, - PathValues.FAKE_CASESENSITIVEPARAMS: FakeCaseSensitiveParams, - PathValues.FAKE_TESTQUERYPARAMTERS: FakeTestQueryParamters, - PathValues.FAKE_PET_ID_UPLOAD_IMAGE_WITH_REQUIRED_FILE: FakePetIdUploadImageWithRequiredFile, - PathValues.FAKE_PARAMETER_COLLISIONS_1_A_B_AB_SELF_AB_: FakeParameterCollisions1ABAbSelfAB, - PathValues.FAKE_UPLOAD_FILE: FakeUploadFile, - PathValues.FAKE_UPLOAD_FILES: FakeUploadFiles, - PathValues.FAKE_UPLOAD_DOWNLOAD_FILE: FakeUploadDownloadFile, - PathValues.FAKE_HEALTH: FakeHealth, - PathValues.FAKE_INLINE_COMPOSITION_: FakeInlineComposition, - PathValues.FAKE_OBJ_IN_QUERY: FakeObjInQuery, - PathValues.FAKE_REF_OBJ_IN_QUERY: FakeRefObjInQuery, - PathValues.FAKE_JSON_WITH_CHARSET: FakeJsonWithCharset, - PathValues.FAKE_RESPONSE_WITHOUT_SCHEMA: FakeResponseWithoutSchema, - PathValues.FAKE_JSON_PATCH: FakeJsonPatch, - PathValues.FAKE_DELETE_COFFEE_ID: FakeDeleteCoffeeId, - PathValues.FAKE_QUERY_PARAM_WITH_JSON_CONTENT_TYPE: FakeQueryParamWithJsonContentType, + "/foo": Foo, + "/pet": Pet, + "/pet/findByStatus": PetFindByStatus, + "/pet/findByTags": PetFindByTags, + "/pet/{petId}": PetPetId, + "/pet/{petId}/uploadImage": PetPetIdUploadImage, + "/store/inventory": StoreInventory, + "/store/order": StoreOrder, + "/store/order/{order_id}": StoreOrderOrderId, + "/user": User, + "/user/createWithArray": UserCreateWithArray, + "/user/createWithList": UserCreateWithList, + "/user/login": UserLogin, + "/user/logout": UserLogout, + "/user/{username}": UserUsername, + "/fake_classname_test": FakeClassnameTest, + "/fake": Fake, + "/fake/refs/number": FakeRefsNumber, + "/fake/refs/mammal": FakeRefsMammal, + "/fake/refs/string": FakeRefsString, + "/fake/refs/boolean": FakeRefsBoolean, + "/fake/refs/arraymodel": FakeRefsArraymodel, + "/fake/refs/composed_one_of_number_with_validations": FakeRefsComposedOneOfNumberWithValidations, + "/fake/refs/object_model_with_ref_props": FakeRefsObjectModelWithRefProps, + "/fake/refs/enum": FakeRefsEnum, + "/fake/refs/array-of-enums": FakeRefsArrayOfEnums, + "/fake/additional-properties-with-array-of-enums": FakeAdditionalPropertiesWithArrayOfEnums, + "/fake/jsonFormData": FakeJsonFormData, + "/fake/inline-additionalProperties": FakeInlineAdditionalProperties, + "/fake/body-with-query-params": FakeBodyWithQueryParams, + "/another-fake/dummy": AnotherFakeDummy, + "/fake/body-with-file-schema": FakeBodyWithFileSchema, + "/fake/case-sensitive-params": FakeCaseSensitiveParams, + "/fake/test-query-paramters": FakeTestQueryParamters, + "/fake/{petId}/uploadImageWithRequiredFile": FakePetIdUploadImageWithRequiredFile, + "/fake/parameterCollisions/{1}/{aB}/{Ab}/{self}/{A-B}/": FakeParameterCollisions1ABAbSelfAB, + "/fake/uploadFile": FakeUploadFile, + "/fake/uploadFiles": FakeUploadFiles, + "/fake/uploadDownloadFile": FakeUploadDownloadFile, + "/fake/health": FakeHealth, + "/fake/inlineComposition/": FakeInlineComposition, + "/fake/objInQuery": FakeObjInQuery, + "/fake/refObjInQuery": FakeRefObjInQuery, + "/fake/jsonWithCharset": FakeJsonWithCharset, + "/fake/responseWithoutSchema": FakeResponseWithoutSchema, + "/fake/jsonPatch": FakeJsonPatch, + "/fake/deleteCoffee/{id}": FakeDeleteCoffeeId, + "/fake/queryParamWithJsonContentType": FakeQueryParamWithJsonContentType, } ) diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/__init__.py index 9b8c0ff4bbf..5b69d6460e1 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/__init__.py @@ -1,56 +1,3 @@ # do not import all endpoints into this module because that uses a lot of memory and stack frames # if you need the ability to import all endpoints from this module, import them with -# from petstore_api.apis.path_to_api import path_to_api - -import enum - - -class PathValues(str, enum.Enum): - FOO = "/foo" - PET = "/pet" - PET_FIND_BY_STATUS = "/pet/findByStatus" - PET_FIND_BY_TAGS = "/pet/findByTags" - PET_PET_ID = "/pet/{petId}" - PET_PET_ID_UPLOAD_IMAGE = "/pet/{petId}/uploadImage" - STORE_INVENTORY = "/store/inventory" - STORE_ORDER = "/store/order" - STORE_ORDER_ORDER_ID = "/store/order/{order_id}" - USER = "/user" - USER_CREATE_WITH_ARRAY = "/user/createWithArray" - USER_CREATE_WITH_LIST = "/user/createWithList" - USER_LOGIN = "/user/login" - USER_LOGOUT = "/user/logout" - USER_USERNAME = "/user/{username}" - FAKE_CLASSNAME_TEST = "/fake_classname_test" - FAKE = "/fake" - FAKE_REFS_NUMBER = "/fake/refs/number" - FAKE_REFS_MAMMAL = "/fake/refs/mammal" - FAKE_REFS_STRING = "/fake/refs/string" - FAKE_REFS_BOOLEAN = "/fake/refs/boolean" - FAKE_REFS_ARRAYMODEL = "/fake/refs/arraymodel" - FAKE_REFS_COMPOSED_ONE_OF_NUMBER_WITH_VALIDATIONS = "/fake/refs/composed_one_of_number_with_validations" - FAKE_REFS_OBJECT_MODEL_WITH_REF_PROPS = "/fake/refs/object_model_with_ref_props" - FAKE_REFS_ENUM = "/fake/refs/enum" - FAKE_REFS_ARRAYOFENUMS = "/fake/refs/array-of-enums" - FAKE_ADDITIONALPROPERTIESWITHARRAYOFENUMS = "/fake/additional-properties-with-array-of-enums" - FAKE_JSON_FORM_DATA = "/fake/jsonFormData" - FAKE_INLINEADDITIONAL_PROPERTIES = "/fake/inline-additionalProperties" - FAKE_BODYWITHQUERYPARAMS = "/fake/body-with-query-params" - ANOTHERFAKE_DUMMY = "/another-fake/dummy" - FAKE_BODYWITHFILESCHEMA = "/fake/body-with-file-schema" - FAKE_CASESENSITIVEPARAMS = "/fake/case-sensitive-params" - FAKE_TESTQUERYPARAMTERS = "/fake/test-query-paramters" - FAKE_PET_ID_UPLOAD_IMAGE_WITH_REQUIRED_FILE = "/fake/{petId}/uploadImageWithRequiredFile" - FAKE_PARAMETER_COLLISIONS_1_A_B_AB_SELF_AB_ = "/fake/parameterCollisions/{1}/{aB}/{Ab}/{self}/{A-B}/" - FAKE_UPLOAD_FILE = "/fake/uploadFile" - FAKE_UPLOAD_FILES = "/fake/uploadFiles" - FAKE_UPLOAD_DOWNLOAD_FILE = "/fake/uploadDownloadFile" - FAKE_HEALTH = "/fake/health" - FAKE_INLINE_COMPOSITION_ = "/fake/inlineComposition/" - FAKE_OBJ_IN_QUERY = "/fake/objInQuery" - FAKE_REF_OBJ_IN_QUERY = "/fake/refObjInQuery" - FAKE_JSON_WITH_CHARSET = "/fake/jsonWithCharset" - FAKE_RESPONSE_WITHOUT_SCHEMA = "/fake/responseWithoutSchema" - FAKE_JSON_PATCH = "/fake/jsonPatch" - FAKE_DELETE_COFFEE_ID = "/fake/deleteCoffee/{id}" - FAKE_QUERY_PARAM_WITH_JSON_CONTENT_TYPE = "/fake/queryParamWithJsonContentType" +# from petstore_api.apis.path_to_api import path_to_api \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/another_fake_dummy/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/another_fake_dummy/__init__.py index 565ab17736e..2f66445e960 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/another_fake_dummy/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/another_fake_dummy/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from petstore_api.paths.another_fake_dummy import Api -from petstore_api.paths import PathValues - -path = PathValues.ANOTHERFAKE_DUMMY \ No newline at end of file +path = "/another-fake/dummy" \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/another_fake_dummy/patch/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/another_fake_dummy/patch/__init__.py index a8480355ee8..deface086d5 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/another_fake_dummy/patch/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/another_fake_dummy/patch/__init__.py @@ -108,7 +108,7 @@ def _call_123_test_special_tags_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/another_fake_dummy/patch/__init__.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/another_fake_dummy/patch/__init__.pyi index 9e4475bf750..c6a5683b458 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/another_fake_dummy/patch/__init__.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/another_fake_dummy/patch/__init__.pyi @@ -103,7 +103,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake/__init__.py index 6e6df72bd84..8661bdd58df 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from petstore_api.paths.fake import Api -from petstore_api.paths import PathValues - -path = PathValues.FAKE \ No newline at end of file +path = "/fake" \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake/delete/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake/delete/__init__.py index 6901ffde2ed..eb81be4fa13 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake/delete/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake/delete/__init__.py @@ -150,7 +150,7 @@ class instances """ self._verify_typed_dict_inputs_oapg(RequestQueryParameters.Params, query_params) self._verify_typed_dict_inputs_oapg(RequestHeaderParameters.Params, header_params) - used_path = path.value + used_path = path prefix_separator_iterator = None for parameter in RequestQueryParameters.parameters: diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake/delete/__init__.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake/delete/__init__.pyi index 751d4fefc8b..3d69ea6f3f1 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake/delete/__init__.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake/delete/__init__.pyi @@ -141,7 +141,7 @@ class BaseApi(api_client.Api): """ self._verify_typed_dict_inputs_oapg(RequestQueryParameters.Params, query_params) self._verify_typed_dict_inputs_oapg(RequestHeaderParameters.Params, header_params) - used_path = path.value + used_path = path prefix_separator_iterator = None for parameter in RequestQueryParameters.parameters: diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake/get/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake/get/__init__.py index 33fb0236554..74f3230edab 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake/get/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake/get/__init__.py @@ -172,7 +172,7 @@ class instances """ self._verify_typed_dict_inputs_oapg(RequestQueryParameters.Params, query_params) self._verify_typed_dict_inputs_oapg(RequestHeaderParameters.Params, header_params) - used_path = path.value + used_path = path prefix_separator_iterator = None for parameter in RequestQueryParameters.parameters: diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake/get/__init__.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake/get/__init__.pyi index b821d0541bc..d5f0e159ca9 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake/get/__init__.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake/get/__init__.pyi @@ -166,7 +166,7 @@ class BaseApi(api_client.Api): """ self._verify_typed_dict_inputs_oapg(RequestQueryParameters.Params, query_params) self._verify_typed_dict_inputs_oapg(RequestHeaderParameters.Params, header_params) - used_path = path.value + used_path = path prefix_separator_iterator = None for parameter in RequestQueryParameters.parameters: diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake/patch/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake/patch/__init__.py index 4bb5eb8d869..7865f160fa1 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake/patch/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake/patch/__init__.py @@ -108,7 +108,7 @@ def _client_model_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake/patch/__init__.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake/patch/__init__.pyi index d129e5c998d..5cddb17e432 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake/patch/__init__.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake/patch/__init__.pyi @@ -103,7 +103,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake/post/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake/post/__init__.py index 1667278108e..20a8d607620 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake/post/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake/post/__init__.py @@ -104,7 +104,7 @@ def _endpoint_parameters_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake/post/__init__.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake/post/__init__.pyi index 5dacc717956..30235af3ad7 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake/post/__init__.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake/post/__init__.pyi @@ -94,7 +94,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_additional_properties_with_array_of_enums/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_additional_properties_with_array_of_enums/__init__.py index 704e7f24d97..7c35c2c1eb0 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_additional_properties_with_array_of_enums/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_additional_properties_with_array_of_enums/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from petstore_api.paths.fake_additional_properties_with_array_of_enums import Api -from petstore_api.paths import PathValues - -path = PathValues.FAKE_ADDITIONALPROPERTIESWITHARRAYOFENUMS \ No newline at end of file +path = "/fake/additional-properties-with-array-of-enums" \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_additional_properties_with_array_of_enums/get/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_additional_properties_with_array_of_enums/get/__init__.py index 4c65221d144..b8f24b26575 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_additional_properties_with_array_of_enums/get/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_additional_properties_with_array_of_enums/get/__init__.py @@ -108,7 +108,7 @@ def _additional_properties_with_array_of_enums_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_additional_properties_with_array_of_enums/get/__init__.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_additional_properties_with_array_of_enums/get/__init__.pyi index 0d48429d2b3..dd27b16608f 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_additional_properties_with_array_of_enums/get/__init__.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_additional_properties_with_array_of_enums/get/__init__.pyi @@ -103,7 +103,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_body_with_file_schema/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_body_with_file_schema/__init__.py index cae3a5325e8..28c8a6a7cc4 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_body_with_file_schema/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_body_with_file_schema/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from petstore_api.paths.fake_body_with_file_schema import Api -from petstore_api.paths import PathValues - -path = PathValues.FAKE_BODYWITHFILESCHEMA \ No newline at end of file +path = "/fake/body-with-file-schema" \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_body_with_file_schema/put/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_body_with_file_schema/put/__init__.py index f30f670c5e1..8dc7e1ebd86 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_body_with_file_schema/put/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_body_with_file_schema/put/__init__.py @@ -99,7 +99,7 @@ def _body_with_file_schema_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_body_with_file_schema/put/__init__.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_body_with_file_schema/put/__init__.pyi index ebe7d275f3a..d875542f7a1 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_body_with_file_schema/put/__init__.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_body_with_file_schema/put/__init__.pyi @@ -94,7 +94,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_body_with_query_params/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_body_with_query_params/__init__.py index c79334843e0..6301b0993f7 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_body_with_query_params/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_body_with_query_params/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from petstore_api.paths.fake_body_with_query_params import Api -from petstore_api.paths import PathValues - -path = PathValues.FAKE_BODYWITHQUERYPARAMS \ No newline at end of file +path = "/fake/body-with-query-params" \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_body_with_query_params/put/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_body_with_query_params/put/__init__.py index 33a4d91c635..5520afcd3fb 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_body_with_query_params/put/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_body_with_query_params/put/__init__.py @@ -129,7 +129,7 @@ def _body_with_query_params_oapg( class instances """ self._verify_typed_dict_inputs_oapg(RequestQueryParameters.Params, query_params) - used_path = path.value + used_path = path prefix_separator_iterator = None for parameter in RequestQueryParameters.parameters: diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_body_with_query_params/put/__init__.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_body_with_query_params/put/__init__.pyi index ee1d7ed35f7..4ca29986534 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_body_with_query_params/put/__init__.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_body_with_query_params/put/__init__.pyi @@ -124,7 +124,7 @@ class BaseApi(api_client.Api): class instances """ self._verify_typed_dict_inputs_oapg(RequestQueryParameters.Params, query_params) - used_path = path.value + used_path = path prefix_separator_iterator = None for parameter in RequestQueryParameters.parameters: diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_case_sensitive_params/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_case_sensitive_params/__init__.py index dcc9e69f9bd..811095967ac 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_case_sensitive_params/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_case_sensitive_params/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from petstore_api.paths.fake_case_sensitive_params import Api -from petstore_api.paths import PathValues - -path = PathValues.FAKE_CASESENSITIVEPARAMS \ No newline at end of file +path = "/fake/case-sensitive-params" \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_case_sensitive_params/put/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_case_sensitive_params/put/__init__.py index 6594d4e0948..05536a02325 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_case_sensitive_params/put/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_case_sensitive_params/put/__init__.py @@ -109,7 +109,7 @@ def _case_sensitive_params_oapg( class instances """ self._verify_typed_dict_inputs_oapg(RequestQueryParameters.Params, query_params) - used_path = path.value + used_path = path prefix_separator_iterator = None for parameter in RequestQueryParameters.parameters: diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_case_sensitive_params/put/__init__.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_case_sensitive_params/put/__init__.pyi index 5ec1ae1279d..b08b8a81802 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_case_sensitive_params/put/__init__.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_case_sensitive_params/put/__init__.pyi @@ -104,7 +104,7 @@ class BaseApi(api_client.Api): class instances """ self._verify_typed_dict_inputs_oapg(RequestQueryParameters.Params, query_params) - used_path = path.value + used_path = path prefix_separator_iterator = None for parameter in RequestQueryParameters.parameters: diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_classname_test/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_classname_test/__init__.py index d162dcc8f69..004575795d6 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_classname_test/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_classname_test/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from petstore_api.paths.fake_classname_test import Api -from petstore_api.paths import PathValues - -path = PathValues.FAKE_CLASSNAME_TEST \ No newline at end of file +path = "/fake_classname_test" \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_classname_test/patch/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_classname_test/patch/__init__.py index be8db96cb35..957739e0488 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_classname_test/patch/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_classname_test/patch/__init__.py @@ -112,7 +112,7 @@ def _classname_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_classname_test/patch/__init__.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_classname_test/patch/__init__.pyi index 7c9887e5d21..5d7c1178ffd 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_classname_test/patch/__init__.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_classname_test/patch/__init__.pyi @@ -103,7 +103,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_delete_coffee_id/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_delete_coffee_id/__init__.py index 810d63883b8..15296a27f8b 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_delete_coffee_id/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_delete_coffee_id/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from petstore_api.paths.fake_delete_coffee_id import Api -from petstore_api.paths import PathValues - -path = PathValues.FAKE_DELETE_COFFEE_ID \ No newline at end of file +path = "/fake/deleteCoffee/{id}" \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_delete_coffee_id/delete/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_delete_coffee_id/delete/__init__.py index 4193a4112a6..ef5043fdbbe 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_delete_coffee_id/delete/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_delete_coffee_id/delete/__init__.py @@ -108,7 +108,7 @@ def _delete_coffee_oapg( class instances """ self._verify_typed_dict_inputs_oapg(RequestPathParameters.Params, path_params) - used_path = path.value + used_path = path _path_params = {} for parameter in RequestPathParameters.parameters: diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_delete_coffee_id/delete/__init__.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_delete_coffee_id/delete/__init__.pyi index be54450aaa9..48730b21f23 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_delete_coffee_id/delete/__init__.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_delete_coffee_id/delete/__init__.pyi @@ -102,7 +102,7 @@ class BaseApi(api_client.Api): class instances """ self._verify_typed_dict_inputs_oapg(RequestPathParameters.Params, path_params) - used_path = path.value + used_path = path _path_params = {} for parameter in RequestPathParameters.parameters: diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_health/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_health/__init__.py index d113dc832c1..8f89298c6d6 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_health/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_health/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from petstore_api.paths.fake_health import Api -from petstore_api.paths import PathValues - -path = PathValues.FAKE_HEALTH \ No newline at end of file +path = "/fake/health" \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_health/get/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_health/get/__init__.py index c4593658606..fa00d386ba9 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_health/get/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_health/get/__init__.py @@ -83,7 +83,7 @@ def _fake_health_get_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_health/get/__init__.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_health/get/__init__.pyi index db7166d2f63..9456cf61380 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_health/get/__init__.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_health/get/__init__.pyi @@ -78,7 +78,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_additional_properties/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_additional_properties/__init__.py index 4f2ec020c5b..0d61fd1dde9 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_additional_properties/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_additional_properties/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from petstore_api.paths.fake_inline_additional_properties import Api -from petstore_api.paths import PathValues - -path = PathValues.FAKE_INLINEADDITIONAL_PROPERTIES \ No newline at end of file +path = "/fake/inline-additionalProperties" \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_additional_properties/post/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_additional_properties/post/__init__.py index d2bdb197a74..fd3462d1914 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_additional_properties/post/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_additional_properties/post/__init__.py @@ -98,7 +98,7 @@ def _inline_additional_properties_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_additional_properties/post/__init__.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_additional_properties/post/__init__.pyi index 7e1f3d7ac1c..de21e6f9883 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_additional_properties/post/__init__.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_additional_properties/post/__init__.pyi @@ -93,7 +93,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_composition_/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_composition_/__init__.py index b3a8a011277..cce7b658572 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_composition_/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_composition_/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from petstore_api.paths.fake_inline_composition_ import Api -from petstore_api.paths import PathValues - -path = PathValues.FAKE_INLINE_COMPOSITION_ \ No newline at end of file +path = "/fake/inlineComposition/" \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_composition_/post/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_composition_/post/__init__.py index c670e7c4338..c39df6a677c 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_composition_/post/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_composition_/post/__init__.py @@ -154,7 +154,7 @@ def _inline_composition_oapg( class instances """ self._verify_typed_dict_inputs_oapg(RequestQueryParameters.Params, query_params) - used_path = path.value + used_path = path prefix_separator_iterator = None for parameter in RequestQueryParameters.parameters: diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_composition_/post/__init__.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_composition_/post/__init__.pyi index 6e5a76d5d50..57478347498 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_composition_/post/__init__.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_composition_/post/__init__.pyi @@ -149,7 +149,7 @@ class BaseApi(api_client.Api): class instances """ self._verify_typed_dict_inputs_oapg(RequestQueryParameters.Params, query_params) - used_path = path.value + used_path = path prefix_separator_iterator = None for parameter in RequestQueryParameters.parameters: diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_json_form_data/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_json_form_data/__init__.py index e66fc387729..2742a6fed58 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_json_form_data/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_json_form_data/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from petstore_api.paths.fake_json_form_data import Api -from petstore_api.paths import PathValues - -path = PathValues.FAKE_JSON_FORM_DATA \ No newline at end of file +path = "/fake/jsonFormData" \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_json_form_data/get/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_json_form_data/get/__init__.py index e4aabfad0b0..8a081f5061a 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_json_form_data/get/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_json_form_data/get/__init__.py @@ -98,7 +98,7 @@ def _json_form_data_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_json_form_data/get/__init__.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_json_form_data/get/__init__.pyi index b127066bed7..3635f556cbe 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_json_form_data/get/__init__.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_json_form_data/get/__init__.pyi @@ -93,7 +93,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_json_patch/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_json_patch/__init__.py index b302e74cceb..a2ec4e680f0 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_json_patch/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_json_patch/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from petstore_api.paths.fake_json_patch import Api -from petstore_api.paths import PathValues - -path = PathValues.FAKE_JSON_PATCH \ No newline at end of file +path = "/fake/jsonPatch" \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_json_patch/patch/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_json_patch/patch/__init__.py index f309fffe766..52981d4435d 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_json_patch/patch/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_json_patch/patch/__init__.py @@ -100,7 +100,7 @@ def _json_patch_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_json_patch/patch/__init__.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_json_patch/patch/__init__.pyi index 8fd89226a96..c04103050f0 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_json_patch/patch/__init__.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_json_patch/patch/__init__.pyi @@ -95,7 +95,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_json_with_charset/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_json_with_charset/__init__.py index 3adee6e9d67..c823c014890 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_json_with_charset/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_json_with_charset/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from petstore_api.paths.fake_json_with_charset import Api -from petstore_api.paths import PathValues - -path = PathValues.FAKE_JSON_WITH_CHARSET \ No newline at end of file +path = "/fake/jsonWithCharset" \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_json_with_charset/post/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_json_with_charset/post/__init__.py index 6451c71cc23..01c14e5f5fa 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_json_with_charset/post/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_json_with_charset/post/__init__.py @@ -106,7 +106,7 @@ def _json_with_charset_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_json_with_charset/post/__init__.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_json_with_charset/post/__init__.pyi index 493a6f779a4..a65aa968623 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_json_with_charset/post/__init__.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_json_with_charset/post/__init__.pyi @@ -101,7 +101,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_obj_in_query/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_obj_in_query/__init__.py index 758109e7c09..ba5ecf8a583 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_obj_in_query/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_obj_in_query/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from petstore_api.paths.fake_obj_in_query import Api -from petstore_api.paths import PathValues - -path = PathValues.FAKE_OBJ_IN_QUERY \ No newline at end of file +path = "/fake/objInQuery" \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_obj_in_query/get/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_obj_in_query/get/__init__.py index 7505d41b59c..041adeb9cd1 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_obj_in_query/get/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_obj_in_query/get/__init__.py @@ -104,7 +104,7 @@ def _object_in_query_oapg( class instances """ self._verify_typed_dict_inputs_oapg(RequestQueryParameters.Params, query_params) - used_path = path.value + used_path = path prefix_separator_iterator = None for parameter in RequestQueryParameters.parameters: diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_obj_in_query/get/__init__.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_obj_in_query/get/__init__.pyi index fff2fb3f58a..4a1f09d422f 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_obj_in_query/get/__init__.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_obj_in_query/get/__init__.pyi @@ -99,7 +99,7 @@ class BaseApi(api_client.Api): class instances """ self._verify_typed_dict_inputs_oapg(RequestQueryParameters.Params, query_params) - used_path = path.value + used_path = path prefix_separator_iterator = None for parameter in RequestQueryParameters.parameters: diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions_1_a_b_ab_self_a_b_/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions_1_a_b_ab_self_a_b_/__init__.py index e82cc25a7d2..2c06e3c8a33 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions_1_a_b_ab_self_a_b_/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions_1_a_b_ab_self_a_b_/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from petstore_api.paths.fake_parameter_collisions_1_a_b_ab_self_a_b_ import Api -from petstore_api.paths import PathValues - -path = PathValues.FAKE_PARAMETER_COLLISIONS_1_A_B_AB_SELF_AB_ \ No newline at end of file +path = "/fake/parameterCollisions/{1}/{aB}/{Ab}/{self}/{A-B}/" \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions_1_a_b_ab_self_a_b_/post/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions_1_a_b_ab_self_a_b_/post/__init__.py index 700ec6e0f1e..722b566eae4 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions_1_a_b_ab_self_a_b_/post/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions_1_a_b_ab_self_a_b_/post/__init__.py @@ -271,7 +271,7 @@ class instances self._verify_typed_dict_inputs_oapg(RequestHeaderParameters.Params, header_params) self._verify_typed_dict_inputs_oapg(RequestPathParameters.Params, path_params) self._verify_typed_dict_inputs_oapg(RequestCookieParameters.Params, cookie_params) - used_path = path.value + used_path = path _path_params = {} for parameter in RequestPathParameters.parameters: diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions_1_a_b_ab_self_a_b_/post/__init__.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions_1_a_b_ab_self_a_b_/post/__init__.pyi index a45453c8cbe..799e63f429b 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions_1_a_b_ab_self_a_b_/post/__init__.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions_1_a_b_ab_self_a_b_/post/__init__.pyi @@ -266,7 +266,7 @@ class BaseApi(api_client.Api): self._verify_typed_dict_inputs_oapg(RequestHeaderParameters.Params, header_params) self._verify_typed_dict_inputs_oapg(RequestPathParameters.Params, path_params) self._verify_typed_dict_inputs_oapg(RequestCookieParameters.Params, cookie_params) - used_path = path.value + used_path = path _path_params = {} for parameter in RequestPathParameters.parameters: diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_pet_id_upload_image_with_required_file/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_pet_id_upload_image_with_required_file/__init__.py index 5463e577692..7e20c397402 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_pet_id_upload_image_with_required_file/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_pet_id_upload_image_with_required_file/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from petstore_api.paths.fake_pet_id_upload_image_with_required_file import Api -from petstore_api.paths import PathValues - -path = PathValues.FAKE_PET_ID_UPLOAD_IMAGE_WITH_REQUIRED_FILE \ No newline at end of file +path = "/fake/{petId}/uploadImageWithRequiredFile" \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_pet_id_upload_image_with_required_file/post/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_pet_id_upload_image_with_required_file/post/__init__.py index ba31496eef5..c574bb19129 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_pet_id_upload_image_with_required_file/post/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_pet_id_upload_image_with_required_file/post/__init__.py @@ -140,7 +140,7 @@ def _upload_file_with_required_file_oapg( class instances """ self._verify_typed_dict_inputs_oapg(RequestPathParameters.Params, path_params) - used_path = path.value + used_path = path _path_params = {} for parameter in RequestPathParameters.parameters: diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_pet_id_upload_image_with_required_file/post/__init__.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_pet_id_upload_image_with_required_file/post/__init__.pyi index 8f0508538d9..22a6f89e846 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_pet_id_upload_image_with_required_file/post/__init__.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_pet_id_upload_image_with_required_file/post/__init__.pyi @@ -131,7 +131,7 @@ class BaseApi(api_client.Api): class instances """ self._verify_typed_dict_inputs_oapg(RequestPathParameters.Params, path_params) - used_path = path.value + used_path = path _path_params = {} for parameter in RequestPathParameters.parameters: diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_query_param_with_json_content_type/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_query_param_with_json_content_type/__init__.py index d6a09bc162b..6b1127dd515 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_query_param_with_json_content_type/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_query_param_with_json_content_type/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from petstore_api.paths.fake_query_param_with_json_content_type import Api -from petstore_api.paths import PathValues - -path = PathValues.FAKE_QUERY_PARAM_WITH_JSON_CONTENT_TYPE \ No newline at end of file +path = "/fake/queryParamWithJsonContentType" \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_query_param_with_json_content_type/get/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_query_param_with_json_content_type/get/__init__.py index 0da1014f9cb..ba17c0a1cc0 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_query_param_with_json_content_type/get/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_query_param_with_json_content_type/get/__init__.py @@ -112,7 +112,7 @@ def _query_param_with_json_content_type_oapg( class instances """ self._verify_typed_dict_inputs_oapg(RequestQueryParameters.Params, query_params) - used_path = path.value + used_path = path prefix_separator_iterator = None for parameter in RequestQueryParameters.parameters: diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_query_param_with_json_content_type/get/__init__.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_query_param_with_json_content_type/get/__init__.pyi index 60127eedd6a..e2bf931cbee 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_query_param_with_json_content_type/get/__init__.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_query_param_with_json_content_type/get/__init__.pyi @@ -107,7 +107,7 @@ class BaseApi(api_client.Api): class instances """ self._verify_typed_dict_inputs_oapg(RequestQueryParameters.Params, query_params) - used_path = path.value + used_path = path prefix_separator_iterator = None for parameter in RequestQueryParameters.parameters: diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_ref_obj_in_query/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_ref_obj_in_query/__init__.py index f14640328a9..327054d069d 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_ref_obj_in_query/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_ref_obj_in_query/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from petstore_api.paths.fake_ref_obj_in_query import Api -from petstore_api.paths import PathValues - -path = PathValues.FAKE_REF_OBJ_IN_QUERY \ No newline at end of file +path = "/fake/refObjInQuery" \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_ref_obj_in_query/get/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_ref_obj_in_query/get/__init__.py index 36e4472b479..64e9e2c8a95 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_ref_obj_in_query/get/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_ref_obj_in_query/get/__init__.py @@ -106,7 +106,7 @@ def _ref_object_in_query_oapg( class instances """ self._verify_typed_dict_inputs_oapg(RequestQueryParameters.Params, query_params) - used_path = path.value + used_path = path prefix_separator_iterator = None for parameter in RequestQueryParameters.parameters: diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_ref_obj_in_query/get/__init__.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_ref_obj_in_query/get/__init__.pyi index 1e529f819f6..92250a34d09 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_ref_obj_in_query/get/__init__.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_ref_obj_in_query/get/__init__.pyi @@ -101,7 +101,7 @@ class BaseApi(api_client.Api): class instances """ self._verify_typed_dict_inputs_oapg(RequestQueryParameters.Params, query_params) - used_path = path.value + used_path = path prefix_separator_iterator = None for parameter in RequestQueryParameters.parameters: diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_array_of_enums/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_array_of_enums/__init__.py index 59f3e61b17d..d519da9cd75 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_array_of_enums/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_array_of_enums/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from petstore_api.paths.fake_refs_array_of_enums import Api -from petstore_api.paths import PathValues - -path = PathValues.FAKE_REFS_ARRAYOFENUMS \ No newline at end of file +path = "/fake/refs/array-of-enums" \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_array_of_enums/post/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_array_of_enums/post/__init__.py index 3f79d88d044..c2f674d27dc 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_array_of_enums/post/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_array_of_enums/post/__init__.py @@ -108,7 +108,7 @@ def _array_of_enums_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_array_of_enums/post/__init__.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_array_of_enums/post/__init__.pyi index 27b9372e781..27976191654 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_array_of_enums/post/__init__.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_array_of_enums/post/__init__.pyi @@ -103,7 +103,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_arraymodel/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_arraymodel/__init__.py index c90c7330633..56c433fb3da 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_arraymodel/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_arraymodel/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from petstore_api.paths.fake_refs_arraymodel import Api -from petstore_api.paths import PathValues - -path = PathValues.FAKE_REFS_ARRAYMODEL \ No newline at end of file +path = "/fake/refs/arraymodel" \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_arraymodel/post/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_arraymodel/post/__init__.py index 6c27942075e..00c8f8df70a 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_arraymodel/post/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_arraymodel/post/__init__.py @@ -107,7 +107,7 @@ def _array_model_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_arraymodel/post/__init__.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_arraymodel/post/__init__.pyi index 6473183d6c1..c52b319825d 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_arraymodel/post/__init__.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_arraymodel/post/__init__.pyi @@ -102,7 +102,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_boolean/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_boolean/__init__.py index 0c4592391c5..e55f155e7a2 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_boolean/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_boolean/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from petstore_api.paths.fake_refs_boolean import Api -from petstore_api.paths import PathValues - -path = PathValues.FAKE_REFS_BOOLEAN \ No newline at end of file +path = "/fake/refs/boolean" \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_boolean/post/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_boolean/post/__init__.py index f72b9acd0d2..9a0757b3328 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_boolean/post/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_boolean/post/__init__.py @@ -107,7 +107,7 @@ def _boolean_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_boolean/post/__init__.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_boolean/post/__init__.pyi index 5a3f8e8b241..fbaff9530ad 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_boolean/post/__init__.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_boolean/post/__init__.pyi @@ -102,7 +102,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_composed_one_of_number_with_validations/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_composed_one_of_number_with_validations/__init__.py index 0d1296a31b0..666dbf00158 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_composed_one_of_number_with_validations/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_composed_one_of_number_with_validations/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from petstore_api.paths.fake_refs_composed_one_of_number_with_validations import Api -from petstore_api.paths import PathValues - -path = PathValues.FAKE_REFS_COMPOSED_ONE_OF_NUMBER_WITH_VALIDATIONS \ No newline at end of file +path = "/fake/refs/composed_one_of_number_with_validations" \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_composed_one_of_number_with_validations/post/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_composed_one_of_number_with_validations/post/__init__.py index e6683cbede3..4493cf70354 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_composed_one_of_number_with_validations/post/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_composed_one_of_number_with_validations/post/__init__.py @@ -107,7 +107,7 @@ def _composed_one_of_different_types_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_composed_one_of_number_with_validations/post/__init__.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_composed_one_of_number_with_validations/post/__init__.pyi index 672c18429ab..f9185516ece 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_composed_one_of_number_with_validations/post/__init__.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_composed_one_of_number_with_validations/post/__init__.pyi @@ -102,7 +102,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_enum/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_enum/__init__.py index f383b115070..3584c62794e 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_enum/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_enum/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from petstore_api.paths.fake_refs_enum import Api -from petstore_api.paths import PathValues - -path = PathValues.FAKE_REFS_ENUM \ No newline at end of file +path = "/fake/refs/enum" \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_enum/post/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_enum/post/__init__.py index 5df7c79a474..aee8a7ab298 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_enum/post/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_enum/post/__init__.py @@ -107,7 +107,7 @@ def _string_enum_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_enum/post/__init__.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_enum/post/__init__.pyi index 7900eb80814..222df889c68 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_enum/post/__init__.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_enum/post/__init__.pyi @@ -102,7 +102,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_mammal/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_mammal/__init__.py index 8714057f419..71092485c42 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_mammal/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_mammal/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from petstore_api.paths.fake_refs_mammal import Api -from petstore_api.paths import PathValues - -path = PathValues.FAKE_REFS_MAMMAL \ No newline at end of file +path = "/fake/refs/mammal" \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_mammal/post/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_mammal/post/__init__.py index 86b4a9d797b..faeb4adb4de 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_mammal/post/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_mammal/post/__init__.py @@ -107,7 +107,7 @@ def _mammal_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_mammal/post/__init__.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_mammal/post/__init__.pyi index d35a65d1384..783239cbf5b 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_mammal/post/__init__.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_mammal/post/__init__.pyi @@ -102,7 +102,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_number/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_number/__init__.py index 7ca1c08dff0..c20c5e276f2 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_number/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_number/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from petstore_api.paths.fake_refs_number import Api -from petstore_api.paths import PathValues - -path = PathValues.FAKE_REFS_NUMBER \ No newline at end of file +path = "/fake/refs/number" \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_number/post/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_number/post/__init__.py index 40cc32d9a6b..a2f041a1269 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_number/post/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_number/post/__init__.py @@ -107,7 +107,7 @@ def _number_with_validations_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_number/post/__init__.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_number/post/__init__.pyi index 4ca5feef7d9..26e3a5b8491 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_number/post/__init__.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_number/post/__init__.pyi @@ -102,7 +102,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_object_model_with_ref_props/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_object_model_with_ref_props/__init__.py index 75f23321286..80b6920a01f 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_object_model_with_ref_props/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_object_model_with_ref_props/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from petstore_api.paths.fake_refs_object_model_with_ref_props import Api -from petstore_api.paths import PathValues - -path = PathValues.FAKE_REFS_OBJECT_MODEL_WITH_REF_PROPS \ No newline at end of file +path = "/fake/refs/object_model_with_ref_props" \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_object_model_with_ref_props/post/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_object_model_with_ref_props/post/__init__.py index ba8f737f14e..4305b9d2c43 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_object_model_with_ref_props/post/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_object_model_with_ref_props/post/__init__.py @@ -107,7 +107,7 @@ def _object_model_with_ref_props_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_object_model_with_ref_props/post/__init__.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_object_model_with_ref_props/post/__init__.pyi index 089cd1a8d93..bd429a518bd 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_object_model_with_ref_props/post/__init__.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_object_model_with_ref_props/post/__init__.pyi @@ -102,7 +102,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_string/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_string/__init__.py index 5f3cba3f0c9..b79211a5e7d 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_string/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_string/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from petstore_api.paths.fake_refs_string import Api -from petstore_api.paths import PathValues - -path = PathValues.FAKE_REFS_STRING \ No newline at end of file +path = "/fake/refs/string" \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_string/post/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_string/post/__init__.py index f09433f62ff..a2f125bd375 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_string/post/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_string/post/__init__.py @@ -107,7 +107,7 @@ def _string_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_string/post/__init__.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_string/post/__init__.pyi index b7e6758c6a5..6040fc7ac19 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_string/post/__init__.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_refs_string/post/__init__.pyi @@ -102,7 +102,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_response_without_schema/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_response_without_schema/__init__.py index 52d9f34614f..0d69bfb020d 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_response_without_schema/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_response_without_schema/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from petstore_api.paths.fake_response_without_schema import Api -from petstore_api.paths import PathValues - -path = PathValues.FAKE_RESPONSE_WITHOUT_SCHEMA \ No newline at end of file +path = "/fake/responseWithoutSchema" \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_response_without_schema/get/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_response_without_schema/get/__init__.py index 722b724522c..3b52bc50e1d 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_response_without_schema/get/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_response_without_schema/get/__init__.py @@ -84,7 +84,7 @@ def _response_without_schema_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_response_without_schema/get/__init__.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_response_without_schema/get/__init__.pyi index 05c85e9b0b8..76b13b0db70 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_response_without_schema/get/__init__.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_response_without_schema/get/__init__.pyi @@ -79,7 +79,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_test_query_paramters/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_test_query_paramters/__init__.py index ada97981537..eda1ecf13d6 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_test_query_paramters/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_test_query_paramters/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from petstore_api.paths.fake_test_query_paramters import Api -from petstore_api.paths import PathValues - -path = PathValues.FAKE_TESTQUERYPARAMTERS \ No newline at end of file +path = "/fake/test-query-paramters" \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_test_query_paramters/put/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_test_query_paramters/put/__init__.py index 012dfee8f21..65b56a6e01a 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_test_query_paramters/put/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_test_query_paramters/put/__init__.py @@ -120,7 +120,7 @@ def _query_parameter_collection_format_oapg( class instances """ self._verify_typed_dict_inputs_oapg(RequestQueryParameters.Params, query_params) - used_path = path.value + used_path = path prefix_separator_iterator = None for parameter in RequestQueryParameters.parameters: diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_test_query_paramters/put/__init__.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_test_query_paramters/put/__init__.pyi index a65281c6370..ed6b13e13be 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_test_query_paramters/put/__init__.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_test_query_paramters/put/__init__.pyi @@ -115,7 +115,7 @@ class BaseApi(api_client.Api): class instances """ self._verify_typed_dict_inputs_oapg(RequestQueryParameters.Params, query_params) - used_path = path.value + used_path = path prefix_separator_iterator = None for parameter in RequestQueryParameters.parameters: diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_upload_download_file/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_upload_download_file/__init__.py index b7321672f11..7e186d72cd1 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_upload_download_file/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_upload_download_file/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from petstore_api.paths.fake_upload_download_file import Api -from petstore_api.paths import PathValues - -path = PathValues.FAKE_UPLOAD_DOWNLOAD_FILE \ No newline at end of file +path = "/fake/uploadDownloadFile" \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_upload_download_file/post/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_upload_download_file/post/__init__.py index 50216505726..c5d6eaac7ae 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_upload_download_file/post/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_upload_download_file/post/__init__.py @@ -106,7 +106,7 @@ def _upload_download_file_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_upload_download_file/post/__init__.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_upload_download_file/post/__init__.pyi index 821c15c7775..8f862398e47 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_upload_download_file/post/__init__.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_upload_download_file/post/__init__.pyi @@ -101,7 +101,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_upload_file/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_upload_file/__init__.py index 3f4bf5709f3..ea4f962b6ab 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_upload_file/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_upload_file/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from petstore_api.paths.fake_upload_file import Api -from petstore_api.paths import PathValues - -path = PathValues.FAKE_UPLOAD_FILE \ No newline at end of file +path = "/fake/uploadFile" \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_upload_file/post/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_upload_file/post/__init__.py index 78a89109703..e184cf65619 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_upload_file/post/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_upload_file/post/__init__.py @@ -106,7 +106,7 @@ def _upload_file_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_upload_file/post/__init__.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_upload_file/post/__init__.pyi index 84512612a50..90a770a1a80 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_upload_file/post/__init__.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_upload_file/post/__init__.pyi @@ -101,7 +101,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_upload_files/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_upload_files/__init__.py index 20c593a329a..4d5033c3fb4 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_upload_files/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_upload_files/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from petstore_api.paths.fake_upload_files import Api -from petstore_api.paths import PathValues - -path = PathValues.FAKE_UPLOAD_FILES \ No newline at end of file +path = "/fake/uploadFiles" \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_upload_files/post/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_upload_files/post/__init__.py index 18952344aaf..e9a58eb8a49 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_upload_files/post/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_upload_files/post/__init__.py @@ -106,7 +106,7 @@ def _upload_files_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_upload_files/post/__init__.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_upload_files/post/__init__.pyi index 6ea2da353d5..3346dfecece 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_upload_files/post/__init__.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_upload_files/post/__init__.pyi @@ -101,7 +101,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/foo/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/foo/__init__.py index e7bea652ad4..e2ce72a8d05 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/foo/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/foo/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from petstore_api.paths.foo import Api -from petstore_api.paths import PathValues - -path = PathValues.FOO \ No newline at end of file +path = "/foo" \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/foo/get/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/foo/get/__init__.py index 64ce3f3b439..3c2c4da0c4e 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/foo/get/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/foo/get/__init__.py @@ -82,7 +82,7 @@ def _foo_get_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/foo/get/__init__.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/foo/get/__init__.pyi index 0ff160bbb36..e5511440d84 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/foo/get/__init__.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/foo/get/__init__.pyi @@ -77,7 +77,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/pet/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/pet/__init__.py index a52ddaccdbb..7fb5609dcbf 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/pet/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/pet/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from petstore_api.paths.pet import Api -from petstore_api.paths import PathValues - -path = PathValues.PET \ No newline at end of file +path = "/pet" \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/pet/post/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/pet/post/__init__.py index ced09ba85b0..98c4b076255 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/pet/post/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/pet/post/__init__.py @@ -136,7 +136,7 @@ def _add_pet_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/pet/post/__init__.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/pet/post/__init__.pyi index c51b36c2938..4093cafaff8 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/pet/post/__init__.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/pet/post/__init__.pyi @@ -114,7 +114,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/pet/put/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/pet/put/__init__.py index ab3c2826248..6880b08cae7 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/pet/put/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/pet/put/__init__.py @@ -128,7 +128,7 @@ def _update_pet_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/pet/put/__init__.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/pet/put/__init__.pyi index ca70c00f846..a481b5e3351 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/pet/put/__init__.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/pet/put/__init__.pyi @@ -105,7 +105,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/pet_find_by_status/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/pet_find_by_status/__init__.py index f0f9ca9ac2e..00adbef421a 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/pet_find_by_status/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/pet_find_by_status/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from petstore_api.paths.pet_find_by_status import Api -from petstore_api.paths import PathValues - -path = PathValues.PET_FIND_BY_STATUS \ No newline at end of file +path = "/pet/findByStatus" \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/pet_find_by_status/get/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/pet_find_by_status/get/__init__.py index da50bae9d53..120b136b036 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/pet_find_by_status/get/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/pet_find_by_status/get/__init__.py @@ -120,7 +120,7 @@ def _find_pets_by_status_oapg( class instances """ self._verify_typed_dict_inputs_oapg(RequestQueryParameters.Params, query_params) - used_path = path.value + used_path = path prefix_separator_iterator = None for parameter in RequestQueryParameters.parameters: diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/pet_find_by_status/get/__init__.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/pet_find_by_status/get/__init__.pyi index b51a0e81680..b4ae0be13a1 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/pet_find_by_status/get/__init__.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/pet_find_by_status/get/__init__.pyi @@ -109,7 +109,7 @@ class BaseApi(api_client.Api): class instances """ self._verify_typed_dict_inputs_oapg(RequestQueryParameters.Params, query_params) - used_path = path.value + used_path = path prefix_separator_iterator = None for parameter in RequestQueryParameters.parameters: diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/pet_find_by_tags/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/pet_find_by_tags/__init__.py index 55063b645ec..5ad4cc1f036 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/pet_find_by_tags/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/pet_find_by_tags/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from petstore_api.paths.pet_find_by_tags import Api -from petstore_api.paths import PathValues - -path = PathValues.PET_FIND_BY_TAGS \ No newline at end of file +path = "/pet/findByTags" \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/pet_find_by_tags/get/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/pet_find_by_tags/get/__init__.py index ae4a2487036..57a41cd70bf 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/pet_find_by_tags/get/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/pet_find_by_tags/get/__init__.py @@ -120,7 +120,7 @@ def _find_pets_by_tags_oapg( class instances """ self._verify_typed_dict_inputs_oapg(RequestQueryParameters.Params, query_params) - used_path = path.value + used_path = path prefix_separator_iterator = None for parameter in RequestQueryParameters.parameters: diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/pet_find_by_tags/get/__init__.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/pet_find_by_tags/get/__init__.pyi index 365dbbe9bd2..47579fef9ec 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/pet_find_by_tags/get/__init__.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/pet_find_by_tags/get/__init__.pyi @@ -109,7 +109,7 @@ class BaseApi(api_client.Api): class instances """ self._verify_typed_dict_inputs_oapg(RequestQueryParameters.Params, query_params) - used_path = path.value + used_path = path prefix_separator_iterator = None for parameter in RequestQueryParameters.parameters: diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id/__init__.py index b165f841464..0e56268d30f 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from petstore_api.paths.pet_pet_id import Api -from petstore_api.paths import PathValues - -path = PathValues.PET_PET_ID \ No newline at end of file +path = "/pet/{petId}" \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id/delete/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id/delete/__init__.py index 2611e1ee624..aa45e2fc46e 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id/delete/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id/delete/__init__.py @@ -134,7 +134,7 @@ class instances """ self._verify_typed_dict_inputs_oapg(RequestHeaderParameters.Params, header_params) self._verify_typed_dict_inputs_oapg(RequestPathParameters.Params, path_params) - used_path = path.value + used_path = path _path_params = {} for parameter in RequestPathParameters.parameters: diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id/delete/__init__.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id/delete/__init__.pyi index 4f8d4bf80d0..0f29290b748 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id/delete/__init__.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id/delete/__init__.pyi @@ -125,7 +125,7 @@ class BaseApi(api_client.Api): """ self._verify_typed_dict_inputs_oapg(RequestHeaderParameters.Params, header_params) self._verify_typed_dict_inputs_oapg(RequestPathParameters.Params, path_params) - used_path = path.value + used_path = path _path_params = {} for parameter in RequestPathParameters.parameters: diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id/get/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id/get/__init__.py index 651abcd4b1f..0adf2ea9fb4 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id/get/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id/get/__init__.py @@ -121,7 +121,7 @@ def _get_pet_by_id_oapg( class instances """ self._verify_typed_dict_inputs_oapg(RequestPathParameters.Params, path_params) - used_path = path.value + used_path = path _path_params = {} for parameter in RequestPathParameters.parameters: diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id/get/__init__.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id/get/__init__.pyi index 8297b30ea73..71f896f2f00 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id/get/__init__.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id/get/__init__.pyi @@ -110,7 +110,7 @@ class BaseApi(api_client.Api): class instances """ self._verify_typed_dict_inputs_oapg(RequestPathParameters.Params, path_params) - used_path = path.value + used_path = path _path_params = {} for parameter in RequestPathParameters.parameters: diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id/post/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id/post/__init__.py index 47b1087a6a7..cde1a17c9af 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id/post/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id/post/__init__.py @@ -125,7 +125,7 @@ def _update_pet_with_form_oapg( class instances """ self._verify_typed_dict_inputs_oapg(RequestPathParameters.Params, path_params) - used_path = path.value + used_path = path _path_params = {} for parameter in RequestPathParameters.parameters: diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id/post/__init__.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id/post/__init__.pyi index 246578f6352..49e860edd3f 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id/post/__init__.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id/post/__init__.pyi @@ -116,7 +116,7 @@ class BaseApi(api_client.Api): class instances """ self._verify_typed_dict_inputs_oapg(RequestPathParameters.Params, path_params) - used_path = path.value + used_path = path _path_params = {} for parameter in RequestPathParameters.parameters: diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id_upload_image/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id_upload_image/__init__.py index 6af43e84e11..13d2251f36e 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id_upload_image/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id_upload_image/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from petstore_api.paths.pet_pet_id_upload_image import Api -from petstore_api.paths import PathValues - -path = PathValues.PET_PET_ID_UPLOAD_IMAGE \ No newline at end of file +path = "/pet/{petId}/uploadImage" \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id_upload_image/post/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id_upload_image/post/__init__.py index af7a79eb441..ad065637c5a 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id_upload_image/post/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id_upload_image/post/__init__.py @@ -140,7 +140,7 @@ def _upload_image_oapg( class instances """ self._verify_typed_dict_inputs_oapg(RequestPathParameters.Params, path_params) - used_path = path.value + used_path = path _path_params = {} for parameter in RequestPathParameters.parameters: diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id_upload_image/post/__init__.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id_upload_image/post/__init__.pyi index 22b12b419ba..36922eaa103 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id_upload_image/post/__init__.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id_upload_image/post/__init__.pyi @@ -131,7 +131,7 @@ class BaseApi(api_client.Api): class instances """ self._verify_typed_dict_inputs_oapg(RequestPathParameters.Params, path_params) - used_path = path.value + used_path = path _path_params = {} for parameter in RequestPathParameters.parameters: diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/store_inventory/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/store_inventory/__init__.py index 265c07e7bbb..93476f38369 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/store_inventory/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/store_inventory/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from petstore_api.paths.store_inventory import Api -from petstore_api.paths import PathValues - -path = PathValues.STORE_INVENTORY \ No newline at end of file +path = "/store/inventory" \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/store_inventory/get/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/store_inventory/get/__init__.py index 50b42404caf..d9a97d70383 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/store_inventory/get/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/store_inventory/get/__init__.py @@ -87,7 +87,7 @@ def _get_inventory_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/store_inventory/get/__init__.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/store_inventory/get/__init__.pyi index 1ec6f93243e..6954d0e40ba 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/store_inventory/get/__init__.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/store_inventory/get/__init__.pyi @@ -78,7 +78,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/store_order/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/store_order/__init__.py index 2cefcb1299a..b490952d55e 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/store_order/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/store_order/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from petstore_api.paths.store_order import Api -from petstore_api.paths import PathValues - -path = PathValues.STORE_ORDER \ No newline at end of file +path = "/store/order" \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/store_order/post/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/store_order/post/__init__.py index 373828a5599..65fb9214a3a 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/store_order/post/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/store_order/post/__init__.py @@ -111,7 +111,7 @@ def _place_order_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/store_order/post/__init__.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/store_order/post/__init__.pyi index d5340dbdf5a..798c7a3447d 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/store_order/post/__init__.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/store_order/post/__init__.pyi @@ -105,7 +105,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/store_order_order_id/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/store_order_order_id/__init__.py index 435dc451244..cf928014642 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/store_order_order_id/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/store_order_order_id/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from petstore_api.paths.store_order_order_id import Api -from petstore_api.paths import PathValues - -path = PathValues.STORE_ORDER_ORDER_ID \ No newline at end of file +path = "/store/order/{order_id}" \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/store_order_order_id/delete/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/store_order_order_id/delete/__init__.py index c73369e38ee..11a1e9743ff 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/store_order_order_id/delete/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/store_order_order_id/delete/__init__.py @@ -102,7 +102,7 @@ def _delete_order_oapg( class instances """ self._verify_typed_dict_inputs_oapg(RequestPathParameters.Params, path_params) - used_path = path.value + used_path = path _path_params = {} for parameter in RequestPathParameters.parameters: diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/store_order_order_id/delete/__init__.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/store_order_order_id/delete/__init__.pyi index c0b414e8d89..afa821b1f3a 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/store_order_order_id/delete/__init__.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/store_order_order_id/delete/__init__.pyi @@ -96,7 +96,7 @@ class BaseApi(api_client.Api): class instances """ self._verify_typed_dict_inputs_oapg(RequestPathParameters.Params, path_params) - used_path = path.value + used_path = path _path_params = {} for parameter in RequestPathParameters.parameters: diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/store_order_order_id/get/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/store_order_order_id/get/__init__.py index 85467dbaaf9..ea4c86cd48b 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/store_order_order_id/get/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/store_order_order_id/get/__init__.py @@ -117,7 +117,7 @@ def _get_order_by_id_oapg( class instances """ self._verify_typed_dict_inputs_oapg(RequestPathParameters.Params, path_params) - used_path = path.value + used_path = path _path_params = {} for parameter in RequestPathParameters.parameters: diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/store_order_order_id/get/__init__.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/store_order_order_id/get/__init__.pyi index aa871286612..2ee6c1ecad4 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/store_order_order_id/get/__init__.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/store_order_order_id/get/__init__.pyi @@ -110,7 +110,7 @@ class BaseApi(api_client.Api): class instances """ self._verify_typed_dict_inputs_oapg(RequestPathParameters.Params, path_params) - used_path = path.value + used_path = path _path_params = {} for parameter in RequestPathParameters.parameters: diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/user/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/user/__init__.py index 9cb59c35fb2..450e0e1f244 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/user/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/user/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from petstore_api.paths.user import Api -from petstore_api.paths import PathValues - -path = PathValues.USER \ No newline at end of file +path = "/user" \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/user/post/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/user/post/__init__.py index 71c6a8dcf21..1a170702cc5 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/user/post/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/user/post/__init__.py @@ -100,7 +100,7 @@ def _create_user_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/user/post/__init__.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/user/post/__init__.pyi index 5aac2ead1af..3d988e4c8ed 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/user/post/__init__.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/user/post/__init__.pyi @@ -95,7 +95,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/user_create_with_array/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/user_create_with_array/__init__.py index 984db1ea2bb..e75ce2e85e0 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/user_create_with_array/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/user_create_with_array/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from petstore_api.paths.user_create_with_array import Api -from petstore_api.paths import PathValues - -path = PathValues.USER_CREATE_WITH_ARRAY \ No newline at end of file +path = "/user/createWithArray" \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/user_create_with_array/post/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/user_create_with_array/post/__init__.py index 2bb0f277ae9..e3a246d1781 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/user_create_with_array/post/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/user_create_with_array/post/__init__.py @@ -100,7 +100,7 @@ def _create_users_with_array_input_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/user_create_with_array/post/__init__.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/user_create_with_array/post/__init__.pyi index 8b71ac23d33..8f80a392830 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/user_create_with_array/post/__init__.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/user_create_with_array/post/__init__.pyi @@ -95,7 +95,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/user_create_with_list/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/user_create_with_list/__init__.py index 3930d4bbca5..c4385326784 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/user_create_with_list/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/user_create_with_list/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from petstore_api.paths.user_create_with_list import Api -from petstore_api.paths import PathValues - -path = PathValues.USER_CREATE_WITH_LIST \ No newline at end of file +path = "/user/createWithList" \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/user_create_with_list/post/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/user_create_with_list/post/__init__.py index e41f550fcc3..ff2886b0c63 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/user_create_with_list/post/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/user_create_with_list/post/__init__.py @@ -100,7 +100,7 @@ def _create_users_with_list_input_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/user_create_with_list/post/__init__.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/user_create_with_list/post/__init__.pyi index 998c1a90078..437159458a9 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/user_create_with_list/post/__init__.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/user_create_with_list/post/__init__.pyi @@ -95,7 +95,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/user_login/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/user_login/__init__.py index 7dbf363c109..3ada2ee96f7 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/user_login/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/user_login/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from petstore_api.paths.user_login import Api -from petstore_api.paths import PathValues - -path = PathValues.USER_LOGIN \ No newline at end of file +path = "/user/login" \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/user_login/get/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/user_login/get/__init__.py index e07e7ddae3d..ea70d93e794 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/user_login/get/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/user_login/get/__init__.py @@ -118,7 +118,7 @@ def _login_user_oapg( class instances """ self._verify_typed_dict_inputs_oapg(RequestQueryParameters.Params, query_params) - used_path = path.value + used_path = path prefix_separator_iterator = None for parameter in RequestQueryParameters.parameters: diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/user_login/get/__init__.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/user_login/get/__init__.pyi index b1f632212ca..3ea575fa3d8 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/user_login/get/__init__.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/user_login/get/__init__.pyi @@ -112,7 +112,7 @@ class BaseApi(api_client.Api): class instances """ self._verify_typed_dict_inputs_oapg(RequestQueryParameters.Params, query_params) - used_path = path.value + used_path = path prefix_separator_iterator = None for parameter in RequestQueryParameters.parameters: diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/user_logout/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/user_logout/__init__.py index 625c23c6d0e..0b215490835 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/user_logout/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/user_logout/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from petstore_api.paths.user_logout import Api -from petstore_api.paths import PathValues - -path = PathValues.USER_LOGOUT \ No newline at end of file +path = "/user/logout" \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/user_logout/get/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/user_logout/get/__init__.py index c3871dd3ee7..f3723270e88 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/user_logout/get/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/user_logout/get/__init__.py @@ -75,7 +75,7 @@ def _logout_user_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path # TODO add cookie handling response = self.api_client.call_api( diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/user_logout/get/__init__.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/user_logout/get/__init__.pyi index 00868ebe200..d6aa06821b7 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/user_logout/get/__init__.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/user_logout/get/__init__.pyi @@ -70,7 +70,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path # TODO add cookie handling response = self.api_client.call_api( diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/user_username/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/user_username/__init__.py index c78d37255f6..6ef9727dfd5 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/user_username/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/user_username/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from petstore_api.paths.user_username import Api -from petstore_api.paths import PathValues - -path = PathValues.USER_USERNAME \ No newline at end of file +path = "/user/{username}" \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/user_username/delete/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/user_username/delete/__init__.py index 25c26c00494..6c5b63cade1 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/user_username/delete/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/user_username/delete/__init__.py @@ -106,7 +106,7 @@ def _delete_user_oapg( class instances """ self._verify_typed_dict_inputs_oapg(RequestPathParameters.Params, path_params) - used_path = path.value + used_path = path _path_params = {} for parameter in RequestPathParameters.parameters: diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/user_username/delete/__init__.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/user_username/delete/__init__.pyi index 628b6fd01ec..9a118306769 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/user_username/delete/__init__.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/user_username/delete/__init__.pyi @@ -100,7 +100,7 @@ class BaseApi(api_client.Api): class instances """ self._verify_typed_dict_inputs_oapg(RequestPathParameters.Params, path_params) - used_path = path.value + used_path = path _path_params = {} for parameter in RequestPathParameters.parameters: diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/user_username/get/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/user_username/get/__init__.py index aaa42ac8b3a..b44a9d15f50 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/user_username/get/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/user_username/get/__init__.py @@ -117,7 +117,7 @@ def _get_user_by_name_oapg( class instances """ self._verify_typed_dict_inputs_oapg(RequestPathParameters.Params, path_params) - used_path = path.value + used_path = path _path_params = {} for parameter in RequestPathParameters.parameters: diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/user_username/get/__init__.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/user_username/get/__init__.pyi index e2a8d09d166..1739eb4afe6 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/user_username/get/__init__.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/user_username/get/__init__.pyi @@ -110,7 +110,7 @@ class BaseApi(api_client.Api): class instances """ self._verify_typed_dict_inputs_oapg(RequestPathParameters.Params, path_params) - used_path = path.value + used_path = path _path_params = {} for parameter in RequestPathParameters.parameters: diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/user_username/put/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/user_username/put/__init__.py index 1139094d11e..3cdd32bd9c0 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/user_username/put/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/user_username/put/__init__.py @@ -125,7 +125,7 @@ def _update_user_oapg( class instances """ self._verify_typed_dict_inputs_oapg(RequestPathParameters.Params, path_params) - used_path = path.value + used_path = path _path_params = {} for parameter in RequestPathParameters.parameters: diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/user_username/put/__init__.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/user_username/put/__init__.pyi index 56e27d28216..ee1f1d961cb 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/user_username/put/__init__.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/user_username/put/__init__.pyi @@ -119,7 +119,7 @@ class BaseApi(api_client.Api): class instances """ self._verify_typed_dict_inputs_oapg(RequestPathParameters.Params, path_params) - used_path = path.value + used_path = path _path_params = {} for parameter in RequestPathParameters.parameters: From 0d76296c8261645a1396c67f9c2948e2ac8859cd Mon Sep 17 00:00:00 2001 From: Justin Black Date: Fri, 18 Nov 2022 21:08:29 -0800 Subject: [PATCH 3/5] Template update --- .../codegen/languages/PythonClientCodegen.java | 15 ++++----------- .../resources/python/__init__apis_tags.handlebars | 10 +--------- .../resources/python/apis_tag_to_api.handlebars | 9 ++++----- 3 files changed, 9 insertions(+), 25 deletions(-) diff --git a/modules/openapi-json-schema-generator/src/main/java/org/openapitools/codegen/languages/PythonClientCodegen.java b/modules/openapi-json-schema-generator/src/main/java/org/openapitools/codegen/languages/PythonClientCodegen.java index 830fc35480a..a0314754c52 100644 --- a/modules/openapi-json-schema-generator/src/main/java/org/openapitools/codegen/languages/PythonClientCodegen.java +++ b/modules/openapi-json-schema-generator/src/main/java/org/openapitools/codegen/languages/PythonClientCodegen.java @@ -101,10 +101,8 @@ public class PythonClientCodegen extends AbstractPythonCodegen { // for apis.tags imports private Map tagModuleNameToApiClassname = new LinkedHashMap<>(); - // for apis.tags enum tag definition - private Map enumToTag = new LinkedHashMap<>(); // for apis.tags tag api definition - private Map tagEnumToApiClassname = new LinkedHashMap<>(); + private Map tagToApiClassname = new LinkedHashMap<>(); private boolean nonCompliantUseDiscrIfCompositionFails = false; @@ -556,9 +554,7 @@ protected void generateEndpoints(OperationsMap objs) { String tagModuleName = toApiFilename(tagName); String apiClassname = toApiName(tagName); tagModuleNameToApiClassname.put(tagModuleName, apiClassname); - String tagEnum = toEnumVarName(tagName, "str"); - enumToTag.put(tagEnum, tagName); - tagEnumToApiClassname.put(tagEnum, apiClassname); + tagToApiClassname.put(tagName, apiClassname); } } @@ -574,9 +570,7 @@ protected void generateEndpoints(OperationsMap objs) { String tagModuleName = toApiFilename(tagName); String apiClassname = toApiName(tagName); tagModuleNameToApiClassname.put(tagModuleName, apiClassname); - String tagEnum = toEnumVarName(tagName, "str"); - enumToTag.put(tagEnum, tagName); - tagEnumToApiClassname.put(tagEnum, apiClassname); + tagToApiClassname.put(tagName, apiClassname); } } String path = co.path; @@ -673,7 +667,7 @@ protected void generateEndpoints(OperationsMap objs) { tagToApiMap.put("packageName", packageName); tagToApiMap.put("apiClassname", "Api"); tagToApiMap.put("tagModuleNameToApiClassname", tagModuleNameToApiClassname); - tagToApiMap.put("tagEnumToApiClassname", tagEnumToApiClassname); + tagToApiMap.put("tagToApiClassname", tagToApiClassname); outputFilename = packageFilename(Arrays.asList(apiPackage, "tag_to_api.py")); apisFiles.add(Arrays.asList(tagToApiMap, "apis_tag_to_api.handlebars", outputFilename)); // apis.path_to_api.py @@ -687,7 +681,6 @@ protected void generateEndpoints(OperationsMap objs) { // apis.paths.__init__.py Map initApiTagsMap = new HashMap<>(); initApiTagsMap.put("packageName", packageName); - initApiTagsMap.put("enumToTag", enumToTag); outputFilename = packageFilename(Arrays.asList(apiPackage, "tags", "__init__.py")); apisFiles.add(Arrays.asList(initApiTagsMap, "__init__apis_tags.handlebars", outputFilename)); diff --git a/modules/openapi-json-schema-generator/src/main/resources/python/__init__apis_tags.handlebars b/modules/openapi-json-schema-generator/src/main/resources/python/__init__apis_tags.handlebars index 7a6fa76d6b4..e2f31f6bbe4 100644 --- a/modules/openapi-json-schema-generator/src/main/resources/python/__init__apis_tags.handlebars +++ b/modules/openapi-json-schema-generator/src/main/resources/python/__init__apis_tags.handlebars @@ -1,11 +1,3 @@ # do not import all endpoints into this module because that uses a lot of memory and stack frames # if you need the ability to import all endpoints from this module, import them with -# from {{packageName}}.apis.tag_to_api import tag_to_api - -import enum - - -class TagValues(str, enum.Enum): -{{#each enumToTag}} - {{@key}} = "{{this}}" -{{/each}} \ No newline at end of file +# from {{packageName}}.apis.tag_to_api import tag_to_api \ No newline at end of file diff --git a/modules/openapi-json-schema-generator/src/main/resources/python/apis_tag_to_api.handlebars b/modules/openapi-json-schema-generator/src/main/resources/python/apis_tag_to_api.handlebars index dacbc478aab..a9ad8c09975 100644 --- a/modules/openapi-json-schema-generator/src/main/resources/python/apis_tag_to_api.handlebars +++ b/modules/openapi-json-schema-generator/src/main/resources/python/apis_tag_to_api.handlebars @@ -1,6 +1,5 @@ import typing_extensions -from {{packageName}}.apis.tags import TagValues {{#each tagModuleNameToApiClassname}} from {{packageName}}.apis.tags.{{@key}} import {{this}} {{/each}} @@ -8,16 +7,16 @@ from {{packageName}}.apis.tags.{{@key}} import {{this}} TagToApi = typing_extensions.TypedDict( 'TagToApi', { -{{#each tagEnumToApiClassname}} - TagValues.{{@key}}: {{this}}, +{{#each tagToApiClassname}} + "{{{@key}}}": {{this}}, {{/each}} } ) tag_to_api = TagToApi( { -{{#each tagEnumToApiClassname}} - TagValues.{{@key}}: {{this}}, +{{#each tagToApiClassname}} + "{{{@key}}}": {{this}}, {{/each}} } ) From 2d4882fb50c26e58a3fc226531a589d2c5694301 Mon Sep 17 00:00:00 2001 From: Justin Black Date: Fri, 18 Nov 2022 21:13:56 -0800 Subject: [PATCH 4/5] Sample updated --- .../python/petstore_api/apis/tag_to_api.py | 29 +++++++++---------- .../python/petstore_api/apis/tags/__init__.py | 14 +-------- 2 files changed, 15 insertions(+), 28 deletions(-) diff --git a/samples/openapi3/client/petstore/python/petstore_api/apis/tag_to_api.py b/samples/openapi3/client/petstore/python/petstore_api/apis/tag_to_api.py index ad42a5d1dec..32693037452 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/apis/tag_to_api.py +++ b/samples/openapi3/client/petstore/python/petstore_api/apis/tag_to_api.py @@ -1,6 +1,5 @@ import typing_extensions -from petstore_api.apis.tags import TagValues from petstore_api.apis.tags.pet_api import PetApi from petstore_api.apis.tags.store_api import StoreApi from petstore_api.apis.tags.user_api import UserApi @@ -12,24 +11,24 @@ TagToApi = typing_extensions.TypedDict( 'TagToApi', { - TagValues.PET: PetApi, - TagValues.STORE: StoreApi, - TagValues.USER: UserApi, - TagValues.ANOTHERFAKE: AnotherFakeApi, - TagValues.DEFAULT: DefaultApi, - TagValues.FAKE: FakeApi, - TagValues.FAKE_CLASSNAME_TAGS_123: FakeClassnameTags123Api, + "pet": PetApi, + "store": StoreApi, + "user": UserApi, + "$another-fake?": AnotherFakeApi, + "default": DefaultApi, + "fake": FakeApi, + "fake_classname_tags 123#$%^": FakeClassnameTags123Api, } ) tag_to_api = TagToApi( { - TagValues.PET: PetApi, - TagValues.STORE: StoreApi, - TagValues.USER: UserApi, - TagValues.ANOTHERFAKE: AnotherFakeApi, - TagValues.DEFAULT: DefaultApi, - TagValues.FAKE: FakeApi, - TagValues.FAKE_CLASSNAME_TAGS_123: FakeClassnameTags123Api, + "pet": PetApi, + "store": StoreApi, + "user": UserApi, + "$another-fake?": AnotherFakeApi, + "default": DefaultApi, + "fake": FakeApi, + "fake_classname_tags 123#$%^": FakeClassnameTags123Api, } ) diff --git a/samples/openapi3/client/petstore/python/petstore_api/apis/tags/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/apis/tags/__init__.py index a8ec6fddd9a..b1fef59bef3 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/apis/tags/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/apis/tags/__init__.py @@ -1,15 +1,3 @@ # do not import all endpoints into this module because that uses a lot of memory and stack frames # if you need the ability to import all endpoints from this module, import them with -# from petstore_api.apis.tag_to_api import tag_to_api - -import enum - - -class TagValues(str, enum.Enum): - PET = "pet" - STORE = "store" - USER = "user" - ANOTHERFAKE = "$another-fake?" - DEFAULT = "default" - FAKE = "fake" - FAKE_CLASSNAME_TAGS_123 = "fake_classname_tags 123#$%^" +# from petstore_api.apis.tag_to_api import tag_to_api \ No newline at end of file From 5c279d003e1916bdfaf0b878749584063f297592 Mon Sep 17 00:00:00 2001 From: Justin Black Date: Fri, 18 Nov 2022 21:33:31 -0800 Subject: [PATCH 5/5] Samples regenerated --- .../python/unit_test_api/apis/path_to_api.py | 697 +++++++++--------- .../python/unit_test_api/apis/tag_to_api.py | 113 ++- .../unit_test_api/apis/tags/__init__.py | 35 +- .../python/unit_test_api/paths/__init__.py | 181 +---- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../__init__.py | 4 +- .../post/__init__.py | 2 +- .../post/__init__.pyi | 2 +- .../python/this_package/apis/path_to_api.py | 5 +- .../python/this_package/apis/tag_to_api.py | 5 +- .../python/this_package/apis/tags/__init__.py | 8 +- .../python/this_package/paths/__init__.py | 8 +- .../this_package/paths/operators/__init__.py | 4 +- .../paths/operators/post/__init__.py | 2 +- .../paths/operators/post/__init__.pyi | 2 +- .../python/.openapi-generator/VERSION | 2 +- 534 files changed, 938 insertions(+), 1516 deletions(-) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/apis/path_to_api.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/apis/path_to_api.py index 8a75c50c3ee..95fb2edbc7c 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/apis/path_to_api.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/apis/path_to_api.py @@ -1,6 +1,5 @@ import typing_extensions -from unit_test_api.paths import PathValues from unit_test_api.apis.paths.request_body_post_additionalproperties_allows_a_schema_which_should_validate_request_body import RequestBodyPostAdditionalpropertiesAllowsASchemaWhichShouldValidateRequestBody from unit_test_api.apis.paths.response_body_post_additionalproperties_allows_a_schema_which_should_validate_response_body_for_content_types import ResponseBodyPostAdditionalpropertiesAllowsASchemaWhichShouldValidateResponseBodyForContentTypes from unit_test_api.apis.paths.request_body_post_additionalproperties_can_exist_by_itself_request_body import RequestBodyPostAdditionalpropertiesCanExistByItselfRequestBody @@ -179,358 +178,358 @@ PathToApi = typing_extensions.TypedDict( 'PathToApi', { - PathValues.REQUEST_BODY_POST_ADDITIONALPROPERTIES_ALLOWS_ASCHEMA_WHICH_SHOULD_VALIDATE_REQUEST_BODY: RequestBodyPostAdditionalpropertiesAllowsASchemaWhichShouldValidateRequestBody, - PathValues.RESPONSE_BODY_POST_ADDITIONALPROPERTIES_ALLOWS_ASCHEMA_WHICH_SHOULD_VALIDATE_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostAdditionalpropertiesAllowsASchemaWhichShouldValidateResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_ADDITIONALPROPERTIES_CAN_EXIST_BY_ITSELF_REQUEST_BODY: RequestBodyPostAdditionalpropertiesCanExistByItselfRequestBody, - PathValues.RESPONSE_BODY_POST_ADDITIONALPROPERTIES_CAN_EXIST_BY_ITSELF_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostAdditionalpropertiesCanExistByItselfResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_ADDITIONALPROPERTIES_ARE_ALLOWED_BY_DEFAULT_REQUEST_BODY: RequestBodyPostAdditionalpropertiesAreAllowedByDefaultRequestBody, - PathValues.RESPONSE_BODY_POST_ADDITIONALPROPERTIES_ARE_ALLOWED_BY_DEFAULT_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostAdditionalpropertiesAreAllowedByDefaultResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_ADDITIONALPROPERTIES_SHOULD_NOT_LOOK_IN_APPLICATORS_REQUEST_BODY: RequestBodyPostAdditionalpropertiesShouldNotLookInApplicatorsRequestBody, - PathValues.RESPONSE_BODY_POST_ADDITIONALPROPERTIES_SHOULD_NOT_LOOK_IN_APPLICATORS_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostAdditionalpropertiesShouldNotLookInApplicatorsResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_ALLOF_REQUEST_BODY: RequestBodyPostAllofRequestBody, - PathValues.RESPONSE_BODY_POST_ALLOF_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostAllofResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_ALLOF_WITH_BASE_SCHEMA_REQUEST_BODY: RequestBodyPostAllofWithBaseSchemaRequestBody, - PathValues.RESPONSE_BODY_POST_ALLOF_WITH_BASE_SCHEMA_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostAllofWithBaseSchemaResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_ALLOF_SIMPLE_TYPES_REQUEST_BODY: RequestBodyPostAllofSimpleTypesRequestBody, - PathValues.RESPONSE_BODY_POST_ALLOF_SIMPLE_TYPES_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostAllofSimpleTypesResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_ALLOF_WITH_ONE_EMPTY_SCHEMA_REQUEST_BODY: RequestBodyPostAllofWithOneEmptySchemaRequestBody, - PathValues.RESPONSE_BODY_POST_ALLOF_WITH_ONE_EMPTY_SCHEMA_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostAllofWithOneEmptySchemaResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_ALLOF_WITH_TWO_EMPTY_SCHEMAS_REQUEST_BODY: RequestBodyPostAllofWithTwoEmptySchemasRequestBody, - PathValues.RESPONSE_BODY_POST_ALLOF_WITH_TWO_EMPTY_SCHEMAS_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostAllofWithTwoEmptySchemasResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_ALLOF_WITH_THE_FIRST_EMPTY_SCHEMA_REQUEST_BODY: RequestBodyPostAllofWithTheFirstEmptySchemaRequestBody, - PathValues.RESPONSE_BODY_POST_ALLOF_WITH_THE_FIRST_EMPTY_SCHEMA_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostAllofWithTheFirstEmptySchemaResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_ALLOF_WITH_THE_LAST_EMPTY_SCHEMA_REQUEST_BODY: RequestBodyPostAllofWithTheLastEmptySchemaRequestBody, - PathValues.RESPONSE_BODY_POST_ALLOF_WITH_THE_LAST_EMPTY_SCHEMA_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostAllofWithTheLastEmptySchemaResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_NESTED_ALLOF_TO_CHECK_VALIDATION_SEMANTICS_REQUEST_BODY: RequestBodyPostNestedAllofToCheckValidationSemanticsRequestBody, - PathValues.RESPONSE_BODY_POST_NESTED_ALLOF_TO_CHECK_VALIDATION_SEMANTICS_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostNestedAllofToCheckValidationSemanticsResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_ALLOF_COMBINED_WITH_ANYOF_ONEOF_REQUEST_BODY: RequestBodyPostAllofCombinedWithAnyofOneofRequestBody, - PathValues.RESPONSE_BODY_POST_ALLOF_COMBINED_WITH_ANYOF_ONEOF_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostAllofCombinedWithAnyofOneofResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_ANYOF_REQUEST_BODY: RequestBodyPostAnyofRequestBody, - PathValues.RESPONSE_BODY_POST_ANYOF_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostAnyofResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_ANYOF_WITH_BASE_SCHEMA_REQUEST_BODY: RequestBodyPostAnyofWithBaseSchemaRequestBody, - PathValues.RESPONSE_BODY_POST_ANYOF_WITH_BASE_SCHEMA_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostAnyofWithBaseSchemaResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_ANYOF_COMPLEX_TYPES_REQUEST_BODY: RequestBodyPostAnyofComplexTypesRequestBody, - PathValues.RESPONSE_BODY_POST_ANYOF_COMPLEX_TYPES_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostAnyofComplexTypesResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_ANYOF_WITH_ONE_EMPTY_SCHEMA_REQUEST_BODY: RequestBodyPostAnyofWithOneEmptySchemaRequestBody, - PathValues.RESPONSE_BODY_POST_ANYOF_WITH_ONE_EMPTY_SCHEMA_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostAnyofWithOneEmptySchemaResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_NESTED_ANYOF_TO_CHECK_VALIDATION_SEMANTICS_REQUEST_BODY: RequestBodyPostNestedAnyofToCheckValidationSemanticsRequestBody, - PathValues.RESPONSE_BODY_POST_NESTED_ANYOF_TO_CHECK_VALIDATION_SEMANTICS_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostNestedAnyofToCheckValidationSemanticsResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_INVALID_STRING_VALUE_FOR_DEFAULT_REQUEST_BODY: RequestBodyPostInvalidStringValueForDefaultRequestBody, - PathValues.RESPONSE_BODY_POST_INVALID_STRING_VALUE_FOR_DEFAULT_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostInvalidStringValueForDefaultResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_THE_DEFAULT_KEYWORD_DOES_NOT_DO_ANYTHING_IF_THE_PROPERTY_IS_MISSING_REQUEST_BODY: RequestBodyPostTheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissingRequestBody, - PathValues.RESPONSE_BODY_POST_THE_DEFAULT_KEYWORD_DOES_NOT_DO_ANYTHING_IF_THE_PROPERTY_IS_MISSING_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostTheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissingResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_SIMPLE_ENUM_VALIDATION_REQUEST_BODY: RequestBodyPostSimpleEnumValidationRequestBody, - PathValues.RESPONSE_BODY_POST_SIMPLE_ENUM_VALIDATION_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostSimpleEnumValidationResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_ENUMS_IN_PROPERTIES_REQUEST_BODY: RequestBodyPostEnumsInPropertiesRequestBody, - PathValues.RESPONSE_BODY_POST_ENUMS_IN_PROPERTIES_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostEnumsInPropertiesResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_ENUM_WITH_ESCAPED_CHARACTERS_REQUEST_BODY: RequestBodyPostEnumWithEscapedCharactersRequestBody, - PathValues.RESPONSE_BODY_POST_ENUM_WITH_ESCAPED_CHARACTERS_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostEnumWithEscapedCharactersResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_ENUM_WITH_FALSE_DOES_NOT_MATCH0REQUEST_BODY: RequestBodyPostEnumWithFalseDoesNotMatch0RequestBody, - PathValues.RESPONSE_BODY_POST_ENUM_WITH_FALSE_DOES_NOT_MATCH0RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostEnumWithFalseDoesNotMatch0ResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_ENUM_WITH_TRUE_DOES_NOT_MATCH1REQUEST_BODY: RequestBodyPostEnumWithTrueDoesNotMatch1RequestBody, - PathValues.RESPONSE_BODY_POST_ENUM_WITH_TRUE_DOES_NOT_MATCH1RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostEnumWithTrueDoesNotMatch1ResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_ENUM_WITH0DOES_NOT_MATCH_FALSE_REQUEST_BODY: RequestBodyPostEnumWith0DoesNotMatchFalseRequestBody, - PathValues.RESPONSE_BODY_POST_ENUM_WITH0DOES_NOT_MATCH_FALSE_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostEnumWith0DoesNotMatchFalseResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_ENUM_WITH1DOES_NOT_MATCH_TRUE_REQUEST_BODY: RequestBodyPostEnumWith1DoesNotMatchTrueRequestBody, - PathValues.RESPONSE_BODY_POST_ENUM_WITH1DOES_NOT_MATCH_TRUE_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostEnumWith1DoesNotMatchTrueResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_NUL_CHARACTERS_IN_STRINGS_REQUEST_BODY: RequestBodyPostNulCharactersInStringsRequestBody, - PathValues.RESPONSE_BODY_POST_NUL_CHARACTERS_IN_STRINGS_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostNulCharactersInStringsResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_EMAIL_FORMAT_REQUEST_BODY: RequestBodyPostEmailFormatRequestBody, - PathValues.RESPONSE_BODY_POST_EMAIL_FORMAT_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostEmailFormatResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_IPV4FORMAT_REQUEST_BODY: RequestBodyPostIpv4FormatRequestBody, - PathValues.RESPONSE_BODY_POST_IPV4FORMAT_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostIpv4FormatResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_IPV6FORMAT_REQUEST_BODY: RequestBodyPostIpv6FormatRequestBody, - PathValues.RESPONSE_BODY_POST_IPV6FORMAT_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostIpv6FormatResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_HOSTNAME_FORMAT_REQUEST_BODY: RequestBodyPostHostnameFormatRequestBody, - PathValues.RESPONSE_BODY_POST_HOSTNAME_FORMAT_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostHostnameFormatResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_DATE_TIME_FORMAT_REQUEST_BODY: RequestBodyPostDateTimeFormatRequestBody, - PathValues.RESPONSE_BODY_POST_DATE_TIME_FORMAT_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostDateTimeFormatResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_JSON_POINTER_FORMAT_REQUEST_BODY: RequestBodyPostJsonPointerFormatRequestBody, - PathValues.RESPONSE_BODY_POST_JSON_POINTER_FORMAT_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostJsonPointerFormatResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_URI_FORMAT_REQUEST_BODY: RequestBodyPostUriFormatRequestBody, - PathValues.RESPONSE_BODY_POST_URI_FORMAT_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostUriFormatResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_URI_REFERENCE_FORMAT_REQUEST_BODY: RequestBodyPostUriReferenceFormatRequestBody, - PathValues.RESPONSE_BODY_POST_URI_REFERENCE_FORMAT_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostUriReferenceFormatResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_URI_TEMPLATE_FORMAT_REQUEST_BODY: RequestBodyPostUriTemplateFormatRequestBody, - PathValues.RESPONSE_BODY_POST_URI_TEMPLATE_FORMAT_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostUriTemplateFormatResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_NESTED_ITEMS_REQUEST_BODY: RequestBodyPostNestedItemsRequestBody, - PathValues.RESPONSE_BODY_POST_NESTED_ITEMS_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostNestedItemsResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_MAXIMUM_VALIDATION_REQUEST_BODY: RequestBodyPostMaximumValidationRequestBody, - PathValues.RESPONSE_BODY_POST_MAXIMUM_VALIDATION_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostMaximumValidationResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_MAXIMUM_VALIDATION_WITH_UNSIGNED_INTEGER_REQUEST_BODY: RequestBodyPostMaximumValidationWithUnsignedIntegerRequestBody, - PathValues.RESPONSE_BODY_POST_MAXIMUM_VALIDATION_WITH_UNSIGNED_INTEGER_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostMaximumValidationWithUnsignedIntegerResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_MAXITEMS_VALIDATION_REQUEST_BODY: RequestBodyPostMaxitemsValidationRequestBody, - PathValues.RESPONSE_BODY_POST_MAXITEMS_VALIDATION_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostMaxitemsValidationResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_MAXLENGTH_VALIDATION_REQUEST_BODY: RequestBodyPostMaxlengthValidationRequestBody, - PathValues.RESPONSE_BODY_POST_MAXLENGTH_VALIDATION_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostMaxlengthValidationResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_MAXPROPERTIES_VALIDATION_REQUEST_BODY: RequestBodyPostMaxpropertiesValidationRequestBody, - PathValues.RESPONSE_BODY_POST_MAXPROPERTIES_VALIDATION_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostMaxpropertiesValidationResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_MAXPROPERTIES0MEANS_THE_OBJECT_IS_EMPTY_REQUEST_BODY: RequestBodyPostMaxproperties0MeansTheObjectIsEmptyRequestBody, - PathValues.RESPONSE_BODY_POST_MAXPROPERTIES0MEANS_THE_OBJECT_IS_EMPTY_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostMaxproperties0MeansTheObjectIsEmptyResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_MINIMUM_VALIDATION_REQUEST_BODY: RequestBodyPostMinimumValidationRequestBody, - PathValues.RESPONSE_BODY_POST_MINIMUM_VALIDATION_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostMinimumValidationResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_MINIMUM_VALIDATION_WITH_SIGNED_INTEGER_REQUEST_BODY: RequestBodyPostMinimumValidationWithSignedIntegerRequestBody, - PathValues.RESPONSE_BODY_POST_MINIMUM_VALIDATION_WITH_SIGNED_INTEGER_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostMinimumValidationWithSignedIntegerResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_MINITEMS_VALIDATION_REQUEST_BODY: RequestBodyPostMinitemsValidationRequestBody, - PathValues.RESPONSE_BODY_POST_MINITEMS_VALIDATION_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostMinitemsValidationResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_MINLENGTH_VALIDATION_REQUEST_BODY: RequestBodyPostMinlengthValidationRequestBody, - PathValues.RESPONSE_BODY_POST_MINLENGTH_VALIDATION_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostMinlengthValidationResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_MINPROPERTIES_VALIDATION_REQUEST_BODY: RequestBodyPostMinpropertiesValidationRequestBody, - PathValues.RESPONSE_BODY_POST_MINPROPERTIES_VALIDATION_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostMinpropertiesValidationResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_BY_INT_REQUEST_BODY: RequestBodyPostByIntRequestBody, - PathValues.RESPONSE_BODY_POST_BY_INT_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostByIntResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_BY_NUMBER_REQUEST_BODY: RequestBodyPostByNumberRequestBody, - PathValues.RESPONSE_BODY_POST_BY_NUMBER_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostByNumberResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_BY_SMALL_NUMBER_REQUEST_BODY: RequestBodyPostBySmallNumberRequestBody, - PathValues.RESPONSE_BODY_POST_BY_SMALL_NUMBER_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostBySmallNumberResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_INVALID_INSTANCE_SHOULD_NOT_RAISE_ERROR_WHEN_FLOAT_DIVISION_INF_REQUEST_BODY: RequestBodyPostInvalidInstanceShouldNotRaiseErrorWhenFloatDivisionInfRequestBody, - PathValues.RESPONSE_BODY_POST_INVALID_INSTANCE_SHOULD_NOT_RAISE_ERROR_WHEN_FLOAT_DIVISION_INF_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostInvalidInstanceShouldNotRaiseErrorWhenFloatDivisionInfResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_NOT_REQUEST_BODY: RequestBodyPostNotRequestBody, - PathValues.RESPONSE_BODY_POST_NOT_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostNotResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_NOT_MORE_COMPLEX_SCHEMA_REQUEST_BODY: RequestBodyPostNotMoreComplexSchemaRequestBody, - PathValues.RESPONSE_BODY_POST_NOT_MORE_COMPLEX_SCHEMA_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostNotMoreComplexSchemaResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_FORBIDDEN_PROPERTY_REQUEST_BODY: RequestBodyPostForbiddenPropertyRequestBody, - PathValues.RESPONSE_BODY_POST_FORBIDDEN_PROPERTY_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostForbiddenPropertyResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_ONEOF_REQUEST_BODY: RequestBodyPostOneofRequestBody, - PathValues.RESPONSE_BODY_POST_ONEOF_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostOneofResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_ONEOF_WITH_BASE_SCHEMA_REQUEST_BODY: RequestBodyPostOneofWithBaseSchemaRequestBody, - PathValues.RESPONSE_BODY_POST_ONEOF_WITH_BASE_SCHEMA_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostOneofWithBaseSchemaResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_ONEOF_COMPLEX_TYPES_REQUEST_BODY: RequestBodyPostOneofComplexTypesRequestBody, - PathValues.RESPONSE_BODY_POST_ONEOF_COMPLEX_TYPES_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostOneofComplexTypesResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_ONEOF_WITH_EMPTY_SCHEMA_REQUEST_BODY: RequestBodyPostOneofWithEmptySchemaRequestBody, - PathValues.RESPONSE_BODY_POST_ONEOF_WITH_EMPTY_SCHEMA_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostOneofWithEmptySchemaResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_ONEOF_WITH_REQUIRED_REQUEST_BODY: RequestBodyPostOneofWithRequiredRequestBody, - PathValues.RESPONSE_BODY_POST_ONEOF_WITH_REQUIRED_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostOneofWithRequiredResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_NESTED_ONEOF_TO_CHECK_VALIDATION_SEMANTICS_REQUEST_BODY: RequestBodyPostNestedOneofToCheckValidationSemanticsRequestBody, - PathValues.RESPONSE_BODY_POST_NESTED_ONEOF_TO_CHECK_VALIDATION_SEMANTICS_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostNestedOneofToCheckValidationSemanticsResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_PATTERN_VALIDATION_REQUEST_BODY: RequestBodyPostPatternValidationRequestBody, - PathValues.RESPONSE_BODY_POST_PATTERN_VALIDATION_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostPatternValidationResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_PATTERN_IS_NOT_ANCHORED_REQUEST_BODY: RequestBodyPostPatternIsNotAnchoredRequestBody, - PathValues.RESPONSE_BODY_POST_PATTERN_IS_NOT_ANCHORED_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostPatternIsNotAnchoredResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_OBJECT_PROPERTIES_VALIDATION_REQUEST_BODY: RequestBodyPostObjectPropertiesValidationRequestBody, - PathValues.RESPONSE_BODY_POST_OBJECT_PROPERTIES_VALIDATION_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostObjectPropertiesValidationResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_PROPERTIES_WITH_ESCAPED_CHARACTERS_REQUEST_BODY: RequestBodyPostPropertiesWithEscapedCharactersRequestBody, - PathValues.RESPONSE_BODY_POST_PROPERTIES_WITH_ESCAPED_CHARACTERS_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostPropertiesWithEscapedCharactersResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_PROPERTY_NAMED_REF_THAT_IS_NOT_AREFERENCE_REQUEST_BODY: RequestBodyPostPropertyNamedRefThatIsNotAReferenceRequestBody, - PathValues.RESPONSE_BODY_POST_PROPERTY_NAMED_REF_THAT_IS_NOT_AREFERENCE_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostPropertyNamedRefThatIsNotAReferenceResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_REF_IN_ADDITIONALPROPERTIES_REQUEST_BODY: RequestBodyPostRefInAdditionalpropertiesRequestBody, - PathValues.RESPONSE_BODY_POST_REF_IN_ADDITIONALPROPERTIES_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostRefInAdditionalpropertiesResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_REF_IN_ITEMS_REQUEST_BODY: RequestBodyPostRefInItemsRequestBody, - PathValues.RESPONSE_BODY_POST_REF_IN_ITEMS_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostRefInItemsResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_REF_IN_PROPERTY_REQUEST_BODY: RequestBodyPostRefInPropertyRequestBody, - PathValues.RESPONSE_BODY_POST_REF_IN_PROPERTY_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostRefInPropertyResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_REF_IN_ALLOF_REQUEST_BODY: RequestBodyPostRefInAllofRequestBody, - PathValues.RESPONSE_BODY_POST_REF_IN_ALLOF_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostRefInAllofResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_REF_IN_ONEOF_REQUEST_BODY: RequestBodyPostRefInOneofRequestBody, - PathValues.RESPONSE_BODY_POST_REF_IN_ONEOF_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostRefInOneofResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_REF_IN_ANYOF_REQUEST_BODY: RequestBodyPostRefInAnyofRequestBody, - PathValues.RESPONSE_BODY_POST_REF_IN_ANYOF_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostRefInAnyofResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_REF_IN_NOT_REQUEST_BODY: RequestBodyPostRefInNotRequestBody, - PathValues.RESPONSE_BODY_POST_REF_IN_NOT_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostRefInNotResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_REQUIRED_VALIDATION_REQUEST_BODY: RequestBodyPostRequiredValidationRequestBody, - PathValues.RESPONSE_BODY_POST_REQUIRED_VALIDATION_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostRequiredValidationResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_REQUIRED_DEFAULT_VALIDATION_REQUEST_BODY: RequestBodyPostRequiredDefaultValidationRequestBody, - PathValues.RESPONSE_BODY_POST_REQUIRED_DEFAULT_VALIDATION_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostRequiredDefaultValidationResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_REQUIRED_WITH_EMPTY_ARRAY_REQUEST_BODY: RequestBodyPostRequiredWithEmptyArrayRequestBody, - PathValues.RESPONSE_BODY_POST_REQUIRED_WITH_EMPTY_ARRAY_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostRequiredWithEmptyArrayResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_REQUIRED_WITH_ESCAPED_CHARACTERS_REQUEST_BODY: RequestBodyPostRequiredWithEscapedCharactersRequestBody, - PathValues.RESPONSE_BODY_POST_REQUIRED_WITH_ESCAPED_CHARACTERS_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostRequiredWithEscapedCharactersResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_INTEGER_TYPE_MATCHES_INTEGERS_REQUEST_BODY: RequestBodyPostIntegerTypeMatchesIntegersRequestBody, - PathValues.RESPONSE_BODY_POST_INTEGER_TYPE_MATCHES_INTEGERS_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostIntegerTypeMatchesIntegersResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_NUMBER_TYPE_MATCHES_NUMBERS_REQUEST_BODY: RequestBodyPostNumberTypeMatchesNumbersRequestBody, - PathValues.RESPONSE_BODY_POST_NUMBER_TYPE_MATCHES_NUMBERS_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostNumberTypeMatchesNumbersResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_STRING_TYPE_MATCHES_STRINGS_REQUEST_BODY: RequestBodyPostStringTypeMatchesStringsRequestBody, - PathValues.RESPONSE_BODY_POST_STRING_TYPE_MATCHES_STRINGS_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostStringTypeMatchesStringsResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_OBJECT_TYPE_MATCHES_OBJECTS_REQUEST_BODY: RequestBodyPostObjectTypeMatchesObjectsRequestBody, - PathValues.RESPONSE_BODY_POST_OBJECT_TYPE_MATCHES_OBJECTS_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostObjectTypeMatchesObjectsResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_BOOLEAN_TYPE_MATCHES_BOOLEANS_REQUEST_BODY: RequestBodyPostBooleanTypeMatchesBooleansRequestBody, - PathValues.RESPONSE_BODY_POST_BOOLEAN_TYPE_MATCHES_BOOLEANS_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostBooleanTypeMatchesBooleansResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_NULL_TYPE_MATCHES_ONLY_THE_NULL_OBJECT_REQUEST_BODY: RequestBodyPostNullTypeMatchesOnlyTheNullObjectRequestBody, - PathValues.RESPONSE_BODY_POST_NULL_TYPE_MATCHES_ONLY_THE_NULL_OBJECT_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostNullTypeMatchesOnlyTheNullObjectResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_ARRAY_TYPE_MATCHES_ARRAYS_REQUEST_BODY: RequestBodyPostArrayTypeMatchesArraysRequestBody, - PathValues.RESPONSE_BODY_POST_ARRAY_TYPE_MATCHES_ARRAYS_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostArrayTypeMatchesArraysResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_UNIQUEITEMS_VALIDATION_REQUEST_BODY: RequestBodyPostUniqueitemsValidationRequestBody, - PathValues.RESPONSE_BODY_POST_UNIQUEITEMS_VALIDATION_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostUniqueitemsValidationResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_UNIQUEITEMS_FALSE_VALIDATION_REQUEST_BODY: RequestBodyPostUniqueitemsFalseValidationRequestBody, - PathValues.RESPONSE_BODY_POST_UNIQUEITEMS_FALSE_VALIDATION_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostUniqueitemsFalseValidationResponseBodyForContentTypes, + "/requestBody/postAdditionalpropertiesAllowsASchemaWhichShouldValidateRequestBody": RequestBodyPostAdditionalpropertiesAllowsASchemaWhichShouldValidateRequestBody, + "/responseBody/postAdditionalpropertiesAllowsASchemaWhichShouldValidateResponseBodyForContentTypes": ResponseBodyPostAdditionalpropertiesAllowsASchemaWhichShouldValidateResponseBodyForContentTypes, + "/requestBody/postAdditionalpropertiesCanExistByItselfRequestBody": RequestBodyPostAdditionalpropertiesCanExistByItselfRequestBody, + "/responseBody/postAdditionalpropertiesCanExistByItselfResponseBodyForContentTypes": ResponseBodyPostAdditionalpropertiesCanExistByItselfResponseBodyForContentTypes, + "/requestBody/postAdditionalpropertiesAreAllowedByDefaultRequestBody": RequestBodyPostAdditionalpropertiesAreAllowedByDefaultRequestBody, + "/responseBody/postAdditionalpropertiesAreAllowedByDefaultResponseBodyForContentTypes": ResponseBodyPostAdditionalpropertiesAreAllowedByDefaultResponseBodyForContentTypes, + "/requestBody/postAdditionalpropertiesShouldNotLookInApplicatorsRequestBody": RequestBodyPostAdditionalpropertiesShouldNotLookInApplicatorsRequestBody, + "/responseBody/postAdditionalpropertiesShouldNotLookInApplicatorsResponseBodyForContentTypes": ResponseBodyPostAdditionalpropertiesShouldNotLookInApplicatorsResponseBodyForContentTypes, + "/requestBody/postAllofRequestBody": RequestBodyPostAllofRequestBody, + "/responseBody/postAllofResponseBodyForContentTypes": ResponseBodyPostAllofResponseBodyForContentTypes, + "/requestBody/postAllofWithBaseSchemaRequestBody": RequestBodyPostAllofWithBaseSchemaRequestBody, + "/responseBody/postAllofWithBaseSchemaResponseBodyForContentTypes": ResponseBodyPostAllofWithBaseSchemaResponseBodyForContentTypes, + "/requestBody/postAllofSimpleTypesRequestBody": RequestBodyPostAllofSimpleTypesRequestBody, + "/responseBody/postAllofSimpleTypesResponseBodyForContentTypes": ResponseBodyPostAllofSimpleTypesResponseBodyForContentTypes, + "/requestBody/postAllofWithOneEmptySchemaRequestBody": RequestBodyPostAllofWithOneEmptySchemaRequestBody, + "/responseBody/postAllofWithOneEmptySchemaResponseBodyForContentTypes": ResponseBodyPostAllofWithOneEmptySchemaResponseBodyForContentTypes, + "/requestBody/postAllofWithTwoEmptySchemasRequestBody": RequestBodyPostAllofWithTwoEmptySchemasRequestBody, + "/responseBody/postAllofWithTwoEmptySchemasResponseBodyForContentTypes": ResponseBodyPostAllofWithTwoEmptySchemasResponseBodyForContentTypes, + "/requestBody/postAllofWithTheFirstEmptySchemaRequestBody": RequestBodyPostAllofWithTheFirstEmptySchemaRequestBody, + "/responseBody/postAllofWithTheFirstEmptySchemaResponseBodyForContentTypes": ResponseBodyPostAllofWithTheFirstEmptySchemaResponseBodyForContentTypes, + "/requestBody/postAllofWithTheLastEmptySchemaRequestBody": RequestBodyPostAllofWithTheLastEmptySchemaRequestBody, + "/responseBody/postAllofWithTheLastEmptySchemaResponseBodyForContentTypes": ResponseBodyPostAllofWithTheLastEmptySchemaResponseBodyForContentTypes, + "/requestBody/postNestedAllofToCheckValidationSemanticsRequestBody": RequestBodyPostNestedAllofToCheckValidationSemanticsRequestBody, + "/responseBody/postNestedAllofToCheckValidationSemanticsResponseBodyForContentTypes": ResponseBodyPostNestedAllofToCheckValidationSemanticsResponseBodyForContentTypes, + "/requestBody/postAllofCombinedWithAnyofOneofRequestBody": RequestBodyPostAllofCombinedWithAnyofOneofRequestBody, + "/responseBody/postAllofCombinedWithAnyofOneofResponseBodyForContentTypes": ResponseBodyPostAllofCombinedWithAnyofOneofResponseBodyForContentTypes, + "/requestBody/postAnyofRequestBody": RequestBodyPostAnyofRequestBody, + "/responseBody/postAnyofResponseBodyForContentTypes": ResponseBodyPostAnyofResponseBodyForContentTypes, + "/requestBody/postAnyofWithBaseSchemaRequestBody": RequestBodyPostAnyofWithBaseSchemaRequestBody, + "/responseBody/postAnyofWithBaseSchemaResponseBodyForContentTypes": ResponseBodyPostAnyofWithBaseSchemaResponseBodyForContentTypes, + "/requestBody/postAnyofComplexTypesRequestBody": RequestBodyPostAnyofComplexTypesRequestBody, + "/responseBody/postAnyofComplexTypesResponseBodyForContentTypes": ResponseBodyPostAnyofComplexTypesResponseBodyForContentTypes, + "/requestBody/postAnyofWithOneEmptySchemaRequestBody": RequestBodyPostAnyofWithOneEmptySchemaRequestBody, + "/responseBody/postAnyofWithOneEmptySchemaResponseBodyForContentTypes": ResponseBodyPostAnyofWithOneEmptySchemaResponseBodyForContentTypes, + "/requestBody/postNestedAnyofToCheckValidationSemanticsRequestBody": RequestBodyPostNestedAnyofToCheckValidationSemanticsRequestBody, + "/responseBody/postNestedAnyofToCheckValidationSemanticsResponseBodyForContentTypes": ResponseBodyPostNestedAnyofToCheckValidationSemanticsResponseBodyForContentTypes, + "/requestBody/postInvalidStringValueForDefaultRequestBody": RequestBodyPostInvalidStringValueForDefaultRequestBody, + "/responseBody/postInvalidStringValueForDefaultResponseBodyForContentTypes": ResponseBodyPostInvalidStringValueForDefaultResponseBodyForContentTypes, + "/requestBody/postTheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissingRequestBody": RequestBodyPostTheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissingRequestBody, + "/responseBody/postTheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissingResponseBodyForContentTypes": ResponseBodyPostTheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissingResponseBodyForContentTypes, + "/requestBody/postSimpleEnumValidationRequestBody": RequestBodyPostSimpleEnumValidationRequestBody, + "/responseBody/postSimpleEnumValidationResponseBodyForContentTypes": ResponseBodyPostSimpleEnumValidationResponseBodyForContentTypes, + "/requestBody/postEnumsInPropertiesRequestBody": RequestBodyPostEnumsInPropertiesRequestBody, + "/responseBody/postEnumsInPropertiesResponseBodyForContentTypes": ResponseBodyPostEnumsInPropertiesResponseBodyForContentTypes, + "/requestBody/postEnumWithEscapedCharactersRequestBody": RequestBodyPostEnumWithEscapedCharactersRequestBody, + "/responseBody/postEnumWithEscapedCharactersResponseBodyForContentTypes": ResponseBodyPostEnumWithEscapedCharactersResponseBodyForContentTypes, + "/requestBody/postEnumWithFalseDoesNotMatch0RequestBody": RequestBodyPostEnumWithFalseDoesNotMatch0RequestBody, + "/responseBody/postEnumWithFalseDoesNotMatch0ResponseBodyForContentTypes": ResponseBodyPostEnumWithFalseDoesNotMatch0ResponseBodyForContentTypes, + "/requestBody/postEnumWithTrueDoesNotMatch1RequestBody": RequestBodyPostEnumWithTrueDoesNotMatch1RequestBody, + "/responseBody/postEnumWithTrueDoesNotMatch1ResponseBodyForContentTypes": ResponseBodyPostEnumWithTrueDoesNotMatch1ResponseBodyForContentTypes, + "/requestBody/postEnumWith0DoesNotMatchFalseRequestBody": RequestBodyPostEnumWith0DoesNotMatchFalseRequestBody, + "/responseBody/postEnumWith0DoesNotMatchFalseResponseBodyForContentTypes": ResponseBodyPostEnumWith0DoesNotMatchFalseResponseBodyForContentTypes, + "/requestBody/postEnumWith1DoesNotMatchTrueRequestBody": RequestBodyPostEnumWith1DoesNotMatchTrueRequestBody, + "/responseBody/postEnumWith1DoesNotMatchTrueResponseBodyForContentTypes": ResponseBodyPostEnumWith1DoesNotMatchTrueResponseBodyForContentTypes, + "/requestBody/postNulCharactersInStringsRequestBody": RequestBodyPostNulCharactersInStringsRequestBody, + "/responseBody/postNulCharactersInStringsResponseBodyForContentTypes": ResponseBodyPostNulCharactersInStringsResponseBodyForContentTypes, + "/requestBody/postEmailFormatRequestBody": RequestBodyPostEmailFormatRequestBody, + "/responseBody/postEmailFormatResponseBodyForContentTypes": ResponseBodyPostEmailFormatResponseBodyForContentTypes, + "/requestBody/postIpv4FormatRequestBody": RequestBodyPostIpv4FormatRequestBody, + "/responseBody/postIpv4FormatResponseBodyForContentTypes": ResponseBodyPostIpv4FormatResponseBodyForContentTypes, + "/requestBody/postIpv6FormatRequestBody": RequestBodyPostIpv6FormatRequestBody, + "/responseBody/postIpv6FormatResponseBodyForContentTypes": ResponseBodyPostIpv6FormatResponseBodyForContentTypes, + "/requestBody/postHostnameFormatRequestBody": RequestBodyPostHostnameFormatRequestBody, + "/responseBody/postHostnameFormatResponseBodyForContentTypes": ResponseBodyPostHostnameFormatResponseBodyForContentTypes, + "/requestBody/postDateTimeFormatRequestBody": RequestBodyPostDateTimeFormatRequestBody, + "/responseBody/postDateTimeFormatResponseBodyForContentTypes": ResponseBodyPostDateTimeFormatResponseBodyForContentTypes, + "/requestBody/postJsonPointerFormatRequestBody": RequestBodyPostJsonPointerFormatRequestBody, + "/responseBody/postJsonPointerFormatResponseBodyForContentTypes": ResponseBodyPostJsonPointerFormatResponseBodyForContentTypes, + "/requestBody/postUriFormatRequestBody": RequestBodyPostUriFormatRequestBody, + "/responseBody/postUriFormatResponseBodyForContentTypes": ResponseBodyPostUriFormatResponseBodyForContentTypes, + "/requestBody/postUriReferenceFormatRequestBody": RequestBodyPostUriReferenceFormatRequestBody, + "/responseBody/postUriReferenceFormatResponseBodyForContentTypes": ResponseBodyPostUriReferenceFormatResponseBodyForContentTypes, + "/requestBody/postUriTemplateFormatRequestBody": RequestBodyPostUriTemplateFormatRequestBody, + "/responseBody/postUriTemplateFormatResponseBodyForContentTypes": ResponseBodyPostUriTemplateFormatResponseBodyForContentTypes, + "/requestBody/postNestedItemsRequestBody": RequestBodyPostNestedItemsRequestBody, + "/responseBody/postNestedItemsResponseBodyForContentTypes": ResponseBodyPostNestedItemsResponseBodyForContentTypes, + "/requestBody/postMaximumValidationRequestBody": RequestBodyPostMaximumValidationRequestBody, + "/responseBody/postMaximumValidationResponseBodyForContentTypes": ResponseBodyPostMaximumValidationResponseBodyForContentTypes, + "/requestBody/postMaximumValidationWithUnsignedIntegerRequestBody": RequestBodyPostMaximumValidationWithUnsignedIntegerRequestBody, + "/responseBody/postMaximumValidationWithUnsignedIntegerResponseBodyForContentTypes": ResponseBodyPostMaximumValidationWithUnsignedIntegerResponseBodyForContentTypes, + "/requestBody/postMaxitemsValidationRequestBody": RequestBodyPostMaxitemsValidationRequestBody, + "/responseBody/postMaxitemsValidationResponseBodyForContentTypes": ResponseBodyPostMaxitemsValidationResponseBodyForContentTypes, + "/requestBody/postMaxlengthValidationRequestBody": RequestBodyPostMaxlengthValidationRequestBody, + "/responseBody/postMaxlengthValidationResponseBodyForContentTypes": ResponseBodyPostMaxlengthValidationResponseBodyForContentTypes, + "/requestBody/postMaxpropertiesValidationRequestBody": RequestBodyPostMaxpropertiesValidationRequestBody, + "/responseBody/postMaxpropertiesValidationResponseBodyForContentTypes": ResponseBodyPostMaxpropertiesValidationResponseBodyForContentTypes, + "/requestBody/postMaxproperties0MeansTheObjectIsEmptyRequestBody": RequestBodyPostMaxproperties0MeansTheObjectIsEmptyRequestBody, + "/responseBody/postMaxproperties0MeansTheObjectIsEmptyResponseBodyForContentTypes": ResponseBodyPostMaxproperties0MeansTheObjectIsEmptyResponseBodyForContentTypes, + "/requestBody/postMinimumValidationRequestBody": RequestBodyPostMinimumValidationRequestBody, + "/responseBody/postMinimumValidationResponseBodyForContentTypes": ResponseBodyPostMinimumValidationResponseBodyForContentTypes, + "/requestBody/postMinimumValidationWithSignedIntegerRequestBody": RequestBodyPostMinimumValidationWithSignedIntegerRequestBody, + "/responseBody/postMinimumValidationWithSignedIntegerResponseBodyForContentTypes": ResponseBodyPostMinimumValidationWithSignedIntegerResponseBodyForContentTypes, + "/requestBody/postMinitemsValidationRequestBody": RequestBodyPostMinitemsValidationRequestBody, + "/responseBody/postMinitemsValidationResponseBodyForContentTypes": ResponseBodyPostMinitemsValidationResponseBodyForContentTypes, + "/requestBody/postMinlengthValidationRequestBody": RequestBodyPostMinlengthValidationRequestBody, + "/responseBody/postMinlengthValidationResponseBodyForContentTypes": ResponseBodyPostMinlengthValidationResponseBodyForContentTypes, + "/requestBody/postMinpropertiesValidationRequestBody": RequestBodyPostMinpropertiesValidationRequestBody, + "/responseBody/postMinpropertiesValidationResponseBodyForContentTypes": ResponseBodyPostMinpropertiesValidationResponseBodyForContentTypes, + "/requestBody/postByIntRequestBody": RequestBodyPostByIntRequestBody, + "/responseBody/postByIntResponseBodyForContentTypes": ResponseBodyPostByIntResponseBodyForContentTypes, + "/requestBody/postByNumberRequestBody": RequestBodyPostByNumberRequestBody, + "/responseBody/postByNumberResponseBodyForContentTypes": ResponseBodyPostByNumberResponseBodyForContentTypes, + "/requestBody/postBySmallNumberRequestBody": RequestBodyPostBySmallNumberRequestBody, + "/responseBody/postBySmallNumberResponseBodyForContentTypes": ResponseBodyPostBySmallNumberResponseBodyForContentTypes, + "/requestBody/postInvalidInstanceShouldNotRaiseErrorWhenFloatDivisionInfRequestBody": RequestBodyPostInvalidInstanceShouldNotRaiseErrorWhenFloatDivisionInfRequestBody, + "/responseBody/postInvalidInstanceShouldNotRaiseErrorWhenFloatDivisionInfResponseBodyForContentTypes": ResponseBodyPostInvalidInstanceShouldNotRaiseErrorWhenFloatDivisionInfResponseBodyForContentTypes, + "/requestBody/postNotRequestBody": RequestBodyPostNotRequestBody, + "/responseBody/postNotResponseBodyForContentTypes": ResponseBodyPostNotResponseBodyForContentTypes, + "/requestBody/postNotMoreComplexSchemaRequestBody": RequestBodyPostNotMoreComplexSchemaRequestBody, + "/responseBody/postNotMoreComplexSchemaResponseBodyForContentTypes": ResponseBodyPostNotMoreComplexSchemaResponseBodyForContentTypes, + "/requestBody/postForbiddenPropertyRequestBody": RequestBodyPostForbiddenPropertyRequestBody, + "/responseBody/postForbiddenPropertyResponseBodyForContentTypes": ResponseBodyPostForbiddenPropertyResponseBodyForContentTypes, + "/requestBody/postOneofRequestBody": RequestBodyPostOneofRequestBody, + "/responseBody/postOneofResponseBodyForContentTypes": ResponseBodyPostOneofResponseBodyForContentTypes, + "/requestBody/postOneofWithBaseSchemaRequestBody": RequestBodyPostOneofWithBaseSchemaRequestBody, + "/responseBody/postOneofWithBaseSchemaResponseBodyForContentTypes": ResponseBodyPostOneofWithBaseSchemaResponseBodyForContentTypes, + "/requestBody/postOneofComplexTypesRequestBody": RequestBodyPostOneofComplexTypesRequestBody, + "/responseBody/postOneofComplexTypesResponseBodyForContentTypes": ResponseBodyPostOneofComplexTypesResponseBodyForContentTypes, + "/requestBody/postOneofWithEmptySchemaRequestBody": RequestBodyPostOneofWithEmptySchemaRequestBody, + "/responseBody/postOneofWithEmptySchemaResponseBodyForContentTypes": ResponseBodyPostOneofWithEmptySchemaResponseBodyForContentTypes, + "/requestBody/postOneofWithRequiredRequestBody": RequestBodyPostOneofWithRequiredRequestBody, + "/responseBody/postOneofWithRequiredResponseBodyForContentTypes": ResponseBodyPostOneofWithRequiredResponseBodyForContentTypes, + "/requestBody/postNestedOneofToCheckValidationSemanticsRequestBody": RequestBodyPostNestedOneofToCheckValidationSemanticsRequestBody, + "/responseBody/postNestedOneofToCheckValidationSemanticsResponseBodyForContentTypes": ResponseBodyPostNestedOneofToCheckValidationSemanticsResponseBodyForContentTypes, + "/requestBody/postPatternValidationRequestBody": RequestBodyPostPatternValidationRequestBody, + "/responseBody/postPatternValidationResponseBodyForContentTypes": ResponseBodyPostPatternValidationResponseBodyForContentTypes, + "/requestBody/postPatternIsNotAnchoredRequestBody": RequestBodyPostPatternIsNotAnchoredRequestBody, + "/responseBody/postPatternIsNotAnchoredResponseBodyForContentTypes": ResponseBodyPostPatternIsNotAnchoredResponseBodyForContentTypes, + "/requestBody/postObjectPropertiesValidationRequestBody": RequestBodyPostObjectPropertiesValidationRequestBody, + "/responseBody/postObjectPropertiesValidationResponseBodyForContentTypes": ResponseBodyPostObjectPropertiesValidationResponseBodyForContentTypes, + "/requestBody/postPropertiesWithEscapedCharactersRequestBody": RequestBodyPostPropertiesWithEscapedCharactersRequestBody, + "/responseBody/postPropertiesWithEscapedCharactersResponseBodyForContentTypes": ResponseBodyPostPropertiesWithEscapedCharactersResponseBodyForContentTypes, + "/requestBody/postPropertyNamedRefThatIsNotAReferenceRequestBody": RequestBodyPostPropertyNamedRefThatIsNotAReferenceRequestBody, + "/responseBody/postPropertyNamedRefThatIsNotAReferenceResponseBodyForContentTypes": ResponseBodyPostPropertyNamedRefThatIsNotAReferenceResponseBodyForContentTypes, + "/requestBody/postRefInAdditionalpropertiesRequestBody": RequestBodyPostRefInAdditionalpropertiesRequestBody, + "/responseBody/postRefInAdditionalpropertiesResponseBodyForContentTypes": ResponseBodyPostRefInAdditionalpropertiesResponseBodyForContentTypes, + "/requestBody/postRefInItemsRequestBody": RequestBodyPostRefInItemsRequestBody, + "/responseBody/postRefInItemsResponseBodyForContentTypes": ResponseBodyPostRefInItemsResponseBodyForContentTypes, + "/requestBody/postRefInPropertyRequestBody": RequestBodyPostRefInPropertyRequestBody, + "/responseBody/postRefInPropertyResponseBodyForContentTypes": ResponseBodyPostRefInPropertyResponseBodyForContentTypes, + "/requestBody/postRefInAllofRequestBody": RequestBodyPostRefInAllofRequestBody, + "/responseBody/postRefInAllofResponseBodyForContentTypes": ResponseBodyPostRefInAllofResponseBodyForContentTypes, + "/requestBody/postRefInOneofRequestBody": RequestBodyPostRefInOneofRequestBody, + "/responseBody/postRefInOneofResponseBodyForContentTypes": ResponseBodyPostRefInOneofResponseBodyForContentTypes, + "/requestBody/postRefInAnyofRequestBody": RequestBodyPostRefInAnyofRequestBody, + "/responseBody/postRefInAnyofResponseBodyForContentTypes": ResponseBodyPostRefInAnyofResponseBodyForContentTypes, + "/requestBody/postRefInNotRequestBody": RequestBodyPostRefInNotRequestBody, + "/responseBody/postRefInNotResponseBodyForContentTypes": ResponseBodyPostRefInNotResponseBodyForContentTypes, + "/requestBody/postRequiredValidationRequestBody": RequestBodyPostRequiredValidationRequestBody, + "/responseBody/postRequiredValidationResponseBodyForContentTypes": ResponseBodyPostRequiredValidationResponseBodyForContentTypes, + "/requestBody/postRequiredDefaultValidationRequestBody": RequestBodyPostRequiredDefaultValidationRequestBody, + "/responseBody/postRequiredDefaultValidationResponseBodyForContentTypes": ResponseBodyPostRequiredDefaultValidationResponseBodyForContentTypes, + "/requestBody/postRequiredWithEmptyArrayRequestBody": RequestBodyPostRequiredWithEmptyArrayRequestBody, + "/responseBody/postRequiredWithEmptyArrayResponseBodyForContentTypes": ResponseBodyPostRequiredWithEmptyArrayResponseBodyForContentTypes, + "/requestBody/postRequiredWithEscapedCharactersRequestBody": RequestBodyPostRequiredWithEscapedCharactersRequestBody, + "/responseBody/postRequiredWithEscapedCharactersResponseBodyForContentTypes": ResponseBodyPostRequiredWithEscapedCharactersResponseBodyForContentTypes, + "/requestBody/postIntegerTypeMatchesIntegersRequestBody": RequestBodyPostIntegerTypeMatchesIntegersRequestBody, + "/responseBody/postIntegerTypeMatchesIntegersResponseBodyForContentTypes": ResponseBodyPostIntegerTypeMatchesIntegersResponseBodyForContentTypes, + "/requestBody/postNumberTypeMatchesNumbersRequestBody": RequestBodyPostNumberTypeMatchesNumbersRequestBody, + "/responseBody/postNumberTypeMatchesNumbersResponseBodyForContentTypes": ResponseBodyPostNumberTypeMatchesNumbersResponseBodyForContentTypes, + "/requestBody/postStringTypeMatchesStringsRequestBody": RequestBodyPostStringTypeMatchesStringsRequestBody, + "/responseBody/postStringTypeMatchesStringsResponseBodyForContentTypes": ResponseBodyPostStringTypeMatchesStringsResponseBodyForContentTypes, + "/requestBody/postObjectTypeMatchesObjectsRequestBody": RequestBodyPostObjectTypeMatchesObjectsRequestBody, + "/responseBody/postObjectTypeMatchesObjectsResponseBodyForContentTypes": ResponseBodyPostObjectTypeMatchesObjectsResponseBodyForContentTypes, + "/requestBody/postBooleanTypeMatchesBooleansRequestBody": RequestBodyPostBooleanTypeMatchesBooleansRequestBody, + "/responseBody/postBooleanTypeMatchesBooleansResponseBodyForContentTypes": ResponseBodyPostBooleanTypeMatchesBooleansResponseBodyForContentTypes, + "/requestBody/postNullTypeMatchesOnlyTheNullObjectRequestBody": RequestBodyPostNullTypeMatchesOnlyTheNullObjectRequestBody, + "/responseBody/postNullTypeMatchesOnlyTheNullObjectResponseBodyForContentTypes": ResponseBodyPostNullTypeMatchesOnlyTheNullObjectResponseBodyForContentTypes, + "/requestBody/postArrayTypeMatchesArraysRequestBody": RequestBodyPostArrayTypeMatchesArraysRequestBody, + "/responseBody/postArrayTypeMatchesArraysResponseBodyForContentTypes": ResponseBodyPostArrayTypeMatchesArraysResponseBodyForContentTypes, + "/requestBody/postUniqueitemsValidationRequestBody": RequestBodyPostUniqueitemsValidationRequestBody, + "/responseBody/postUniqueitemsValidationResponseBodyForContentTypes": ResponseBodyPostUniqueitemsValidationResponseBodyForContentTypes, + "/requestBody/postUniqueitemsFalseValidationRequestBody": RequestBodyPostUniqueitemsFalseValidationRequestBody, + "/responseBody/postUniqueitemsFalseValidationResponseBodyForContentTypes": ResponseBodyPostUniqueitemsFalseValidationResponseBodyForContentTypes, } ) path_to_api = PathToApi( { - PathValues.REQUEST_BODY_POST_ADDITIONALPROPERTIES_ALLOWS_ASCHEMA_WHICH_SHOULD_VALIDATE_REQUEST_BODY: RequestBodyPostAdditionalpropertiesAllowsASchemaWhichShouldValidateRequestBody, - PathValues.RESPONSE_BODY_POST_ADDITIONALPROPERTIES_ALLOWS_ASCHEMA_WHICH_SHOULD_VALIDATE_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostAdditionalpropertiesAllowsASchemaWhichShouldValidateResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_ADDITIONALPROPERTIES_CAN_EXIST_BY_ITSELF_REQUEST_BODY: RequestBodyPostAdditionalpropertiesCanExistByItselfRequestBody, - PathValues.RESPONSE_BODY_POST_ADDITIONALPROPERTIES_CAN_EXIST_BY_ITSELF_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostAdditionalpropertiesCanExistByItselfResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_ADDITIONALPROPERTIES_ARE_ALLOWED_BY_DEFAULT_REQUEST_BODY: RequestBodyPostAdditionalpropertiesAreAllowedByDefaultRequestBody, - PathValues.RESPONSE_BODY_POST_ADDITIONALPROPERTIES_ARE_ALLOWED_BY_DEFAULT_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostAdditionalpropertiesAreAllowedByDefaultResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_ADDITIONALPROPERTIES_SHOULD_NOT_LOOK_IN_APPLICATORS_REQUEST_BODY: RequestBodyPostAdditionalpropertiesShouldNotLookInApplicatorsRequestBody, - PathValues.RESPONSE_BODY_POST_ADDITIONALPROPERTIES_SHOULD_NOT_LOOK_IN_APPLICATORS_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostAdditionalpropertiesShouldNotLookInApplicatorsResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_ALLOF_REQUEST_BODY: RequestBodyPostAllofRequestBody, - PathValues.RESPONSE_BODY_POST_ALLOF_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostAllofResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_ALLOF_WITH_BASE_SCHEMA_REQUEST_BODY: RequestBodyPostAllofWithBaseSchemaRequestBody, - PathValues.RESPONSE_BODY_POST_ALLOF_WITH_BASE_SCHEMA_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostAllofWithBaseSchemaResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_ALLOF_SIMPLE_TYPES_REQUEST_BODY: RequestBodyPostAllofSimpleTypesRequestBody, - PathValues.RESPONSE_BODY_POST_ALLOF_SIMPLE_TYPES_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostAllofSimpleTypesResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_ALLOF_WITH_ONE_EMPTY_SCHEMA_REQUEST_BODY: RequestBodyPostAllofWithOneEmptySchemaRequestBody, - PathValues.RESPONSE_BODY_POST_ALLOF_WITH_ONE_EMPTY_SCHEMA_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostAllofWithOneEmptySchemaResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_ALLOF_WITH_TWO_EMPTY_SCHEMAS_REQUEST_BODY: RequestBodyPostAllofWithTwoEmptySchemasRequestBody, - PathValues.RESPONSE_BODY_POST_ALLOF_WITH_TWO_EMPTY_SCHEMAS_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostAllofWithTwoEmptySchemasResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_ALLOF_WITH_THE_FIRST_EMPTY_SCHEMA_REQUEST_BODY: RequestBodyPostAllofWithTheFirstEmptySchemaRequestBody, - PathValues.RESPONSE_BODY_POST_ALLOF_WITH_THE_FIRST_EMPTY_SCHEMA_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostAllofWithTheFirstEmptySchemaResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_ALLOF_WITH_THE_LAST_EMPTY_SCHEMA_REQUEST_BODY: RequestBodyPostAllofWithTheLastEmptySchemaRequestBody, - PathValues.RESPONSE_BODY_POST_ALLOF_WITH_THE_LAST_EMPTY_SCHEMA_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostAllofWithTheLastEmptySchemaResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_NESTED_ALLOF_TO_CHECK_VALIDATION_SEMANTICS_REQUEST_BODY: RequestBodyPostNestedAllofToCheckValidationSemanticsRequestBody, - PathValues.RESPONSE_BODY_POST_NESTED_ALLOF_TO_CHECK_VALIDATION_SEMANTICS_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostNestedAllofToCheckValidationSemanticsResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_ALLOF_COMBINED_WITH_ANYOF_ONEOF_REQUEST_BODY: RequestBodyPostAllofCombinedWithAnyofOneofRequestBody, - PathValues.RESPONSE_BODY_POST_ALLOF_COMBINED_WITH_ANYOF_ONEOF_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostAllofCombinedWithAnyofOneofResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_ANYOF_REQUEST_BODY: RequestBodyPostAnyofRequestBody, - PathValues.RESPONSE_BODY_POST_ANYOF_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostAnyofResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_ANYOF_WITH_BASE_SCHEMA_REQUEST_BODY: RequestBodyPostAnyofWithBaseSchemaRequestBody, - PathValues.RESPONSE_BODY_POST_ANYOF_WITH_BASE_SCHEMA_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostAnyofWithBaseSchemaResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_ANYOF_COMPLEX_TYPES_REQUEST_BODY: RequestBodyPostAnyofComplexTypesRequestBody, - PathValues.RESPONSE_BODY_POST_ANYOF_COMPLEX_TYPES_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostAnyofComplexTypesResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_ANYOF_WITH_ONE_EMPTY_SCHEMA_REQUEST_BODY: RequestBodyPostAnyofWithOneEmptySchemaRequestBody, - PathValues.RESPONSE_BODY_POST_ANYOF_WITH_ONE_EMPTY_SCHEMA_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostAnyofWithOneEmptySchemaResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_NESTED_ANYOF_TO_CHECK_VALIDATION_SEMANTICS_REQUEST_BODY: RequestBodyPostNestedAnyofToCheckValidationSemanticsRequestBody, - PathValues.RESPONSE_BODY_POST_NESTED_ANYOF_TO_CHECK_VALIDATION_SEMANTICS_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostNestedAnyofToCheckValidationSemanticsResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_INVALID_STRING_VALUE_FOR_DEFAULT_REQUEST_BODY: RequestBodyPostInvalidStringValueForDefaultRequestBody, - PathValues.RESPONSE_BODY_POST_INVALID_STRING_VALUE_FOR_DEFAULT_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostInvalidStringValueForDefaultResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_THE_DEFAULT_KEYWORD_DOES_NOT_DO_ANYTHING_IF_THE_PROPERTY_IS_MISSING_REQUEST_BODY: RequestBodyPostTheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissingRequestBody, - PathValues.RESPONSE_BODY_POST_THE_DEFAULT_KEYWORD_DOES_NOT_DO_ANYTHING_IF_THE_PROPERTY_IS_MISSING_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostTheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissingResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_SIMPLE_ENUM_VALIDATION_REQUEST_BODY: RequestBodyPostSimpleEnumValidationRequestBody, - PathValues.RESPONSE_BODY_POST_SIMPLE_ENUM_VALIDATION_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostSimpleEnumValidationResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_ENUMS_IN_PROPERTIES_REQUEST_BODY: RequestBodyPostEnumsInPropertiesRequestBody, - PathValues.RESPONSE_BODY_POST_ENUMS_IN_PROPERTIES_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostEnumsInPropertiesResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_ENUM_WITH_ESCAPED_CHARACTERS_REQUEST_BODY: RequestBodyPostEnumWithEscapedCharactersRequestBody, - PathValues.RESPONSE_BODY_POST_ENUM_WITH_ESCAPED_CHARACTERS_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostEnumWithEscapedCharactersResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_ENUM_WITH_FALSE_DOES_NOT_MATCH0REQUEST_BODY: RequestBodyPostEnumWithFalseDoesNotMatch0RequestBody, - PathValues.RESPONSE_BODY_POST_ENUM_WITH_FALSE_DOES_NOT_MATCH0RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostEnumWithFalseDoesNotMatch0ResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_ENUM_WITH_TRUE_DOES_NOT_MATCH1REQUEST_BODY: RequestBodyPostEnumWithTrueDoesNotMatch1RequestBody, - PathValues.RESPONSE_BODY_POST_ENUM_WITH_TRUE_DOES_NOT_MATCH1RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostEnumWithTrueDoesNotMatch1ResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_ENUM_WITH0DOES_NOT_MATCH_FALSE_REQUEST_BODY: RequestBodyPostEnumWith0DoesNotMatchFalseRequestBody, - PathValues.RESPONSE_BODY_POST_ENUM_WITH0DOES_NOT_MATCH_FALSE_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostEnumWith0DoesNotMatchFalseResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_ENUM_WITH1DOES_NOT_MATCH_TRUE_REQUEST_BODY: RequestBodyPostEnumWith1DoesNotMatchTrueRequestBody, - PathValues.RESPONSE_BODY_POST_ENUM_WITH1DOES_NOT_MATCH_TRUE_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostEnumWith1DoesNotMatchTrueResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_NUL_CHARACTERS_IN_STRINGS_REQUEST_BODY: RequestBodyPostNulCharactersInStringsRequestBody, - PathValues.RESPONSE_BODY_POST_NUL_CHARACTERS_IN_STRINGS_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostNulCharactersInStringsResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_EMAIL_FORMAT_REQUEST_BODY: RequestBodyPostEmailFormatRequestBody, - PathValues.RESPONSE_BODY_POST_EMAIL_FORMAT_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostEmailFormatResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_IPV4FORMAT_REQUEST_BODY: RequestBodyPostIpv4FormatRequestBody, - PathValues.RESPONSE_BODY_POST_IPV4FORMAT_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostIpv4FormatResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_IPV6FORMAT_REQUEST_BODY: RequestBodyPostIpv6FormatRequestBody, - PathValues.RESPONSE_BODY_POST_IPV6FORMAT_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostIpv6FormatResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_HOSTNAME_FORMAT_REQUEST_BODY: RequestBodyPostHostnameFormatRequestBody, - PathValues.RESPONSE_BODY_POST_HOSTNAME_FORMAT_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostHostnameFormatResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_DATE_TIME_FORMAT_REQUEST_BODY: RequestBodyPostDateTimeFormatRequestBody, - PathValues.RESPONSE_BODY_POST_DATE_TIME_FORMAT_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostDateTimeFormatResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_JSON_POINTER_FORMAT_REQUEST_BODY: RequestBodyPostJsonPointerFormatRequestBody, - PathValues.RESPONSE_BODY_POST_JSON_POINTER_FORMAT_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostJsonPointerFormatResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_URI_FORMAT_REQUEST_BODY: RequestBodyPostUriFormatRequestBody, - PathValues.RESPONSE_BODY_POST_URI_FORMAT_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostUriFormatResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_URI_REFERENCE_FORMAT_REQUEST_BODY: RequestBodyPostUriReferenceFormatRequestBody, - PathValues.RESPONSE_BODY_POST_URI_REFERENCE_FORMAT_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostUriReferenceFormatResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_URI_TEMPLATE_FORMAT_REQUEST_BODY: RequestBodyPostUriTemplateFormatRequestBody, - PathValues.RESPONSE_BODY_POST_URI_TEMPLATE_FORMAT_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostUriTemplateFormatResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_NESTED_ITEMS_REQUEST_BODY: RequestBodyPostNestedItemsRequestBody, - PathValues.RESPONSE_BODY_POST_NESTED_ITEMS_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostNestedItemsResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_MAXIMUM_VALIDATION_REQUEST_BODY: RequestBodyPostMaximumValidationRequestBody, - PathValues.RESPONSE_BODY_POST_MAXIMUM_VALIDATION_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostMaximumValidationResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_MAXIMUM_VALIDATION_WITH_UNSIGNED_INTEGER_REQUEST_BODY: RequestBodyPostMaximumValidationWithUnsignedIntegerRequestBody, - PathValues.RESPONSE_BODY_POST_MAXIMUM_VALIDATION_WITH_UNSIGNED_INTEGER_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostMaximumValidationWithUnsignedIntegerResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_MAXITEMS_VALIDATION_REQUEST_BODY: RequestBodyPostMaxitemsValidationRequestBody, - PathValues.RESPONSE_BODY_POST_MAXITEMS_VALIDATION_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostMaxitemsValidationResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_MAXLENGTH_VALIDATION_REQUEST_BODY: RequestBodyPostMaxlengthValidationRequestBody, - PathValues.RESPONSE_BODY_POST_MAXLENGTH_VALIDATION_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostMaxlengthValidationResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_MAXPROPERTIES_VALIDATION_REQUEST_BODY: RequestBodyPostMaxpropertiesValidationRequestBody, - PathValues.RESPONSE_BODY_POST_MAXPROPERTIES_VALIDATION_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostMaxpropertiesValidationResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_MAXPROPERTIES0MEANS_THE_OBJECT_IS_EMPTY_REQUEST_BODY: RequestBodyPostMaxproperties0MeansTheObjectIsEmptyRequestBody, - PathValues.RESPONSE_BODY_POST_MAXPROPERTIES0MEANS_THE_OBJECT_IS_EMPTY_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostMaxproperties0MeansTheObjectIsEmptyResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_MINIMUM_VALIDATION_REQUEST_BODY: RequestBodyPostMinimumValidationRequestBody, - PathValues.RESPONSE_BODY_POST_MINIMUM_VALIDATION_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostMinimumValidationResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_MINIMUM_VALIDATION_WITH_SIGNED_INTEGER_REQUEST_BODY: RequestBodyPostMinimumValidationWithSignedIntegerRequestBody, - PathValues.RESPONSE_BODY_POST_MINIMUM_VALIDATION_WITH_SIGNED_INTEGER_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostMinimumValidationWithSignedIntegerResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_MINITEMS_VALIDATION_REQUEST_BODY: RequestBodyPostMinitemsValidationRequestBody, - PathValues.RESPONSE_BODY_POST_MINITEMS_VALIDATION_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostMinitemsValidationResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_MINLENGTH_VALIDATION_REQUEST_BODY: RequestBodyPostMinlengthValidationRequestBody, - PathValues.RESPONSE_BODY_POST_MINLENGTH_VALIDATION_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostMinlengthValidationResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_MINPROPERTIES_VALIDATION_REQUEST_BODY: RequestBodyPostMinpropertiesValidationRequestBody, - PathValues.RESPONSE_BODY_POST_MINPROPERTIES_VALIDATION_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostMinpropertiesValidationResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_BY_INT_REQUEST_BODY: RequestBodyPostByIntRequestBody, - PathValues.RESPONSE_BODY_POST_BY_INT_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostByIntResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_BY_NUMBER_REQUEST_BODY: RequestBodyPostByNumberRequestBody, - PathValues.RESPONSE_BODY_POST_BY_NUMBER_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostByNumberResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_BY_SMALL_NUMBER_REQUEST_BODY: RequestBodyPostBySmallNumberRequestBody, - PathValues.RESPONSE_BODY_POST_BY_SMALL_NUMBER_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostBySmallNumberResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_INVALID_INSTANCE_SHOULD_NOT_RAISE_ERROR_WHEN_FLOAT_DIVISION_INF_REQUEST_BODY: RequestBodyPostInvalidInstanceShouldNotRaiseErrorWhenFloatDivisionInfRequestBody, - PathValues.RESPONSE_BODY_POST_INVALID_INSTANCE_SHOULD_NOT_RAISE_ERROR_WHEN_FLOAT_DIVISION_INF_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostInvalidInstanceShouldNotRaiseErrorWhenFloatDivisionInfResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_NOT_REQUEST_BODY: RequestBodyPostNotRequestBody, - PathValues.RESPONSE_BODY_POST_NOT_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostNotResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_NOT_MORE_COMPLEX_SCHEMA_REQUEST_BODY: RequestBodyPostNotMoreComplexSchemaRequestBody, - PathValues.RESPONSE_BODY_POST_NOT_MORE_COMPLEX_SCHEMA_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostNotMoreComplexSchemaResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_FORBIDDEN_PROPERTY_REQUEST_BODY: RequestBodyPostForbiddenPropertyRequestBody, - PathValues.RESPONSE_BODY_POST_FORBIDDEN_PROPERTY_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostForbiddenPropertyResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_ONEOF_REQUEST_BODY: RequestBodyPostOneofRequestBody, - PathValues.RESPONSE_BODY_POST_ONEOF_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostOneofResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_ONEOF_WITH_BASE_SCHEMA_REQUEST_BODY: RequestBodyPostOneofWithBaseSchemaRequestBody, - PathValues.RESPONSE_BODY_POST_ONEOF_WITH_BASE_SCHEMA_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostOneofWithBaseSchemaResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_ONEOF_COMPLEX_TYPES_REQUEST_BODY: RequestBodyPostOneofComplexTypesRequestBody, - PathValues.RESPONSE_BODY_POST_ONEOF_COMPLEX_TYPES_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostOneofComplexTypesResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_ONEOF_WITH_EMPTY_SCHEMA_REQUEST_BODY: RequestBodyPostOneofWithEmptySchemaRequestBody, - PathValues.RESPONSE_BODY_POST_ONEOF_WITH_EMPTY_SCHEMA_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostOneofWithEmptySchemaResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_ONEOF_WITH_REQUIRED_REQUEST_BODY: RequestBodyPostOneofWithRequiredRequestBody, - PathValues.RESPONSE_BODY_POST_ONEOF_WITH_REQUIRED_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostOneofWithRequiredResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_NESTED_ONEOF_TO_CHECK_VALIDATION_SEMANTICS_REQUEST_BODY: RequestBodyPostNestedOneofToCheckValidationSemanticsRequestBody, - PathValues.RESPONSE_BODY_POST_NESTED_ONEOF_TO_CHECK_VALIDATION_SEMANTICS_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostNestedOneofToCheckValidationSemanticsResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_PATTERN_VALIDATION_REQUEST_BODY: RequestBodyPostPatternValidationRequestBody, - PathValues.RESPONSE_BODY_POST_PATTERN_VALIDATION_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostPatternValidationResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_PATTERN_IS_NOT_ANCHORED_REQUEST_BODY: RequestBodyPostPatternIsNotAnchoredRequestBody, - PathValues.RESPONSE_BODY_POST_PATTERN_IS_NOT_ANCHORED_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostPatternIsNotAnchoredResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_OBJECT_PROPERTIES_VALIDATION_REQUEST_BODY: RequestBodyPostObjectPropertiesValidationRequestBody, - PathValues.RESPONSE_BODY_POST_OBJECT_PROPERTIES_VALIDATION_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostObjectPropertiesValidationResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_PROPERTIES_WITH_ESCAPED_CHARACTERS_REQUEST_BODY: RequestBodyPostPropertiesWithEscapedCharactersRequestBody, - PathValues.RESPONSE_BODY_POST_PROPERTIES_WITH_ESCAPED_CHARACTERS_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostPropertiesWithEscapedCharactersResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_PROPERTY_NAMED_REF_THAT_IS_NOT_AREFERENCE_REQUEST_BODY: RequestBodyPostPropertyNamedRefThatIsNotAReferenceRequestBody, - PathValues.RESPONSE_BODY_POST_PROPERTY_NAMED_REF_THAT_IS_NOT_AREFERENCE_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostPropertyNamedRefThatIsNotAReferenceResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_REF_IN_ADDITIONALPROPERTIES_REQUEST_BODY: RequestBodyPostRefInAdditionalpropertiesRequestBody, - PathValues.RESPONSE_BODY_POST_REF_IN_ADDITIONALPROPERTIES_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostRefInAdditionalpropertiesResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_REF_IN_ITEMS_REQUEST_BODY: RequestBodyPostRefInItemsRequestBody, - PathValues.RESPONSE_BODY_POST_REF_IN_ITEMS_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostRefInItemsResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_REF_IN_PROPERTY_REQUEST_BODY: RequestBodyPostRefInPropertyRequestBody, - PathValues.RESPONSE_BODY_POST_REF_IN_PROPERTY_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostRefInPropertyResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_REF_IN_ALLOF_REQUEST_BODY: RequestBodyPostRefInAllofRequestBody, - PathValues.RESPONSE_BODY_POST_REF_IN_ALLOF_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostRefInAllofResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_REF_IN_ONEOF_REQUEST_BODY: RequestBodyPostRefInOneofRequestBody, - PathValues.RESPONSE_BODY_POST_REF_IN_ONEOF_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostRefInOneofResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_REF_IN_ANYOF_REQUEST_BODY: RequestBodyPostRefInAnyofRequestBody, - PathValues.RESPONSE_BODY_POST_REF_IN_ANYOF_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostRefInAnyofResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_REF_IN_NOT_REQUEST_BODY: RequestBodyPostRefInNotRequestBody, - PathValues.RESPONSE_BODY_POST_REF_IN_NOT_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostRefInNotResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_REQUIRED_VALIDATION_REQUEST_BODY: RequestBodyPostRequiredValidationRequestBody, - PathValues.RESPONSE_BODY_POST_REQUIRED_VALIDATION_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostRequiredValidationResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_REQUIRED_DEFAULT_VALIDATION_REQUEST_BODY: RequestBodyPostRequiredDefaultValidationRequestBody, - PathValues.RESPONSE_BODY_POST_REQUIRED_DEFAULT_VALIDATION_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostRequiredDefaultValidationResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_REQUIRED_WITH_EMPTY_ARRAY_REQUEST_BODY: RequestBodyPostRequiredWithEmptyArrayRequestBody, - PathValues.RESPONSE_BODY_POST_REQUIRED_WITH_EMPTY_ARRAY_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostRequiredWithEmptyArrayResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_REQUIRED_WITH_ESCAPED_CHARACTERS_REQUEST_BODY: RequestBodyPostRequiredWithEscapedCharactersRequestBody, - PathValues.RESPONSE_BODY_POST_REQUIRED_WITH_ESCAPED_CHARACTERS_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostRequiredWithEscapedCharactersResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_INTEGER_TYPE_MATCHES_INTEGERS_REQUEST_BODY: RequestBodyPostIntegerTypeMatchesIntegersRequestBody, - PathValues.RESPONSE_BODY_POST_INTEGER_TYPE_MATCHES_INTEGERS_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostIntegerTypeMatchesIntegersResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_NUMBER_TYPE_MATCHES_NUMBERS_REQUEST_BODY: RequestBodyPostNumberTypeMatchesNumbersRequestBody, - PathValues.RESPONSE_BODY_POST_NUMBER_TYPE_MATCHES_NUMBERS_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostNumberTypeMatchesNumbersResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_STRING_TYPE_MATCHES_STRINGS_REQUEST_BODY: RequestBodyPostStringTypeMatchesStringsRequestBody, - PathValues.RESPONSE_BODY_POST_STRING_TYPE_MATCHES_STRINGS_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostStringTypeMatchesStringsResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_OBJECT_TYPE_MATCHES_OBJECTS_REQUEST_BODY: RequestBodyPostObjectTypeMatchesObjectsRequestBody, - PathValues.RESPONSE_BODY_POST_OBJECT_TYPE_MATCHES_OBJECTS_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostObjectTypeMatchesObjectsResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_BOOLEAN_TYPE_MATCHES_BOOLEANS_REQUEST_BODY: RequestBodyPostBooleanTypeMatchesBooleansRequestBody, - PathValues.RESPONSE_BODY_POST_BOOLEAN_TYPE_MATCHES_BOOLEANS_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostBooleanTypeMatchesBooleansResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_NULL_TYPE_MATCHES_ONLY_THE_NULL_OBJECT_REQUEST_BODY: RequestBodyPostNullTypeMatchesOnlyTheNullObjectRequestBody, - PathValues.RESPONSE_BODY_POST_NULL_TYPE_MATCHES_ONLY_THE_NULL_OBJECT_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostNullTypeMatchesOnlyTheNullObjectResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_ARRAY_TYPE_MATCHES_ARRAYS_REQUEST_BODY: RequestBodyPostArrayTypeMatchesArraysRequestBody, - PathValues.RESPONSE_BODY_POST_ARRAY_TYPE_MATCHES_ARRAYS_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostArrayTypeMatchesArraysResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_UNIQUEITEMS_VALIDATION_REQUEST_BODY: RequestBodyPostUniqueitemsValidationRequestBody, - PathValues.RESPONSE_BODY_POST_UNIQUEITEMS_VALIDATION_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostUniqueitemsValidationResponseBodyForContentTypes, - PathValues.REQUEST_BODY_POST_UNIQUEITEMS_FALSE_VALIDATION_REQUEST_BODY: RequestBodyPostUniqueitemsFalseValidationRequestBody, - PathValues.RESPONSE_BODY_POST_UNIQUEITEMS_FALSE_VALIDATION_RESPONSE_BODY_FOR_CONTENT_TYPES: ResponseBodyPostUniqueitemsFalseValidationResponseBodyForContentTypes, + "/requestBody/postAdditionalpropertiesAllowsASchemaWhichShouldValidateRequestBody": RequestBodyPostAdditionalpropertiesAllowsASchemaWhichShouldValidateRequestBody, + "/responseBody/postAdditionalpropertiesAllowsASchemaWhichShouldValidateResponseBodyForContentTypes": ResponseBodyPostAdditionalpropertiesAllowsASchemaWhichShouldValidateResponseBodyForContentTypes, + "/requestBody/postAdditionalpropertiesCanExistByItselfRequestBody": RequestBodyPostAdditionalpropertiesCanExistByItselfRequestBody, + "/responseBody/postAdditionalpropertiesCanExistByItselfResponseBodyForContentTypes": ResponseBodyPostAdditionalpropertiesCanExistByItselfResponseBodyForContentTypes, + "/requestBody/postAdditionalpropertiesAreAllowedByDefaultRequestBody": RequestBodyPostAdditionalpropertiesAreAllowedByDefaultRequestBody, + "/responseBody/postAdditionalpropertiesAreAllowedByDefaultResponseBodyForContentTypes": ResponseBodyPostAdditionalpropertiesAreAllowedByDefaultResponseBodyForContentTypes, + "/requestBody/postAdditionalpropertiesShouldNotLookInApplicatorsRequestBody": RequestBodyPostAdditionalpropertiesShouldNotLookInApplicatorsRequestBody, + "/responseBody/postAdditionalpropertiesShouldNotLookInApplicatorsResponseBodyForContentTypes": ResponseBodyPostAdditionalpropertiesShouldNotLookInApplicatorsResponseBodyForContentTypes, + "/requestBody/postAllofRequestBody": RequestBodyPostAllofRequestBody, + "/responseBody/postAllofResponseBodyForContentTypes": ResponseBodyPostAllofResponseBodyForContentTypes, + "/requestBody/postAllofWithBaseSchemaRequestBody": RequestBodyPostAllofWithBaseSchemaRequestBody, + "/responseBody/postAllofWithBaseSchemaResponseBodyForContentTypes": ResponseBodyPostAllofWithBaseSchemaResponseBodyForContentTypes, + "/requestBody/postAllofSimpleTypesRequestBody": RequestBodyPostAllofSimpleTypesRequestBody, + "/responseBody/postAllofSimpleTypesResponseBodyForContentTypes": ResponseBodyPostAllofSimpleTypesResponseBodyForContentTypes, + "/requestBody/postAllofWithOneEmptySchemaRequestBody": RequestBodyPostAllofWithOneEmptySchemaRequestBody, + "/responseBody/postAllofWithOneEmptySchemaResponseBodyForContentTypes": ResponseBodyPostAllofWithOneEmptySchemaResponseBodyForContentTypes, + "/requestBody/postAllofWithTwoEmptySchemasRequestBody": RequestBodyPostAllofWithTwoEmptySchemasRequestBody, + "/responseBody/postAllofWithTwoEmptySchemasResponseBodyForContentTypes": ResponseBodyPostAllofWithTwoEmptySchemasResponseBodyForContentTypes, + "/requestBody/postAllofWithTheFirstEmptySchemaRequestBody": RequestBodyPostAllofWithTheFirstEmptySchemaRequestBody, + "/responseBody/postAllofWithTheFirstEmptySchemaResponseBodyForContentTypes": ResponseBodyPostAllofWithTheFirstEmptySchemaResponseBodyForContentTypes, + "/requestBody/postAllofWithTheLastEmptySchemaRequestBody": RequestBodyPostAllofWithTheLastEmptySchemaRequestBody, + "/responseBody/postAllofWithTheLastEmptySchemaResponseBodyForContentTypes": ResponseBodyPostAllofWithTheLastEmptySchemaResponseBodyForContentTypes, + "/requestBody/postNestedAllofToCheckValidationSemanticsRequestBody": RequestBodyPostNestedAllofToCheckValidationSemanticsRequestBody, + "/responseBody/postNestedAllofToCheckValidationSemanticsResponseBodyForContentTypes": ResponseBodyPostNestedAllofToCheckValidationSemanticsResponseBodyForContentTypes, + "/requestBody/postAllofCombinedWithAnyofOneofRequestBody": RequestBodyPostAllofCombinedWithAnyofOneofRequestBody, + "/responseBody/postAllofCombinedWithAnyofOneofResponseBodyForContentTypes": ResponseBodyPostAllofCombinedWithAnyofOneofResponseBodyForContentTypes, + "/requestBody/postAnyofRequestBody": RequestBodyPostAnyofRequestBody, + "/responseBody/postAnyofResponseBodyForContentTypes": ResponseBodyPostAnyofResponseBodyForContentTypes, + "/requestBody/postAnyofWithBaseSchemaRequestBody": RequestBodyPostAnyofWithBaseSchemaRequestBody, + "/responseBody/postAnyofWithBaseSchemaResponseBodyForContentTypes": ResponseBodyPostAnyofWithBaseSchemaResponseBodyForContentTypes, + "/requestBody/postAnyofComplexTypesRequestBody": RequestBodyPostAnyofComplexTypesRequestBody, + "/responseBody/postAnyofComplexTypesResponseBodyForContentTypes": ResponseBodyPostAnyofComplexTypesResponseBodyForContentTypes, + "/requestBody/postAnyofWithOneEmptySchemaRequestBody": RequestBodyPostAnyofWithOneEmptySchemaRequestBody, + "/responseBody/postAnyofWithOneEmptySchemaResponseBodyForContentTypes": ResponseBodyPostAnyofWithOneEmptySchemaResponseBodyForContentTypes, + "/requestBody/postNestedAnyofToCheckValidationSemanticsRequestBody": RequestBodyPostNestedAnyofToCheckValidationSemanticsRequestBody, + "/responseBody/postNestedAnyofToCheckValidationSemanticsResponseBodyForContentTypes": ResponseBodyPostNestedAnyofToCheckValidationSemanticsResponseBodyForContentTypes, + "/requestBody/postInvalidStringValueForDefaultRequestBody": RequestBodyPostInvalidStringValueForDefaultRequestBody, + "/responseBody/postInvalidStringValueForDefaultResponseBodyForContentTypes": ResponseBodyPostInvalidStringValueForDefaultResponseBodyForContentTypes, + "/requestBody/postTheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissingRequestBody": RequestBodyPostTheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissingRequestBody, + "/responseBody/postTheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissingResponseBodyForContentTypes": ResponseBodyPostTheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissingResponseBodyForContentTypes, + "/requestBody/postSimpleEnumValidationRequestBody": RequestBodyPostSimpleEnumValidationRequestBody, + "/responseBody/postSimpleEnumValidationResponseBodyForContentTypes": ResponseBodyPostSimpleEnumValidationResponseBodyForContentTypes, + "/requestBody/postEnumsInPropertiesRequestBody": RequestBodyPostEnumsInPropertiesRequestBody, + "/responseBody/postEnumsInPropertiesResponseBodyForContentTypes": ResponseBodyPostEnumsInPropertiesResponseBodyForContentTypes, + "/requestBody/postEnumWithEscapedCharactersRequestBody": RequestBodyPostEnumWithEscapedCharactersRequestBody, + "/responseBody/postEnumWithEscapedCharactersResponseBodyForContentTypes": ResponseBodyPostEnumWithEscapedCharactersResponseBodyForContentTypes, + "/requestBody/postEnumWithFalseDoesNotMatch0RequestBody": RequestBodyPostEnumWithFalseDoesNotMatch0RequestBody, + "/responseBody/postEnumWithFalseDoesNotMatch0ResponseBodyForContentTypes": ResponseBodyPostEnumWithFalseDoesNotMatch0ResponseBodyForContentTypes, + "/requestBody/postEnumWithTrueDoesNotMatch1RequestBody": RequestBodyPostEnumWithTrueDoesNotMatch1RequestBody, + "/responseBody/postEnumWithTrueDoesNotMatch1ResponseBodyForContentTypes": ResponseBodyPostEnumWithTrueDoesNotMatch1ResponseBodyForContentTypes, + "/requestBody/postEnumWith0DoesNotMatchFalseRequestBody": RequestBodyPostEnumWith0DoesNotMatchFalseRequestBody, + "/responseBody/postEnumWith0DoesNotMatchFalseResponseBodyForContentTypes": ResponseBodyPostEnumWith0DoesNotMatchFalseResponseBodyForContentTypes, + "/requestBody/postEnumWith1DoesNotMatchTrueRequestBody": RequestBodyPostEnumWith1DoesNotMatchTrueRequestBody, + "/responseBody/postEnumWith1DoesNotMatchTrueResponseBodyForContentTypes": ResponseBodyPostEnumWith1DoesNotMatchTrueResponseBodyForContentTypes, + "/requestBody/postNulCharactersInStringsRequestBody": RequestBodyPostNulCharactersInStringsRequestBody, + "/responseBody/postNulCharactersInStringsResponseBodyForContentTypes": ResponseBodyPostNulCharactersInStringsResponseBodyForContentTypes, + "/requestBody/postEmailFormatRequestBody": RequestBodyPostEmailFormatRequestBody, + "/responseBody/postEmailFormatResponseBodyForContentTypes": ResponseBodyPostEmailFormatResponseBodyForContentTypes, + "/requestBody/postIpv4FormatRequestBody": RequestBodyPostIpv4FormatRequestBody, + "/responseBody/postIpv4FormatResponseBodyForContentTypes": ResponseBodyPostIpv4FormatResponseBodyForContentTypes, + "/requestBody/postIpv6FormatRequestBody": RequestBodyPostIpv6FormatRequestBody, + "/responseBody/postIpv6FormatResponseBodyForContentTypes": ResponseBodyPostIpv6FormatResponseBodyForContentTypes, + "/requestBody/postHostnameFormatRequestBody": RequestBodyPostHostnameFormatRequestBody, + "/responseBody/postHostnameFormatResponseBodyForContentTypes": ResponseBodyPostHostnameFormatResponseBodyForContentTypes, + "/requestBody/postDateTimeFormatRequestBody": RequestBodyPostDateTimeFormatRequestBody, + "/responseBody/postDateTimeFormatResponseBodyForContentTypes": ResponseBodyPostDateTimeFormatResponseBodyForContentTypes, + "/requestBody/postJsonPointerFormatRequestBody": RequestBodyPostJsonPointerFormatRequestBody, + "/responseBody/postJsonPointerFormatResponseBodyForContentTypes": ResponseBodyPostJsonPointerFormatResponseBodyForContentTypes, + "/requestBody/postUriFormatRequestBody": RequestBodyPostUriFormatRequestBody, + "/responseBody/postUriFormatResponseBodyForContentTypes": ResponseBodyPostUriFormatResponseBodyForContentTypes, + "/requestBody/postUriReferenceFormatRequestBody": RequestBodyPostUriReferenceFormatRequestBody, + "/responseBody/postUriReferenceFormatResponseBodyForContentTypes": ResponseBodyPostUriReferenceFormatResponseBodyForContentTypes, + "/requestBody/postUriTemplateFormatRequestBody": RequestBodyPostUriTemplateFormatRequestBody, + "/responseBody/postUriTemplateFormatResponseBodyForContentTypes": ResponseBodyPostUriTemplateFormatResponseBodyForContentTypes, + "/requestBody/postNestedItemsRequestBody": RequestBodyPostNestedItemsRequestBody, + "/responseBody/postNestedItemsResponseBodyForContentTypes": ResponseBodyPostNestedItemsResponseBodyForContentTypes, + "/requestBody/postMaximumValidationRequestBody": RequestBodyPostMaximumValidationRequestBody, + "/responseBody/postMaximumValidationResponseBodyForContentTypes": ResponseBodyPostMaximumValidationResponseBodyForContentTypes, + "/requestBody/postMaximumValidationWithUnsignedIntegerRequestBody": RequestBodyPostMaximumValidationWithUnsignedIntegerRequestBody, + "/responseBody/postMaximumValidationWithUnsignedIntegerResponseBodyForContentTypes": ResponseBodyPostMaximumValidationWithUnsignedIntegerResponseBodyForContentTypes, + "/requestBody/postMaxitemsValidationRequestBody": RequestBodyPostMaxitemsValidationRequestBody, + "/responseBody/postMaxitemsValidationResponseBodyForContentTypes": ResponseBodyPostMaxitemsValidationResponseBodyForContentTypes, + "/requestBody/postMaxlengthValidationRequestBody": RequestBodyPostMaxlengthValidationRequestBody, + "/responseBody/postMaxlengthValidationResponseBodyForContentTypes": ResponseBodyPostMaxlengthValidationResponseBodyForContentTypes, + "/requestBody/postMaxpropertiesValidationRequestBody": RequestBodyPostMaxpropertiesValidationRequestBody, + "/responseBody/postMaxpropertiesValidationResponseBodyForContentTypes": ResponseBodyPostMaxpropertiesValidationResponseBodyForContentTypes, + "/requestBody/postMaxproperties0MeansTheObjectIsEmptyRequestBody": RequestBodyPostMaxproperties0MeansTheObjectIsEmptyRequestBody, + "/responseBody/postMaxproperties0MeansTheObjectIsEmptyResponseBodyForContentTypes": ResponseBodyPostMaxproperties0MeansTheObjectIsEmptyResponseBodyForContentTypes, + "/requestBody/postMinimumValidationRequestBody": RequestBodyPostMinimumValidationRequestBody, + "/responseBody/postMinimumValidationResponseBodyForContentTypes": ResponseBodyPostMinimumValidationResponseBodyForContentTypes, + "/requestBody/postMinimumValidationWithSignedIntegerRequestBody": RequestBodyPostMinimumValidationWithSignedIntegerRequestBody, + "/responseBody/postMinimumValidationWithSignedIntegerResponseBodyForContentTypes": ResponseBodyPostMinimumValidationWithSignedIntegerResponseBodyForContentTypes, + "/requestBody/postMinitemsValidationRequestBody": RequestBodyPostMinitemsValidationRequestBody, + "/responseBody/postMinitemsValidationResponseBodyForContentTypes": ResponseBodyPostMinitemsValidationResponseBodyForContentTypes, + "/requestBody/postMinlengthValidationRequestBody": RequestBodyPostMinlengthValidationRequestBody, + "/responseBody/postMinlengthValidationResponseBodyForContentTypes": ResponseBodyPostMinlengthValidationResponseBodyForContentTypes, + "/requestBody/postMinpropertiesValidationRequestBody": RequestBodyPostMinpropertiesValidationRequestBody, + "/responseBody/postMinpropertiesValidationResponseBodyForContentTypes": ResponseBodyPostMinpropertiesValidationResponseBodyForContentTypes, + "/requestBody/postByIntRequestBody": RequestBodyPostByIntRequestBody, + "/responseBody/postByIntResponseBodyForContentTypes": ResponseBodyPostByIntResponseBodyForContentTypes, + "/requestBody/postByNumberRequestBody": RequestBodyPostByNumberRequestBody, + "/responseBody/postByNumberResponseBodyForContentTypes": ResponseBodyPostByNumberResponseBodyForContentTypes, + "/requestBody/postBySmallNumberRequestBody": RequestBodyPostBySmallNumberRequestBody, + "/responseBody/postBySmallNumberResponseBodyForContentTypes": ResponseBodyPostBySmallNumberResponseBodyForContentTypes, + "/requestBody/postInvalidInstanceShouldNotRaiseErrorWhenFloatDivisionInfRequestBody": RequestBodyPostInvalidInstanceShouldNotRaiseErrorWhenFloatDivisionInfRequestBody, + "/responseBody/postInvalidInstanceShouldNotRaiseErrorWhenFloatDivisionInfResponseBodyForContentTypes": ResponseBodyPostInvalidInstanceShouldNotRaiseErrorWhenFloatDivisionInfResponseBodyForContentTypes, + "/requestBody/postNotRequestBody": RequestBodyPostNotRequestBody, + "/responseBody/postNotResponseBodyForContentTypes": ResponseBodyPostNotResponseBodyForContentTypes, + "/requestBody/postNotMoreComplexSchemaRequestBody": RequestBodyPostNotMoreComplexSchemaRequestBody, + "/responseBody/postNotMoreComplexSchemaResponseBodyForContentTypes": ResponseBodyPostNotMoreComplexSchemaResponseBodyForContentTypes, + "/requestBody/postForbiddenPropertyRequestBody": RequestBodyPostForbiddenPropertyRequestBody, + "/responseBody/postForbiddenPropertyResponseBodyForContentTypes": ResponseBodyPostForbiddenPropertyResponseBodyForContentTypes, + "/requestBody/postOneofRequestBody": RequestBodyPostOneofRequestBody, + "/responseBody/postOneofResponseBodyForContentTypes": ResponseBodyPostOneofResponseBodyForContentTypes, + "/requestBody/postOneofWithBaseSchemaRequestBody": RequestBodyPostOneofWithBaseSchemaRequestBody, + "/responseBody/postOneofWithBaseSchemaResponseBodyForContentTypes": ResponseBodyPostOneofWithBaseSchemaResponseBodyForContentTypes, + "/requestBody/postOneofComplexTypesRequestBody": RequestBodyPostOneofComplexTypesRequestBody, + "/responseBody/postOneofComplexTypesResponseBodyForContentTypes": ResponseBodyPostOneofComplexTypesResponseBodyForContentTypes, + "/requestBody/postOneofWithEmptySchemaRequestBody": RequestBodyPostOneofWithEmptySchemaRequestBody, + "/responseBody/postOneofWithEmptySchemaResponseBodyForContentTypes": ResponseBodyPostOneofWithEmptySchemaResponseBodyForContentTypes, + "/requestBody/postOneofWithRequiredRequestBody": RequestBodyPostOneofWithRequiredRequestBody, + "/responseBody/postOneofWithRequiredResponseBodyForContentTypes": ResponseBodyPostOneofWithRequiredResponseBodyForContentTypes, + "/requestBody/postNestedOneofToCheckValidationSemanticsRequestBody": RequestBodyPostNestedOneofToCheckValidationSemanticsRequestBody, + "/responseBody/postNestedOneofToCheckValidationSemanticsResponseBodyForContentTypes": ResponseBodyPostNestedOneofToCheckValidationSemanticsResponseBodyForContentTypes, + "/requestBody/postPatternValidationRequestBody": RequestBodyPostPatternValidationRequestBody, + "/responseBody/postPatternValidationResponseBodyForContentTypes": ResponseBodyPostPatternValidationResponseBodyForContentTypes, + "/requestBody/postPatternIsNotAnchoredRequestBody": RequestBodyPostPatternIsNotAnchoredRequestBody, + "/responseBody/postPatternIsNotAnchoredResponseBodyForContentTypes": ResponseBodyPostPatternIsNotAnchoredResponseBodyForContentTypes, + "/requestBody/postObjectPropertiesValidationRequestBody": RequestBodyPostObjectPropertiesValidationRequestBody, + "/responseBody/postObjectPropertiesValidationResponseBodyForContentTypes": ResponseBodyPostObjectPropertiesValidationResponseBodyForContentTypes, + "/requestBody/postPropertiesWithEscapedCharactersRequestBody": RequestBodyPostPropertiesWithEscapedCharactersRequestBody, + "/responseBody/postPropertiesWithEscapedCharactersResponseBodyForContentTypes": ResponseBodyPostPropertiesWithEscapedCharactersResponseBodyForContentTypes, + "/requestBody/postPropertyNamedRefThatIsNotAReferenceRequestBody": RequestBodyPostPropertyNamedRefThatIsNotAReferenceRequestBody, + "/responseBody/postPropertyNamedRefThatIsNotAReferenceResponseBodyForContentTypes": ResponseBodyPostPropertyNamedRefThatIsNotAReferenceResponseBodyForContentTypes, + "/requestBody/postRefInAdditionalpropertiesRequestBody": RequestBodyPostRefInAdditionalpropertiesRequestBody, + "/responseBody/postRefInAdditionalpropertiesResponseBodyForContentTypes": ResponseBodyPostRefInAdditionalpropertiesResponseBodyForContentTypes, + "/requestBody/postRefInItemsRequestBody": RequestBodyPostRefInItemsRequestBody, + "/responseBody/postRefInItemsResponseBodyForContentTypes": ResponseBodyPostRefInItemsResponseBodyForContentTypes, + "/requestBody/postRefInPropertyRequestBody": RequestBodyPostRefInPropertyRequestBody, + "/responseBody/postRefInPropertyResponseBodyForContentTypes": ResponseBodyPostRefInPropertyResponseBodyForContentTypes, + "/requestBody/postRefInAllofRequestBody": RequestBodyPostRefInAllofRequestBody, + "/responseBody/postRefInAllofResponseBodyForContentTypes": ResponseBodyPostRefInAllofResponseBodyForContentTypes, + "/requestBody/postRefInOneofRequestBody": RequestBodyPostRefInOneofRequestBody, + "/responseBody/postRefInOneofResponseBodyForContentTypes": ResponseBodyPostRefInOneofResponseBodyForContentTypes, + "/requestBody/postRefInAnyofRequestBody": RequestBodyPostRefInAnyofRequestBody, + "/responseBody/postRefInAnyofResponseBodyForContentTypes": ResponseBodyPostRefInAnyofResponseBodyForContentTypes, + "/requestBody/postRefInNotRequestBody": RequestBodyPostRefInNotRequestBody, + "/responseBody/postRefInNotResponseBodyForContentTypes": ResponseBodyPostRefInNotResponseBodyForContentTypes, + "/requestBody/postRequiredValidationRequestBody": RequestBodyPostRequiredValidationRequestBody, + "/responseBody/postRequiredValidationResponseBodyForContentTypes": ResponseBodyPostRequiredValidationResponseBodyForContentTypes, + "/requestBody/postRequiredDefaultValidationRequestBody": RequestBodyPostRequiredDefaultValidationRequestBody, + "/responseBody/postRequiredDefaultValidationResponseBodyForContentTypes": ResponseBodyPostRequiredDefaultValidationResponseBodyForContentTypes, + "/requestBody/postRequiredWithEmptyArrayRequestBody": RequestBodyPostRequiredWithEmptyArrayRequestBody, + "/responseBody/postRequiredWithEmptyArrayResponseBodyForContentTypes": ResponseBodyPostRequiredWithEmptyArrayResponseBodyForContentTypes, + "/requestBody/postRequiredWithEscapedCharactersRequestBody": RequestBodyPostRequiredWithEscapedCharactersRequestBody, + "/responseBody/postRequiredWithEscapedCharactersResponseBodyForContentTypes": ResponseBodyPostRequiredWithEscapedCharactersResponseBodyForContentTypes, + "/requestBody/postIntegerTypeMatchesIntegersRequestBody": RequestBodyPostIntegerTypeMatchesIntegersRequestBody, + "/responseBody/postIntegerTypeMatchesIntegersResponseBodyForContentTypes": ResponseBodyPostIntegerTypeMatchesIntegersResponseBodyForContentTypes, + "/requestBody/postNumberTypeMatchesNumbersRequestBody": RequestBodyPostNumberTypeMatchesNumbersRequestBody, + "/responseBody/postNumberTypeMatchesNumbersResponseBodyForContentTypes": ResponseBodyPostNumberTypeMatchesNumbersResponseBodyForContentTypes, + "/requestBody/postStringTypeMatchesStringsRequestBody": RequestBodyPostStringTypeMatchesStringsRequestBody, + "/responseBody/postStringTypeMatchesStringsResponseBodyForContentTypes": ResponseBodyPostStringTypeMatchesStringsResponseBodyForContentTypes, + "/requestBody/postObjectTypeMatchesObjectsRequestBody": RequestBodyPostObjectTypeMatchesObjectsRequestBody, + "/responseBody/postObjectTypeMatchesObjectsResponseBodyForContentTypes": ResponseBodyPostObjectTypeMatchesObjectsResponseBodyForContentTypes, + "/requestBody/postBooleanTypeMatchesBooleansRequestBody": RequestBodyPostBooleanTypeMatchesBooleansRequestBody, + "/responseBody/postBooleanTypeMatchesBooleansResponseBodyForContentTypes": ResponseBodyPostBooleanTypeMatchesBooleansResponseBodyForContentTypes, + "/requestBody/postNullTypeMatchesOnlyTheNullObjectRequestBody": RequestBodyPostNullTypeMatchesOnlyTheNullObjectRequestBody, + "/responseBody/postNullTypeMatchesOnlyTheNullObjectResponseBodyForContentTypes": ResponseBodyPostNullTypeMatchesOnlyTheNullObjectResponseBodyForContentTypes, + "/requestBody/postArrayTypeMatchesArraysRequestBody": RequestBodyPostArrayTypeMatchesArraysRequestBody, + "/responseBody/postArrayTypeMatchesArraysResponseBodyForContentTypes": ResponseBodyPostArrayTypeMatchesArraysResponseBodyForContentTypes, + "/requestBody/postUniqueitemsValidationRequestBody": RequestBodyPostUniqueitemsValidationRequestBody, + "/responseBody/postUniqueitemsValidationResponseBodyForContentTypes": ResponseBodyPostUniqueitemsValidationResponseBodyForContentTypes, + "/requestBody/postUniqueitemsFalseValidationRequestBody": RequestBodyPostUniqueitemsFalseValidationRequestBody, + "/responseBody/postUniqueitemsFalseValidationResponseBodyForContentTypes": ResponseBodyPostUniqueitemsFalseValidationResponseBodyForContentTypes, } ) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/apis/tag_to_api.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/apis/tag_to_api.py index a40db5c5f90..4f9c6aa8e33 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/apis/tag_to_api.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/apis/tag_to_api.py @@ -1,6 +1,5 @@ import typing_extensions -from unit_test_api.apis.tags import TagValues from unit_test_api.apis.tags.operation_request_body_api import OperationRequestBodyApi from unit_test_api.apis.tags.path_post_api import PathPostApi from unit_test_api.apis.tags.content_type_json_api import ContentTypeJsonApi @@ -33,66 +32,66 @@ TagToApi = typing_extensions.TypedDict( 'TagToApi', { - TagValues.OPERATION_REQUEST_BODY: OperationRequestBodyApi, - TagValues.PATH_POST: PathPostApi, - TagValues.CONTENT_TYPE_JSON: ContentTypeJsonApi, - TagValues.RESPONSE_CONTENT_CONTENT_TYPE_SCHEMA: ResponseContentContentTypeSchemaApi, - TagValues.ADDITIONAL_PROPERTIES: AdditionalPropertiesApi, - TagValues.ALL_OF: AllOfApi, - TagValues.ANY_OF: AnyOfApi, - TagValues.DEFAULT: DefaultApi, - TagValues.ENUM: EnumApi, - TagValues.FORMAT: FormatApi, - TagValues.ITEMS: ItemsApi, - TagValues.MAXIMUM: MaximumApi, - TagValues.MAX_ITEMS: MaxItemsApi, - TagValues.MAX_LENGTH: MaxLengthApi, - TagValues.MAX_PROPERTIES: MaxPropertiesApi, - TagValues.MINIMUM: MinimumApi, - TagValues.MIN_ITEMS: MinItemsApi, - TagValues.MIN_LENGTH: MinLengthApi, - TagValues.MIN_PROPERTIES: MinPropertiesApi, - TagValues.MULTIPLE_OF: MultipleOfApi, - TagValues.NOT: ModelNotApi, - TagValues.ONE_OF: OneOfApi, - TagValues.PATTERN: PatternApi, - TagValues.PROPERTIES: PropertiesApi, - TagValues.REF: RefApi, - TagValues.REQUIRED: RequiredApi, - TagValues.TYPE: TypeApi, - TagValues.UNIQUE_ITEMS: UniqueItemsApi, + "operation.requestBody": OperationRequestBodyApi, + "path.post": PathPostApi, + "contentType_json": ContentTypeJsonApi, + "response.content.contentType.schema": ResponseContentContentTypeSchemaApi, + "additionalProperties": AdditionalPropertiesApi, + "allOf": AllOfApi, + "anyOf": AnyOfApi, + "default": DefaultApi, + "enum": EnumApi, + "format": FormatApi, + "items": ItemsApi, + "maximum": MaximumApi, + "maxItems": MaxItemsApi, + "maxLength": MaxLengthApi, + "maxProperties": MaxPropertiesApi, + "minimum": MinimumApi, + "minItems": MinItemsApi, + "minLength": MinLengthApi, + "minProperties": MinPropertiesApi, + "multipleOf": MultipleOfApi, + "not": ModelNotApi, + "oneOf": OneOfApi, + "pattern": PatternApi, + "properties": PropertiesApi, + "$ref": RefApi, + "required": RequiredApi, + "type": TypeApi, + "uniqueItems": UniqueItemsApi, } ) tag_to_api = TagToApi( { - TagValues.OPERATION_REQUEST_BODY: OperationRequestBodyApi, - TagValues.PATH_POST: PathPostApi, - TagValues.CONTENT_TYPE_JSON: ContentTypeJsonApi, - TagValues.RESPONSE_CONTENT_CONTENT_TYPE_SCHEMA: ResponseContentContentTypeSchemaApi, - TagValues.ADDITIONAL_PROPERTIES: AdditionalPropertiesApi, - TagValues.ALL_OF: AllOfApi, - TagValues.ANY_OF: AnyOfApi, - TagValues.DEFAULT: DefaultApi, - TagValues.ENUM: EnumApi, - TagValues.FORMAT: FormatApi, - TagValues.ITEMS: ItemsApi, - TagValues.MAXIMUM: MaximumApi, - TagValues.MAX_ITEMS: MaxItemsApi, - TagValues.MAX_LENGTH: MaxLengthApi, - TagValues.MAX_PROPERTIES: MaxPropertiesApi, - TagValues.MINIMUM: MinimumApi, - TagValues.MIN_ITEMS: MinItemsApi, - TagValues.MIN_LENGTH: MinLengthApi, - TagValues.MIN_PROPERTIES: MinPropertiesApi, - TagValues.MULTIPLE_OF: MultipleOfApi, - TagValues.NOT: ModelNotApi, - TagValues.ONE_OF: OneOfApi, - TagValues.PATTERN: PatternApi, - TagValues.PROPERTIES: PropertiesApi, - TagValues.REF: RefApi, - TagValues.REQUIRED: RequiredApi, - TagValues.TYPE: TypeApi, - TagValues.UNIQUE_ITEMS: UniqueItemsApi, + "operation.requestBody": OperationRequestBodyApi, + "path.post": PathPostApi, + "contentType_json": ContentTypeJsonApi, + "response.content.contentType.schema": ResponseContentContentTypeSchemaApi, + "additionalProperties": AdditionalPropertiesApi, + "allOf": AllOfApi, + "anyOf": AnyOfApi, + "default": DefaultApi, + "enum": EnumApi, + "format": FormatApi, + "items": ItemsApi, + "maximum": MaximumApi, + "maxItems": MaxItemsApi, + "maxLength": MaxLengthApi, + "maxProperties": MaxPropertiesApi, + "minimum": MinimumApi, + "minItems": MinItemsApi, + "minLength": MinLengthApi, + "minProperties": MinPropertiesApi, + "multipleOf": MultipleOfApi, + "not": ModelNotApi, + "oneOf": OneOfApi, + "pattern": PatternApi, + "properties": PropertiesApi, + "$ref": RefApi, + "required": RequiredApi, + "type": TypeApi, + "uniqueItems": UniqueItemsApi, } ) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/apis/tags/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/apis/tags/__init__.py index 7a2dacb2e46..8be314a222b 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/apis/tags/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/apis/tags/__init__.py @@ -1,36 +1,3 @@ # do not import all endpoints into this module because that uses a lot of memory and stack frames # if you need the ability to import all endpoints from this module, import them with -# from unit_test_api.apis.tag_to_api import tag_to_api - -import enum - - -class TagValues(str, enum.Enum): - OPERATION_REQUEST_BODY = "operation.requestBody" - PATH_POST = "path.post" - CONTENT_TYPE_JSON = "contentType_json" - RESPONSE_CONTENT_CONTENT_TYPE_SCHEMA = "response.content.contentType.schema" - ADDITIONAL_PROPERTIES = "additionalProperties" - ALL_OF = "allOf" - ANY_OF = "anyOf" - DEFAULT = "default" - ENUM = "enum" - FORMAT = "format" - ITEMS = "items" - MAXIMUM = "maximum" - MAX_ITEMS = "maxItems" - MAX_LENGTH = "maxLength" - MAX_PROPERTIES = "maxProperties" - MINIMUM = "minimum" - MIN_ITEMS = "minItems" - MIN_LENGTH = "minLength" - MIN_PROPERTIES = "minProperties" - MULTIPLE_OF = "multipleOf" - NOT = "not" - ONE_OF = "oneOf" - PATTERN = "pattern" - PROPERTIES = "properties" - REF = "$ref" - REQUIRED = "required" - TYPE = "type" - UNIQUE_ITEMS = "uniqueItems" +# from unit_test_api.apis.tag_to_api import tag_to_api \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/__init__.py index 2522dcf8f19..6428c1345e5 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/__init__.py @@ -1,182 +1,3 @@ # do not import all endpoints into this module because that uses a lot of memory and stack frames # if you need the ability to import all endpoints from this module, import them with -# from unit_test_api.apis.path_to_api import path_to_api - -import enum - - -class PathValues(str, enum.Enum): - REQUEST_BODY_POST_ADDITIONALPROPERTIES_ALLOWS_ASCHEMA_WHICH_SHOULD_VALIDATE_REQUEST_BODY = "/requestBody/postAdditionalpropertiesAllowsASchemaWhichShouldValidateRequestBody" - RESPONSE_BODY_POST_ADDITIONALPROPERTIES_ALLOWS_ASCHEMA_WHICH_SHOULD_VALIDATE_RESPONSE_BODY_FOR_CONTENT_TYPES = "/responseBody/postAdditionalpropertiesAllowsASchemaWhichShouldValidateResponseBodyForContentTypes" - REQUEST_BODY_POST_ADDITIONALPROPERTIES_CAN_EXIST_BY_ITSELF_REQUEST_BODY = "/requestBody/postAdditionalpropertiesCanExistByItselfRequestBody" - RESPONSE_BODY_POST_ADDITIONALPROPERTIES_CAN_EXIST_BY_ITSELF_RESPONSE_BODY_FOR_CONTENT_TYPES = "/responseBody/postAdditionalpropertiesCanExistByItselfResponseBodyForContentTypes" - REQUEST_BODY_POST_ADDITIONALPROPERTIES_ARE_ALLOWED_BY_DEFAULT_REQUEST_BODY = "/requestBody/postAdditionalpropertiesAreAllowedByDefaultRequestBody" - RESPONSE_BODY_POST_ADDITIONALPROPERTIES_ARE_ALLOWED_BY_DEFAULT_RESPONSE_BODY_FOR_CONTENT_TYPES = "/responseBody/postAdditionalpropertiesAreAllowedByDefaultResponseBodyForContentTypes" - REQUEST_BODY_POST_ADDITIONALPROPERTIES_SHOULD_NOT_LOOK_IN_APPLICATORS_REQUEST_BODY = "/requestBody/postAdditionalpropertiesShouldNotLookInApplicatorsRequestBody" - RESPONSE_BODY_POST_ADDITIONALPROPERTIES_SHOULD_NOT_LOOK_IN_APPLICATORS_RESPONSE_BODY_FOR_CONTENT_TYPES = "/responseBody/postAdditionalpropertiesShouldNotLookInApplicatorsResponseBodyForContentTypes" - REQUEST_BODY_POST_ALLOF_REQUEST_BODY = "/requestBody/postAllofRequestBody" - RESPONSE_BODY_POST_ALLOF_RESPONSE_BODY_FOR_CONTENT_TYPES = "/responseBody/postAllofResponseBodyForContentTypes" - REQUEST_BODY_POST_ALLOF_WITH_BASE_SCHEMA_REQUEST_BODY = "/requestBody/postAllofWithBaseSchemaRequestBody" - RESPONSE_BODY_POST_ALLOF_WITH_BASE_SCHEMA_RESPONSE_BODY_FOR_CONTENT_TYPES = "/responseBody/postAllofWithBaseSchemaResponseBodyForContentTypes" - REQUEST_BODY_POST_ALLOF_SIMPLE_TYPES_REQUEST_BODY = "/requestBody/postAllofSimpleTypesRequestBody" - RESPONSE_BODY_POST_ALLOF_SIMPLE_TYPES_RESPONSE_BODY_FOR_CONTENT_TYPES = "/responseBody/postAllofSimpleTypesResponseBodyForContentTypes" - REQUEST_BODY_POST_ALLOF_WITH_ONE_EMPTY_SCHEMA_REQUEST_BODY = "/requestBody/postAllofWithOneEmptySchemaRequestBody" - RESPONSE_BODY_POST_ALLOF_WITH_ONE_EMPTY_SCHEMA_RESPONSE_BODY_FOR_CONTENT_TYPES = "/responseBody/postAllofWithOneEmptySchemaResponseBodyForContentTypes" - REQUEST_BODY_POST_ALLOF_WITH_TWO_EMPTY_SCHEMAS_REQUEST_BODY = "/requestBody/postAllofWithTwoEmptySchemasRequestBody" - RESPONSE_BODY_POST_ALLOF_WITH_TWO_EMPTY_SCHEMAS_RESPONSE_BODY_FOR_CONTENT_TYPES = "/responseBody/postAllofWithTwoEmptySchemasResponseBodyForContentTypes" - REQUEST_BODY_POST_ALLOF_WITH_THE_FIRST_EMPTY_SCHEMA_REQUEST_BODY = "/requestBody/postAllofWithTheFirstEmptySchemaRequestBody" - RESPONSE_BODY_POST_ALLOF_WITH_THE_FIRST_EMPTY_SCHEMA_RESPONSE_BODY_FOR_CONTENT_TYPES = "/responseBody/postAllofWithTheFirstEmptySchemaResponseBodyForContentTypes" - REQUEST_BODY_POST_ALLOF_WITH_THE_LAST_EMPTY_SCHEMA_REQUEST_BODY = "/requestBody/postAllofWithTheLastEmptySchemaRequestBody" - RESPONSE_BODY_POST_ALLOF_WITH_THE_LAST_EMPTY_SCHEMA_RESPONSE_BODY_FOR_CONTENT_TYPES = "/responseBody/postAllofWithTheLastEmptySchemaResponseBodyForContentTypes" - REQUEST_BODY_POST_NESTED_ALLOF_TO_CHECK_VALIDATION_SEMANTICS_REQUEST_BODY = "/requestBody/postNestedAllofToCheckValidationSemanticsRequestBody" - RESPONSE_BODY_POST_NESTED_ALLOF_TO_CHECK_VALIDATION_SEMANTICS_RESPONSE_BODY_FOR_CONTENT_TYPES = "/responseBody/postNestedAllofToCheckValidationSemanticsResponseBodyForContentTypes" - REQUEST_BODY_POST_ALLOF_COMBINED_WITH_ANYOF_ONEOF_REQUEST_BODY = "/requestBody/postAllofCombinedWithAnyofOneofRequestBody" - RESPONSE_BODY_POST_ALLOF_COMBINED_WITH_ANYOF_ONEOF_RESPONSE_BODY_FOR_CONTENT_TYPES = "/responseBody/postAllofCombinedWithAnyofOneofResponseBodyForContentTypes" - REQUEST_BODY_POST_ANYOF_REQUEST_BODY = "/requestBody/postAnyofRequestBody" - RESPONSE_BODY_POST_ANYOF_RESPONSE_BODY_FOR_CONTENT_TYPES = "/responseBody/postAnyofResponseBodyForContentTypes" - REQUEST_BODY_POST_ANYOF_WITH_BASE_SCHEMA_REQUEST_BODY = "/requestBody/postAnyofWithBaseSchemaRequestBody" - RESPONSE_BODY_POST_ANYOF_WITH_BASE_SCHEMA_RESPONSE_BODY_FOR_CONTENT_TYPES = "/responseBody/postAnyofWithBaseSchemaResponseBodyForContentTypes" - REQUEST_BODY_POST_ANYOF_COMPLEX_TYPES_REQUEST_BODY = "/requestBody/postAnyofComplexTypesRequestBody" - RESPONSE_BODY_POST_ANYOF_COMPLEX_TYPES_RESPONSE_BODY_FOR_CONTENT_TYPES = "/responseBody/postAnyofComplexTypesResponseBodyForContentTypes" - REQUEST_BODY_POST_ANYOF_WITH_ONE_EMPTY_SCHEMA_REQUEST_BODY = "/requestBody/postAnyofWithOneEmptySchemaRequestBody" - RESPONSE_BODY_POST_ANYOF_WITH_ONE_EMPTY_SCHEMA_RESPONSE_BODY_FOR_CONTENT_TYPES = "/responseBody/postAnyofWithOneEmptySchemaResponseBodyForContentTypes" - REQUEST_BODY_POST_NESTED_ANYOF_TO_CHECK_VALIDATION_SEMANTICS_REQUEST_BODY = "/requestBody/postNestedAnyofToCheckValidationSemanticsRequestBody" - RESPONSE_BODY_POST_NESTED_ANYOF_TO_CHECK_VALIDATION_SEMANTICS_RESPONSE_BODY_FOR_CONTENT_TYPES = "/responseBody/postNestedAnyofToCheckValidationSemanticsResponseBodyForContentTypes" - REQUEST_BODY_POST_INVALID_STRING_VALUE_FOR_DEFAULT_REQUEST_BODY = "/requestBody/postInvalidStringValueForDefaultRequestBody" - RESPONSE_BODY_POST_INVALID_STRING_VALUE_FOR_DEFAULT_RESPONSE_BODY_FOR_CONTENT_TYPES = "/responseBody/postInvalidStringValueForDefaultResponseBodyForContentTypes" - REQUEST_BODY_POST_THE_DEFAULT_KEYWORD_DOES_NOT_DO_ANYTHING_IF_THE_PROPERTY_IS_MISSING_REQUEST_BODY = "/requestBody/postTheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissingRequestBody" - RESPONSE_BODY_POST_THE_DEFAULT_KEYWORD_DOES_NOT_DO_ANYTHING_IF_THE_PROPERTY_IS_MISSING_RESPONSE_BODY_FOR_CONTENT_TYPES = "/responseBody/postTheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissingResponseBodyForContentTypes" - REQUEST_BODY_POST_SIMPLE_ENUM_VALIDATION_REQUEST_BODY = "/requestBody/postSimpleEnumValidationRequestBody" - RESPONSE_BODY_POST_SIMPLE_ENUM_VALIDATION_RESPONSE_BODY_FOR_CONTENT_TYPES = "/responseBody/postSimpleEnumValidationResponseBodyForContentTypes" - REQUEST_BODY_POST_ENUMS_IN_PROPERTIES_REQUEST_BODY = "/requestBody/postEnumsInPropertiesRequestBody" - RESPONSE_BODY_POST_ENUMS_IN_PROPERTIES_RESPONSE_BODY_FOR_CONTENT_TYPES = "/responseBody/postEnumsInPropertiesResponseBodyForContentTypes" - REQUEST_BODY_POST_ENUM_WITH_ESCAPED_CHARACTERS_REQUEST_BODY = "/requestBody/postEnumWithEscapedCharactersRequestBody" - RESPONSE_BODY_POST_ENUM_WITH_ESCAPED_CHARACTERS_RESPONSE_BODY_FOR_CONTENT_TYPES = "/responseBody/postEnumWithEscapedCharactersResponseBodyForContentTypes" - REQUEST_BODY_POST_ENUM_WITH_FALSE_DOES_NOT_MATCH0REQUEST_BODY = "/requestBody/postEnumWithFalseDoesNotMatch0RequestBody" - RESPONSE_BODY_POST_ENUM_WITH_FALSE_DOES_NOT_MATCH0RESPONSE_BODY_FOR_CONTENT_TYPES = "/responseBody/postEnumWithFalseDoesNotMatch0ResponseBodyForContentTypes" - REQUEST_BODY_POST_ENUM_WITH_TRUE_DOES_NOT_MATCH1REQUEST_BODY = "/requestBody/postEnumWithTrueDoesNotMatch1RequestBody" - RESPONSE_BODY_POST_ENUM_WITH_TRUE_DOES_NOT_MATCH1RESPONSE_BODY_FOR_CONTENT_TYPES = "/responseBody/postEnumWithTrueDoesNotMatch1ResponseBodyForContentTypes" - REQUEST_BODY_POST_ENUM_WITH0DOES_NOT_MATCH_FALSE_REQUEST_BODY = "/requestBody/postEnumWith0DoesNotMatchFalseRequestBody" - RESPONSE_BODY_POST_ENUM_WITH0DOES_NOT_MATCH_FALSE_RESPONSE_BODY_FOR_CONTENT_TYPES = "/responseBody/postEnumWith0DoesNotMatchFalseResponseBodyForContentTypes" - REQUEST_BODY_POST_ENUM_WITH1DOES_NOT_MATCH_TRUE_REQUEST_BODY = "/requestBody/postEnumWith1DoesNotMatchTrueRequestBody" - RESPONSE_BODY_POST_ENUM_WITH1DOES_NOT_MATCH_TRUE_RESPONSE_BODY_FOR_CONTENT_TYPES = "/responseBody/postEnumWith1DoesNotMatchTrueResponseBodyForContentTypes" - REQUEST_BODY_POST_NUL_CHARACTERS_IN_STRINGS_REQUEST_BODY = "/requestBody/postNulCharactersInStringsRequestBody" - RESPONSE_BODY_POST_NUL_CHARACTERS_IN_STRINGS_RESPONSE_BODY_FOR_CONTENT_TYPES = "/responseBody/postNulCharactersInStringsResponseBodyForContentTypes" - REQUEST_BODY_POST_EMAIL_FORMAT_REQUEST_BODY = "/requestBody/postEmailFormatRequestBody" - RESPONSE_BODY_POST_EMAIL_FORMAT_RESPONSE_BODY_FOR_CONTENT_TYPES = "/responseBody/postEmailFormatResponseBodyForContentTypes" - REQUEST_BODY_POST_IPV4FORMAT_REQUEST_BODY = "/requestBody/postIpv4FormatRequestBody" - RESPONSE_BODY_POST_IPV4FORMAT_RESPONSE_BODY_FOR_CONTENT_TYPES = "/responseBody/postIpv4FormatResponseBodyForContentTypes" - REQUEST_BODY_POST_IPV6FORMAT_REQUEST_BODY = "/requestBody/postIpv6FormatRequestBody" - RESPONSE_BODY_POST_IPV6FORMAT_RESPONSE_BODY_FOR_CONTENT_TYPES = "/responseBody/postIpv6FormatResponseBodyForContentTypes" - REQUEST_BODY_POST_HOSTNAME_FORMAT_REQUEST_BODY = "/requestBody/postHostnameFormatRequestBody" - RESPONSE_BODY_POST_HOSTNAME_FORMAT_RESPONSE_BODY_FOR_CONTENT_TYPES = "/responseBody/postHostnameFormatResponseBodyForContentTypes" - REQUEST_BODY_POST_DATE_TIME_FORMAT_REQUEST_BODY = "/requestBody/postDateTimeFormatRequestBody" - RESPONSE_BODY_POST_DATE_TIME_FORMAT_RESPONSE_BODY_FOR_CONTENT_TYPES = "/responseBody/postDateTimeFormatResponseBodyForContentTypes" - REQUEST_BODY_POST_JSON_POINTER_FORMAT_REQUEST_BODY = "/requestBody/postJsonPointerFormatRequestBody" - RESPONSE_BODY_POST_JSON_POINTER_FORMAT_RESPONSE_BODY_FOR_CONTENT_TYPES = "/responseBody/postJsonPointerFormatResponseBodyForContentTypes" - REQUEST_BODY_POST_URI_FORMAT_REQUEST_BODY = "/requestBody/postUriFormatRequestBody" - RESPONSE_BODY_POST_URI_FORMAT_RESPONSE_BODY_FOR_CONTENT_TYPES = "/responseBody/postUriFormatResponseBodyForContentTypes" - REQUEST_BODY_POST_URI_REFERENCE_FORMAT_REQUEST_BODY = "/requestBody/postUriReferenceFormatRequestBody" - RESPONSE_BODY_POST_URI_REFERENCE_FORMAT_RESPONSE_BODY_FOR_CONTENT_TYPES = "/responseBody/postUriReferenceFormatResponseBodyForContentTypes" - REQUEST_BODY_POST_URI_TEMPLATE_FORMAT_REQUEST_BODY = "/requestBody/postUriTemplateFormatRequestBody" - RESPONSE_BODY_POST_URI_TEMPLATE_FORMAT_RESPONSE_BODY_FOR_CONTENT_TYPES = "/responseBody/postUriTemplateFormatResponseBodyForContentTypes" - REQUEST_BODY_POST_NESTED_ITEMS_REQUEST_BODY = "/requestBody/postNestedItemsRequestBody" - RESPONSE_BODY_POST_NESTED_ITEMS_RESPONSE_BODY_FOR_CONTENT_TYPES = "/responseBody/postNestedItemsResponseBodyForContentTypes" - REQUEST_BODY_POST_MAXIMUM_VALIDATION_REQUEST_BODY = "/requestBody/postMaximumValidationRequestBody" - RESPONSE_BODY_POST_MAXIMUM_VALIDATION_RESPONSE_BODY_FOR_CONTENT_TYPES = "/responseBody/postMaximumValidationResponseBodyForContentTypes" - REQUEST_BODY_POST_MAXIMUM_VALIDATION_WITH_UNSIGNED_INTEGER_REQUEST_BODY = "/requestBody/postMaximumValidationWithUnsignedIntegerRequestBody" - RESPONSE_BODY_POST_MAXIMUM_VALIDATION_WITH_UNSIGNED_INTEGER_RESPONSE_BODY_FOR_CONTENT_TYPES = "/responseBody/postMaximumValidationWithUnsignedIntegerResponseBodyForContentTypes" - REQUEST_BODY_POST_MAXITEMS_VALIDATION_REQUEST_BODY = "/requestBody/postMaxitemsValidationRequestBody" - RESPONSE_BODY_POST_MAXITEMS_VALIDATION_RESPONSE_BODY_FOR_CONTENT_TYPES = "/responseBody/postMaxitemsValidationResponseBodyForContentTypes" - REQUEST_BODY_POST_MAXLENGTH_VALIDATION_REQUEST_BODY = "/requestBody/postMaxlengthValidationRequestBody" - RESPONSE_BODY_POST_MAXLENGTH_VALIDATION_RESPONSE_BODY_FOR_CONTENT_TYPES = "/responseBody/postMaxlengthValidationResponseBodyForContentTypes" - REQUEST_BODY_POST_MAXPROPERTIES_VALIDATION_REQUEST_BODY = "/requestBody/postMaxpropertiesValidationRequestBody" - RESPONSE_BODY_POST_MAXPROPERTIES_VALIDATION_RESPONSE_BODY_FOR_CONTENT_TYPES = "/responseBody/postMaxpropertiesValidationResponseBodyForContentTypes" - REQUEST_BODY_POST_MAXPROPERTIES0MEANS_THE_OBJECT_IS_EMPTY_REQUEST_BODY = "/requestBody/postMaxproperties0MeansTheObjectIsEmptyRequestBody" - RESPONSE_BODY_POST_MAXPROPERTIES0MEANS_THE_OBJECT_IS_EMPTY_RESPONSE_BODY_FOR_CONTENT_TYPES = "/responseBody/postMaxproperties0MeansTheObjectIsEmptyResponseBodyForContentTypes" - REQUEST_BODY_POST_MINIMUM_VALIDATION_REQUEST_BODY = "/requestBody/postMinimumValidationRequestBody" - RESPONSE_BODY_POST_MINIMUM_VALIDATION_RESPONSE_BODY_FOR_CONTENT_TYPES = "/responseBody/postMinimumValidationResponseBodyForContentTypes" - REQUEST_BODY_POST_MINIMUM_VALIDATION_WITH_SIGNED_INTEGER_REQUEST_BODY = "/requestBody/postMinimumValidationWithSignedIntegerRequestBody" - RESPONSE_BODY_POST_MINIMUM_VALIDATION_WITH_SIGNED_INTEGER_RESPONSE_BODY_FOR_CONTENT_TYPES = "/responseBody/postMinimumValidationWithSignedIntegerResponseBodyForContentTypes" - REQUEST_BODY_POST_MINITEMS_VALIDATION_REQUEST_BODY = "/requestBody/postMinitemsValidationRequestBody" - RESPONSE_BODY_POST_MINITEMS_VALIDATION_RESPONSE_BODY_FOR_CONTENT_TYPES = "/responseBody/postMinitemsValidationResponseBodyForContentTypes" - REQUEST_BODY_POST_MINLENGTH_VALIDATION_REQUEST_BODY = "/requestBody/postMinlengthValidationRequestBody" - RESPONSE_BODY_POST_MINLENGTH_VALIDATION_RESPONSE_BODY_FOR_CONTENT_TYPES = "/responseBody/postMinlengthValidationResponseBodyForContentTypes" - REQUEST_BODY_POST_MINPROPERTIES_VALIDATION_REQUEST_BODY = "/requestBody/postMinpropertiesValidationRequestBody" - RESPONSE_BODY_POST_MINPROPERTIES_VALIDATION_RESPONSE_BODY_FOR_CONTENT_TYPES = "/responseBody/postMinpropertiesValidationResponseBodyForContentTypes" - REQUEST_BODY_POST_BY_INT_REQUEST_BODY = "/requestBody/postByIntRequestBody" - RESPONSE_BODY_POST_BY_INT_RESPONSE_BODY_FOR_CONTENT_TYPES = "/responseBody/postByIntResponseBodyForContentTypes" - REQUEST_BODY_POST_BY_NUMBER_REQUEST_BODY = "/requestBody/postByNumberRequestBody" - RESPONSE_BODY_POST_BY_NUMBER_RESPONSE_BODY_FOR_CONTENT_TYPES = "/responseBody/postByNumberResponseBodyForContentTypes" - REQUEST_BODY_POST_BY_SMALL_NUMBER_REQUEST_BODY = "/requestBody/postBySmallNumberRequestBody" - RESPONSE_BODY_POST_BY_SMALL_NUMBER_RESPONSE_BODY_FOR_CONTENT_TYPES = "/responseBody/postBySmallNumberResponseBodyForContentTypes" - REQUEST_BODY_POST_INVALID_INSTANCE_SHOULD_NOT_RAISE_ERROR_WHEN_FLOAT_DIVISION_INF_REQUEST_BODY = "/requestBody/postInvalidInstanceShouldNotRaiseErrorWhenFloatDivisionInfRequestBody" - RESPONSE_BODY_POST_INVALID_INSTANCE_SHOULD_NOT_RAISE_ERROR_WHEN_FLOAT_DIVISION_INF_RESPONSE_BODY_FOR_CONTENT_TYPES = "/responseBody/postInvalidInstanceShouldNotRaiseErrorWhenFloatDivisionInfResponseBodyForContentTypes" - REQUEST_BODY_POST_NOT_REQUEST_BODY = "/requestBody/postNotRequestBody" - RESPONSE_BODY_POST_NOT_RESPONSE_BODY_FOR_CONTENT_TYPES = "/responseBody/postNotResponseBodyForContentTypes" - REQUEST_BODY_POST_NOT_MORE_COMPLEX_SCHEMA_REQUEST_BODY = "/requestBody/postNotMoreComplexSchemaRequestBody" - RESPONSE_BODY_POST_NOT_MORE_COMPLEX_SCHEMA_RESPONSE_BODY_FOR_CONTENT_TYPES = "/responseBody/postNotMoreComplexSchemaResponseBodyForContentTypes" - REQUEST_BODY_POST_FORBIDDEN_PROPERTY_REQUEST_BODY = "/requestBody/postForbiddenPropertyRequestBody" - RESPONSE_BODY_POST_FORBIDDEN_PROPERTY_RESPONSE_BODY_FOR_CONTENT_TYPES = "/responseBody/postForbiddenPropertyResponseBodyForContentTypes" - REQUEST_BODY_POST_ONEOF_REQUEST_BODY = "/requestBody/postOneofRequestBody" - RESPONSE_BODY_POST_ONEOF_RESPONSE_BODY_FOR_CONTENT_TYPES = "/responseBody/postOneofResponseBodyForContentTypes" - REQUEST_BODY_POST_ONEOF_WITH_BASE_SCHEMA_REQUEST_BODY = "/requestBody/postOneofWithBaseSchemaRequestBody" - RESPONSE_BODY_POST_ONEOF_WITH_BASE_SCHEMA_RESPONSE_BODY_FOR_CONTENT_TYPES = "/responseBody/postOneofWithBaseSchemaResponseBodyForContentTypes" - REQUEST_BODY_POST_ONEOF_COMPLEX_TYPES_REQUEST_BODY = "/requestBody/postOneofComplexTypesRequestBody" - RESPONSE_BODY_POST_ONEOF_COMPLEX_TYPES_RESPONSE_BODY_FOR_CONTENT_TYPES = "/responseBody/postOneofComplexTypesResponseBodyForContentTypes" - REQUEST_BODY_POST_ONEOF_WITH_EMPTY_SCHEMA_REQUEST_BODY = "/requestBody/postOneofWithEmptySchemaRequestBody" - RESPONSE_BODY_POST_ONEOF_WITH_EMPTY_SCHEMA_RESPONSE_BODY_FOR_CONTENT_TYPES = "/responseBody/postOneofWithEmptySchemaResponseBodyForContentTypes" - REQUEST_BODY_POST_ONEOF_WITH_REQUIRED_REQUEST_BODY = "/requestBody/postOneofWithRequiredRequestBody" - RESPONSE_BODY_POST_ONEOF_WITH_REQUIRED_RESPONSE_BODY_FOR_CONTENT_TYPES = "/responseBody/postOneofWithRequiredResponseBodyForContentTypes" - REQUEST_BODY_POST_NESTED_ONEOF_TO_CHECK_VALIDATION_SEMANTICS_REQUEST_BODY = "/requestBody/postNestedOneofToCheckValidationSemanticsRequestBody" - RESPONSE_BODY_POST_NESTED_ONEOF_TO_CHECK_VALIDATION_SEMANTICS_RESPONSE_BODY_FOR_CONTENT_TYPES = "/responseBody/postNestedOneofToCheckValidationSemanticsResponseBodyForContentTypes" - REQUEST_BODY_POST_PATTERN_VALIDATION_REQUEST_BODY = "/requestBody/postPatternValidationRequestBody" - RESPONSE_BODY_POST_PATTERN_VALIDATION_RESPONSE_BODY_FOR_CONTENT_TYPES = "/responseBody/postPatternValidationResponseBodyForContentTypes" - REQUEST_BODY_POST_PATTERN_IS_NOT_ANCHORED_REQUEST_BODY = "/requestBody/postPatternIsNotAnchoredRequestBody" - RESPONSE_BODY_POST_PATTERN_IS_NOT_ANCHORED_RESPONSE_BODY_FOR_CONTENT_TYPES = "/responseBody/postPatternIsNotAnchoredResponseBodyForContentTypes" - REQUEST_BODY_POST_OBJECT_PROPERTIES_VALIDATION_REQUEST_BODY = "/requestBody/postObjectPropertiesValidationRequestBody" - RESPONSE_BODY_POST_OBJECT_PROPERTIES_VALIDATION_RESPONSE_BODY_FOR_CONTENT_TYPES = "/responseBody/postObjectPropertiesValidationResponseBodyForContentTypes" - REQUEST_BODY_POST_PROPERTIES_WITH_ESCAPED_CHARACTERS_REQUEST_BODY = "/requestBody/postPropertiesWithEscapedCharactersRequestBody" - RESPONSE_BODY_POST_PROPERTIES_WITH_ESCAPED_CHARACTERS_RESPONSE_BODY_FOR_CONTENT_TYPES = "/responseBody/postPropertiesWithEscapedCharactersResponseBodyForContentTypes" - REQUEST_BODY_POST_PROPERTY_NAMED_REF_THAT_IS_NOT_AREFERENCE_REQUEST_BODY = "/requestBody/postPropertyNamedRefThatIsNotAReferenceRequestBody" - RESPONSE_BODY_POST_PROPERTY_NAMED_REF_THAT_IS_NOT_AREFERENCE_RESPONSE_BODY_FOR_CONTENT_TYPES = "/responseBody/postPropertyNamedRefThatIsNotAReferenceResponseBodyForContentTypes" - REQUEST_BODY_POST_REF_IN_ADDITIONALPROPERTIES_REQUEST_BODY = "/requestBody/postRefInAdditionalpropertiesRequestBody" - RESPONSE_BODY_POST_REF_IN_ADDITIONALPROPERTIES_RESPONSE_BODY_FOR_CONTENT_TYPES = "/responseBody/postRefInAdditionalpropertiesResponseBodyForContentTypes" - REQUEST_BODY_POST_REF_IN_ITEMS_REQUEST_BODY = "/requestBody/postRefInItemsRequestBody" - RESPONSE_BODY_POST_REF_IN_ITEMS_RESPONSE_BODY_FOR_CONTENT_TYPES = "/responseBody/postRefInItemsResponseBodyForContentTypes" - REQUEST_BODY_POST_REF_IN_PROPERTY_REQUEST_BODY = "/requestBody/postRefInPropertyRequestBody" - RESPONSE_BODY_POST_REF_IN_PROPERTY_RESPONSE_BODY_FOR_CONTENT_TYPES = "/responseBody/postRefInPropertyResponseBodyForContentTypes" - REQUEST_BODY_POST_REF_IN_ALLOF_REQUEST_BODY = "/requestBody/postRefInAllofRequestBody" - RESPONSE_BODY_POST_REF_IN_ALLOF_RESPONSE_BODY_FOR_CONTENT_TYPES = "/responseBody/postRefInAllofResponseBodyForContentTypes" - REQUEST_BODY_POST_REF_IN_ONEOF_REQUEST_BODY = "/requestBody/postRefInOneofRequestBody" - RESPONSE_BODY_POST_REF_IN_ONEOF_RESPONSE_BODY_FOR_CONTENT_TYPES = "/responseBody/postRefInOneofResponseBodyForContentTypes" - REQUEST_BODY_POST_REF_IN_ANYOF_REQUEST_BODY = "/requestBody/postRefInAnyofRequestBody" - RESPONSE_BODY_POST_REF_IN_ANYOF_RESPONSE_BODY_FOR_CONTENT_TYPES = "/responseBody/postRefInAnyofResponseBodyForContentTypes" - REQUEST_BODY_POST_REF_IN_NOT_REQUEST_BODY = "/requestBody/postRefInNotRequestBody" - RESPONSE_BODY_POST_REF_IN_NOT_RESPONSE_BODY_FOR_CONTENT_TYPES = "/responseBody/postRefInNotResponseBodyForContentTypes" - REQUEST_BODY_POST_REQUIRED_VALIDATION_REQUEST_BODY = "/requestBody/postRequiredValidationRequestBody" - RESPONSE_BODY_POST_REQUIRED_VALIDATION_RESPONSE_BODY_FOR_CONTENT_TYPES = "/responseBody/postRequiredValidationResponseBodyForContentTypes" - REQUEST_BODY_POST_REQUIRED_DEFAULT_VALIDATION_REQUEST_BODY = "/requestBody/postRequiredDefaultValidationRequestBody" - RESPONSE_BODY_POST_REQUIRED_DEFAULT_VALIDATION_RESPONSE_BODY_FOR_CONTENT_TYPES = "/responseBody/postRequiredDefaultValidationResponseBodyForContentTypes" - REQUEST_BODY_POST_REQUIRED_WITH_EMPTY_ARRAY_REQUEST_BODY = "/requestBody/postRequiredWithEmptyArrayRequestBody" - RESPONSE_BODY_POST_REQUIRED_WITH_EMPTY_ARRAY_RESPONSE_BODY_FOR_CONTENT_TYPES = "/responseBody/postRequiredWithEmptyArrayResponseBodyForContentTypes" - REQUEST_BODY_POST_REQUIRED_WITH_ESCAPED_CHARACTERS_REQUEST_BODY = "/requestBody/postRequiredWithEscapedCharactersRequestBody" - RESPONSE_BODY_POST_REQUIRED_WITH_ESCAPED_CHARACTERS_RESPONSE_BODY_FOR_CONTENT_TYPES = "/responseBody/postRequiredWithEscapedCharactersResponseBodyForContentTypes" - REQUEST_BODY_POST_INTEGER_TYPE_MATCHES_INTEGERS_REQUEST_BODY = "/requestBody/postIntegerTypeMatchesIntegersRequestBody" - RESPONSE_BODY_POST_INTEGER_TYPE_MATCHES_INTEGERS_RESPONSE_BODY_FOR_CONTENT_TYPES = "/responseBody/postIntegerTypeMatchesIntegersResponseBodyForContentTypes" - REQUEST_BODY_POST_NUMBER_TYPE_MATCHES_NUMBERS_REQUEST_BODY = "/requestBody/postNumberTypeMatchesNumbersRequestBody" - RESPONSE_BODY_POST_NUMBER_TYPE_MATCHES_NUMBERS_RESPONSE_BODY_FOR_CONTENT_TYPES = "/responseBody/postNumberTypeMatchesNumbersResponseBodyForContentTypes" - REQUEST_BODY_POST_STRING_TYPE_MATCHES_STRINGS_REQUEST_BODY = "/requestBody/postStringTypeMatchesStringsRequestBody" - RESPONSE_BODY_POST_STRING_TYPE_MATCHES_STRINGS_RESPONSE_BODY_FOR_CONTENT_TYPES = "/responseBody/postStringTypeMatchesStringsResponseBodyForContentTypes" - REQUEST_BODY_POST_OBJECT_TYPE_MATCHES_OBJECTS_REQUEST_BODY = "/requestBody/postObjectTypeMatchesObjectsRequestBody" - RESPONSE_BODY_POST_OBJECT_TYPE_MATCHES_OBJECTS_RESPONSE_BODY_FOR_CONTENT_TYPES = "/responseBody/postObjectTypeMatchesObjectsResponseBodyForContentTypes" - REQUEST_BODY_POST_BOOLEAN_TYPE_MATCHES_BOOLEANS_REQUEST_BODY = "/requestBody/postBooleanTypeMatchesBooleansRequestBody" - RESPONSE_BODY_POST_BOOLEAN_TYPE_MATCHES_BOOLEANS_RESPONSE_BODY_FOR_CONTENT_TYPES = "/responseBody/postBooleanTypeMatchesBooleansResponseBodyForContentTypes" - REQUEST_BODY_POST_NULL_TYPE_MATCHES_ONLY_THE_NULL_OBJECT_REQUEST_BODY = "/requestBody/postNullTypeMatchesOnlyTheNullObjectRequestBody" - RESPONSE_BODY_POST_NULL_TYPE_MATCHES_ONLY_THE_NULL_OBJECT_RESPONSE_BODY_FOR_CONTENT_TYPES = "/responseBody/postNullTypeMatchesOnlyTheNullObjectResponseBodyForContentTypes" - REQUEST_BODY_POST_ARRAY_TYPE_MATCHES_ARRAYS_REQUEST_BODY = "/requestBody/postArrayTypeMatchesArraysRequestBody" - RESPONSE_BODY_POST_ARRAY_TYPE_MATCHES_ARRAYS_RESPONSE_BODY_FOR_CONTENT_TYPES = "/responseBody/postArrayTypeMatchesArraysResponseBodyForContentTypes" - REQUEST_BODY_POST_UNIQUEITEMS_VALIDATION_REQUEST_BODY = "/requestBody/postUniqueitemsValidationRequestBody" - RESPONSE_BODY_POST_UNIQUEITEMS_VALIDATION_RESPONSE_BODY_FOR_CONTENT_TYPES = "/responseBody/postUniqueitemsValidationResponseBodyForContentTypes" - REQUEST_BODY_POST_UNIQUEITEMS_FALSE_VALIDATION_REQUEST_BODY = "/requestBody/postUniqueitemsFalseValidationRequestBody" - RESPONSE_BODY_POST_UNIQUEITEMS_FALSE_VALIDATION_RESPONSE_BODY_FOR_CONTENT_TYPES = "/responseBody/postUniqueitemsFalseValidationResponseBodyForContentTypes" +# from unit_test_api.apis.path_to_api import path_to_api \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_additionalproperties_allows_a_schema_which_should_validate_request_body/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_additionalproperties_allows_a_schema_which_should_validate_request_body/__init__.py index 70345f0107d..c2e9ca7a976 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_additionalproperties_allows_a_schema_which_should_validate_request_body/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_additionalproperties_allows_a_schema_which_should_validate_request_body/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.request_body_post_additionalproperties_allows_a_schema_which_should_validate_request_body import Api -from unit_test_api.paths import PathValues - -path = PathValues.REQUEST_BODY_POST_ADDITIONALPROPERTIES_ALLOWS_ASCHEMA_WHICH_SHOULD_VALIDATE_REQUEST_BODY \ No newline at end of file +path = "/requestBody/postAdditionalpropertiesAllowsASchemaWhichShouldValidateRequestBody" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_additionalproperties_allows_a_schema_which_should_validate_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_additionalproperties_allows_a_schema_which_should_validate_request_body/post/__init__.py index 468cb9a11a2..a619665a027 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_additionalproperties_allows_a_schema_which_should_validate_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_additionalproperties_allows_a_schema_which_should_validate_request_body/post/__init__.py @@ -99,7 +99,7 @@ def _post_additionalproperties_allows_a_schema_which_should_validate_request_bod api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_additionalproperties_allows_a_schema_which_should_validate_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_additionalproperties_allows_a_schema_which_should_validate_request_body/post/__init__.pyi index 0773b3bd38f..915008c34a9 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_additionalproperties_allows_a_schema_which_should_validate_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_additionalproperties_allows_a_schema_which_should_validate_request_body/post/__init__.pyi @@ -94,7 +94,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_additionalproperties_are_allowed_by_default_request_body/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_additionalproperties_are_allowed_by_default_request_body/__init__.py index 6430d2326ae..0999f2bee26 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_additionalproperties_are_allowed_by_default_request_body/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_additionalproperties_are_allowed_by_default_request_body/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.request_body_post_additionalproperties_are_allowed_by_default_request_body import Api -from unit_test_api.paths import PathValues - -path = PathValues.REQUEST_BODY_POST_ADDITIONALPROPERTIES_ARE_ALLOWED_BY_DEFAULT_REQUEST_BODY \ No newline at end of file +path = "/requestBody/postAdditionalpropertiesAreAllowedByDefaultRequestBody" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_additionalproperties_are_allowed_by_default_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_additionalproperties_are_allowed_by_default_request_body/post/__init__.py index 22aeacfb904..8f137349cdb 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_additionalproperties_are_allowed_by_default_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_additionalproperties_are_allowed_by_default_request_body/post/__init__.py @@ -99,7 +99,7 @@ def _post_additionalproperties_are_allowed_by_default_request_body_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_additionalproperties_are_allowed_by_default_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_additionalproperties_are_allowed_by_default_request_body/post/__init__.pyi index 990993bfa02..5eb0508a036 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_additionalproperties_are_allowed_by_default_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_additionalproperties_are_allowed_by_default_request_body/post/__init__.pyi @@ -94,7 +94,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_additionalproperties_can_exist_by_itself_request_body/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_additionalproperties_can_exist_by_itself_request_body/__init__.py index 96c4aff53e5..2f5de321127 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_additionalproperties_can_exist_by_itself_request_body/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_additionalproperties_can_exist_by_itself_request_body/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.request_body_post_additionalproperties_can_exist_by_itself_request_body import Api -from unit_test_api.paths import PathValues - -path = PathValues.REQUEST_BODY_POST_ADDITIONALPROPERTIES_CAN_EXIST_BY_ITSELF_REQUEST_BODY \ No newline at end of file +path = "/requestBody/postAdditionalpropertiesCanExistByItselfRequestBody" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_additionalproperties_can_exist_by_itself_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_additionalproperties_can_exist_by_itself_request_body/post/__init__.py index 5f5f1ab1cdd..6fb61bec0e4 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_additionalproperties_can_exist_by_itself_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_additionalproperties_can_exist_by_itself_request_body/post/__init__.py @@ -99,7 +99,7 @@ def _post_additionalproperties_can_exist_by_itself_request_body_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_additionalproperties_can_exist_by_itself_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_additionalproperties_can_exist_by_itself_request_body/post/__init__.pyi index cafad1a24c5..13b34f83c16 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_additionalproperties_can_exist_by_itself_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_additionalproperties_can_exist_by_itself_request_body/post/__init__.pyi @@ -94,7 +94,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_additionalproperties_should_not_look_in_applicators_request_body/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_additionalproperties_should_not_look_in_applicators_request_body/__init__.py index 7777dd53d63..e8ca48dd6d8 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_additionalproperties_should_not_look_in_applicators_request_body/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_additionalproperties_should_not_look_in_applicators_request_body/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.request_body_post_additionalproperties_should_not_look_in_applicators_request_body import Api -from unit_test_api.paths import PathValues - -path = PathValues.REQUEST_BODY_POST_ADDITIONALPROPERTIES_SHOULD_NOT_LOOK_IN_APPLICATORS_REQUEST_BODY \ No newline at end of file +path = "/requestBody/postAdditionalpropertiesShouldNotLookInApplicatorsRequestBody" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_additionalproperties_should_not_look_in_applicators_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_additionalproperties_should_not_look_in_applicators_request_body/post/__init__.py index 940818849be..92cd88d63f7 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_additionalproperties_should_not_look_in_applicators_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_additionalproperties_should_not_look_in_applicators_request_body/post/__init__.py @@ -99,7 +99,7 @@ def _post_additionalproperties_should_not_look_in_applicators_request_body_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_additionalproperties_should_not_look_in_applicators_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_additionalproperties_should_not_look_in_applicators_request_body/post/__init__.pyi index 6fd42f0198f..e0342b50b75 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_additionalproperties_should_not_look_in_applicators_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_additionalproperties_should_not_look_in_applicators_request_body/post/__init__.pyi @@ -94,7 +94,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_combined_with_anyof_oneof_request_body/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_combined_with_anyof_oneof_request_body/__init__.py index 60e8ae1384e..7fbb42fdb75 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_combined_with_anyof_oneof_request_body/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_combined_with_anyof_oneof_request_body/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.request_body_post_allof_combined_with_anyof_oneof_request_body import Api -from unit_test_api.paths import PathValues - -path = PathValues.REQUEST_BODY_POST_ALLOF_COMBINED_WITH_ANYOF_ONEOF_REQUEST_BODY \ No newline at end of file +path = "/requestBody/postAllofCombinedWithAnyofOneofRequestBody" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_combined_with_anyof_oneof_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_combined_with_anyof_oneof_request_body/post/__init__.py index d1821b4dfae..2b3006f8d9b 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_combined_with_anyof_oneof_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_combined_with_anyof_oneof_request_body/post/__init__.py @@ -99,7 +99,7 @@ def _post_allof_combined_with_anyof_oneof_request_body_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_combined_with_anyof_oneof_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_combined_with_anyof_oneof_request_body/post/__init__.pyi index d93447e4be8..e9894b3730a 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_combined_with_anyof_oneof_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_combined_with_anyof_oneof_request_body/post/__init__.pyi @@ -94,7 +94,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_request_body/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_request_body/__init__.py index 00e22cf1437..d2eaf461a87 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_request_body/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_request_body/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.request_body_post_allof_request_body import Api -from unit_test_api.paths import PathValues - -path = PathValues.REQUEST_BODY_POST_ALLOF_REQUEST_BODY \ No newline at end of file +path = "/requestBody/postAllofRequestBody" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_request_body/post/__init__.py index c3c15fd259a..4adfc51d411 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_request_body/post/__init__.py @@ -99,7 +99,7 @@ def _post_allof_request_body_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_request_body/post/__init__.pyi index 95ba99e1676..74e775c0d06 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_request_body/post/__init__.pyi @@ -94,7 +94,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_simple_types_request_body/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_simple_types_request_body/__init__.py index 0a136645b84..537367fd9fe 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_simple_types_request_body/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_simple_types_request_body/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.request_body_post_allof_simple_types_request_body import Api -from unit_test_api.paths import PathValues - -path = PathValues.REQUEST_BODY_POST_ALLOF_SIMPLE_TYPES_REQUEST_BODY \ No newline at end of file +path = "/requestBody/postAllofSimpleTypesRequestBody" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_simple_types_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_simple_types_request_body/post/__init__.py index 7aba50c1a2b..719ce7c4158 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_simple_types_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_simple_types_request_body/post/__init__.py @@ -99,7 +99,7 @@ def _post_allof_simple_types_request_body_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_simple_types_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_simple_types_request_body/post/__init__.pyi index 58766e5bcbd..adb82adee7f 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_simple_types_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_simple_types_request_body/post/__init__.pyi @@ -94,7 +94,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_with_base_schema_request_body/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_with_base_schema_request_body/__init__.py index 65a8c436dd9..94335018e4c 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_with_base_schema_request_body/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_with_base_schema_request_body/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.request_body_post_allof_with_base_schema_request_body import Api -from unit_test_api.paths import PathValues - -path = PathValues.REQUEST_BODY_POST_ALLOF_WITH_BASE_SCHEMA_REQUEST_BODY \ No newline at end of file +path = "/requestBody/postAllofWithBaseSchemaRequestBody" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_with_base_schema_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_with_base_schema_request_body/post/__init__.py index a8cea61eef0..10a548ccbb1 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_with_base_schema_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_with_base_schema_request_body/post/__init__.py @@ -99,7 +99,7 @@ def _post_allof_with_base_schema_request_body_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_with_base_schema_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_with_base_schema_request_body/post/__init__.pyi index b0bcdb9eef9..ce525df307e 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_with_base_schema_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_with_base_schema_request_body/post/__init__.pyi @@ -94,7 +94,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_with_one_empty_schema_request_body/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_with_one_empty_schema_request_body/__init__.py index 1dcfbcb8c42..ae385bb7d04 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_with_one_empty_schema_request_body/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_with_one_empty_schema_request_body/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.request_body_post_allof_with_one_empty_schema_request_body import Api -from unit_test_api.paths import PathValues - -path = PathValues.REQUEST_BODY_POST_ALLOF_WITH_ONE_EMPTY_SCHEMA_REQUEST_BODY \ No newline at end of file +path = "/requestBody/postAllofWithOneEmptySchemaRequestBody" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_with_one_empty_schema_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_with_one_empty_schema_request_body/post/__init__.py index 8234348eb90..7cd16c2f885 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_with_one_empty_schema_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_with_one_empty_schema_request_body/post/__init__.py @@ -99,7 +99,7 @@ def _post_allof_with_one_empty_schema_request_body_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_with_one_empty_schema_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_with_one_empty_schema_request_body/post/__init__.pyi index 6a48f4b3d11..c8337bb442b 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_with_one_empty_schema_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_with_one_empty_schema_request_body/post/__init__.pyi @@ -94,7 +94,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_with_the_first_empty_schema_request_body/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_with_the_first_empty_schema_request_body/__init__.py index 404be3a1692..bb7a2ffa68d 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_with_the_first_empty_schema_request_body/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_with_the_first_empty_schema_request_body/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.request_body_post_allof_with_the_first_empty_schema_request_body import Api -from unit_test_api.paths import PathValues - -path = PathValues.REQUEST_BODY_POST_ALLOF_WITH_THE_FIRST_EMPTY_SCHEMA_REQUEST_BODY \ No newline at end of file +path = "/requestBody/postAllofWithTheFirstEmptySchemaRequestBody" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_with_the_first_empty_schema_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_with_the_first_empty_schema_request_body/post/__init__.py index 8f78874386a..be96d36437c 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_with_the_first_empty_schema_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_with_the_first_empty_schema_request_body/post/__init__.py @@ -99,7 +99,7 @@ def _post_allof_with_the_first_empty_schema_request_body_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_with_the_first_empty_schema_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_with_the_first_empty_schema_request_body/post/__init__.pyi index a950dbb758d..7571d503432 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_with_the_first_empty_schema_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_with_the_first_empty_schema_request_body/post/__init__.pyi @@ -94,7 +94,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_with_the_last_empty_schema_request_body/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_with_the_last_empty_schema_request_body/__init__.py index 19dd1d7abff..e4467f230c1 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_with_the_last_empty_schema_request_body/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_with_the_last_empty_schema_request_body/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.request_body_post_allof_with_the_last_empty_schema_request_body import Api -from unit_test_api.paths import PathValues - -path = PathValues.REQUEST_BODY_POST_ALLOF_WITH_THE_LAST_EMPTY_SCHEMA_REQUEST_BODY \ No newline at end of file +path = "/requestBody/postAllofWithTheLastEmptySchemaRequestBody" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_with_the_last_empty_schema_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_with_the_last_empty_schema_request_body/post/__init__.py index 77ddbb81442..8f10969cce3 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_with_the_last_empty_schema_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_with_the_last_empty_schema_request_body/post/__init__.py @@ -99,7 +99,7 @@ def _post_allof_with_the_last_empty_schema_request_body_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_with_the_last_empty_schema_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_with_the_last_empty_schema_request_body/post/__init__.pyi index fd6ae768b86..253d65e0c1d 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_with_the_last_empty_schema_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_with_the_last_empty_schema_request_body/post/__init__.pyi @@ -94,7 +94,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_with_two_empty_schemas_request_body/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_with_two_empty_schemas_request_body/__init__.py index 9a8175cea1e..04aef3ada50 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_with_two_empty_schemas_request_body/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_with_two_empty_schemas_request_body/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.request_body_post_allof_with_two_empty_schemas_request_body import Api -from unit_test_api.paths import PathValues - -path = PathValues.REQUEST_BODY_POST_ALLOF_WITH_TWO_EMPTY_SCHEMAS_REQUEST_BODY \ No newline at end of file +path = "/requestBody/postAllofWithTwoEmptySchemasRequestBody" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_with_two_empty_schemas_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_with_two_empty_schemas_request_body/post/__init__.py index 23f1d1e661a..d17faa51c36 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_with_two_empty_schemas_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_with_two_empty_schemas_request_body/post/__init__.py @@ -99,7 +99,7 @@ def _post_allof_with_two_empty_schemas_request_body_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_with_two_empty_schemas_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_with_two_empty_schemas_request_body/post/__init__.pyi index 5bd72388a2d..d3e59262435 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_with_two_empty_schemas_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_allof_with_two_empty_schemas_request_body/post/__init__.pyi @@ -94,7 +94,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_anyof_complex_types_request_body/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_anyof_complex_types_request_body/__init__.py index cbd8b46e5a4..fb727fb27dc 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_anyof_complex_types_request_body/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_anyof_complex_types_request_body/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.request_body_post_anyof_complex_types_request_body import Api -from unit_test_api.paths import PathValues - -path = PathValues.REQUEST_BODY_POST_ANYOF_COMPLEX_TYPES_REQUEST_BODY \ No newline at end of file +path = "/requestBody/postAnyofComplexTypesRequestBody" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_anyof_complex_types_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_anyof_complex_types_request_body/post/__init__.py index d991e89f016..511960a7a19 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_anyof_complex_types_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_anyof_complex_types_request_body/post/__init__.py @@ -99,7 +99,7 @@ def _post_anyof_complex_types_request_body_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_anyof_complex_types_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_anyof_complex_types_request_body/post/__init__.pyi index cf4b6393f6a..47affc26638 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_anyof_complex_types_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_anyof_complex_types_request_body/post/__init__.pyi @@ -94,7 +94,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_anyof_request_body/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_anyof_request_body/__init__.py index b4b0fa5ebe3..f8cf2c7dafc 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_anyof_request_body/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_anyof_request_body/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.request_body_post_anyof_request_body import Api -from unit_test_api.paths import PathValues - -path = PathValues.REQUEST_BODY_POST_ANYOF_REQUEST_BODY \ No newline at end of file +path = "/requestBody/postAnyofRequestBody" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_anyof_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_anyof_request_body/post/__init__.py index b71cbeac5b6..235d53217c4 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_anyof_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_anyof_request_body/post/__init__.py @@ -99,7 +99,7 @@ def _post_anyof_request_body_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_anyof_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_anyof_request_body/post/__init__.pyi index 718e2a82260..f5958fd6518 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_anyof_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_anyof_request_body/post/__init__.pyi @@ -94,7 +94,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_anyof_with_base_schema_request_body/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_anyof_with_base_schema_request_body/__init__.py index 1f25c057036..4f9f5bf363b 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_anyof_with_base_schema_request_body/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_anyof_with_base_schema_request_body/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.request_body_post_anyof_with_base_schema_request_body import Api -from unit_test_api.paths import PathValues - -path = PathValues.REQUEST_BODY_POST_ANYOF_WITH_BASE_SCHEMA_REQUEST_BODY \ No newline at end of file +path = "/requestBody/postAnyofWithBaseSchemaRequestBody" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_anyof_with_base_schema_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_anyof_with_base_schema_request_body/post/__init__.py index 1f6f2fa3219..84ccc6bb286 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_anyof_with_base_schema_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_anyof_with_base_schema_request_body/post/__init__.py @@ -99,7 +99,7 @@ def _post_anyof_with_base_schema_request_body_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_anyof_with_base_schema_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_anyof_with_base_schema_request_body/post/__init__.pyi index 0e6fdbf723b..63462e95af0 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_anyof_with_base_schema_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_anyof_with_base_schema_request_body/post/__init__.pyi @@ -94,7 +94,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_anyof_with_one_empty_schema_request_body/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_anyof_with_one_empty_schema_request_body/__init__.py index 7f519de28b5..1d472442b0d 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_anyof_with_one_empty_schema_request_body/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_anyof_with_one_empty_schema_request_body/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.request_body_post_anyof_with_one_empty_schema_request_body import Api -from unit_test_api.paths import PathValues - -path = PathValues.REQUEST_BODY_POST_ANYOF_WITH_ONE_EMPTY_SCHEMA_REQUEST_BODY \ No newline at end of file +path = "/requestBody/postAnyofWithOneEmptySchemaRequestBody" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_anyof_with_one_empty_schema_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_anyof_with_one_empty_schema_request_body/post/__init__.py index 096a77650ab..8c5e0c0bd23 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_anyof_with_one_empty_schema_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_anyof_with_one_empty_schema_request_body/post/__init__.py @@ -99,7 +99,7 @@ def _post_anyof_with_one_empty_schema_request_body_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_anyof_with_one_empty_schema_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_anyof_with_one_empty_schema_request_body/post/__init__.pyi index eb2964a1daa..9c2c427edb8 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_anyof_with_one_empty_schema_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_anyof_with_one_empty_schema_request_body/post/__init__.pyi @@ -94,7 +94,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_array_type_matches_arrays_request_body/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_array_type_matches_arrays_request_body/__init__.py index 434d64c1f59..2faaa22d1de 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_array_type_matches_arrays_request_body/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_array_type_matches_arrays_request_body/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.request_body_post_array_type_matches_arrays_request_body import Api -from unit_test_api.paths import PathValues - -path = PathValues.REQUEST_BODY_POST_ARRAY_TYPE_MATCHES_ARRAYS_REQUEST_BODY \ No newline at end of file +path = "/requestBody/postArrayTypeMatchesArraysRequestBody" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_array_type_matches_arrays_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_array_type_matches_arrays_request_body/post/__init__.py index b459ec7474f..16ec5e5b2ba 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_array_type_matches_arrays_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_array_type_matches_arrays_request_body/post/__init__.py @@ -99,7 +99,7 @@ def _post_array_type_matches_arrays_request_body_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_array_type_matches_arrays_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_array_type_matches_arrays_request_body/post/__init__.pyi index ca9442229a8..b267539ddb7 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_array_type_matches_arrays_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_array_type_matches_arrays_request_body/post/__init__.pyi @@ -94,7 +94,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_boolean_type_matches_booleans_request_body/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_boolean_type_matches_booleans_request_body/__init__.py index dd529eb0069..3a5db867b36 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_boolean_type_matches_booleans_request_body/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_boolean_type_matches_booleans_request_body/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.request_body_post_boolean_type_matches_booleans_request_body import Api -from unit_test_api.paths import PathValues - -path = PathValues.REQUEST_BODY_POST_BOOLEAN_TYPE_MATCHES_BOOLEANS_REQUEST_BODY \ No newline at end of file +path = "/requestBody/postBooleanTypeMatchesBooleansRequestBody" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_boolean_type_matches_booleans_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_boolean_type_matches_booleans_request_body/post/__init__.py index 1b256050740..979addbacb3 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_boolean_type_matches_booleans_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_boolean_type_matches_booleans_request_body/post/__init__.py @@ -99,7 +99,7 @@ def _post_boolean_type_matches_booleans_request_body_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_boolean_type_matches_booleans_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_boolean_type_matches_booleans_request_body/post/__init__.pyi index a26eafc9d56..647ea578cbf 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_boolean_type_matches_booleans_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_boolean_type_matches_booleans_request_body/post/__init__.pyi @@ -94,7 +94,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_by_int_request_body/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_by_int_request_body/__init__.py index 1e7404f60cd..6e8fe88593c 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_by_int_request_body/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_by_int_request_body/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.request_body_post_by_int_request_body import Api -from unit_test_api.paths import PathValues - -path = PathValues.REQUEST_BODY_POST_BY_INT_REQUEST_BODY \ No newline at end of file +path = "/requestBody/postByIntRequestBody" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_by_int_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_by_int_request_body/post/__init__.py index 8f969e03c7e..986b6a065d1 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_by_int_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_by_int_request_body/post/__init__.py @@ -99,7 +99,7 @@ def _post_by_int_request_body_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_by_int_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_by_int_request_body/post/__init__.pyi index dfca2f7872c..3045180375c 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_by_int_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_by_int_request_body/post/__init__.pyi @@ -94,7 +94,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_by_number_request_body/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_by_number_request_body/__init__.py index f146d05f52d..9c3664ec450 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_by_number_request_body/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_by_number_request_body/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.request_body_post_by_number_request_body import Api -from unit_test_api.paths import PathValues - -path = PathValues.REQUEST_BODY_POST_BY_NUMBER_REQUEST_BODY \ No newline at end of file +path = "/requestBody/postByNumberRequestBody" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_by_number_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_by_number_request_body/post/__init__.py index 7d6c2d37905..e3628a64b28 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_by_number_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_by_number_request_body/post/__init__.py @@ -99,7 +99,7 @@ def _post_by_number_request_body_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_by_number_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_by_number_request_body/post/__init__.pyi index 63245467b93..efdd92054e7 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_by_number_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_by_number_request_body/post/__init__.pyi @@ -94,7 +94,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_by_small_number_request_body/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_by_small_number_request_body/__init__.py index e3016e6929c..8d314a05c75 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_by_small_number_request_body/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_by_small_number_request_body/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.request_body_post_by_small_number_request_body import Api -from unit_test_api.paths import PathValues - -path = PathValues.REQUEST_BODY_POST_BY_SMALL_NUMBER_REQUEST_BODY \ No newline at end of file +path = "/requestBody/postBySmallNumberRequestBody" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_by_small_number_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_by_small_number_request_body/post/__init__.py index 659b6eaf957..4e920a3f4be 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_by_small_number_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_by_small_number_request_body/post/__init__.py @@ -99,7 +99,7 @@ def _post_by_small_number_request_body_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_by_small_number_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_by_small_number_request_body/post/__init__.pyi index 791451da186..c052e03626d 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_by_small_number_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_by_small_number_request_body/post/__init__.pyi @@ -94,7 +94,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_date_time_format_request_body/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_date_time_format_request_body/__init__.py index 54e91fac2c0..296c17b2f59 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_date_time_format_request_body/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_date_time_format_request_body/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.request_body_post_date_time_format_request_body import Api -from unit_test_api.paths import PathValues - -path = PathValues.REQUEST_BODY_POST_DATE_TIME_FORMAT_REQUEST_BODY \ No newline at end of file +path = "/requestBody/postDateTimeFormatRequestBody" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_date_time_format_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_date_time_format_request_body/post/__init__.py index c9d57f9ad83..564bc6f3fae 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_date_time_format_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_date_time_format_request_body/post/__init__.py @@ -99,7 +99,7 @@ def _post_date_time_format_request_body_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_date_time_format_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_date_time_format_request_body/post/__init__.pyi index 6a6d3a9b921..81a53574173 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_date_time_format_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_date_time_format_request_body/post/__init__.pyi @@ -94,7 +94,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_email_format_request_body/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_email_format_request_body/__init__.py index ac461d949ee..ce37e6d0905 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_email_format_request_body/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_email_format_request_body/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.request_body_post_email_format_request_body import Api -from unit_test_api.paths import PathValues - -path = PathValues.REQUEST_BODY_POST_EMAIL_FORMAT_REQUEST_BODY \ No newline at end of file +path = "/requestBody/postEmailFormatRequestBody" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_email_format_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_email_format_request_body/post/__init__.py index b7803ef65a8..1b09af4fb27 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_email_format_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_email_format_request_body/post/__init__.py @@ -99,7 +99,7 @@ def _post_email_format_request_body_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_email_format_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_email_format_request_body/post/__init__.pyi index 00dc8c221bb..7b1a73c71e3 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_email_format_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_email_format_request_body/post/__init__.pyi @@ -94,7 +94,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_enum_with0_does_not_match_false_request_body/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_enum_with0_does_not_match_false_request_body/__init__.py index 0d0a92e77a8..8e642706b6a 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_enum_with0_does_not_match_false_request_body/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_enum_with0_does_not_match_false_request_body/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.request_body_post_enum_with0_does_not_match_false_request_body import Api -from unit_test_api.paths import PathValues - -path = PathValues.REQUEST_BODY_POST_ENUM_WITH0DOES_NOT_MATCH_FALSE_REQUEST_BODY \ No newline at end of file +path = "/requestBody/postEnumWith0DoesNotMatchFalseRequestBody" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_enum_with0_does_not_match_false_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_enum_with0_does_not_match_false_request_body/post/__init__.py index 9c395d38a91..82a1821f392 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_enum_with0_does_not_match_false_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_enum_with0_does_not_match_false_request_body/post/__init__.py @@ -99,7 +99,7 @@ def _post_enum_with0_does_not_match_false_request_body_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_enum_with0_does_not_match_false_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_enum_with0_does_not_match_false_request_body/post/__init__.pyi index c1ffbc631e3..aa4daf879cb 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_enum_with0_does_not_match_false_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_enum_with0_does_not_match_false_request_body/post/__init__.pyi @@ -94,7 +94,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_enum_with1_does_not_match_true_request_body/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_enum_with1_does_not_match_true_request_body/__init__.py index ddc8ab96401..54e35962644 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_enum_with1_does_not_match_true_request_body/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_enum_with1_does_not_match_true_request_body/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.request_body_post_enum_with1_does_not_match_true_request_body import Api -from unit_test_api.paths import PathValues - -path = PathValues.REQUEST_BODY_POST_ENUM_WITH1DOES_NOT_MATCH_TRUE_REQUEST_BODY \ No newline at end of file +path = "/requestBody/postEnumWith1DoesNotMatchTrueRequestBody" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_enum_with1_does_not_match_true_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_enum_with1_does_not_match_true_request_body/post/__init__.py index 7e3b7253590..e836e834faa 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_enum_with1_does_not_match_true_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_enum_with1_does_not_match_true_request_body/post/__init__.py @@ -99,7 +99,7 @@ def _post_enum_with1_does_not_match_true_request_body_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_enum_with1_does_not_match_true_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_enum_with1_does_not_match_true_request_body/post/__init__.pyi index 4ecf03ecae2..437edabe395 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_enum_with1_does_not_match_true_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_enum_with1_does_not_match_true_request_body/post/__init__.pyi @@ -94,7 +94,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_enum_with_escaped_characters_request_body/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_enum_with_escaped_characters_request_body/__init__.py index 69670a038cc..1d32d589a45 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_enum_with_escaped_characters_request_body/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_enum_with_escaped_characters_request_body/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.request_body_post_enum_with_escaped_characters_request_body import Api -from unit_test_api.paths import PathValues - -path = PathValues.REQUEST_BODY_POST_ENUM_WITH_ESCAPED_CHARACTERS_REQUEST_BODY \ No newline at end of file +path = "/requestBody/postEnumWithEscapedCharactersRequestBody" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_enum_with_escaped_characters_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_enum_with_escaped_characters_request_body/post/__init__.py index dbbd5ba8dd3..5e1c1598cd7 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_enum_with_escaped_characters_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_enum_with_escaped_characters_request_body/post/__init__.py @@ -99,7 +99,7 @@ def _post_enum_with_escaped_characters_request_body_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_enum_with_escaped_characters_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_enum_with_escaped_characters_request_body/post/__init__.pyi index 806ca05f6ce..4238b960955 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_enum_with_escaped_characters_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_enum_with_escaped_characters_request_body/post/__init__.pyi @@ -94,7 +94,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_enum_with_false_does_not_match0_request_body/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_enum_with_false_does_not_match0_request_body/__init__.py index 3d8993bf56e..5e3a7485772 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_enum_with_false_does_not_match0_request_body/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_enum_with_false_does_not_match0_request_body/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.request_body_post_enum_with_false_does_not_match0_request_body import Api -from unit_test_api.paths import PathValues - -path = PathValues.REQUEST_BODY_POST_ENUM_WITH_FALSE_DOES_NOT_MATCH0REQUEST_BODY \ No newline at end of file +path = "/requestBody/postEnumWithFalseDoesNotMatch0RequestBody" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_enum_with_false_does_not_match0_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_enum_with_false_does_not_match0_request_body/post/__init__.py index e346a6d8744..ef25f121dc8 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_enum_with_false_does_not_match0_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_enum_with_false_does_not_match0_request_body/post/__init__.py @@ -99,7 +99,7 @@ def _post_enum_with_false_does_not_match0_request_body_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_enum_with_false_does_not_match0_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_enum_with_false_does_not_match0_request_body/post/__init__.pyi index f7e5501f9f9..449dd1250e1 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_enum_with_false_does_not_match0_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_enum_with_false_does_not_match0_request_body/post/__init__.pyi @@ -94,7 +94,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_enum_with_true_does_not_match1_request_body/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_enum_with_true_does_not_match1_request_body/__init__.py index 7cec94a70c1..f09c6d8b98a 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_enum_with_true_does_not_match1_request_body/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_enum_with_true_does_not_match1_request_body/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.request_body_post_enum_with_true_does_not_match1_request_body import Api -from unit_test_api.paths import PathValues - -path = PathValues.REQUEST_BODY_POST_ENUM_WITH_TRUE_DOES_NOT_MATCH1REQUEST_BODY \ No newline at end of file +path = "/requestBody/postEnumWithTrueDoesNotMatch1RequestBody" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_enum_with_true_does_not_match1_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_enum_with_true_does_not_match1_request_body/post/__init__.py index 64f99127dc4..6996b5acbf1 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_enum_with_true_does_not_match1_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_enum_with_true_does_not_match1_request_body/post/__init__.py @@ -99,7 +99,7 @@ def _post_enum_with_true_does_not_match1_request_body_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_enum_with_true_does_not_match1_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_enum_with_true_does_not_match1_request_body/post/__init__.pyi index 7e0069805d0..37b86b18577 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_enum_with_true_does_not_match1_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_enum_with_true_does_not_match1_request_body/post/__init__.pyi @@ -94,7 +94,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_enums_in_properties_request_body/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_enums_in_properties_request_body/__init__.py index 9c1d9754609..271fb4113a6 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_enums_in_properties_request_body/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_enums_in_properties_request_body/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.request_body_post_enums_in_properties_request_body import Api -from unit_test_api.paths import PathValues - -path = PathValues.REQUEST_BODY_POST_ENUMS_IN_PROPERTIES_REQUEST_BODY \ No newline at end of file +path = "/requestBody/postEnumsInPropertiesRequestBody" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_enums_in_properties_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_enums_in_properties_request_body/post/__init__.py index dadaef457b3..bbb6eb83e34 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_enums_in_properties_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_enums_in_properties_request_body/post/__init__.py @@ -99,7 +99,7 @@ def _post_enums_in_properties_request_body_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_enums_in_properties_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_enums_in_properties_request_body/post/__init__.pyi index 6482eae8d7a..121812dd2e0 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_enums_in_properties_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_enums_in_properties_request_body/post/__init__.pyi @@ -94,7 +94,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_forbidden_property_request_body/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_forbidden_property_request_body/__init__.py index 3d25a7311c0..04607a8a6c1 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_forbidden_property_request_body/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_forbidden_property_request_body/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.request_body_post_forbidden_property_request_body import Api -from unit_test_api.paths import PathValues - -path = PathValues.REQUEST_BODY_POST_FORBIDDEN_PROPERTY_REQUEST_BODY \ No newline at end of file +path = "/requestBody/postForbiddenPropertyRequestBody" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_forbidden_property_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_forbidden_property_request_body/post/__init__.py index 74cf3236eb4..ff43b22b20d 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_forbidden_property_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_forbidden_property_request_body/post/__init__.py @@ -99,7 +99,7 @@ def _post_forbidden_property_request_body_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_forbidden_property_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_forbidden_property_request_body/post/__init__.pyi index 44fc2b6ec9e..b89645ae971 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_forbidden_property_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_forbidden_property_request_body/post/__init__.pyi @@ -94,7 +94,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_hostname_format_request_body/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_hostname_format_request_body/__init__.py index c02c074d762..bdd6ff49e84 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_hostname_format_request_body/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_hostname_format_request_body/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.request_body_post_hostname_format_request_body import Api -from unit_test_api.paths import PathValues - -path = PathValues.REQUEST_BODY_POST_HOSTNAME_FORMAT_REQUEST_BODY \ No newline at end of file +path = "/requestBody/postHostnameFormatRequestBody" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_hostname_format_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_hostname_format_request_body/post/__init__.py index 85f9b533aa0..7c1916dccdd 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_hostname_format_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_hostname_format_request_body/post/__init__.py @@ -99,7 +99,7 @@ def _post_hostname_format_request_body_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_hostname_format_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_hostname_format_request_body/post/__init__.pyi index 0d2e828c48b..1d52091cd01 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_hostname_format_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_hostname_format_request_body/post/__init__.pyi @@ -94,7 +94,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_integer_type_matches_integers_request_body/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_integer_type_matches_integers_request_body/__init__.py index 4be9e60848d..0f4c8b8f9c2 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_integer_type_matches_integers_request_body/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_integer_type_matches_integers_request_body/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.request_body_post_integer_type_matches_integers_request_body import Api -from unit_test_api.paths import PathValues - -path = PathValues.REQUEST_BODY_POST_INTEGER_TYPE_MATCHES_INTEGERS_REQUEST_BODY \ No newline at end of file +path = "/requestBody/postIntegerTypeMatchesIntegersRequestBody" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_integer_type_matches_integers_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_integer_type_matches_integers_request_body/post/__init__.py index b848863d89b..0d392ebcd3a 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_integer_type_matches_integers_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_integer_type_matches_integers_request_body/post/__init__.py @@ -99,7 +99,7 @@ def _post_integer_type_matches_integers_request_body_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_integer_type_matches_integers_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_integer_type_matches_integers_request_body/post/__init__.pyi index 19c143ac1ea..196cac790ba 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_integer_type_matches_integers_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_integer_type_matches_integers_request_body/post/__init__.pyi @@ -94,7 +94,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_invalid_instance_should_not_raise_error_when_float_division_inf_request_body/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_invalid_instance_should_not_raise_error_when_float_division_inf_request_body/__init__.py index f60497ab737..298fc4d75a4 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_invalid_instance_should_not_raise_error_when_float_division_inf_request_body/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_invalid_instance_should_not_raise_error_when_float_division_inf_request_body/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.request_body_post_invalid_instance_should_not_raise_error_when_float_division_inf_request_body import Api -from unit_test_api.paths import PathValues - -path = PathValues.REQUEST_BODY_POST_INVALID_INSTANCE_SHOULD_NOT_RAISE_ERROR_WHEN_FLOAT_DIVISION_INF_REQUEST_BODY \ No newline at end of file +path = "/requestBody/postInvalidInstanceShouldNotRaiseErrorWhenFloatDivisionInfRequestBody" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_invalid_instance_should_not_raise_error_when_float_division_inf_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_invalid_instance_should_not_raise_error_when_float_division_inf_request_body/post/__init__.py index 4509385b8cf..046dc4f0f5e 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_invalid_instance_should_not_raise_error_when_float_division_inf_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_invalid_instance_should_not_raise_error_when_float_division_inf_request_body/post/__init__.py @@ -99,7 +99,7 @@ def _post_invalid_instance_should_not_raise_error_when_float_division_inf_reques api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_invalid_instance_should_not_raise_error_when_float_division_inf_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_invalid_instance_should_not_raise_error_when_float_division_inf_request_body/post/__init__.pyi index 66da47dcaed..95a47eea090 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_invalid_instance_should_not_raise_error_when_float_division_inf_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_invalid_instance_should_not_raise_error_when_float_division_inf_request_body/post/__init__.pyi @@ -94,7 +94,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_invalid_string_value_for_default_request_body/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_invalid_string_value_for_default_request_body/__init__.py index b00384bdb15..3f5282b3f8f 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_invalid_string_value_for_default_request_body/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_invalid_string_value_for_default_request_body/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.request_body_post_invalid_string_value_for_default_request_body import Api -from unit_test_api.paths import PathValues - -path = PathValues.REQUEST_BODY_POST_INVALID_STRING_VALUE_FOR_DEFAULT_REQUEST_BODY \ No newline at end of file +path = "/requestBody/postInvalidStringValueForDefaultRequestBody" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_invalid_string_value_for_default_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_invalid_string_value_for_default_request_body/post/__init__.py index 652248033ca..0ca320b1271 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_invalid_string_value_for_default_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_invalid_string_value_for_default_request_body/post/__init__.py @@ -99,7 +99,7 @@ def _post_invalid_string_value_for_default_request_body_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_invalid_string_value_for_default_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_invalid_string_value_for_default_request_body/post/__init__.pyi index e9b87898126..78380c296c9 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_invalid_string_value_for_default_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_invalid_string_value_for_default_request_body/post/__init__.pyi @@ -94,7 +94,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ipv4_format_request_body/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ipv4_format_request_body/__init__.py index e71b237c897..9c6c54964e8 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ipv4_format_request_body/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ipv4_format_request_body/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.request_body_post_ipv4_format_request_body import Api -from unit_test_api.paths import PathValues - -path = PathValues.REQUEST_BODY_POST_IPV4FORMAT_REQUEST_BODY \ No newline at end of file +path = "/requestBody/postIpv4FormatRequestBody" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ipv4_format_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ipv4_format_request_body/post/__init__.py index f86dba2b168..aa724da3238 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ipv4_format_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ipv4_format_request_body/post/__init__.py @@ -99,7 +99,7 @@ def _post_ipv4_format_request_body_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ipv4_format_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ipv4_format_request_body/post/__init__.pyi index 6a251a3d6b4..1df7530427f 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ipv4_format_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ipv4_format_request_body/post/__init__.pyi @@ -94,7 +94,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ipv6_format_request_body/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ipv6_format_request_body/__init__.py index f9b9074867e..7561961ee3a 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ipv6_format_request_body/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ipv6_format_request_body/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.request_body_post_ipv6_format_request_body import Api -from unit_test_api.paths import PathValues - -path = PathValues.REQUEST_BODY_POST_IPV6FORMAT_REQUEST_BODY \ No newline at end of file +path = "/requestBody/postIpv6FormatRequestBody" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ipv6_format_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ipv6_format_request_body/post/__init__.py index 72c900a2fc9..1bfd2bdd37a 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ipv6_format_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ipv6_format_request_body/post/__init__.py @@ -99,7 +99,7 @@ def _post_ipv6_format_request_body_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ipv6_format_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ipv6_format_request_body/post/__init__.pyi index b686aea8008..032c666b879 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ipv6_format_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ipv6_format_request_body/post/__init__.pyi @@ -94,7 +94,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_json_pointer_format_request_body/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_json_pointer_format_request_body/__init__.py index aed1ba09bc3..83b626895f7 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_json_pointer_format_request_body/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_json_pointer_format_request_body/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.request_body_post_json_pointer_format_request_body import Api -from unit_test_api.paths import PathValues - -path = PathValues.REQUEST_BODY_POST_JSON_POINTER_FORMAT_REQUEST_BODY \ No newline at end of file +path = "/requestBody/postJsonPointerFormatRequestBody" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_json_pointer_format_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_json_pointer_format_request_body/post/__init__.py index c61c2c6f832..e8b4523db11 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_json_pointer_format_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_json_pointer_format_request_body/post/__init__.py @@ -99,7 +99,7 @@ def _post_json_pointer_format_request_body_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_json_pointer_format_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_json_pointer_format_request_body/post/__init__.pyi index 8bfe03c02ab..f8c3a1435f4 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_json_pointer_format_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_json_pointer_format_request_body/post/__init__.pyi @@ -94,7 +94,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_maximum_validation_request_body/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_maximum_validation_request_body/__init__.py index 0c3a5424591..ac498047f52 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_maximum_validation_request_body/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_maximum_validation_request_body/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.request_body_post_maximum_validation_request_body import Api -from unit_test_api.paths import PathValues - -path = PathValues.REQUEST_BODY_POST_MAXIMUM_VALIDATION_REQUEST_BODY \ No newline at end of file +path = "/requestBody/postMaximumValidationRequestBody" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_maximum_validation_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_maximum_validation_request_body/post/__init__.py index 128298215be..a3236ed09f6 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_maximum_validation_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_maximum_validation_request_body/post/__init__.py @@ -99,7 +99,7 @@ def _post_maximum_validation_request_body_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_maximum_validation_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_maximum_validation_request_body/post/__init__.pyi index 7c339e4a5a4..76af35b523b 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_maximum_validation_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_maximum_validation_request_body/post/__init__.pyi @@ -94,7 +94,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_maximum_validation_with_unsigned_integer_request_body/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_maximum_validation_with_unsigned_integer_request_body/__init__.py index 01a0a917a1e..464bb95d9b5 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_maximum_validation_with_unsigned_integer_request_body/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_maximum_validation_with_unsigned_integer_request_body/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.request_body_post_maximum_validation_with_unsigned_integer_request_body import Api -from unit_test_api.paths import PathValues - -path = PathValues.REQUEST_BODY_POST_MAXIMUM_VALIDATION_WITH_UNSIGNED_INTEGER_REQUEST_BODY \ No newline at end of file +path = "/requestBody/postMaximumValidationWithUnsignedIntegerRequestBody" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_maximum_validation_with_unsigned_integer_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_maximum_validation_with_unsigned_integer_request_body/post/__init__.py index c013aeb78be..89494624f58 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_maximum_validation_with_unsigned_integer_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_maximum_validation_with_unsigned_integer_request_body/post/__init__.py @@ -99,7 +99,7 @@ def _post_maximum_validation_with_unsigned_integer_request_body_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_maximum_validation_with_unsigned_integer_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_maximum_validation_with_unsigned_integer_request_body/post/__init__.pyi index ebb4ac572b6..ceb952c7225 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_maximum_validation_with_unsigned_integer_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_maximum_validation_with_unsigned_integer_request_body/post/__init__.pyi @@ -94,7 +94,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_maxitems_validation_request_body/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_maxitems_validation_request_body/__init__.py index 86e4dc9f146..de07bef7395 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_maxitems_validation_request_body/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_maxitems_validation_request_body/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.request_body_post_maxitems_validation_request_body import Api -from unit_test_api.paths import PathValues - -path = PathValues.REQUEST_BODY_POST_MAXITEMS_VALIDATION_REQUEST_BODY \ No newline at end of file +path = "/requestBody/postMaxitemsValidationRequestBody" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_maxitems_validation_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_maxitems_validation_request_body/post/__init__.py index 9a546ffc829..756ad2f133c 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_maxitems_validation_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_maxitems_validation_request_body/post/__init__.py @@ -99,7 +99,7 @@ def _post_maxitems_validation_request_body_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_maxitems_validation_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_maxitems_validation_request_body/post/__init__.pyi index 4807ccf1403..0cde8528763 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_maxitems_validation_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_maxitems_validation_request_body/post/__init__.pyi @@ -94,7 +94,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_maxlength_validation_request_body/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_maxlength_validation_request_body/__init__.py index 40b927a792b..e9d4ae75f51 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_maxlength_validation_request_body/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_maxlength_validation_request_body/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.request_body_post_maxlength_validation_request_body import Api -from unit_test_api.paths import PathValues - -path = PathValues.REQUEST_BODY_POST_MAXLENGTH_VALIDATION_REQUEST_BODY \ No newline at end of file +path = "/requestBody/postMaxlengthValidationRequestBody" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_maxlength_validation_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_maxlength_validation_request_body/post/__init__.py index 6cd823e10ca..f0d1c125336 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_maxlength_validation_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_maxlength_validation_request_body/post/__init__.py @@ -99,7 +99,7 @@ def _post_maxlength_validation_request_body_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_maxlength_validation_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_maxlength_validation_request_body/post/__init__.pyi index 95a40c3426d..f556b1c8573 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_maxlength_validation_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_maxlength_validation_request_body/post/__init__.pyi @@ -94,7 +94,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_maxproperties0_means_the_object_is_empty_request_body/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_maxproperties0_means_the_object_is_empty_request_body/__init__.py index d0abb2424fe..95413b0ef2f 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_maxproperties0_means_the_object_is_empty_request_body/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_maxproperties0_means_the_object_is_empty_request_body/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.request_body_post_maxproperties0_means_the_object_is_empty_request_body import Api -from unit_test_api.paths import PathValues - -path = PathValues.REQUEST_BODY_POST_MAXPROPERTIES0MEANS_THE_OBJECT_IS_EMPTY_REQUEST_BODY \ No newline at end of file +path = "/requestBody/postMaxproperties0MeansTheObjectIsEmptyRequestBody" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_maxproperties0_means_the_object_is_empty_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_maxproperties0_means_the_object_is_empty_request_body/post/__init__.py index 19ef230934a..fd5ae8f23ae 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_maxproperties0_means_the_object_is_empty_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_maxproperties0_means_the_object_is_empty_request_body/post/__init__.py @@ -99,7 +99,7 @@ def _post_maxproperties0_means_the_object_is_empty_request_body_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_maxproperties0_means_the_object_is_empty_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_maxproperties0_means_the_object_is_empty_request_body/post/__init__.pyi index 98eb5987415..2054aa45574 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_maxproperties0_means_the_object_is_empty_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_maxproperties0_means_the_object_is_empty_request_body/post/__init__.pyi @@ -94,7 +94,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_maxproperties_validation_request_body/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_maxproperties_validation_request_body/__init__.py index 40f9c621620..d6d18af6426 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_maxproperties_validation_request_body/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_maxproperties_validation_request_body/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.request_body_post_maxproperties_validation_request_body import Api -from unit_test_api.paths import PathValues - -path = PathValues.REQUEST_BODY_POST_MAXPROPERTIES_VALIDATION_REQUEST_BODY \ No newline at end of file +path = "/requestBody/postMaxpropertiesValidationRequestBody" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_maxproperties_validation_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_maxproperties_validation_request_body/post/__init__.py index 86a9d4d8a77..ad9cb9b16aa 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_maxproperties_validation_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_maxproperties_validation_request_body/post/__init__.py @@ -99,7 +99,7 @@ def _post_maxproperties_validation_request_body_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_maxproperties_validation_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_maxproperties_validation_request_body/post/__init__.pyi index 006b1af0a2b..b7a1f7e0e6c 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_maxproperties_validation_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_maxproperties_validation_request_body/post/__init__.pyi @@ -94,7 +94,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_minimum_validation_request_body/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_minimum_validation_request_body/__init__.py index a2ebaf49e20..5353bc71390 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_minimum_validation_request_body/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_minimum_validation_request_body/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.request_body_post_minimum_validation_request_body import Api -from unit_test_api.paths import PathValues - -path = PathValues.REQUEST_BODY_POST_MINIMUM_VALIDATION_REQUEST_BODY \ No newline at end of file +path = "/requestBody/postMinimumValidationRequestBody" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_minimum_validation_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_minimum_validation_request_body/post/__init__.py index 5cb73694463..4981df6b548 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_minimum_validation_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_minimum_validation_request_body/post/__init__.py @@ -99,7 +99,7 @@ def _post_minimum_validation_request_body_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_minimum_validation_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_minimum_validation_request_body/post/__init__.pyi index c1178c4b68e..5840e56ac61 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_minimum_validation_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_minimum_validation_request_body/post/__init__.pyi @@ -94,7 +94,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_minimum_validation_with_signed_integer_request_body/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_minimum_validation_with_signed_integer_request_body/__init__.py index 55f61d940e1..f65a15794e5 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_minimum_validation_with_signed_integer_request_body/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_minimum_validation_with_signed_integer_request_body/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.request_body_post_minimum_validation_with_signed_integer_request_body import Api -from unit_test_api.paths import PathValues - -path = PathValues.REQUEST_BODY_POST_MINIMUM_VALIDATION_WITH_SIGNED_INTEGER_REQUEST_BODY \ No newline at end of file +path = "/requestBody/postMinimumValidationWithSignedIntegerRequestBody" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_minimum_validation_with_signed_integer_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_minimum_validation_with_signed_integer_request_body/post/__init__.py index 89cf6f7711b..5b67d6aa916 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_minimum_validation_with_signed_integer_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_minimum_validation_with_signed_integer_request_body/post/__init__.py @@ -99,7 +99,7 @@ def _post_minimum_validation_with_signed_integer_request_body_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_minimum_validation_with_signed_integer_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_minimum_validation_with_signed_integer_request_body/post/__init__.pyi index e5a259ec847..2be8fdc6631 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_minimum_validation_with_signed_integer_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_minimum_validation_with_signed_integer_request_body/post/__init__.pyi @@ -94,7 +94,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_minitems_validation_request_body/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_minitems_validation_request_body/__init__.py index d4df22e9047..5e028f850bd 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_minitems_validation_request_body/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_minitems_validation_request_body/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.request_body_post_minitems_validation_request_body import Api -from unit_test_api.paths import PathValues - -path = PathValues.REQUEST_BODY_POST_MINITEMS_VALIDATION_REQUEST_BODY \ No newline at end of file +path = "/requestBody/postMinitemsValidationRequestBody" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_minitems_validation_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_minitems_validation_request_body/post/__init__.py index 09a711cf359..1de5af5e7f8 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_minitems_validation_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_minitems_validation_request_body/post/__init__.py @@ -99,7 +99,7 @@ def _post_minitems_validation_request_body_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_minitems_validation_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_minitems_validation_request_body/post/__init__.pyi index 9044d89e9fe..d37962cb1d6 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_minitems_validation_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_minitems_validation_request_body/post/__init__.pyi @@ -94,7 +94,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_minlength_validation_request_body/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_minlength_validation_request_body/__init__.py index b68e6e60ee2..4eeeec06f80 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_minlength_validation_request_body/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_minlength_validation_request_body/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.request_body_post_minlength_validation_request_body import Api -from unit_test_api.paths import PathValues - -path = PathValues.REQUEST_BODY_POST_MINLENGTH_VALIDATION_REQUEST_BODY \ No newline at end of file +path = "/requestBody/postMinlengthValidationRequestBody" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_minlength_validation_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_minlength_validation_request_body/post/__init__.py index f33ef987270..1e66ee47235 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_minlength_validation_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_minlength_validation_request_body/post/__init__.py @@ -99,7 +99,7 @@ def _post_minlength_validation_request_body_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_minlength_validation_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_minlength_validation_request_body/post/__init__.pyi index 1c660628cbc..b55500a71a4 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_minlength_validation_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_minlength_validation_request_body/post/__init__.pyi @@ -94,7 +94,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_minproperties_validation_request_body/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_minproperties_validation_request_body/__init__.py index b76e1db9aae..cd0e002fa1c 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_minproperties_validation_request_body/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_minproperties_validation_request_body/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.request_body_post_minproperties_validation_request_body import Api -from unit_test_api.paths import PathValues - -path = PathValues.REQUEST_BODY_POST_MINPROPERTIES_VALIDATION_REQUEST_BODY \ No newline at end of file +path = "/requestBody/postMinpropertiesValidationRequestBody" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_minproperties_validation_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_minproperties_validation_request_body/post/__init__.py index 0fa54fa9b7a..b97ab1d93fa 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_minproperties_validation_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_minproperties_validation_request_body/post/__init__.py @@ -99,7 +99,7 @@ def _post_minproperties_validation_request_body_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_minproperties_validation_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_minproperties_validation_request_body/post/__init__.pyi index 8e1c07b519d..88f28aa17d1 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_minproperties_validation_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_minproperties_validation_request_body/post/__init__.pyi @@ -94,7 +94,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_nested_allof_to_check_validation_semantics_request_body/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_nested_allof_to_check_validation_semantics_request_body/__init__.py index 6c1f7d73a44..3bc6f08ff8f 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_nested_allof_to_check_validation_semantics_request_body/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_nested_allof_to_check_validation_semantics_request_body/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.request_body_post_nested_allof_to_check_validation_semantics_request_body import Api -from unit_test_api.paths import PathValues - -path = PathValues.REQUEST_BODY_POST_NESTED_ALLOF_TO_CHECK_VALIDATION_SEMANTICS_REQUEST_BODY \ No newline at end of file +path = "/requestBody/postNestedAllofToCheckValidationSemanticsRequestBody" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_nested_allof_to_check_validation_semantics_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_nested_allof_to_check_validation_semantics_request_body/post/__init__.py index 91776687235..a9a044e6ce7 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_nested_allof_to_check_validation_semantics_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_nested_allof_to_check_validation_semantics_request_body/post/__init__.py @@ -99,7 +99,7 @@ def _post_nested_allof_to_check_validation_semantics_request_body_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_nested_allof_to_check_validation_semantics_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_nested_allof_to_check_validation_semantics_request_body/post/__init__.pyi index 4dfb8acd12a..e862b7f116b 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_nested_allof_to_check_validation_semantics_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_nested_allof_to_check_validation_semantics_request_body/post/__init__.pyi @@ -94,7 +94,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_nested_anyof_to_check_validation_semantics_request_body/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_nested_anyof_to_check_validation_semantics_request_body/__init__.py index e7b3408e53d..0a6f4454db2 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_nested_anyof_to_check_validation_semantics_request_body/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_nested_anyof_to_check_validation_semantics_request_body/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.request_body_post_nested_anyof_to_check_validation_semantics_request_body import Api -from unit_test_api.paths import PathValues - -path = PathValues.REQUEST_BODY_POST_NESTED_ANYOF_TO_CHECK_VALIDATION_SEMANTICS_REQUEST_BODY \ No newline at end of file +path = "/requestBody/postNestedAnyofToCheckValidationSemanticsRequestBody" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_nested_anyof_to_check_validation_semantics_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_nested_anyof_to_check_validation_semantics_request_body/post/__init__.py index 0bd416b2a5e..cbd6e37f3ef 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_nested_anyof_to_check_validation_semantics_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_nested_anyof_to_check_validation_semantics_request_body/post/__init__.py @@ -99,7 +99,7 @@ def _post_nested_anyof_to_check_validation_semantics_request_body_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_nested_anyof_to_check_validation_semantics_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_nested_anyof_to_check_validation_semantics_request_body/post/__init__.pyi index 3fc0788a5df..c7417b95adb 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_nested_anyof_to_check_validation_semantics_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_nested_anyof_to_check_validation_semantics_request_body/post/__init__.pyi @@ -94,7 +94,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_nested_items_request_body/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_nested_items_request_body/__init__.py index b38abd53421..0d8ed40a850 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_nested_items_request_body/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_nested_items_request_body/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.request_body_post_nested_items_request_body import Api -from unit_test_api.paths import PathValues - -path = PathValues.REQUEST_BODY_POST_NESTED_ITEMS_REQUEST_BODY \ No newline at end of file +path = "/requestBody/postNestedItemsRequestBody" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_nested_items_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_nested_items_request_body/post/__init__.py index e6b6d87d360..cf9c17aefdc 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_nested_items_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_nested_items_request_body/post/__init__.py @@ -99,7 +99,7 @@ def _post_nested_items_request_body_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_nested_items_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_nested_items_request_body/post/__init__.pyi index 303cc99cbcd..0900c27f835 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_nested_items_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_nested_items_request_body/post/__init__.pyi @@ -94,7 +94,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_nested_oneof_to_check_validation_semantics_request_body/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_nested_oneof_to_check_validation_semantics_request_body/__init__.py index 8a24e9c066c..5b9d6587e65 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_nested_oneof_to_check_validation_semantics_request_body/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_nested_oneof_to_check_validation_semantics_request_body/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.request_body_post_nested_oneof_to_check_validation_semantics_request_body import Api -from unit_test_api.paths import PathValues - -path = PathValues.REQUEST_BODY_POST_NESTED_ONEOF_TO_CHECK_VALIDATION_SEMANTICS_REQUEST_BODY \ No newline at end of file +path = "/requestBody/postNestedOneofToCheckValidationSemanticsRequestBody" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_nested_oneof_to_check_validation_semantics_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_nested_oneof_to_check_validation_semantics_request_body/post/__init__.py index 04984c30a54..b7b25e09d2b 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_nested_oneof_to_check_validation_semantics_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_nested_oneof_to_check_validation_semantics_request_body/post/__init__.py @@ -99,7 +99,7 @@ def _post_nested_oneof_to_check_validation_semantics_request_body_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_nested_oneof_to_check_validation_semantics_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_nested_oneof_to_check_validation_semantics_request_body/post/__init__.pyi index 5d8ee5532f8..ae03307b760 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_nested_oneof_to_check_validation_semantics_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_nested_oneof_to_check_validation_semantics_request_body/post/__init__.pyi @@ -94,7 +94,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_not_more_complex_schema_request_body/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_not_more_complex_schema_request_body/__init__.py index c4fccb535c0..d6ef4a144cf 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_not_more_complex_schema_request_body/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_not_more_complex_schema_request_body/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.request_body_post_not_more_complex_schema_request_body import Api -from unit_test_api.paths import PathValues - -path = PathValues.REQUEST_BODY_POST_NOT_MORE_COMPLEX_SCHEMA_REQUEST_BODY \ No newline at end of file +path = "/requestBody/postNotMoreComplexSchemaRequestBody" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_not_more_complex_schema_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_not_more_complex_schema_request_body/post/__init__.py index a16f7284892..48f393d5ee0 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_not_more_complex_schema_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_not_more_complex_schema_request_body/post/__init__.py @@ -99,7 +99,7 @@ def _post_not_more_complex_schema_request_body_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_not_more_complex_schema_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_not_more_complex_schema_request_body/post/__init__.pyi index c64e27c7848..58fbdb3f001 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_not_more_complex_schema_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_not_more_complex_schema_request_body/post/__init__.pyi @@ -94,7 +94,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_not_request_body/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_not_request_body/__init__.py index f37c1cc913e..ae9397c3659 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_not_request_body/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_not_request_body/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.request_body_post_not_request_body import Api -from unit_test_api.paths import PathValues - -path = PathValues.REQUEST_BODY_POST_NOT_REQUEST_BODY \ No newline at end of file +path = "/requestBody/postNotRequestBody" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_not_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_not_request_body/post/__init__.py index 48c33b466ac..4b7ad26981f 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_not_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_not_request_body/post/__init__.py @@ -99,7 +99,7 @@ def _post_not_request_body_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_not_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_not_request_body/post/__init__.pyi index 7855bd1f8bd..039b1878c37 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_not_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_not_request_body/post/__init__.pyi @@ -94,7 +94,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_nul_characters_in_strings_request_body/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_nul_characters_in_strings_request_body/__init__.py index a6d59aa973d..d5c0ed0d3ec 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_nul_characters_in_strings_request_body/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_nul_characters_in_strings_request_body/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.request_body_post_nul_characters_in_strings_request_body import Api -from unit_test_api.paths import PathValues - -path = PathValues.REQUEST_BODY_POST_NUL_CHARACTERS_IN_STRINGS_REQUEST_BODY \ No newline at end of file +path = "/requestBody/postNulCharactersInStringsRequestBody" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_nul_characters_in_strings_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_nul_characters_in_strings_request_body/post/__init__.py index 8bcc38951bd..e3dc9d57958 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_nul_characters_in_strings_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_nul_characters_in_strings_request_body/post/__init__.py @@ -99,7 +99,7 @@ def _post_nul_characters_in_strings_request_body_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_nul_characters_in_strings_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_nul_characters_in_strings_request_body/post/__init__.pyi index 212e9224a0f..e48ad5167f1 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_nul_characters_in_strings_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_nul_characters_in_strings_request_body/post/__init__.pyi @@ -94,7 +94,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_null_type_matches_only_the_null_object_request_body/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_null_type_matches_only_the_null_object_request_body/__init__.py index c4be57a9447..f57b524ab06 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_null_type_matches_only_the_null_object_request_body/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_null_type_matches_only_the_null_object_request_body/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.request_body_post_null_type_matches_only_the_null_object_request_body import Api -from unit_test_api.paths import PathValues - -path = PathValues.REQUEST_BODY_POST_NULL_TYPE_MATCHES_ONLY_THE_NULL_OBJECT_REQUEST_BODY \ No newline at end of file +path = "/requestBody/postNullTypeMatchesOnlyTheNullObjectRequestBody" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_null_type_matches_only_the_null_object_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_null_type_matches_only_the_null_object_request_body/post/__init__.py index fa28cc3cf10..2178f319982 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_null_type_matches_only_the_null_object_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_null_type_matches_only_the_null_object_request_body/post/__init__.py @@ -99,7 +99,7 @@ def _post_null_type_matches_only_the_null_object_request_body_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_null_type_matches_only_the_null_object_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_null_type_matches_only_the_null_object_request_body/post/__init__.pyi index f07c5f365f9..cdb1b35bc60 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_null_type_matches_only_the_null_object_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_null_type_matches_only_the_null_object_request_body/post/__init__.pyi @@ -94,7 +94,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_number_type_matches_numbers_request_body/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_number_type_matches_numbers_request_body/__init__.py index b95a838eacb..6922204a001 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_number_type_matches_numbers_request_body/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_number_type_matches_numbers_request_body/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.request_body_post_number_type_matches_numbers_request_body import Api -from unit_test_api.paths import PathValues - -path = PathValues.REQUEST_BODY_POST_NUMBER_TYPE_MATCHES_NUMBERS_REQUEST_BODY \ No newline at end of file +path = "/requestBody/postNumberTypeMatchesNumbersRequestBody" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_number_type_matches_numbers_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_number_type_matches_numbers_request_body/post/__init__.py index 1ae10057a1f..68e2a7f3021 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_number_type_matches_numbers_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_number_type_matches_numbers_request_body/post/__init__.py @@ -99,7 +99,7 @@ def _post_number_type_matches_numbers_request_body_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_number_type_matches_numbers_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_number_type_matches_numbers_request_body/post/__init__.pyi index c2655424bd9..f495d5a7952 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_number_type_matches_numbers_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_number_type_matches_numbers_request_body/post/__init__.pyi @@ -94,7 +94,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_object_properties_validation_request_body/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_object_properties_validation_request_body/__init__.py index d7d33f2aef2..7ce073dae45 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_object_properties_validation_request_body/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_object_properties_validation_request_body/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.request_body_post_object_properties_validation_request_body import Api -from unit_test_api.paths import PathValues - -path = PathValues.REQUEST_BODY_POST_OBJECT_PROPERTIES_VALIDATION_REQUEST_BODY \ No newline at end of file +path = "/requestBody/postObjectPropertiesValidationRequestBody" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_object_properties_validation_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_object_properties_validation_request_body/post/__init__.py index 252763b6b55..5aa6a27806e 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_object_properties_validation_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_object_properties_validation_request_body/post/__init__.py @@ -99,7 +99,7 @@ def _post_object_properties_validation_request_body_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_object_properties_validation_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_object_properties_validation_request_body/post/__init__.pyi index 67ef3f50f9b..b74389a38bd 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_object_properties_validation_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_object_properties_validation_request_body/post/__init__.pyi @@ -94,7 +94,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_object_type_matches_objects_request_body/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_object_type_matches_objects_request_body/__init__.py index d125b30a97e..d169571f8bc 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_object_type_matches_objects_request_body/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_object_type_matches_objects_request_body/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.request_body_post_object_type_matches_objects_request_body import Api -from unit_test_api.paths import PathValues - -path = PathValues.REQUEST_BODY_POST_OBJECT_TYPE_MATCHES_OBJECTS_REQUEST_BODY \ No newline at end of file +path = "/requestBody/postObjectTypeMatchesObjectsRequestBody" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_object_type_matches_objects_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_object_type_matches_objects_request_body/post/__init__.py index ea15c894c8c..40cd7685f99 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_object_type_matches_objects_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_object_type_matches_objects_request_body/post/__init__.py @@ -99,7 +99,7 @@ def _post_object_type_matches_objects_request_body_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_object_type_matches_objects_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_object_type_matches_objects_request_body/post/__init__.pyi index 47adeb3b0ec..047091ea9c2 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_object_type_matches_objects_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_object_type_matches_objects_request_body/post/__init__.pyi @@ -94,7 +94,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_oneof_complex_types_request_body/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_oneof_complex_types_request_body/__init__.py index 1b089b411fd..8b6ddf94bcf 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_oneof_complex_types_request_body/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_oneof_complex_types_request_body/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.request_body_post_oneof_complex_types_request_body import Api -from unit_test_api.paths import PathValues - -path = PathValues.REQUEST_BODY_POST_ONEOF_COMPLEX_TYPES_REQUEST_BODY \ No newline at end of file +path = "/requestBody/postOneofComplexTypesRequestBody" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_oneof_complex_types_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_oneof_complex_types_request_body/post/__init__.py index ed27d0d0010..f3ecfcb58af 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_oneof_complex_types_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_oneof_complex_types_request_body/post/__init__.py @@ -99,7 +99,7 @@ def _post_oneof_complex_types_request_body_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_oneof_complex_types_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_oneof_complex_types_request_body/post/__init__.pyi index 3452162acab..d39165de385 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_oneof_complex_types_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_oneof_complex_types_request_body/post/__init__.pyi @@ -94,7 +94,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_oneof_request_body/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_oneof_request_body/__init__.py index c19aa40ea94..273638b626f 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_oneof_request_body/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_oneof_request_body/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.request_body_post_oneof_request_body import Api -from unit_test_api.paths import PathValues - -path = PathValues.REQUEST_BODY_POST_ONEOF_REQUEST_BODY \ No newline at end of file +path = "/requestBody/postOneofRequestBody" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_oneof_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_oneof_request_body/post/__init__.py index 18cbce665a5..1877f6da4d9 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_oneof_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_oneof_request_body/post/__init__.py @@ -99,7 +99,7 @@ def _post_oneof_request_body_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_oneof_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_oneof_request_body/post/__init__.pyi index 017d6511e57..42a1e9bf26d 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_oneof_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_oneof_request_body/post/__init__.pyi @@ -94,7 +94,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_oneof_with_base_schema_request_body/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_oneof_with_base_schema_request_body/__init__.py index 605ed77fbeb..580cfe8ea76 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_oneof_with_base_schema_request_body/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_oneof_with_base_schema_request_body/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.request_body_post_oneof_with_base_schema_request_body import Api -from unit_test_api.paths import PathValues - -path = PathValues.REQUEST_BODY_POST_ONEOF_WITH_BASE_SCHEMA_REQUEST_BODY \ No newline at end of file +path = "/requestBody/postOneofWithBaseSchemaRequestBody" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_oneof_with_base_schema_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_oneof_with_base_schema_request_body/post/__init__.py index 3e909b08cfe..1f3b3963f83 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_oneof_with_base_schema_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_oneof_with_base_schema_request_body/post/__init__.py @@ -99,7 +99,7 @@ def _post_oneof_with_base_schema_request_body_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_oneof_with_base_schema_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_oneof_with_base_schema_request_body/post/__init__.pyi index e0f894eba36..279b69c59e1 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_oneof_with_base_schema_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_oneof_with_base_schema_request_body/post/__init__.pyi @@ -94,7 +94,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_oneof_with_empty_schema_request_body/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_oneof_with_empty_schema_request_body/__init__.py index ba897616f78..dfc47de5cb5 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_oneof_with_empty_schema_request_body/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_oneof_with_empty_schema_request_body/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.request_body_post_oneof_with_empty_schema_request_body import Api -from unit_test_api.paths import PathValues - -path = PathValues.REQUEST_BODY_POST_ONEOF_WITH_EMPTY_SCHEMA_REQUEST_BODY \ No newline at end of file +path = "/requestBody/postOneofWithEmptySchemaRequestBody" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_oneof_with_empty_schema_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_oneof_with_empty_schema_request_body/post/__init__.py index 8591b61f04f..c306179b3cc 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_oneof_with_empty_schema_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_oneof_with_empty_schema_request_body/post/__init__.py @@ -99,7 +99,7 @@ def _post_oneof_with_empty_schema_request_body_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_oneof_with_empty_schema_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_oneof_with_empty_schema_request_body/post/__init__.pyi index 1d06cf179cf..7213cb5bf9e 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_oneof_with_empty_schema_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_oneof_with_empty_schema_request_body/post/__init__.pyi @@ -94,7 +94,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_oneof_with_required_request_body/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_oneof_with_required_request_body/__init__.py index 748f67c50b3..117a78b85fa 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_oneof_with_required_request_body/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_oneof_with_required_request_body/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.request_body_post_oneof_with_required_request_body import Api -from unit_test_api.paths import PathValues - -path = PathValues.REQUEST_BODY_POST_ONEOF_WITH_REQUIRED_REQUEST_BODY \ No newline at end of file +path = "/requestBody/postOneofWithRequiredRequestBody" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_oneof_with_required_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_oneof_with_required_request_body/post/__init__.py index f4b37d902e0..b162c3d2f7b 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_oneof_with_required_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_oneof_with_required_request_body/post/__init__.py @@ -99,7 +99,7 @@ def _post_oneof_with_required_request_body_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_oneof_with_required_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_oneof_with_required_request_body/post/__init__.pyi index 47cfb18975b..8bba1ed0af0 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_oneof_with_required_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_oneof_with_required_request_body/post/__init__.pyi @@ -94,7 +94,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_pattern_is_not_anchored_request_body/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_pattern_is_not_anchored_request_body/__init__.py index 30f8d5d82d9..9023134f165 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_pattern_is_not_anchored_request_body/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_pattern_is_not_anchored_request_body/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.request_body_post_pattern_is_not_anchored_request_body import Api -from unit_test_api.paths import PathValues - -path = PathValues.REQUEST_BODY_POST_PATTERN_IS_NOT_ANCHORED_REQUEST_BODY \ No newline at end of file +path = "/requestBody/postPatternIsNotAnchoredRequestBody" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_pattern_is_not_anchored_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_pattern_is_not_anchored_request_body/post/__init__.py index 06e115cf491..f967ad213b7 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_pattern_is_not_anchored_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_pattern_is_not_anchored_request_body/post/__init__.py @@ -99,7 +99,7 @@ def _post_pattern_is_not_anchored_request_body_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_pattern_is_not_anchored_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_pattern_is_not_anchored_request_body/post/__init__.pyi index b36ed2595ff..49d4f96a6b3 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_pattern_is_not_anchored_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_pattern_is_not_anchored_request_body/post/__init__.pyi @@ -94,7 +94,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_pattern_validation_request_body/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_pattern_validation_request_body/__init__.py index 9f48e004c50..76d643a0876 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_pattern_validation_request_body/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_pattern_validation_request_body/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.request_body_post_pattern_validation_request_body import Api -from unit_test_api.paths import PathValues - -path = PathValues.REQUEST_BODY_POST_PATTERN_VALIDATION_REQUEST_BODY \ No newline at end of file +path = "/requestBody/postPatternValidationRequestBody" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_pattern_validation_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_pattern_validation_request_body/post/__init__.py index 052fb51d1b3..e471efdaa87 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_pattern_validation_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_pattern_validation_request_body/post/__init__.py @@ -99,7 +99,7 @@ def _post_pattern_validation_request_body_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_pattern_validation_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_pattern_validation_request_body/post/__init__.pyi index a1bebb9c9dd..0e816efc955 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_pattern_validation_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_pattern_validation_request_body/post/__init__.pyi @@ -94,7 +94,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_properties_with_escaped_characters_request_body/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_properties_with_escaped_characters_request_body/__init__.py index 0191726a9df..b0aaf29638b 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_properties_with_escaped_characters_request_body/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_properties_with_escaped_characters_request_body/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.request_body_post_properties_with_escaped_characters_request_body import Api -from unit_test_api.paths import PathValues - -path = PathValues.REQUEST_BODY_POST_PROPERTIES_WITH_ESCAPED_CHARACTERS_REQUEST_BODY \ No newline at end of file +path = "/requestBody/postPropertiesWithEscapedCharactersRequestBody" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_properties_with_escaped_characters_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_properties_with_escaped_characters_request_body/post/__init__.py index 1cf995f0eec..a887ee452eb 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_properties_with_escaped_characters_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_properties_with_escaped_characters_request_body/post/__init__.py @@ -99,7 +99,7 @@ def _post_properties_with_escaped_characters_request_body_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_properties_with_escaped_characters_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_properties_with_escaped_characters_request_body/post/__init__.pyi index d03fe114b5d..bc34929e9d5 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_properties_with_escaped_characters_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_properties_with_escaped_characters_request_body/post/__init__.pyi @@ -94,7 +94,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_property_named_ref_that_is_not_a_reference_request_body/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_property_named_ref_that_is_not_a_reference_request_body/__init__.py index d75d1defcf2..49bf3b52d2b 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_property_named_ref_that_is_not_a_reference_request_body/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_property_named_ref_that_is_not_a_reference_request_body/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.request_body_post_property_named_ref_that_is_not_a_reference_request_body import Api -from unit_test_api.paths import PathValues - -path = PathValues.REQUEST_BODY_POST_PROPERTY_NAMED_REF_THAT_IS_NOT_AREFERENCE_REQUEST_BODY \ No newline at end of file +path = "/requestBody/postPropertyNamedRefThatIsNotAReferenceRequestBody" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_property_named_ref_that_is_not_a_reference_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_property_named_ref_that_is_not_a_reference_request_body/post/__init__.py index 952183d36aa..f3afc02c678 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_property_named_ref_that_is_not_a_reference_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_property_named_ref_that_is_not_a_reference_request_body/post/__init__.py @@ -99,7 +99,7 @@ def _post_property_named_ref_that_is_not_a_reference_request_body_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_property_named_ref_that_is_not_a_reference_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_property_named_ref_that_is_not_a_reference_request_body/post/__init__.pyi index ea3f9925b69..ed046a68812 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_property_named_ref_that_is_not_a_reference_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_property_named_ref_that_is_not_a_reference_request_body/post/__init__.pyi @@ -94,7 +94,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ref_in_additionalproperties_request_body/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ref_in_additionalproperties_request_body/__init__.py index 39685b68077..a60f57bb5ff 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ref_in_additionalproperties_request_body/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ref_in_additionalproperties_request_body/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.request_body_post_ref_in_additionalproperties_request_body import Api -from unit_test_api.paths import PathValues - -path = PathValues.REQUEST_BODY_POST_REF_IN_ADDITIONALPROPERTIES_REQUEST_BODY \ No newline at end of file +path = "/requestBody/postRefInAdditionalpropertiesRequestBody" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ref_in_additionalproperties_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ref_in_additionalproperties_request_body/post/__init__.py index 84bd85f8749..5299961db0a 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ref_in_additionalproperties_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ref_in_additionalproperties_request_body/post/__init__.py @@ -99,7 +99,7 @@ def _post_ref_in_additionalproperties_request_body_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ref_in_additionalproperties_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ref_in_additionalproperties_request_body/post/__init__.pyi index e63da57e636..69c7aabe6ec 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ref_in_additionalproperties_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ref_in_additionalproperties_request_body/post/__init__.pyi @@ -94,7 +94,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ref_in_allof_request_body/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ref_in_allof_request_body/__init__.py index 6865649fc91..3e280c4b789 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ref_in_allof_request_body/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ref_in_allof_request_body/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.request_body_post_ref_in_allof_request_body import Api -from unit_test_api.paths import PathValues - -path = PathValues.REQUEST_BODY_POST_REF_IN_ALLOF_REQUEST_BODY \ No newline at end of file +path = "/requestBody/postRefInAllofRequestBody" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ref_in_allof_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ref_in_allof_request_body/post/__init__.py index cb451486b04..56ed24a0490 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ref_in_allof_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ref_in_allof_request_body/post/__init__.py @@ -99,7 +99,7 @@ def _post_ref_in_allof_request_body_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ref_in_allof_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ref_in_allof_request_body/post/__init__.pyi index 4b0cfe2bc72..52a3db58060 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ref_in_allof_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ref_in_allof_request_body/post/__init__.pyi @@ -94,7 +94,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ref_in_anyof_request_body/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ref_in_anyof_request_body/__init__.py index 9eff1a1046b..719ce0257be 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ref_in_anyof_request_body/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ref_in_anyof_request_body/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.request_body_post_ref_in_anyof_request_body import Api -from unit_test_api.paths import PathValues - -path = PathValues.REQUEST_BODY_POST_REF_IN_ANYOF_REQUEST_BODY \ No newline at end of file +path = "/requestBody/postRefInAnyofRequestBody" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ref_in_anyof_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ref_in_anyof_request_body/post/__init__.py index 5dee2eeae27..fc65f2844dd 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ref_in_anyof_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ref_in_anyof_request_body/post/__init__.py @@ -99,7 +99,7 @@ def _post_ref_in_anyof_request_body_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ref_in_anyof_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ref_in_anyof_request_body/post/__init__.pyi index daf56d7a0e1..18a8b045254 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ref_in_anyof_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ref_in_anyof_request_body/post/__init__.pyi @@ -94,7 +94,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ref_in_items_request_body/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ref_in_items_request_body/__init__.py index cfe5fc1bdef..2d7e44dd9e4 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ref_in_items_request_body/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ref_in_items_request_body/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.request_body_post_ref_in_items_request_body import Api -from unit_test_api.paths import PathValues - -path = PathValues.REQUEST_BODY_POST_REF_IN_ITEMS_REQUEST_BODY \ No newline at end of file +path = "/requestBody/postRefInItemsRequestBody" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ref_in_items_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ref_in_items_request_body/post/__init__.py index 077b44b80f7..6cd314a773f 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ref_in_items_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ref_in_items_request_body/post/__init__.py @@ -99,7 +99,7 @@ def _post_ref_in_items_request_body_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ref_in_items_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ref_in_items_request_body/post/__init__.pyi index 51fa0d87f98..7fdbdd50355 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ref_in_items_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ref_in_items_request_body/post/__init__.pyi @@ -94,7 +94,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ref_in_not_request_body/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ref_in_not_request_body/__init__.py index 3d3ad62339f..58d29099093 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ref_in_not_request_body/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ref_in_not_request_body/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.request_body_post_ref_in_not_request_body import Api -from unit_test_api.paths import PathValues - -path = PathValues.REQUEST_BODY_POST_REF_IN_NOT_REQUEST_BODY \ No newline at end of file +path = "/requestBody/postRefInNotRequestBody" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ref_in_not_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ref_in_not_request_body/post/__init__.py index e0823e396b2..bbf30e3725d 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ref_in_not_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ref_in_not_request_body/post/__init__.py @@ -99,7 +99,7 @@ def _post_ref_in_not_request_body_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ref_in_not_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ref_in_not_request_body/post/__init__.pyi index 94943f41c00..9696f3db660 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ref_in_not_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ref_in_not_request_body/post/__init__.pyi @@ -94,7 +94,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ref_in_oneof_request_body/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ref_in_oneof_request_body/__init__.py index 3cf7e2dfb0e..1f18e67b1fa 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ref_in_oneof_request_body/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ref_in_oneof_request_body/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.request_body_post_ref_in_oneof_request_body import Api -from unit_test_api.paths import PathValues - -path = PathValues.REQUEST_BODY_POST_REF_IN_ONEOF_REQUEST_BODY \ No newline at end of file +path = "/requestBody/postRefInOneofRequestBody" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ref_in_oneof_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ref_in_oneof_request_body/post/__init__.py index db7ac62e29a..d6d9f4c7316 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ref_in_oneof_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ref_in_oneof_request_body/post/__init__.py @@ -99,7 +99,7 @@ def _post_ref_in_oneof_request_body_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ref_in_oneof_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ref_in_oneof_request_body/post/__init__.pyi index a49b1754246..aec62dd5439 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ref_in_oneof_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ref_in_oneof_request_body/post/__init__.pyi @@ -94,7 +94,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ref_in_property_request_body/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ref_in_property_request_body/__init__.py index e5315940008..b5d4c93facb 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ref_in_property_request_body/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ref_in_property_request_body/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.request_body_post_ref_in_property_request_body import Api -from unit_test_api.paths import PathValues - -path = PathValues.REQUEST_BODY_POST_REF_IN_PROPERTY_REQUEST_BODY \ No newline at end of file +path = "/requestBody/postRefInPropertyRequestBody" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ref_in_property_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ref_in_property_request_body/post/__init__.py index 7dd3b4a9727..b4b8b6bdf61 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ref_in_property_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ref_in_property_request_body/post/__init__.py @@ -99,7 +99,7 @@ def _post_ref_in_property_request_body_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ref_in_property_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ref_in_property_request_body/post/__init__.pyi index 2fe668e0f0b..29eabd380df 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ref_in_property_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_ref_in_property_request_body/post/__init__.pyi @@ -94,7 +94,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_required_default_validation_request_body/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_required_default_validation_request_body/__init__.py index c281e13df0f..40d15faccdb 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_required_default_validation_request_body/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_required_default_validation_request_body/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.request_body_post_required_default_validation_request_body import Api -from unit_test_api.paths import PathValues - -path = PathValues.REQUEST_BODY_POST_REQUIRED_DEFAULT_VALIDATION_REQUEST_BODY \ No newline at end of file +path = "/requestBody/postRequiredDefaultValidationRequestBody" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_required_default_validation_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_required_default_validation_request_body/post/__init__.py index 89a8d9f323f..72da1b31a09 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_required_default_validation_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_required_default_validation_request_body/post/__init__.py @@ -99,7 +99,7 @@ def _post_required_default_validation_request_body_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_required_default_validation_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_required_default_validation_request_body/post/__init__.pyi index 3cf08af4412..ca68d7b5839 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_required_default_validation_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_required_default_validation_request_body/post/__init__.pyi @@ -94,7 +94,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_required_validation_request_body/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_required_validation_request_body/__init__.py index 64140f0c884..c08ca3c2a2f 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_required_validation_request_body/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_required_validation_request_body/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.request_body_post_required_validation_request_body import Api -from unit_test_api.paths import PathValues - -path = PathValues.REQUEST_BODY_POST_REQUIRED_VALIDATION_REQUEST_BODY \ No newline at end of file +path = "/requestBody/postRequiredValidationRequestBody" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_required_validation_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_required_validation_request_body/post/__init__.py index 8a0e21e6e48..1e4c8d35a0c 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_required_validation_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_required_validation_request_body/post/__init__.py @@ -99,7 +99,7 @@ def _post_required_validation_request_body_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_required_validation_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_required_validation_request_body/post/__init__.pyi index a819557ad26..dd6f285a291 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_required_validation_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_required_validation_request_body/post/__init__.pyi @@ -94,7 +94,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_required_with_empty_array_request_body/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_required_with_empty_array_request_body/__init__.py index 2b789e16f48..02969f35b6b 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_required_with_empty_array_request_body/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_required_with_empty_array_request_body/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.request_body_post_required_with_empty_array_request_body import Api -from unit_test_api.paths import PathValues - -path = PathValues.REQUEST_BODY_POST_REQUIRED_WITH_EMPTY_ARRAY_REQUEST_BODY \ No newline at end of file +path = "/requestBody/postRequiredWithEmptyArrayRequestBody" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_required_with_empty_array_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_required_with_empty_array_request_body/post/__init__.py index 0a9af7b55f8..f2b5123e18e 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_required_with_empty_array_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_required_with_empty_array_request_body/post/__init__.py @@ -99,7 +99,7 @@ def _post_required_with_empty_array_request_body_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_required_with_empty_array_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_required_with_empty_array_request_body/post/__init__.pyi index ab62a6f5013..5b066904c6e 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_required_with_empty_array_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_required_with_empty_array_request_body/post/__init__.pyi @@ -94,7 +94,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_required_with_escaped_characters_request_body/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_required_with_escaped_characters_request_body/__init__.py index 84963ff8819..0d079fec768 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_required_with_escaped_characters_request_body/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_required_with_escaped_characters_request_body/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.request_body_post_required_with_escaped_characters_request_body import Api -from unit_test_api.paths import PathValues - -path = PathValues.REQUEST_BODY_POST_REQUIRED_WITH_ESCAPED_CHARACTERS_REQUEST_BODY \ No newline at end of file +path = "/requestBody/postRequiredWithEscapedCharactersRequestBody" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_required_with_escaped_characters_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_required_with_escaped_characters_request_body/post/__init__.py index e20071f6dd3..65bd68b886b 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_required_with_escaped_characters_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_required_with_escaped_characters_request_body/post/__init__.py @@ -99,7 +99,7 @@ def _post_required_with_escaped_characters_request_body_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_required_with_escaped_characters_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_required_with_escaped_characters_request_body/post/__init__.pyi index 3c85d025aa0..8600ee74ed4 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_required_with_escaped_characters_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_required_with_escaped_characters_request_body/post/__init__.pyi @@ -94,7 +94,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_simple_enum_validation_request_body/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_simple_enum_validation_request_body/__init__.py index 9fbc857f5ff..805ac0f04d1 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_simple_enum_validation_request_body/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_simple_enum_validation_request_body/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.request_body_post_simple_enum_validation_request_body import Api -from unit_test_api.paths import PathValues - -path = PathValues.REQUEST_BODY_POST_SIMPLE_ENUM_VALIDATION_REQUEST_BODY \ No newline at end of file +path = "/requestBody/postSimpleEnumValidationRequestBody" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_simple_enum_validation_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_simple_enum_validation_request_body/post/__init__.py index 02c20e2a065..0930c16b049 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_simple_enum_validation_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_simple_enum_validation_request_body/post/__init__.py @@ -99,7 +99,7 @@ def _post_simple_enum_validation_request_body_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_simple_enum_validation_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_simple_enum_validation_request_body/post/__init__.pyi index 42053027bca..3c57bcb35a9 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_simple_enum_validation_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_simple_enum_validation_request_body/post/__init__.pyi @@ -94,7 +94,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_string_type_matches_strings_request_body/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_string_type_matches_strings_request_body/__init__.py index a5975daf716..849980ab589 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_string_type_matches_strings_request_body/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_string_type_matches_strings_request_body/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.request_body_post_string_type_matches_strings_request_body import Api -from unit_test_api.paths import PathValues - -path = PathValues.REQUEST_BODY_POST_STRING_TYPE_MATCHES_STRINGS_REQUEST_BODY \ No newline at end of file +path = "/requestBody/postStringTypeMatchesStringsRequestBody" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_string_type_matches_strings_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_string_type_matches_strings_request_body/post/__init__.py index 9a4e4485fa5..974d2db3dec 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_string_type_matches_strings_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_string_type_matches_strings_request_body/post/__init__.py @@ -99,7 +99,7 @@ def _post_string_type_matches_strings_request_body_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_string_type_matches_strings_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_string_type_matches_strings_request_body/post/__init__.pyi index 19810d42efc..6472cb90291 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_string_type_matches_strings_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_string_type_matches_strings_request_body/post/__init__.pyi @@ -94,7 +94,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_the_default_keyword_does_not_do_anything_if_the_property_is_missing_request_body/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_the_default_keyword_does_not_do_anything_if_the_property_is_missing_request_body/__init__.py index 19bb1f267e9..92112f1fccc 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_the_default_keyword_does_not_do_anything_if_the_property_is_missing_request_body/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_the_default_keyword_does_not_do_anything_if_the_property_is_missing_request_body/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.request_body_post_the_default_keyword_does_not_do_anything_if_the_property_is_missing_request_body import Api -from unit_test_api.paths import PathValues - -path = PathValues.REQUEST_BODY_POST_THE_DEFAULT_KEYWORD_DOES_NOT_DO_ANYTHING_IF_THE_PROPERTY_IS_MISSING_REQUEST_BODY \ No newline at end of file +path = "/requestBody/postTheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissingRequestBody" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_the_default_keyword_does_not_do_anything_if_the_property_is_missing_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_the_default_keyword_does_not_do_anything_if_the_property_is_missing_request_body/post/__init__.py index 921ade3dbe8..b104a6d74f5 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_the_default_keyword_does_not_do_anything_if_the_property_is_missing_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_the_default_keyword_does_not_do_anything_if_the_property_is_missing_request_body/post/__init__.py @@ -99,7 +99,7 @@ def _post_the_default_keyword_does_not_do_anything_if_the_property_is_missing_re api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_the_default_keyword_does_not_do_anything_if_the_property_is_missing_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_the_default_keyword_does_not_do_anything_if_the_property_is_missing_request_body/post/__init__.pyi index 3eafa7b8b1c..085cf6d6ff0 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_the_default_keyword_does_not_do_anything_if_the_property_is_missing_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_the_default_keyword_does_not_do_anything_if_the_property_is_missing_request_body/post/__init__.pyi @@ -94,7 +94,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_uniqueitems_false_validation_request_body/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_uniqueitems_false_validation_request_body/__init__.py index cfdcae95f6c..9f629e204fb 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_uniqueitems_false_validation_request_body/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_uniqueitems_false_validation_request_body/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.request_body_post_uniqueitems_false_validation_request_body import Api -from unit_test_api.paths import PathValues - -path = PathValues.REQUEST_BODY_POST_UNIQUEITEMS_FALSE_VALIDATION_REQUEST_BODY \ No newline at end of file +path = "/requestBody/postUniqueitemsFalseValidationRequestBody" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_uniqueitems_false_validation_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_uniqueitems_false_validation_request_body/post/__init__.py index b6e0502629d..04523057b2b 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_uniqueitems_false_validation_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_uniqueitems_false_validation_request_body/post/__init__.py @@ -99,7 +99,7 @@ def _post_uniqueitems_false_validation_request_body_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_uniqueitems_false_validation_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_uniqueitems_false_validation_request_body/post/__init__.pyi index 08b8ca60390..fb68d5343ee 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_uniqueitems_false_validation_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_uniqueitems_false_validation_request_body/post/__init__.pyi @@ -94,7 +94,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_uniqueitems_validation_request_body/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_uniqueitems_validation_request_body/__init__.py index e3afc7776c9..7102236b672 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_uniqueitems_validation_request_body/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_uniqueitems_validation_request_body/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.request_body_post_uniqueitems_validation_request_body import Api -from unit_test_api.paths import PathValues - -path = PathValues.REQUEST_BODY_POST_UNIQUEITEMS_VALIDATION_REQUEST_BODY \ No newline at end of file +path = "/requestBody/postUniqueitemsValidationRequestBody" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_uniqueitems_validation_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_uniqueitems_validation_request_body/post/__init__.py index e8aef3dbbf5..2b85b675435 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_uniqueitems_validation_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_uniqueitems_validation_request_body/post/__init__.py @@ -99,7 +99,7 @@ def _post_uniqueitems_validation_request_body_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_uniqueitems_validation_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_uniqueitems_validation_request_body/post/__init__.pyi index ca524a2f807..01a5fa6a5a1 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_uniqueitems_validation_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_uniqueitems_validation_request_body/post/__init__.pyi @@ -94,7 +94,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_uri_format_request_body/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_uri_format_request_body/__init__.py index 8b7bbf53e8f..cd4d1c4a9af 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_uri_format_request_body/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_uri_format_request_body/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.request_body_post_uri_format_request_body import Api -from unit_test_api.paths import PathValues - -path = PathValues.REQUEST_BODY_POST_URI_FORMAT_REQUEST_BODY \ No newline at end of file +path = "/requestBody/postUriFormatRequestBody" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_uri_format_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_uri_format_request_body/post/__init__.py index 1e201ce6cd2..e16eea95e3c 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_uri_format_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_uri_format_request_body/post/__init__.py @@ -99,7 +99,7 @@ def _post_uri_format_request_body_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_uri_format_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_uri_format_request_body/post/__init__.pyi index e7634b78366..cedc85272e1 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_uri_format_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_uri_format_request_body/post/__init__.pyi @@ -94,7 +94,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_uri_reference_format_request_body/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_uri_reference_format_request_body/__init__.py index 75781edad7c..7ab6e744e53 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_uri_reference_format_request_body/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_uri_reference_format_request_body/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.request_body_post_uri_reference_format_request_body import Api -from unit_test_api.paths import PathValues - -path = PathValues.REQUEST_BODY_POST_URI_REFERENCE_FORMAT_REQUEST_BODY \ No newline at end of file +path = "/requestBody/postUriReferenceFormatRequestBody" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_uri_reference_format_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_uri_reference_format_request_body/post/__init__.py index 51ff5f67acb..69125cddb96 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_uri_reference_format_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_uri_reference_format_request_body/post/__init__.py @@ -99,7 +99,7 @@ def _post_uri_reference_format_request_body_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_uri_reference_format_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_uri_reference_format_request_body/post/__init__.pyi index 6a6bb3589d1..f257bb340ea 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_uri_reference_format_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_uri_reference_format_request_body/post/__init__.pyi @@ -94,7 +94,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_uri_template_format_request_body/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_uri_template_format_request_body/__init__.py index 5c3430004e2..a0dc0083c27 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_uri_template_format_request_body/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_uri_template_format_request_body/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.request_body_post_uri_template_format_request_body import Api -from unit_test_api.paths import PathValues - -path = PathValues.REQUEST_BODY_POST_URI_TEMPLATE_FORMAT_REQUEST_BODY \ No newline at end of file +path = "/requestBody/postUriTemplateFormatRequestBody" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_uri_template_format_request_body/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_uri_template_format_request_body/post/__init__.py index d9f164d8f35..316e7044a8f 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_uri_template_format_request_body/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_uri_template_format_request_body/post/__init__.py @@ -99,7 +99,7 @@ def _post_uri_template_format_request_body_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_uri_template_format_request_body/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_uri_template_format_request_body/post/__init__.pyi index 16a04e61519..4a6cfa08227 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_uri_template_format_request_body/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/request_body_post_uri_template_format_request_body/post/__init__.pyi @@ -94,7 +94,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_additionalproperties_allows_a_schema_which_should_validate_response_body_for_content_types/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_additionalproperties_allows_a_schema_which_should_validate_response_body_for_content_types/__init__.py index 952a3a37816..4e20fc244a5 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_additionalproperties_allows_a_schema_which_should_validate_response_body_for_content_types/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_additionalproperties_allows_a_schema_which_should_validate_response_body_for_content_types/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.response_body_post_additionalproperties_allows_a_schema_which_should_validate_response_body_for_content_types import Api -from unit_test_api.paths import PathValues - -path = PathValues.RESPONSE_BODY_POST_ADDITIONALPROPERTIES_ALLOWS_ASCHEMA_WHICH_SHOULD_VALIDATE_RESPONSE_BODY_FOR_CONTENT_TYPES \ No newline at end of file +path = "/responseBody/postAdditionalpropertiesAllowsASchemaWhichShouldValidateResponseBodyForContentTypes" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_additionalproperties_allows_a_schema_which_should_validate_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_additionalproperties_allows_a_schema_which_should_validate_response_body_for_content_types/post/__init__.py index 80463b6c572..0689338d4f4 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_additionalproperties_allows_a_schema_which_should_validate_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_additionalproperties_allows_a_schema_which_should_validate_response_body_for_content_types/post/__init__.py @@ -82,7 +82,7 @@ def _post_additionalproperties_allows_a_schema_which_should_validate_response_bo api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_additionalproperties_allows_a_schema_which_should_validate_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_additionalproperties_allows_a_schema_which_should_validate_response_body_for_content_types/post/__init__.pyi index 9d4ff122b65..17e89eed978 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_additionalproperties_allows_a_schema_which_should_validate_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_additionalproperties_allows_a_schema_which_should_validate_response_body_for_content_types/post/__init__.pyi @@ -77,7 +77,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_additionalproperties_are_allowed_by_default_response_body_for_content_types/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_additionalproperties_are_allowed_by_default_response_body_for_content_types/__init__.py index 8ba816b84c7..cf18171313a 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_additionalproperties_are_allowed_by_default_response_body_for_content_types/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_additionalproperties_are_allowed_by_default_response_body_for_content_types/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.response_body_post_additionalproperties_are_allowed_by_default_response_body_for_content_types import Api -from unit_test_api.paths import PathValues - -path = PathValues.RESPONSE_BODY_POST_ADDITIONALPROPERTIES_ARE_ALLOWED_BY_DEFAULT_RESPONSE_BODY_FOR_CONTENT_TYPES \ No newline at end of file +path = "/responseBody/postAdditionalpropertiesAreAllowedByDefaultResponseBodyForContentTypes" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_additionalproperties_are_allowed_by_default_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_additionalproperties_are_allowed_by_default_response_body_for_content_types/post/__init__.py index 8971cc0666c..1fe93ec7342 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_additionalproperties_are_allowed_by_default_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_additionalproperties_are_allowed_by_default_response_body_for_content_types/post/__init__.py @@ -82,7 +82,7 @@ def _post_additionalproperties_are_allowed_by_default_response_body_for_content_ api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_additionalproperties_are_allowed_by_default_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_additionalproperties_are_allowed_by_default_response_body_for_content_types/post/__init__.pyi index f6d93012190..36b839a18ce 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_additionalproperties_are_allowed_by_default_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_additionalproperties_are_allowed_by_default_response_body_for_content_types/post/__init__.pyi @@ -77,7 +77,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_additionalproperties_can_exist_by_itself_response_body_for_content_types/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_additionalproperties_can_exist_by_itself_response_body_for_content_types/__init__.py index 2c17dfc57e3..f847a61444e 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_additionalproperties_can_exist_by_itself_response_body_for_content_types/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_additionalproperties_can_exist_by_itself_response_body_for_content_types/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.response_body_post_additionalproperties_can_exist_by_itself_response_body_for_content_types import Api -from unit_test_api.paths import PathValues - -path = PathValues.RESPONSE_BODY_POST_ADDITIONALPROPERTIES_CAN_EXIST_BY_ITSELF_RESPONSE_BODY_FOR_CONTENT_TYPES \ No newline at end of file +path = "/responseBody/postAdditionalpropertiesCanExistByItselfResponseBodyForContentTypes" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_additionalproperties_can_exist_by_itself_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_additionalproperties_can_exist_by_itself_response_body_for_content_types/post/__init__.py index cd1ed4c3ef7..348c7496882 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_additionalproperties_can_exist_by_itself_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_additionalproperties_can_exist_by_itself_response_body_for_content_types/post/__init__.py @@ -82,7 +82,7 @@ def _post_additionalproperties_can_exist_by_itself_response_body_for_content_typ api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_additionalproperties_can_exist_by_itself_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_additionalproperties_can_exist_by_itself_response_body_for_content_types/post/__init__.pyi index cf307c760c0..7873802b4e1 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_additionalproperties_can_exist_by_itself_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_additionalproperties_can_exist_by_itself_response_body_for_content_types/post/__init__.pyi @@ -77,7 +77,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_additionalproperties_should_not_look_in_applicators_response_body_for_content_types/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_additionalproperties_should_not_look_in_applicators_response_body_for_content_types/__init__.py index 91245978b9f..2f8e78b73be 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_additionalproperties_should_not_look_in_applicators_response_body_for_content_types/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_additionalproperties_should_not_look_in_applicators_response_body_for_content_types/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.response_body_post_additionalproperties_should_not_look_in_applicators_response_body_for_content_types import Api -from unit_test_api.paths import PathValues - -path = PathValues.RESPONSE_BODY_POST_ADDITIONALPROPERTIES_SHOULD_NOT_LOOK_IN_APPLICATORS_RESPONSE_BODY_FOR_CONTENT_TYPES \ No newline at end of file +path = "/responseBody/postAdditionalpropertiesShouldNotLookInApplicatorsResponseBodyForContentTypes" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_additionalproperties_should_not_look_in_applicators_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_additionalproperties_should_not_look_in_applicators_response_body_for_content_types/post/__init__.py index 3230754f9ac..b5ed9be1ca5 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_additionalproperties_should_not_look_in_applicators_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_additionalproperties_should_not_look_in_applicators_response_body_for_content_types/post/__init__.py @@ -82,7 +82,7 @@ def _post_additionalproperties_should_not_look_in_applicators_response_body_for_ api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_additionalproperties_should_not_look_in_applicators_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_additionalproperties_should_not_look_in_applicators_response_body_for_content_types/post/__init__.pyi index 91f80628876..76cb6e3637f 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_additionalproperties_should_not_look_in_applicators_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_additionalproperties_should_not_look_in_applicators_response_body_for_content_types/post/__init__.pyi @@ -77,7 +77,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_combined_with_anyof_oneof_response_body_for_content_types/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_combined_with_anyof_oneof_response_body_for_content_types/__init__.py index c2954dad02b..e9d5e52df4e 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_combined_with_anyof_oneof_response_body_for_content_types/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_combined_with_anyof_oneof_response_body_for_content_types/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.response_body_post_allof_combined_with_anyof_oneof_response_body_for_content_types import Api -from unit_test_api.paths import PathValues - -path = PathValues.RESPONSE_BODY_POST_ALLOF_COMBINED_WITH_ANYOF_ONEOF_RESPONSE_BODY_FOR_CONTENT_TYPES \ No newline at end of file +path = "/responseBody/postAllofCombinedWithAnyofOneofResponseBodyForContentTypes" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_combined_with_anyof_oneof_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_combined_with_anyof_oneof_response_body_for_content_types/post/__init__.py index 00c6f047ce4..817dca646cf 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_combined_with_anyof_oneof_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_combined_with_anyof_oneof_response_body_for_content_types/post/__init__.py @@ -82,7 +82,7 @@ def _post_allof_combined_with_anyof_oneof_response_body_for_content_types_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_combined_with_anyof_oneof_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_combined_with_anyof_oneof_response_body_for_content_types/post/__init__.pyi index e602d8d41ce..bdc98b03eba 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_combined_with_anyof_oneof_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_combined_with_anyof_oneof_response_body_for_content_types/post/__init__.pyi @@ -77,7 +77,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_response_body_for_content_types/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_response_body_for_content_types/__init__.py index 966421655a4..dc69362428f 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_response_body_for_content_types/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_response_body_for_content_types/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.response_body_post_allof_response_body_for_content_types import Api -from unit_test_api.paths import PathValues - -path = PathValues.RESPONSE_BODY_POST_ALLOF_RESPONSE_BODY_FOR_CONTENT_TYPES \ No newline at end of file +path = "/responseBody/postAllofResponseBodyForContentTypes" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_response_body_for_content_types/post/__init__.py index 9cfb525178a..c07cbea78e8 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_response_body_for_content_types/post/__init__.py @@ -82,7 +82,7 @@ def _post_allof_response_body_for_content_types_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_response_body_for_content_types/post/__init__.pyi index 136a7d1a1f4..4a775d8f903 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_response_body_for_content_types/post/__init__.pyi @@ -77,7 +77,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_simple_types_response_body_for_content_types/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_simple_types_response_body_for_content_types/__init__.py index d3d3b345f62..442900498cf 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_simple_types_response_body_for_content_types/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_simple_types_response_body_for_content_types/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.response_body_post_allof_simple_types_response_body_for_content_types import Api -from unit_test_api.paths import PathValues - -path = PathValues.RESPONSE_BODY_POST_ALLOF_SIMPLE_TYPES_RESPONSE_BODY_FOR_CONTENT_TYPES \ No newline at end of file +path = "/responseBody/postAllofSimpleTypesResponseBodyForContentTypes" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_simple_types_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_simple_types_response_body_for_content_types/post/__init__.py index 9fc1af83bb2..72344206b37 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_simple_types_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_simple_types_response_body_for_content_types/post/__init__.py @@ -82,7 +82,7 @@ def _post_allof_simple_types_response_body_for_content_types_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_simple_types_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_simple_types_response_body_for_content_types/post/__init__.pyi index 01d84a97413..92af1a699fe 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_simple_types_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_simple_types_response_body_for_content_types/post/__init__.pyi @@ -77,7 +77,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_with_base_schema_response_body_for_content_types/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_with_base_schema_response_body_for_content_types/__init__.py index ead19c41027..f9c03bc71dc 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_with_base_schema_response_body_for_content_types/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_with_base_schema_response_body_for_content_types/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.response_body_post_allof_with_base_schema_response_body_for_content_types import Api -from unit_test_api.paths import PathValues - -path = PathValues.RESPONSE_BODY_POST_ALLOF_WITH_BASE_SCHEMA_RESPONSE_BODY_FOR_CONTENT_TYPES \ No newline at end of file +path = "/responseBody/postAllofWithBaseSchemaResponseBodyForContentTypes" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_with_base_schema_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_with_base_schema_response_body_for_content_types/post/__init__.py index 40a2737708c..3a81db5a074 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_with_base_schema_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_with_base_schema_response_body_for_content_types/post/__init__.py @@ -82,7 +82,7 @@ def _post_allof_with_base_schema_response_body_for_content_types_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_with_base_schema_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_with_base_schema_response_body_for_content_types/post/__init__.pyi index 999ec1c2260..44a6dd8937d 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_with_base_schema_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_with_base_schema_response_body_for_content_types/post/__init__.pyi @@ -77,7 +77,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_with_one_empty_schema_response_body_for_content_types/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_with_one_empty_schema_response_body_for_content_types/__init__.py index 5b925dbe84f..69569ad3449 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_with_one_empty_schema_response_body_for_content_types/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_with_one_empty_schema_response_body_for_content_types/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.response_body_post_allof_with_one_empty_schema_response_body_for_content_types import Api -from unit_test_api.paths import PathValues - -path = PathValues.RESPONSE_BODY_POST_ALLOF_WITH_ONE_EMPTY_SCHEMA_RESPONSE_BODY_FOR_CONTENT_TYPES \ No newline at end of file +path = "/responseBody/postAllofWithOneEmptySchemaResponseBodyForContentTypes" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_with_one_empty_schema_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_with_one_empty_schema_response_body_for_content_types/post/__init__.py index 6fb164266e8..5112d904dc4 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_with_one_empty_schema_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_with_one_empty_schema_response_body_for_content_types/post/__init__.py @@ -82,7 +82,7 @@ def _post_allof_with_one_empty_schema_response_body_for_content_types_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_with_one_empty_schema_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_with_one_empty_schema_response_body_for_content_types/post/__init__.pyi index 58fdd7c607b..6824bc73a97 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_with_one_empty_schema_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_with_one_empty_schema_response_body_for_content_types/post/__init__.pyi @@ -77,7 +77,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_with_the_first_empty_schema_response_body_for_content_types/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_with_the_first_empty_schema_response_body_for_content_types/__init__.py index d2158fd5910..7c157fa02c8 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_with_the_first_empty_schema_response_body_for_content_types/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_with_the_first_empty_schema_response_body_for_content_types/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.response_body_post_allof_with_the_first_empty_schema_response_body_for_content_types import Api -from unit_test_api.paths import PathValues - -path = PathValues.RESPONSE_BODY_POST_ALLOF_WITH_THE_FIRST_EMPTY_SCHEMA_RESPONSE_BODY_FOR_CONTENT_TYPES \ No newline at end of file +path = "/responseBody/postAllofWithTheFirstEmptySchemaResponseBodyForContentTypes" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_with_the_first_empty_schema_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_with_the_first_empty_schema_response_body_for_content_types/post/__init__.py index e80b1452acf..09069729f01 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_with_the_first_empty_schema_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_with_the_first_empty_schema_response_body_for_content_types/post/__init__.py @@ -82,7 +82,7 @@ def _post_allof_with_the_first_empty_schema_response_body_for_content_types_oapg api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_with_the_first_empty_schema_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_with_the_first_empty_schema_response_body_for_content_types/post/__init__.pyi index a1142ad8fcb..6fc5bfcf48b 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_with_the_first_empty_schema_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_with_the_first_empty_schema_response_body_for_content_types/post/__init__.pyi @@ -77,7 +77,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_with_the_last_empty_schema_response_body_for_content_types/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_with_the_last_empty_schema_response_body_for_content_types/__init__.py index 96db6f89d5d..f7dc0732815 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_with_the_last_empty_schema_response_body_for_content_types/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_with_the_last_empty_schema_response_body_for_content_types/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.response_body_post_allof_with_the_last_empty_schema_response_body_for_content_types import Api -from unit_test_api.paths import PathValues - -path = PathValues.RESPONSE_BODY_POST_ALLOF_WITH_THE_LAST_EMPTY_SCHEMA_RESPONSE_BODY_FOR_CONTENT_TYPES \ No newline at end of file +path = "/responseBody/postAllofWithTheLastEmptySchemaResponseBodyForContentTypes" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_with_the_last_empty_schema_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_with_the_last_empty_schema_response_body_for_content_types/post/__init__.py index 35633c56390..997447686d8 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_with_the_last_empty_schema_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_with_the_last_empty_schema_response_body_for_content_types/post/__init__.py @@ -82,7 +82,7 @@ def _post_allof_with_the_last_empty_schema_response_body_for_content_types_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_with_the_last_empty_schema_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_with_the_last_empty_schema_response_body_for_content_types/post/__init__.pyi index 5edc17b99f0..563861e054e 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_with_the_last_empty_schema_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_with_the_last_empty_schema_response_body_for_content_types/post/__init__.pyi @@ -77,7 +77,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_with_two_empty_schemas_response_body_for_content_types/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_with_two_empty_schemas_response_body_for_content_types/__init__.py index fcb8c8f7ec4..364b8f8f78c 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_with_two_empty_schemas_response_body_for_content_types/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_with_two_empty_schemas_response_body_for_content_types/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.response_body_post_allof_with_two_empty_schemas_response_body_for_content_types import Api -from unit_test_api.paths import PathValues - -path = PathValues.RESPONSE_BODY_POST_ALLOF_WITH_TWO_EMPTY_SCHEMAS_RESPONSE_BODY_FOR_CONTENT_TYPES \ No newline at end of file +path = "/responseBody/postAllofWithTwoEmptySchemasResponseBodyForContentTypes" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_with_two_empty_schemas_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_with_two_empty_schemas_response_body_for_content_types/post/__init__.py index 76522db4c85..581cdb340e0 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_with_two_empty_schemas_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_with_two_empty_schemas_response_body_for_content_types/post/__init__.py @@ -82,7 +82,7 @@ def _post_allof_with_two_empty_schemas_response_body_for_content_types_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_with_two_empty_schemas_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_with_two_empty_schemas_response_body_for_content_types/post/__init__.pyi index d62a026fa33..22cdc04ab7a 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_with_two_empty_schemas_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_allof_with_two_empty_schemas_response_body_for_content_types/post/__init__.pyi @@ -77,7 +77,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_anyof_complex_types_response_body_for_content_types/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_anyof_complex_types_response_body_for_content_types/__init__.py index b028f3bec7c..b3e7f84e995 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_anyof_complex_types_response_body_for_content_types/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_anyof_complex_types_response_body_for_content_types/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.response_body_post_anyof_complex_types_response_body_for_content_types import Api -from unit_test_api.paths import PathValues - -path = PathValues.RESPONSE_BODY_POST_ANYOF_COMPLEX_TYPES_RESPONSE_BODY_FOR_CONTENT_TYPES \ No newline at end of file +path = "/responseBody/postAnyofComplexTypesResponseBodyForContentTypes" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_anyof_complex_types_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_anyof_complex_types_response_body_for_content_types/post/__init__.py index 2e4aaaa6c62..9249d777494 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_anyof_complex_types_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_anyof_complex_types_response_body_for_content_types/post/__init__.py @@ -82,7 +82,7 @@ def _post_anyof_complex_types_response_body_for_content_types_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_anyof_complex_types_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_anyof_complex_types_response_body_for_content_types/post/__init__.pyi index 2e550cfe6ac..682a2760d2f 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_anyof_complex_types_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_anyof_complex_types_response_body_for_content_types/post/__init__.pyi @@ -77,7 +77,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_anyof_response_body_for_content_types/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_anyof_response_body_for_content_types/__init__.py index de1893c9ea8..29b7353c671 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_anyof_response_body_for_content_types/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_anyof_response_body_for_content_types/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.response_body_post_anyof_response_body_for_content_types import Api -from unit_test_api.paths import PathValues - -path = PathValues.RESPONSE_BODY_POST_ANYOF_RESPONSE_BODY_FOR_CONTENT_TYPES \ No newline at end of file +path = "/responseBody/postAnyofResponseBodyForContentTypes" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_anyof_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_anyof_response_body_for_content_types/post/__init__.py index 86dcc8269f6..7931e431e3d 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_anyof_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_anyof_response_body_for_content_types/post/__init__.py @@ -82,7 +82,7 @@ def _post_anyof_response_body_for_content_types_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_anyof_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_anyof_response_body_for_content_types/post/__init__.pyi index 1774a5865ce..0aa52cafc7f 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_anyof_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_anyof_response_body_for_content_types/post/__init__.pyi @@ -77,7 +77,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_anyof_with_base_schema_response_body_for_content_types/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_anyof_with_base_schema_response_body_for_content_types/__init__.py index bbb82f9ffcb..6bcc90f1e9f 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_anyof_with_base_schema_response_body_for_content_types/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_anyof_with_base_schema_response_body_for_content_types/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.response_body_post_anyof_with_base_schema_response_body_for_content_types import Api -from unit_test_api.paths import PathValues - -path = PathValues.RESPONSE_BODY_POST_ANYOF_WITH_BASE_SCHEMA_RESPONSE_BODY_FOR_CONTENT_TYPES \ No newline at end of file +path = "/responseBody/postAnyofWithBaseSchemaResponseBodyForContentTypes" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_anyof_with_base_schema_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_anyof_with_base_schema_response_body_for_content_types/post/__init__.py index 69797ff9d13..3de8ee22b1f 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_anyof_with_base_schema_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_anyof_with_base_schema_response_body_for_content_types/post/__init__.py @@ -82,7 +82,7 @@ def _post_anyof_with_base_schema_response_body_for_content_types_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_anyof_with_base_schema_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_anyof_with_base_schema_response_body_for_content_types/post/__init__.pyi index eb21ca6f948..7b30001156d 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_anyof_with_base_schema_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_anyof_with_base_schema_response_body_for_content_types/post/__init__.pyi @@ -77,7 +77,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_anyof_with_one_empty_schema_response_body_for_content_types/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_anyof_with_one_empty_schema_response_body_for_content_types/__init__.py index ceb7349121d..5dfee59c6d1 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_anyof_with_one_empty_schema_response_body_for_content_types/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_anyof_with_one_empty_schema_response_body_for_content_types/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.response_body_post_anyof_with_one_empty_schema_response_body_for_content_types import Api -from unit_test_api.paths import PathValues - -path = PathValues.RESPONSE_BODY_POST_ANYOF_WITH_ONE_EMPTY_SCHEMA_RESPONSE_BODY_FOR_CONTENT_TYPES \ No newline at end of file +path = "/responseBody/postAnyofWithOneEmptySchemaResponseBodyForContentTypes" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_anyof_with_one_empty_schema_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_anyof_with_one_empty_schema_response_body_for_content_types/post/__init__.py index cf1b7811c3d..44826380bd9 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_anyof_with_one_empty_schema_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_anyof_with_one_empty_schema_response_body_for_content_types/post/__init__.py @@ -82,7 +82,7 @@ def _post_anyof_with_one_empty_schema_response_body_for_content_types_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_anyof_with_one_empty_schema_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_anyof_with_one_empty_schema_response_body_for_content_types/post/__init__.pyi index 9a465a1d780..0da812fd16c 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_anyof_with_one_empty_schema_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_anyof_with_one_empty_schema_response_body_for_content_types/post/__init__.pyi @@ -77,7 +77,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_array_type_matches_arrays_response_body_for_content_types/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_array_type_matches_arrays_response_body_for_content_types/__init__.py index 2fdd3453b97..d14e0860a4a 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_array_type_matches_arrays_response_body_for_content_types/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_array_type_matches_arrays_response_body_for_content_types/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.response_body_post_array_type_matches_arrays_response_body_for_content_types import Api -from unit_test_api.paths import PathValues - -path = PathValues.RESPONSE_BODY_POST_ARRAY_TYPE_MATCHES_ARRAYS_RESPONSE_BODY_FOR_CONTENT_TYPES \ No newline at end of file +path = "/responseBody/postArrayTypeMatchesArraysResponseBodyForContentTypes" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_array_type_matches_arrays_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_array_type_matches_arrays_response_body_for_content_types/post/__init__.py index 23050b20aa3..cbb03acaaf7 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_array_type_matches_arrays_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_array_type_matches_arrays_response_body_for_content_types/post/__init__.py @@ -82,7 +82,7 @@ def _post_array_type_matches_arrays_response_body_for_content_types_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_array_type_matches_arrays_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_array_type_matches_arrays_response_body_for_content_types/post/__init__.pyi index 2baf4b585ba..2925eb49849 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_array_type_matches_arrays_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_array_type_matches_arrays_response_body_for_content_types/post/__init__.pyi @@ -77,7 +77,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_boolean_type_matches_booleans_response_body_for_content_types/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_boolean_type_matches_booleans_response_body_for_content_types/__init__.py index bb12060f2d4..de79f51218f 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_boolean_type_matches_booleans_response_body_for_content_types/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_boolean_type_matches_booleans_response_body_for_content_types/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.response_body_post_boolean_type_matches_booleans_response_body_for_content_types import Api -from unit_test_api.paths import PathValues - -path = PathValues.RESPONSE_BODY_POST_BOOLEAN_TYPE_MATCHES_BOOLEANS_RESPONSE_BODY_FOR_CONTENT_TYPES \ No newline at end of file +path = "/responseBody/postBooleanTypeMatchesBooleansResponseBodyForContentTypes" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_boolean_type_matches_booleans_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_boolean_type_matches_booleans_response_body_for_content_types/post/__init__.py index 9aaaac2324c..2af0982360a 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_boolean_type_matches_booleans_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_boolean_type_matches_booleans_response_body_for_content_types/post/__init__.py @@ -82,7 +82,7 @@ def _post_boolean_type_matches_booleans_response_body_for_content_types_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_boolean_type_matches_booleans_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_boolean_type_matches_booleans_response_body_for_content_types/post/__init__.pyi index 38cc4bf6821..0419edcad7b 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_boolean_type_matches_booleans_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_boolean_type_matches_booleans_response_body_for_content_types/post/__init__.pyi @@ -77,7 +77,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_by_int_response_body_for_content_types/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_by_int_response_body_for_content_types/__init__.py index 65dc15fb389..dfb0b4316d1 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_by_int_response_body_for_content_types/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_by_int_response_body_for_content_types/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.response_body_post_by_int_response_body_for_content_types import Api -from unit_test_api.paths import PathValues - -path = PathValues.RESPONSE_BODY_POST_BY_INT_RESPONSE_BODY_FOR_CONTENT_TYPES \ No newline at end of file +path = "/responseBody/postByIntResponseBodyForContentTypes" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_by_int_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_by_int_response_body_for_content_types/post/__init__.py index 0004a148abe..42cead9175e 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_by_int_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_by_int_response_body_for_content_types/post/__init__.py @@ -82,7 +82,7 @@ def _post_by_int_response_body_for_content_types_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_by_int_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_by_int_response_body_for_content_types/post/__init__.pyi index 6b8fdf3ac14..4845c8ce162 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_by_int_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_by_int_response_body_for_content_types/post/__init__.pyi @@ -77,7 +77,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_by_number_response_body_for_content_types/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_by_number_response_body_for_content_types/__init__.py index c4a2ebe9634..259d5d22853 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_by_number_response_body_for_content_types/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_by_number_response_body_for_content_types/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.response_body_post_by_number_response_body_for_content_types import Api -from unit_test_api.paths import PathValues - -path = PathValues.RESPONSE_BODY_POST_BY_NUMBER_RESPONSE_BODY_FOR_CONTENT_TYPES \ No newline at end of file +path = "/responseBody/postByNumberResponseBodyForContentTypes" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_by_number_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_by_number_response_body_for_content_types/post/__init__.py index 345f12c6e01..e300230cf97 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_by_number_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_by_number_response_body_for_content_types/post/__init__.py @@ -82,7 +82,7 @@ def _post_by_number_response_body_for_content_types_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_by_number_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_by_number_response_body_for_content_types/post/__init__.pyi index 2b951ee6075..41509a95781 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_by_number_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_by_number_response_body_for_content_types/post/__init__.pyi @@ -77,7 +77,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_by_small_number_response_body_for_content_types/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_by_small_number_response_body_for_content_types/__init__.py index 8006bf48849..f853f310de1 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_by_small_number_response_body_for_content_types/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_by_small_number_response_body_for_content_types/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.response_body_post_by_small_number_response_body_for_content_types import Api -from unit_test_api.paths import PathValues - -path = PathValues.RESPONSE_BODY_POST_BY_SMALL_NUMBER_RESPONSE_BODY_FOR_CONTENT_TYPES \ No newline at end of file +path = "/responseBody/postBySmallNumberResponseBodyForContentTypes" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_by_small_number_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_by_small_number_response_body_for_content_types/post/__init__.py index bed011c3236..321098165dc 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_by_small_number_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_by_small_number_response_body_for_content_types/post/__init__.py @@ -82,7 +82,7 @@ def _post_by_small_number_response_body_for_content_types_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_by_small_number_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_by_small_number_response_body_for_content_types/post/__init__.pyi index b07c2d90763..4c08e683d7e 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_by_small_number_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_by_small_number_response_body_for_content_types/post/__init__.pyi @@ -77,7 +77,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_date_time_format_response_body_for_content_types/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_date_time_format_response_body_for_content_types/__init__.py index da7708ad056..f1fcd568ee7 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_date_time_format_response_body_for_content_types/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_date_time_format_response_body_for_content_types/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.response_body_post_date_time_format_response_body_for_content_types import Api -from unit_test_api.paths import PathValues - -path = PathValues.RESPONSE_BODY_POST_DATE_TIME_FORMAT_RESPONSE_BODY_FOR_CONTENT_TYPES \ No newline at end of file +path = "/responseBody/postDateTimeFormatResponseBodyForContentTypes" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_date_time_format_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_date_time_format_response_body_for_content_types/post/__init__.py index d850cf591ac..874a6506c73 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_date_time_format_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_date_time_format_response_body_for_content_types/post/__init__.py @@ -82,7 +82,7 @@ def _post_date_time_format_response_body_for_content_types_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_date_time_format_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_date_time_format_response_body_for_content_types/post/__init__.pyi index 055de255044..4dac911b64f 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_date_time_format_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_date_time_format_response_body_for_content_types/post/__init__.pyi @@ -77,7 +77,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_email_format_response_body_for_content_types/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_email_format_response_body_for_content_types/__init__.py index 0946a580d73..fb26391a541 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_email_format_response_body_for_content_types/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_email_format_response_body_for_content_types/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.response_body_post_email_format_response_body_for_content_types import Api -from unit_test_api.paths import PathValues - -path = PathValues.RESPONSE_BODY_POST_EMAIL_FORMAT_RESPONSE_BODY_FOR_CONTENT_TYPES \ No newline at end of file +path = "/responseBody/postEmailFormatResponseBodyForContentTypes" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_email_format_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_email_format_response_body_for_content_types/post/__init__.py index 7c2b75e0001..eb76b44d98b 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_email_format_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_email_format_response_body_for_content_types/post/__init__.py @@ -82,7 +82,7 @@ def _post_email_format_response_body_for_content_types_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_email_format_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_email_format_response_body_for_content_types/post/__init__.pyi index b08df42e3cb..5124f801cd7 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_email_format_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_email_format_response_body_for_content_types/post/__init__.pyi @@ -77,7 +77,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_enum_with0_does_not_match_false_response_body_for_content_types/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_enum_with0_does_not_match_false_response_body_for_content_types/__init__.py index 974d688885b..4984fd2c089 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_enum_with0_does_not_match_false_response_body_for_content_types/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_enum_with0_does_not_match_false_response_body_for_content_types/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.response_body_post_enum_with0_does_not_match_false_response_body_for_content_types import Api -from unit_test_api.paths import PathValues - -path = PathValues.RESPONSE_BODY_POST_ENUM_WITH0DOES_NOT_MATCH_FALSE_RESPONSE_BODY_FOR_CONTENT_TYPES \ No newline at end of file +path = "/responseBody/postEnumWith0DoesNotMatchFalseResponseBodyForContentTypes" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_enum_with0_does_not_match_false_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_enum_with0_does_not_match_false_response_body_for_content_types/post/__init__.py index e8af1ba5194..911577ea8c9 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_enum_with0_does_not_match_false_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_enum_with0_does_not_match_false_response_body_for_content_types/post/__init__.py @@ -82,7 +82,7 @@ def _post_enum_with0_does_not_match_false_response_body_for_content_types_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_enum_with0_does_not_match_false_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_enum_with0_does_not_match_false_response_body_for_content_types/post/__init__.pyi index 871847d48db..a5954ce2367 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_enum_with0_does_not_match_false_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_enum_with0_does_not_match_false_response_body_for_content_types/post/__init__.pyi @@ -77,7 +77,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_enum_with1_does_not_match_true_response_body_for_content_types/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_enum_with1_does_not_match_true_response_body_for_content_types/__init__.py index 2234fa84bfb..dfba032c746 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_enum_with1_does_not_match_true_response_body_for_content_types/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_enum_with1_does_not_match_true_response_body_for_content_types/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.response_body_post_enum_with1_does_not_match_true_response_body_for_content_types import Api -from unit_test_api.paths import PathValues - -path = PathValues.RESPONSE_BODY_POST_ENUM_WITH1DOES_NOT_MATCH_TRUE_RESPONSE_BODY_FOR_CONTENT_TYPES \ No newline at end of file +path = "/responseBody/postEnumWith1DoesNotMatchTrueResponseBodyForContentTypes" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_enum_with1_does_not_match_true_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_enum_with1_does_not_match_true_response_body_for_content_types/post/__init__.py index 77190327a83..db2e1f21966 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_enum_with1_does_not_match_true_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_enum_with1_does_not_match_true_response_body_for_content_types/post/__init__.py @@ -82,7 +82,7 @@ def _post_enum_with1_does_not_match_true_response_body_for_content_types_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_enum_with1_does_not_match_true_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_enum_with1_does_not_match_true_response_body_for_content_types/post/__init__.pyi index cda6a71566c..0560ce0e83c 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_enum_with1_does_not_match_true_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_enum_with1_does_not_match_true_response_body_for_content_types/post/__init__.pyi @@ -77,7 +77,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_enum_with_escaped_characters_response_body_for_content_types/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_enum_with_escaped_characters_response_body_for_content_types/__init__.py index 29277c539a0..e4c7a11e293 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_enum_with_escaped_characters_response_body_for_content_types/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_enum_with_escaped_characters_response_body_for_content_types/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.response_body_post_enum_with_escaped_characters_response_body_for_content_types import Api -from unit_test_api.paths import PathValues - -path = PathValues.RESPONSE_BODY_POST_ENUM_WITH_ESCAPED_CHARACTERS_RESPONSE_BODY_FOR_CONTENT_TYPES \ No newline at end of file +path = "/responseBody/postEnumWithEscapedCharactersResponseBodyForContentTypes" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_enum_with_escaped_characters_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_enum_with_escaped_characters_response_body_for_content_types/post/__init__.py index dd863e069b6..160f597dc12 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_enum_with_escaped_characters_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_enum_with_escaped_characters_response_body_for_content_types/post/__init__.py @@ -82,7 +82,7 @@ def _post_enum_with_escaped_characters_response_body_for_content_types_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_enum_with_escaped_characters_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_enum_with_escaped_characters_response_body_for_content_types/post/__init__.pyi index 3977f10a95a..14c83422082 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_enum_with_escaped_characters_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_enum_with_escaped_characters_response_body_for_content_types/post/__init__.pyi @@ -77,7 +77,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_enum_with_false_does_not_match0_response_body_for_content_types/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_enum_with_false_does_not_match0_response_body_for_content_types/__init__.py index 754d48ea264..cedf89dbc65 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_enum_with_false_does_not_match0_response_body_for_content_types/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_enum_with_false_does_not_match0_response_body_for_content_types/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.response_body_post_enum_with_false_does_not_match0_response_body_for_content_types import Api -from unit_test_api.paths import PathValues - -path = PathValues.RESPONSE_BODY_POST_ENUM_WITH_FALSE_DOES_NOT_MATCH0RESPONSE_BODY_FOR_CONTENT_TYPES \ No newline at end of file +path = "/responseBody/postEnumWithFalseDoesNotMatch0ResponseBodyForContentTypes" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_enum_with_false_does_not_match0_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_enum_with_false_does_not_match0_response_body_for_content_types/post/__init__.py index d05f121c31f..79d6b100b50 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_enum_with_false_does_not_match0_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_enum_with_false_does_not_match0_response_body_for_content_types/post/__init__.py @@ -82,7 +82,7 @@ def _post_enum_with_false_does_not_match0_response_body_for_content_types_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_enum_with_false_does_not_match0_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_enum_with_false_does_not_match0_response_body_for_content_types/post/__init__.pyi index e7b641d360a..d5bb9a56312 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_enum_with_false_does_not_match0_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_enum_with_false_does_not_match0_response_body_for_content_types/post/__init__.pyi @@ -77,7 +77,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_enum_with_true_does_not_match1_response_body_for_content_types/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_enum_with_true_does_not_match1_response_body_for_content_types/__init__.py index 49e7a0e7899..816f712961b 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_enum_with_true_does_not_match1_response_body_for_content_types/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_enum_with_true_does_not_match1_response_body_for_content_types/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.response_body_post_enum_with_true_does_not_match1_response_body_for_content_types import Api -from unit_test_api.paths import PathValues - -path = PathValues.RESPONSE_BODY_POST_ENUM_WITH_TRUE_DOES_NOT_MATCH1RESPONSE_BODY_FOR_CONTENT_TYPES \ No newline at end of file +path = "/responseBody/postEnumWithTrueDoesNotMatch1ResponseBodyForContentTypes" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_enum_with_true_does_not_match1_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_enum_with_true_does_not_match1_response_body_for_content_types/post/__init__.py index e82b0ba3426..32c8cbbdf65 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_enum_with_true_does_not_match1_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_enum_with_true_does_not_match1_response_body_for_content_types/post/__init__.py @@ -82,7 +82,7 @@ def _post_enum_with_true_does_not_match1_response_body_for_content_types_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_enum_with_true_does_not_match1_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_enum_with_true_does_not_match1_response_body_for_content_types/post/__init__.pyi index 012f3d166d5..9aef0aeaf5d 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_enum_with_true_does_not_match1_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_enum_with_true_does_not_match1_response_body_for_content_types/post/__init__.pyi @@ -77,7 +77,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_enums_in_properties_response_body_for_content_types/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_enums_in_properties_response_body_for_content_types/__init__.py index 9b16fee8d8a..fa39c96adc2 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_enums_in_properties_response_body_for_content_types/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_enums_in_properties_response_body_for_content_types/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.response_body_post_enums_in_properties_response_body_for_content_types import Api -from unit_test_api.paths import PathValues - -path = PathValues.RESPONSE_BODY_POST_ENUMS_IN_PROPERTIES_RESPONSE_BODY_FOR_CONTENT_TYPES \ No newline at end of file +path = "/responseBody/postEnumsInPropertiesResponseBodyForContentTypes" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_enums_in_properties_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_enums_in_properties_response_body_for_content_types/post/__init__.py index 96606292c21..e0454e68559 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_enums_in_properties_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_enums_in_properties_response_body_for_content_types/post/__init__.py @@ -82,7 +82,7 @@ def _post_enums_in_properties_response_body_for_content_types_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_enums_in_properties_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_enums_in_properties_response_body_for_content_types/post/__init__.pyi index 79845c4913e..5fcf7188ff8 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_enums_in_properties_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_enums_in_properties_response_body_for_content_types/post/__init__.pyi @@ -77,7 +77,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_forbidden_property_response_body_for_content_types/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_forbidden_property_response_body_for_content_types/__init__.py index 2aa3240b7b8..5a73f4c18f4 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_forbidden_property_response_body_for_content_types/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_forbidden_property_response_body_for_content_types/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.response_body_post_forbidden_property_response_body_for_content_types import Api -from unit_test_api.paths import PathValues - -path = PathValues.RESPONSE_BODY_POST_FORBIDDEN_PROPERTY_RESPONSE_BODY_FOR_CONTENT_TYPES \ No newline at end of file +path = "/responseBody/postForbiddenPropertyResponseBodyForContentTypes" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_forbidden_property_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_forbidden_property_response_body_for_content_types/post/__init__.py index b0644761ed0..5d76df9b5c5 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_forbidden_property_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_forbidden_property_response_body_for_content_types/post/__init__.py @@ -82,7 +82,7 @@ def _post_forbidden_property_response_body_for_content_types_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_forbidden_property_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_forbidden_property_response_body_for_content_types/post/__init__.pyi index 407df4f0079..e97029d54da 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_forbidden_property_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_forbidden_property_response_body_for_content_types/post/__init__.pyi @@ -77,7 +77,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_hostname_format_response_body_for_content_types/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_hostname_format_response_body_for_content_types/__init__.py index fda9b15ffc9..bc060b2ea43 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_hostname_format_response_body_for_content_types/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_hostname_format_response_body_for_content_types/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.response_body_post_hostname_format_response_body_for_content_types import Api -from unit_test_api.paths import PathValues - -path = PathValues.RESPONSE_BODY_POST_HOSTNAME_FORMAT_RESPONSE_BODY_FOR_CONTENT_TYPES \ No newline at end of file +path = "/responseBody/postHostnameFormatResponseBodyForContentTypes" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_hostname_format_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_hostname_format_response_body_for_content_types/post/__init__.py index ad785ba02c0..060e7c5cb9c 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_hostname_format_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_hostname_format_response_body_for_content_types/post/__init__.py @@ -82,7 +82,7 @@ def _post_hostname_format_response_body_for_content_types_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_hostname_format_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_hostname_format_response_body_for_content_types/post/__init__.pyi index 18992698968..957be4a6116 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_hostname_format_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_hostname_format_response_body_for_content_types/post/__init__.pyi @@ -77,7 +77,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_integer_type_matches_integers_response_body_for_content_types/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_integer_type_matches_integers_response_body_for_content_types/__init__.py index cc00a644c93..dcfa72dcd30 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_integer_type_matches_integers_response_body_for_content_types/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_integer_type_matches_integers_response_body_for_content_types/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.response_body_post_integer_type_matches_integers_response_body_for_content_types import Api -from unit_test_api.paths import PathValues - -path = PathValues.RESPONSE_BODY_POST_INTEGER_TYPE_MATCHES_INTEGERS_RESPONSE_BODY_FOR_CONTENT_TYPES \ No newline at end of file +path = "/responseBody/postIntegerTypeMatchesIntegersResponseBodyForContentTypes" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_integer_type_matches_integers_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_integer_type_matches_integers_response_body_for_content_types/post/__init__.py index 2081d2ee63d..a8c9c0b70ab 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_integer_type_matches_integers_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_integer_type_matches_integers_response_body_for_content_types/post/__init__.py @@ -82,7 +82,7 @@ def _post_integer_type_matches_integers_response_body_for_content_types_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_integer_type_matches_integers_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_integer_type_matches_integers_response_body_for_content_types/post/__init__.pyi index 9321b5dae92..fab809dcb81 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_integer_type_matches_integers_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_integer_type_matches_integers_response_body_for_content_types/post/__init__.pyi @@ -77,7 +77,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_invalid_instance_should_not_raise_error_when_float_division_inf_response_body_for_content_types/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_invalid_instance_should_not_raise_error_when_float_division_inf_response_body_for_content_types/__init__.py index 511449f6622..2f267519c65 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_invalid_instance_should_not_raise_error_when_float_division_inf_response_body_for_content_types/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_invalid_instance_should_not_raise_error_when_float_division_inf_response_body_for_content_types/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.response_body_post_invalid_instance_should_not_raise_error_when_float_division_inf_response_body_for_content_types import Api -from unit_test_api.paths import PathValues - -path = PathValues.RESPONSE_BODY_POST_INVALID_INSTANCE_SHOULD_NOT_RAISE_ERROR_WHEN_FLOAT_DIVISION_INF_RESPONSE_BODY_FOR_CONTENT_TYPES \ No newline at end of file +path = "/responseBody/postInvalidInstanceShouldNotRaiseErrorWhenFloatDivisionInfResponseBodyForContentTypes" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_invalid_instance_should_not_raise_error_when_float_division_inf_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_invalid_instance_should_not_raise_error_when_float_division_inf_response_body_for_content_types/post/__init__.py index 46171f4eaea..d8bd8356f27 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_invalid_instance_should_not_raise_error_when_float_division_inf_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_invalid_instance_should_not_raise_error_when_float_division_inf_response_body_for_content_types/post/__init__.py @@ -82,7 +82,7 @@ def _post_invalid_instance_should_not_raise_error_when_float_division_inf_respon api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_invalid_instance_should_not_raise_error_when_float_division_inf_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_invalid_instance_should_not_raise_error_when_float_division_inf_response_body_for_content_types/post/__init__.pyi index 3247b40ef03..872d4d1759a 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_invalid_instance_should_not_raise_error_when_float_division_inf_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_invalid_instance_should_not_raise_error_when_float_division_inf_response_body_for_content_types/post/__init__.pyi @@ -77,7 +77,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_invalid_string_value_for_default_response_body_for_content_types/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_invalid_string_value_for_default_response_body_for_content_types/__init__.py index fb4cadd1165..b095114a9d5 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_invalid_string_value_for_default_response_body_for_content_types/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_invalid_string_value_for_default_response_body_for_content_types/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.response_body_post_invalid_string_value_for_default_response_body_for_content_types import Api -from unit_test_api.paths import PathValues - -path = PathValues.RESPONSE_BODY_POST_INVALID_STRING_VALUE_FOR_DEFAULT_RESPONSE_BODY_FOR_CONTENT_TYPES \ No newline at end of file +path = "/responseBody/postInvalidStringValueForDefaultResponseBodyForContentTypes" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_invalid_string_value_for_default_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_invalid_string_value_for_default_response_body_for_content_types/post/__init__.py index 86742b44379..50a05f4e666 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_invalid_string_value_for_default_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_invalid_string_value_for_default_response_body_for_content_types/post/__init__.py @@ -82,7 +82,7 @@ def _post_invalid_string_value_for_default_response_body_for_content_types_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_invalid_string_value_for_default_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_invalid_string_value_for_default_response_body_for_content_types/post/__init__.pyi index d4802e1cee8..9547d8a98b8 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_invalid_string_value_for_default_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_invalid_string_value_for_default_response_body_for_content_types/post/__init__.pyi @@ -77,7 +77,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ipv4_format_response_body_for_content_types/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ipv4_format_response_body_for_content_types/__init__.py index 1b7b9c3555a..7a3025d1c46 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ipv4_format_response_body_for_content_types/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ipv4_format_response_body_for_content_types/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.response_body_post_ipv4_format_response_body_for_content_types import Api -from unit_test_api.paths import PathValues - -path = PathValues.RESPONSE_BODY_POST_IPV4FORMAT_RESPONSE_BODY_FOR_CONTENT_TYPES \ No newline at end of file +path = "/responseBody/postIpv4FormatResponseBodyForContentTypes" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ipv4_format_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ipv4_format_response_body_for_content_types/post/__init__.py index 5a0a25ea428..f4a47a419ad 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ipv4_format_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ipv4_format_response_body_for_content_types/post/__init__.py @@ -82,7 +82,7 @@ def _post_ipv4_format_response_body_for_content_types_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ipv4_format_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ipv4_format_response_body_for_content_types/post/__init__.pyi index 7149459b24e..d02e576e7df 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ipv4_format_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ipv4_format_response_body_for_content_types/post/__init__.pyi @@ -77,7 +77,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ipv6_format_response_body_for_content_types/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ipv6_format_response_body_for_content_types/__init__.py index a1919a789e2..77e4d42d606 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ipv6_format_response_body_for_content_types/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ipv6_format_response_body_for_content_types/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.response_body_post_ipv6_format_response_body_for_content_types import Api -from unit_test_api.paths import PathValues - -path = PathValues.RESPONSE_BODY_POST_IPV6FORMAT_RESPONSE_BODY_FOR_CONTENT_TYPES \ No newline at end of file +path = "/responseBody/postIpv6FormatResponseBodyForContentTypes" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ipv6_format_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ipv6_format_response_body_for_content_types/post/__init__.py index f38b1701f1b..300a2123d23 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ipv6_format_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ipv6_format_response_body_for_content_types/post/__init__.py @@ -82,7 +82,7 @@ def _post_ipv6_format_response_body_for_content_types_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ipv6_format_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ipv6_format_response_body_for_content_types/post/__init__.pyi index 487636a5afa..fed1ce1ddbb 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ipv6_format_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ipv6_format_response_body_for_content_types/post/__init__.pyi @@ -77,7 +77,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_json_pointer_format_response_body_for_content_types/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_json_pointer_format_response_body_for_content_types/__init__.py index bd56842c09a..dde4a87c7fb 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_json_pointer_format_response_body_for_content_types/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_json_pointer_format_response_body_for_content_types/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.response_body_post_json_pointer_format_response_body_for_content_types import Api -from unit_test_api.paths import PathValues - -path = PathValues.RESPONSE_BODY_POST_JSON_POINTER_FORMAT_RESPONSE_BODY_FOR_CONTENT_TYPES \ No newline at end of file +path = "/responseBody/postJsonPointerFormatResponseBodyForContentTypes" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_json_pointer_format_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_json_pointer_format_response_body_for_content_types/post/__init__.py index b0281ced9b4..088eb086195 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_json_pointer_format_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_json_pointer_format_response_body_for_content_types/post/__init__.py @@ -82,7 +82,7 @@ def _post_json_pointer_format_response_body_for_content_types_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_json_pointer_format_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_json_pointer_format_response_body_for_content_types/post/__init__.pyi index f755f8b4b7d..55880d2e840 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_json_pointer_format_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_json_pointer_format_response_body_for_content_types/post/__init__.pyi @@ -77,7 +77,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_maximum_validation_response_body_for_content_types/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_maximum_validation_response_body_for_content_types/__init__.py index 0a37153cc0b..3cecbea4c10 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_maximum_validation_response_body_for_content_types/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_maximum_validation_response_body_for_content_types/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.response_body_post_maximum_validation_response_body_for_content_types import Api -from unit_test_api.paths import PathValues - -path = PathValues.RESPONSE_BODY_POST_MAXIMUM_VALIDATION_RESPONSE_BODY_FOR_CONTENT_TYPES \ No newline at end of file +path = "/responseBody/postMaximumValidationResponseBodyForContentTypes" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_maximum_validation_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_maximum_validation_response_body_for_content_types/post/__init__.py index 6ae501cd243..29bedf41567 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_maximum_validation_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_maximum_validation_response_body_for_content_types/post/__init__.py @@ -82,7 +82,7 @@ def _post_maximum_validation_response_body_for_content_types_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_maximum_validation_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_maximum_validation_response_body_for_content_types/post/__init__.pyi index 93499d3f84e..9837ddf35bc 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_maximum_validation_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_maximum_validation_response_body_for_content_types/post/__init__.pyi @@ -77,7 +77,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_maximum_validation_with_unsigned_integer_response_body_for_content_types/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_maximum_validation_with_unsigned_integer_response_body_for_content_types/__init__.py index eb036d358c4..39a7b6660bd 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_maximum_validation_with_unsigned_integer_response_body_for_content_types/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_maximum_validation_with_unsigned_integer_response_body_for_content_types/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.response_body_post_maximum_validation_with_unsigned_integer_response_body_for_content_types import Api -from unit_test_api.paths import PathValues - -path = PathValues.RESPONSE_BODY_POST_MAXIMUM_VALIDATION_WITH_UNSIGNED_INTEGER_RESPONSE_BODY_FOR_CONTENT_TYPES \ No newline at end of file +path = "/responseBody/postMaximumValidationWithUnsignedIntegerResponseBodyForContentTypes" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_maximum_validation_with_unsigned_integer_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_maximum_validation_with_unsigned_integer_response_body_for_content_types/post/__init__.py index 7f39795e7d2..5e6d41451d3 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_maximum_validation_with_unsigned_integer_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_maximum_validation_with_unsigned_integer_response_body_for_content_types/post/__init__.py @@ -82,7 +82,7 @@ def _post_maximum_validation_with_unsigned_integer_response_body_for_content_typ api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_maximum_validation_with_unsigned_integer_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_maximum_validation_with_unsigned_integer_response_body_for_content_types/post/__init__.pyi index 9682ad835c6..2e5746e7528 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_maximum_validation_with_unsigned_integer_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_maximum_validation_with_unsigned_integer_response_body_for_content_types/post/__init__.pyi @@ -77,7 +77,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_maxitems_validation_response_body_for_content_types/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_maxitems_validation_response_body_for_content_types/__init__.py index 7c0b46d8d73..fbe60f93bdf 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_maxitems_validation_response_body_for_content_types/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_maxitems_validation_response_body_for_content_types/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.response_body_post_maxitems_validation_response_body_for_content_types import Api -from unit_test_api.paths import PathValues - -path = PathValues.RESPONSE_BODY_POST_MAXITEMS_VALIDATION_RESPONSE_BODY_FOR_CONTENT_TYPES \ No newline at end of file +path = "/responseBody/postMaxitemsValidationResponseBodyForContentTypes" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_maxitems_validation_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_maxitems_validation_response_body_for_content_types/post/__init__.py index bec781ec9f3..96f0b4abf01 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_maxitems_validation_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_maxitems_validation_response_body_for_content_types/post/__init__.py @@ -82,7 +82,7 @@ def _post_maxitems_validation_response_body_for_content_types_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_maxitems_validation_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_maxitems_validation_response_body_for_content_types/post/__init__.pyi index bdb75b3b037..407e4bcdc40 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_maxitems_validation_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_maxitems_validation_response_body_for_content_types/post/__init__.pyi @@ -77,7 +77,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_maxlength_validation_response_body_for_content_types/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_maxlength_validation_response_body_for_content_types/__init__.py index 0fe9a95208b..79d1448b4d4 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_maxlength_validation_response_body_for_content_types/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_maxlength_validation_response_body_for_content_types/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.response_body_post_maxlength_validation_response_body_for_content_types import Api -from unit_test_api.paths import PathValues - -path = PathValues.RESPONSE_BODY_POST_MAXLENGTH_VALIDATION_RESPONSE_BODY_FOR_CONTENT_TYPES \ No newline at end of file +path = "/responseBody/postMaxlengthValidationResponseBodyForContentTypes" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_maxlength_validation_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_maxlength_validation_response_body_for_content_types/post/__init__.py index 77829651a56..b1dcd836170 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_maxlength_validation_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_maxlength_validation_response_body_for_content_types/post/__init__.py @@ -82,7 +82,7 @@ def _post_maxlength_validation_response_body_for_content_types_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_maxlength_validation_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_maxlength_validation_response_body_for_content_types/post/__init__.pyi index 98380b44237..82d4935cc6c 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_maxlength_validation_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_maxlength_validation_response_body_for_content_types/post/__init__.pyi @@ -77,7 +77,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_maxproperties0_means_the_object_is_empty_response_body_for_content_types/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_maxproperties0_means_the_object_is_empty_response_body_for_content_types/__init__.py index 109f64b15b3..2e43c4a0e1c 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_maxproperties0_means_the_object_is_empty_response_body_for_content_types/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_maxproperties0_means_the_object_is_empty_response_body_for_content_types/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.response_body_post_maxproperties0_means_the_object_is_empty_response_body_for_content_types import Api -from unit_test_api.paths import PathValues - -path = PathValues.RESPONSE_BODY_POST_MAXPROPERTIES0MEANS_THE_OBJECT_IS_EMPTY_RESPONSE_BODY_FOR_CONTENT_TYPES \ No newline at end of file +path = "/responseBody/postMaxproperties0MeansTheObjectIsEmptyResponseBodyForContentTypes" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_maxproperties0_means_the_object_is_empty_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_maxproperties0_means_the_object_is_empty_response_body_for_content_types/post/__init__.py index 68b8084dd24..e42a98bd25a 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_maxproperties0_means_the_object_is_empty_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_maxproperties0_means_the_object_is_empty_response_body_for_content_types/post/__init__.py @@ -82,7 +82,7 @@ def _post_maxproperties0_means_the_object_is_empty_response_body_for_content_typ api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_maxproperties0_means_the_object_is_empty_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_maxproperties0_means_the_object_is_empty_response_body_for_content_types/post/__init__.pyi index 4b7b9ece740..83c51bbc528 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_maxproperties0_means_the_object_is_empty_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_maxproperties0_means_the_object_is_empty_response_body_for_content_types/post/__init__.pyi @@ -77,7 +77,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_maxproperties_validation_response_body_for_content_types/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_maxproperties_validation_response_body_for_content_types/__init__.py index 4331ff3b54a..120e7185528 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_maxproperties_validation_response_body_for_content_types/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_maxproperties_validation_response_body_for_content_types/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.response_body_post_maxproperties_validation_response_body_for_content_types import Api -from unit_test_api.paths import PathValues - -path = PathValues.RESPONSE_BODY_POST_MAXPROPERTIES_VALIDATION_RESPONSE_BODY_FOR_CONTENT_TYPES \ No newline at end of file +path = "/responseBody/postMaxpropertiesValidationResponseBodyForContentTypes" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_maxproperties_validation_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_maxproperties_validation_response_body_for_content_types/post/__init__.py index 97138d8b15a..f7c97fdb1b1 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_maxproperties_validation_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_maxproperties_validation_response_body_for_content_types/post/__init__.py @@ -82,7 +82,7 @@ def _post_maxproperties_validation_response_body_for_content_types_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_maxproperties_validation_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_maxproperties_validation_response_body_for_content_types/post/__init__.pyi index 02b03413fe3..185983ec009 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_maxproperties_validation_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_maxproperties_validation_response_body_for_content_types/post/__init__.pyi @@ -77,7 +77,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_minimum_validation_response_body_for_content_types/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_minimum_validation_response_body_for_content_types/__init__.py index ddb4f8db270..c7e4c87c92e 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_minimum_validation_response_body_for_content_types/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_minimum_validation_response_body_for_content_types/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.response_body_post_minimum_validation_response_body_for_content_types import Api -from unit_test_api.paths import PathValues - -path = PathValues.RESPONSE_BODY_POST_MINIMUM_VALIDATION_RESPONSE_BODY_FOR_CONTENT_TYPES \ No newline at end of file +path = "/responseBody/postMinimumValidationResponseBodyForContentTypes" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_minimum_validation_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_minimum_validation_response_body_for_content_types/post/__init__.py index 26bfa07344a..19d736639a3 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_minimum_validation_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_minimum_validation_response_body_for_content_types/post/__init__.py @@ -82,7 +82,7 @@ def _post_minimum_validation_response_body_for_content_types_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_minimum_validation_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_minimum_validation_response_body_for_content_types/post/__init__.pyi index db029ae1799..156bc103139 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_minimum_validation_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_minimum_validation_response_body_for_content_types/post/__init__.pyi @@ -77,7 +77,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_minimum_validation_with_signed_integer_response_body_for_content_types/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_minimum_validation_with_signed_integer_response_body_for_content_types/__init__.py index 3b5de8d2111..7a9d4f83e36 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_minimum_validation_with_signed_integer_response_body_for_content_types/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_minimum_validation_with_signed_integer_response_body_for_content_types/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.response_body_post_minimum_validation_with_signed_integer_response_body_for_content_types import Api -from unit_test_api.paths import PathValues - -path = PathValues.RESPONSE_BODY_POST_MINIMUM_VALIDATION_WITH_SIGNED_INTEGER_RESPONSE_BODY_FOR_CONTENT_TYPES \ No newline at end of file +path = "/responseBody/postMinimumValidationWithSignedIntegerResponseBodyForContentTypes" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_minimum_validation_with_signed_integer_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_minimum_validation_with_signed_integer_response_body_for_content_types/post/__init__.py index 0bd7cc95e9e..0388f470720 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_minimum_validation_with_signed_integer_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_minimum_validation_with_signed_integer_response_body_for_content_types/post/__init__.py @@ -82,7 +82,7 @@ def _post_minimum_validation_with_signed_integer_response_body_for_content_types api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_minimum_validation_with_signed_integer_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_minimum_validation_with_signed_integer_response_body_for_content_types/post/__init__.pyi index 2a09a24e086..1457811332e 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_minimum_validation_with_signed_integer_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_minimum_validation_with_signed_integer_response_body_for_content_types/post/__init__.pyi @@ -77,7 +77,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_minitems_validation_response_body_for_content_types/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_minitems_validation_response_body_for_content_types/__init__.py index 243d71070cd..fdc1665d3df 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_minitems_validation_response_body_for_content_types/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_minitems_validation_response_body_for_content_types/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.response_body_post_minitems_validation_response_body_for_content_types import Api -from unit_test_api.paths import PathValues - -path = PathValues.RESPONSE_BODY_POST_MINITEMS_VALIDATION_RESPONSE_BODY_FOR_CONTENT_TYPES \ No newline at end of file +path = "/responseBody/postMinitemsValidationResponseBodyForContentTypes" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_minitems_validation_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_minitems_validation_response_body_for_content_types/post/__init__.py index 72cd2a968c2..e5aefbbb0dc 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_minitems_validation_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_minitems_validation_response_body_for_content_types/post/__init__.py @@ -82,7 +82,7 @@ def _post_minitems_validation_response_body_for_content_types_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_minitems_validation_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_minitems_validation_response_body_for_content_types/post/__init__.pyi index 4da47295913..6565de77dfc 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_minitems_validation_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_minitems_validation_response_body_for_content_types/post/__init__.pyi @@ -77,7 +77,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_minlength_validation_response_body_for_content_types/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_minlength_validation_response_body_for_content_types/__init__.py index ee102e9b975..a7b45d532b3 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_minlength_validation_response_body_for_content_types/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_minlength_validation_response_body_for_content_types/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.response_body_post_minlength_validation_response_body_for_content_types import Api -from unit_test_api.paths import PathValues - -path = PathValues.RESPONSE_BODY_POST_MINLENGTH_VALIDATION_RESPONSE_BODY_FOR_CONTENT_TYPES \ No newline at end of file +path = "/responseBody/postMinlengthValidationResponseBodyForContentTypes" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_minlength_validation_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_minlength_validation_response_body_for_content_types/post/__init__.py index 9195e6b500d..20b732ecf1b 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_minlength_validation_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_minlength_validation_response_body_for_content_types/post/__init__.py @@ -82,7 +82,7 @@ def _post_minlength_validation_response_body_for_content_types_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_minlength_validation_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_minlength_validation_response_body_for_content_types/post/__init__.pyi index 74d119e9727..591641a3a90 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_minlength_validation_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_minlength_validation_response_body_for_content_types/post/__init__.pyi @@ -77,7 +77,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_minproperties_validation_response_body_for_content_types/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_minproperties_validation_response_body_for_content_types/__init__.py index 43828ac6ee4..afba3ed4ced 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_minproperties_validation_response_body_for_content_types/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_minproperties_validation_response_body_for_content_types/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.response_body_post_minproperties_validation_response_body_for_content_types import Api -from unit_test_api.paths import PathValues - -path = PathValues.RESPONSE_BODY_POST_MINPROPERTIES_VALIDATION_RESPONSE_BODY_FOR_CONTENT_TYPES \ No newline at end of file +path = "/responseBody/postMinpropertiesValidationResponseBodyForContentTypes" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_minproperties_validation_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_minproperties_validation_response_body_for_content_types/post/__init__.py index 5459c84bf5f..90e18080a6c 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_minproperties_validation_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_minproperties_validation_response_body_for_content_types/post/__init__.py @@ -82,7 +82,7 @@ def _post_minproperties_validation_response_body_for_content_types_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_minproperties_validation_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_minproperties_validation_response_body_for_content_types/post/__init__.pyi index 3cb5af39c1e..a1095a0da5a 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_minproperties_validation_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_minproperties_validation_response_body_for_content_types/post/__init__.pyi @@ -77,7 +77,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_nested_allof_to_check_validation_semantics_response_body_for_content_types/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_nested_allof_to_check_validation_semantics_response_body_for_content_types/__init__.py index d5438b625bc..eb07fe23c65 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_nested_allof_to_check_validation_semantics_response_body_for_content_types/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_nested_allof_to_check_validation_semantics_response_body_for_content_types/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.response_body_post_nested_allof_to_check_validation_semantics_response_body_for_content_types import Api -from unit_test_api.paths import PathValues - -path = PathValues.RESPONSE_BODY_POST_NESTED_ALLOF_TO_CHECK_VALIDATION_SEMANTICS_RESPONSE_BODY_FOR_CONTENT_TYPES \ No newline at end of file +path = "/responseBody/postNestedAllofToCheckValidationSemanticsResponseBodyForContentTypes" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_nested_allof_to_check_validation_semantics_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_nested_allof_to_check_validation_semantics_response_body_for_content_types/post/__init__.py index 5a749a5e541..d6c66cf09cf 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_nested_allof_to_check_validation_semantics_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_nested_allof_to_check_validation_semantics_response_body_for_content_types/post/__init__.py @@ -82,7 +82,7 @@ def _post_nested_allof_to_check_validation_semantics_response_body_for_content_t api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_nested_allof_to_check_validation_semantics_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_nested_allof_to_check_validation_semantics_response_body_for_content_types/post/__init__.pyi index f042209acc4..9a3b7cd04fa 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_nested_allof_to_check_validation_semantics_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_nested_allof_to_check_validation_semantics_response_body_for_content_types/post/__init__.pyi @@ -77,7 +77,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_nested_anyof_to_check_validation_semantics_response_body_for_content_types/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_nested_anyof_to_check_validation_semantics_response_body_for_content_types/__init__.py index e8b0c6f26ee..364d609f86f 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_nested_anyof_to_check_validation_semantics_response_body_for_content_types/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_nested_anyof_to_check_validation_semantics_response_body_for_content_types/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.response_body_post_nested_anyof_to_check_validation_semantics_response_body_for_content_types import Api -from unit_test_api.paths import PathValues - -path = PathValues.RESPONSE_BODY_POST_NESTED_ANYOF_TO_CHECK_VALIDATION_SEMANTICS_RESPONSE_BODY_FOR_CONTENT_TYPES \ No newline at end of file +path = "/responseBody/postNestedAnyofToCheckValidationSemanticsResponseBodyForContentTypes" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_nested_anyof_to_check_validation_semantics_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_nested_anyof_to_check_validation_semantics_response_body_for_content_types/post/__init__.py index 946b1787677..0414e9fb49e 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_nested_anyof_to_check_validation_semantics_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_nested_anyof_to_check_validation_semantics_response_body_for_content_types/post/__init__.py @@ -82,7 +82,7 @@ def _post_nested_anyof_to_check_validation_semantics_response_body_for_content_t api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_nested_anyof_to_check_validation_semantics_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_nested_anyof_to_check_validation_semantics_response_body_for_content_types/post/__init__.pyi index 4c68f7e1b97..e5237093f2c 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_nested_anyof_to_check_validation_semantics_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_nested_anyof_to_check_validation_semantics_response_body_for_content_types/post/__init__.pyi @@ -77,7 +77,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_nested_items_response_body_for_content_types/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_nested_items_response_body_for_content_types/__init__.py index 9c307628311..ee1e5a9b7bd 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_nested_items_response_body_for_content_types/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_nested_items_response_body_for_content_types/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.response_body_post_nested_items_response_body_for_content_types import Api -from unit_test_api.paths import PathValues - -path = PathValues.RESPONSE_BODY_POST_NESTED_ITEMS_RESPONSE_BODY_FOR_CONTENT_TYPES \ No newline at end of file +path = "/responseBody/postNestedItemsResponseBodyForContentTypes" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_nested_items_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_nested_items_response_body_for_content_types/post/__init__.py index 0c740cda726..59338cce97a 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_nested_items_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_nested_items_response_body_for_content_types/post/__init__.py @@ -82,7 +82,7 @@ def _post_nested_items_response_body_for_content_types_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_nested_items_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_nested_items_response_body_for_content_types/post/__init__.pyi index ada5dac70a1..1760ed3537a 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_nested_items_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_nested_items_response_body_for_content_types/post/__init__.pyi @@ -77,7 +77,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_nested_oneof_to_check_validation_semantics_response_body_for_content_types/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_nested_oneof_to_check_validation_semantics_response_body_for_content_types/__init__.py index 3db488be784..36a889f0a54 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_nested_oneof_to_check_validation_semantics_response_body_for_content_types/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_nested_oneof_to_check_validation_semantics_response_body_for_content_types/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.response_body_post_nested_oneof_to_check_validation_semantics_response_body_for_content_types import Api -from unit_test_api.paths import PathValues - -path = PathValues.RESPONSE_BODY_POST_NESTED_ONEOF_TO_CHECK_VALIDATION_SEMANTICS_RESPONSE_BODY_FOR_CONTENT_TYPES \ No newline at end of file +path = "/responseBody/postNestedOneofToCheckValidationSemanticsResponseBodyForContentTypes" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_nested_oneof_to_check_validation_semantics_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_nested_oneof_to_check_validation_semantics_response_body_for_content_types/post/__init__.py index 32c90a6893b..13bee0d233e 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_nested_oneof_to_check_validation_semantics_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_nested_oneof_to_check_validation_semantics_response_body_for_content_types/post/__init__.py @@ -82,7 +82,7 @@ def _post_nested_oneof_to_check_validation_semantics_response_body_for_content_t api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_nested_oneof_to_check_validation_semantics_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_nested_oneof_to_check_validation_semantics_response_body_for_content_types/post/__init__.pyi index e693853fef0..95960d48149 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_nested_oneof_to_check_validation_semantics_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_nested_oneof_to_check_validation_semantics_response_body_for_content_types/post/__init__.pyi @@ -77,7 +77,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_not_more_complex_schema_response_body_for_content_types/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_not_more_complex_schema_response_body_for_content_types/__init__.py index 8af95c890e7..0d25f2931ca 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_not_more_complex_schema_response_body_for_content_types/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_not_more_complex_schema_response_body_for_content_types/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.response_body_post_not_more_complex_schema_response_body_for_content_types import Api -from unit_test_api.paths import PathValues - -path = PathValues.RESPONSE_BODY_POST_NOT_MORE_COMPLEX_SCHEMA_RESPONSE_BODY_FOR_CONTENT_TYPES \ No newline at end of file +path = "/responseBody/postNotMoreComplexSchemaResponseBodyForContentTypes" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_not_more_complex_schema_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_not_more_complex_schema_response_body_for_content_types/post/__init__.py index a24fafa9ee5..634a197dd0e 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_not_more_complex_schema_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_not_more_complex_schema_response_body_for_content_types/post/__init__.py @@ -82,7 +82,7 @@ def _post_not_more_complex_schema_response_body_for_content_types_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_not_more_complex_schema_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_not_more_complex_schema_response_body_for_content_types/post/__init__.pyi index c478e5201be..e58fb118761 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_not_more_complex_schema_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_not_more_complex_schema_response_body_for_content_types/post/__init__.pyi @@ -77,7 +77,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_not_response_body_for_content_types/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_not_response_body_for_content_types/__init__.py index e832b365dd1..506c3705298 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_not_response_body_for_content_types/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_not_response_body_for_content_types/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.response_body_post_not_response_body_for_content_types import Api -from unit_test_api.paths import PathValues - -path = PathValues.RESPONSE_BODY_POST_NOT_RESPONSE_BODY_FOR_CONTENT_TYPES \ No newline at end of file +path = "/responseBody/postNotResponseBodyForContentTypes" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_not_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_not_response_body_for_content_types/post/__init__.py index 78bd4e83be7..3741176ee44 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_not_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_not_response_body_for_content_types/post/__init__.py @@ -82,7 +82,7 @@ def _post_not_response_body_for_content_types_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_not_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_not_response_body_for_content_types/post/__init__.pyi index ccc62c4f768..04dfa36a764 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_not_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_not_response_body_for_content_types/post/__init__.pyi @@ -77,7 +77,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_nul_characters_in_strings_response_body_for_content_types/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_nul_characters_in_strings_response_body_for_content_types/__init__.py index f91e082d1fe..83d03ce3a95 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_nul_characters_in_strings_response_body_for_content_types/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_nul_characters_in_strings_response_body_for_content_types/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.response_body_post_nul_characters_in_strings_response_body_for_content_types import Api -from unit_test_api.paths import PathValues - -path = PathValues.RESPONSE_BODY_POST_NUL_CHARACTERS_IN_STRINGS_RESPONSE_BODY_FOR_CONTENT_TYPES \ No newline at end of file +path = "/responseBody/postNulCharactersInStringsResponseBodyForContentTypes" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_nul_characters_in_strings_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_nul_characters_in_strings_response_body_for_content_types/post/__init__.py index 6707748ee99..bd19e91dca5 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_nul_characters_in_strings_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_nul_characters_in_strings_response_body_for_content_types/post/__init__.py @@ -82,7 +82,7 @@ def _post_nul_characters_in_strings_response_body_for_content_types_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_nul_characters_in_strings_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_nul_characters_in_strings_response_body_for_content_types/post/__init__.pyi index 29bd62b45e3..6e78fd1de5f 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_nul_characters_in_strings_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_nul_characters_in_strings_response_body_for_content_types/post/__init__.pyi @@ -77,7 +77,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_null_type_matches_only_the_null_object_response_body_for_content_types/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_null_type_matches_only_the_null_object_response_body_for_content_types/__init__.py index bc488406d9d..1ec1f1dab18 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_null_type_matches_only_the_null_object_response_body_for_content_types/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_null_type_matches_only_the_null_object_response_body_for_content_types/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.response_body_post_null_type_matches_only_the_null_object_response_body_for_content_types import Api -from unit_test_api.paths import PathValues - -path = PathValues.RESPONSE_BODY_POST_NULL_TYPE_MATCHES_ONLY_THE_NULL_OBJECT_RESPONSE_BODY_FOR_CONTENT_TYPES \ No newline at end of file +path = "/responseBody/postNullTypeMatchesOnlyTheNullObjectResponseBodyForContentTypes" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_null_type_matches_only_the_null_object_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_null_type_matches_only_the_null_object_response_body_for_content_types/post/__init__.py index e23de2ad4d6..9e439d88a75 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_null_type_matches_only_the_null_object_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_null_type_matches_only_the_null_object_response_body_for_content_types/post/__init__.py @@ -82,7 +82,7 @@ def _post_null_type_matches_only_the_null_object_response_body_for_content_types api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_null_type_matches_only_the_null_object_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_null_type_matches_only_the_null_object_response_body_for_content_types/post/__init__.pyi index 322bf3e29c2..08603c89a9e 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_null_type_matches_only_the_null_object_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_null_type_matches_only_the_null_object_response_body_for_content_types/post/__init__.pyi @@ -77,7 +77,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_number_type_matches_numbers_response_body_for_content_types/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_number_type_matches_numbers_response_body_for_content_types/__init__.py index 77109139f3e..2c51d6ddda7 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_number_type_matches_numbers_response_body_for_content_types/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_number_type_matches_numbers_response_body_for_content_types/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.response_body_post_number_type_matches_numbers_response_body_for_content_types import Api -from unit_test_api.paths import PathValues - -path = PathValues.RESPONSE_BODY_POST_NUMBER_TYPE_MATCHES_NUMBERS_RESPONSE_BODY_FOR_CONTENT_TYPES \ No newline at end of file +path = "/responseBody/postNumberTypeMatchesNumbersResponseBodyForContentTypes" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_number_type_matches_numbers_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_number_type_matches_numbers_response_body_for_content_types/post/__init__.py index fd54910c67a..6a4518ded3c 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_number_type_matches_numbers_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_number_type_matches_numbers_response_body_for_content_types/post/__init__.py @@ -82,7 +82,7 @@ def _post_number_type_matches_numbers_response_body_for_content_types_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_number_type_matches_numbers_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_number_type_matches_numbers_response_body_for_content_types/post/__init__.pyi index d45baabc56f..a28174176b4 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_number_type_matches_numbers_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_number_type_matches_numbers_response_body_for_content_types/post/__init__.pyi @@ -77,7 +77,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_object_properties_validation_response_body_for_content_types/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_object_properties_validation_response_body_for_content_types/__init__.py index b2c02e85caa..90eb684bf36 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_object_properties_validation_response_body_for_content_types/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_object_properties_validation_response_body_for_content_types/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.response_body_post_object_properties_validation_response_body_for_content_types import Api -from unit_test_api.paths import PathValues - -path = PathValues.RESPONSE_BODY_POST_OBJECT_PROPERTIES_VALIDATION_RESPONSE_BODY_FOR_CONTENT_TYPES \ No newline at end of file +path = "/responseBody/postObjectPropertiesValidationResponseBodyForContentTypes" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_object_properties_validation_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_object_properties_validation_response_body_for_content_types/post/__init__.py index ec10c929e9c..5c5c6f89127 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_object_properties_validation_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_object_properties_validation_response_body_for_content_types/post/__init__.py @@ -82,7 +82,7 @@ def _post_object_properties_validation_response_body_for_content_types_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_object_properties_validation_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_object_properties_validation_response_body_for_content_types/post/__init__.pyi index 8118d4d3e5f..f2395650e5d 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_object_properties_validation_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_object_properties_validation_response_body_for_content_types/post/__init__.pyi @@ -77,7 +77,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_object_type_matches_objects_response_body_for_content_types/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_object_type_matches_objects_response_body_for_content_types/__init__.py index c069354cd1c..6a3a54f32b6 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_object_type_matches_objects_response_body_for_content_types/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_object_type_matches_objects_response_body_for_content_types/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.response_body_post_object_type_matches_objects_response_body_for_content_types import Api -from unit_test_api.paths import PathValues - -path = PathValues.RESPONSE_BODY_POST_OBJECT_TYPE_MATCHES_OBJECTS_RESPONSE_BODY_FOR_CONTENT_TYPES \ No newline at end of file +path = "/responseBody/postObjectTypeMatchesObjectsResponseBodyForContentTypes" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_object_type_matches_objects_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_object_type_matches_objects_response_body_for_content_types/post/__init__.py index f395ed5ec9a..a7cd7610619 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_object_type_matches_objects_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_object_type_matches_objects_response_body_for_content_types/post/__init__.py @@ -82,7 +82,7 @@ def _post_object_type_matches_objects_response_body_for_content_types_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_object_type_matches_objects_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_object_type_matches_objects_response_body_for_content_types/post/__init__.pyi index 25a89b7512c..d944af424b4 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_object_type_matches_objects_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_object_type_matches_objects_response_body_for_content_types/post/__init__.pyi @@ -77,7 +77,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_oneof_complex_types_response_body_for_content_types/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_oneof_complex_types_response_body_for_content_types/__init__.py index 2003410c48f..912de876173 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_oneof_complex_types_response_body_for_content_types/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_oneof_complex_types_response_body_for_content_types/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.response_body_post_oneof_complex_types_response_body_for_content_types import Api -from unit_test_api.paths import PathValues - -path = PathValues.RESPONSE_BODY_POST_ONEOF_COMPLEX_TYPES_RESPONSE_BODY_FOR_CONTENT_TYPES \ No newline at end of file +path = "/responseBody/postOneofComplexTypesResponseBodyForContentTypes" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_oneof_complex_types_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_oneof_complex_types_response_body_for_content_types/post/__init__.py index fa78cabae63..238ba33af6e 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_oneof_complex_types_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_oneof_complex_types_response_body_for_content_types/post/__init__.py @@ -82,7 +82,7 @@ def _post_oneof_complex_types_response_body_for_content_types_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_oneof_complex_types_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_oneof_complex_types_response_body_for_content_types/post/__init__.pyi index 1342e3d8511..a8a0295613b 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_oneof_complex_types_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_oneof_complex_types_response_body_for_content_types/post/__init__.pyi @@ -77,7 +77,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_oneof_response_body_for_content_types/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_oneof_response_body_for_content_types/__init__.py index 5b88a1224f2..f694ee8755f 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_oneof_response_body_for_content_types/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_oneof_response_body_for_content_types/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.response_body_post_oneof_response_body_for_content_types import Api -from unit_test_api.paths import PathValues - -path = PathValues.RESPONSE_BODY_POST_ONEOF_RESPONSE_BODY_FOR_CONTENT_TYPES \ No newline at end of file +path = "/responseBody/postOneofResponseBodyForContentTypes" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_oneof_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_oneof_response_body_for_content_types/post/__init__.py index b2b3ab19bae..7000fd4d097 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_oneof_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_oneof_response_body_for_content_types/post/__init__.py @@ -82,7 +82,7 @@ def _post_oneof_response_body_for_content_types_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_oneof_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_oneof_response_body_for_content_types/post/__init__.pyi index 3f96b36be1c..f3df82d05d5 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_oneof_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_oneof_response_body_for_content_types/post/__init__.pyi @@ -77,7 +77,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_oneof_with_base_schema_response_body_for_content_types/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_oneof_with_base_schema_response_body_for_content_types/__init__.py index 075773cc7ea..00dfa20d569 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_oneof_with_base_schema_response_body_for_content_types/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_oneof_with_base_schema_response_body_for_content_types/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.response_body_post_oneof_with_base_schema_response_body_for_content_types import Api -from unit_test_api.paths import PathValues - -path = PathValues.RESPONSE_BODY_POST_ONEOF_WITH_BASE_SCHEMA_RESPONSE_BODY_FOR_CONTENT_TYPES \ No newline at end of file +path = "/responseBody/postOneofWithBaseSchemaResponseBodyForContentTypes" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_oneof_with_base_schema_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_oneof_with_base_schema_response_body_for_content_types/post/__init__.py index ce1d60b49c4..7a8138a554c 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_oneof_with_base_schema_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_oneof_with_base_schema_response_body_for_content_types/post/__init__.py @@ -82,7 +82,7 @@ def _post_oneof_with_base_schema_response_body_for_content_types_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_oneof_with_base_schema_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_oneof_with_base_schema_response_body_for_content_types/post/__init__.pyi index 4f1cdc52ccb..e71814ae054 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_oneof_with_base_schema_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_oneof_with_base_schema_response_body_for_content_types/post/__init__.pyi @@ -77,7 +77,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_oneof_with_empty_schema_response_body_for_content_types/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_oneof_with_empty_schema_response_body_for_content_types/__init__.py index 7640477c2f0..c0aad4ba0d4 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_oneof_with_empty_schema_response_body_for_content_types/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_oneof_with_empty_schema_response_body_for_content_types/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.response_body_post_oneof_with_empty_schema_response_body_for_content_types import Api -from unit_test_api.paths import PathValues - -path = PathValues.RESPONSE_BODY_POST_ONEOF_WITH_EMPTY_SCHEMA_RESPONSE_BODY_FOR_CONTENT_TYPES \ No newline at end of file +path = "/responseBody/postOneofWithEmptySchemaResponseBodyForContentTypes" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_oneof_with_empty_schema_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_oneof_with_empty_schema_response_body_for_content_types/post/__init__.py index 1dfbdfd82d5..839450fe1e8 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_oneof_with_empty_schema_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_oneof_with_empty_schema_response_body_for_content_types/post/__init__.py @@ -82,7 +82,7 @@ def _post_oneof_with_empty_schema_response_body_for_content_types_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_oneof_with_empty_schema_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_oneof_with_empty_schema_response_body_for_content_types/post/__init__.pyi index b83e8145c4d..aa025dc2353 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_oneof_with_empty_schema_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_oneof_with_empty_schema_response_body_for_content_types/post/__init__.pyi @@ -77,7 +77,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_oneof_with_required_response_body_for_content_types/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_oneof_with_required_response_body_for_content_types/__init__.py index 1439a56296e..bd15d027dc2 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_oneof_with_required_response_body_for_content_types/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_oneof_with_required_response_body_for_content_types/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.response_body_post_oneof_with_required_response_body_for_content_types import Api -from unit_test_api.paths import PathValues - -path = PathValues.RESPONSE_BODY_POST_ONEOF_WITH_REQUIRED_RESPONSE_BODY_FOR_CONTENT_TYPES \ No newline at end of file +path = "/responseBody/postOneofWithRequiredResponseBodyForContentTypes" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_oneof_with_required_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_oneof_with_required_response_body_for_content_types/post/__init__.py index 96f15d5c3ae..809b83f80d4 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_oneof_with_required_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_oneof_with_required_response_body_for_content_types/post/__init__.py @@ -82,7 +82,7 @@ def _post_oneof_with_required_response_body_for_content_types_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_oneof_with_required_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_oneof_with_required_response_body_for_content_types/post/__init__.pyi index dcb6c9f5f08..1c4c00b5fc2 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_oneof_with_required_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_oneof_with_required_response_body_for_content_types/post/__init__.pyi @@ -77,7 +77,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_pattern_is_not_anchored_response_body_for_content_types/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_pattern_is_not_anchored_response_body_for_content_types/__init__.py index f1ac8646a88..76aad795248 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_pattern_is_not_anchored_response_body_for_content_types/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_pattern_is_not_anchored_response_body_for_content_types/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.response_body_post_pattern_is_not_anchored_response_body_for_content_types import Api -from unit_test_api.paths import PathValues - -path = PathValues.RESPONSE_BODY_POST_PATTERN_IS_NOT_ANCHORED_RESPONSE_BODY_FOR_CONTENT_TYPES \ No newline at end of file +path = "/responseBody/postPatternIsNotAnchoredResponseBodyForContentTypes" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_pattern_is_not_anchored_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_pattern_is_not_anchored_response_body_for_content_types/post/__init__.py index 1e80a4a80de..8c765a4d2f3 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_pattern_is_not_anchored_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_pattern_is_not_anchored_response_body_for_content_types/post/__init__.py @@ -82,7 +82,7 @@ def _post_pattern_is_not_anchored_response_body_for_content_types_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_pattern_is_not_anchored_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_pattern_is_not_anchored_response_body_for_content_types/post/__init__.pyi index 3bd8f574f49..76043df4005 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_pattern_is_not_anchored_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_pattern_is_not_anchored_response_body_for_content_types/post/__init__.pyi @@ -77,7 +77,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_pattern_validation_response_body_for_content_types/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_pattern_validation_response_body_for_content_types/__init__.py index 3789f6ceca7..72ead562fbd 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_pattern_validation_response_body_for_content_types/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_pattern_validation_response_body_for_content_types/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.response_body_post_pattern_validation_response_body_for_content_types import Api -from unit_test_api.paths import PathValues - -path = PathValues.RESPONSE_BODY_POST_PATTERN_VALIDATION_RESPONSE_BODY_FOR_CONTENT_TYPES \ No newline at end of file +path = "/responseBody/postPatternValidationResponseBodyForContentTypes" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_pattern_validation_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_pattern_validation_response_body_for_content_types/post/__init__.py index e4db0c0f0bd..21ff6d8a3be 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_pattern_validation_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_pattern_validation_response_body_for_content_types/post/__init__.py @@ -82,7 +82,7 @@ def _post_pattern_validation_response_body_for_content_types_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_pattern_validation_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_pattern_validation_response_body_for_content_types/post/__init__.pyi index 51e67b0d542..4120d3d7cc9 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_pattern_validation_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_pattern_validation_response_body_for_content_types/post/__init__.pyi @@ -77,7 +77,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_properties_with_escaped_characters_response_body_for_content_types/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_properties_with_escaped_characters_response_body_for_content_types/__init__.py index 9aaa4005c48..6636bb7f05f 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_properties_with_escaped_characters_response_body_for_content_types/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_properties_with_escaped_characters_response_body_for_content_types/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.response_body_post_properties_with_escaped_characters_response_body_for_content_types import Api -from unit_test_api.paths import PathValues - -path = PathValues.RESPONSE_BODY_POST_PROPERTIES_WITH_ESCAPED_CHARACTERS_RESPONSE_BODY_FOR_CONTENT_TYPES \ No newline at end of file +path = "/responseBody/postPropertiesWithEscapedCharactersResponseBodyForContentTypes" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_properties_with_escaped_characters_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_properties_with_escaped_characters_response_body_for_content_types/post/__init__.py index 862395cbd3a..0f1e418aa13 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_properties_with_escaped_characters_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_properties_with_escaped_characters_response_body_for_content_types/post/__init__.py @@ -82,7 +82,7 @@ def _post_properties_with_escaped_characters_response_body_for_content_types_oap api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_properties_with_escaped_characters_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_properties_with_escaped_characters_response_body_for_content_types/post/__init__.pyi index ad47668bafd..e007421e47e 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_properties_with_escaped_characters_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_properties_with_escaped_characters_response_body_for_content_types/post/__init__.pyi @@ -77,7 +77,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_property_named_ref_that_is_not_a_reference_response_body_for_content_types/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_property_named_ref_that_is_not_a_reference_response_body_for_content_types/__init__.py index 424bb192e45..a632b0cbd26 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_property_named_ref_that_is_not_a_reference_response_body_for_content_types/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_property_named_ref_that_is_not_a_reference_response_body_for_content_types/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.response_body_post_property_named_ref_that_is_not_a_reference_response_body_for_content_types import Api -from unit_test_api.paths import PathValues - -path = PathValues.RESPONSE_BODY_POST_PROPERTY_NAMED_REF_THAT_IS_NOT_AREFERENCE_RESPONSE_BODY_FOR_CONTENT_TYPES \ No newline at end of file +path = "/responseBody/postPropertyNamedRefThatIsNotAReferenceResponseBodyForContentTypes" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_property_named_ref_that_is_not_a_reference_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_property_named_ref_that_is_not_a_reference_response_body_for_content_types/post/__init__.py index f25bd9a6d8a..58ba3d29d2f 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_property_named_ref_that_is_not_a_reference_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_property_named_ref_that_is_not_a_reference_response_body_for_content_types/post/__init__.py @@ -82,7 +82,7 @@ def _post_property_named_ref_that_is_not_a_reference_response_body_for_content_t api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_property_named_ref_that_is_not_a_reference_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_property_named_ref_that_is_not_a_reference_response_body_for_content_types/post/__init__.pyi index 75b36f86ab1..13a647f9e91 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_property_named_ref_that_is_not_a_reference_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_property_named_ref_that_is_not_a_reference_response_body_for_content_types/post/__init__.pyi @@ -77,7 +77,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ref_in_additionalproperties_response_body_for_content_types/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ref_in_additionalproperties_response_body_for_content_types/__init__.py index af2e8f8096e..a9e35352066 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ref_in_additionalproperties_response_body_for_content_types/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ref_in_additionalproperties_response_body_for_content_types/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.response_body_post_ref_in_additionalproperties_response_body_for_content_types import Api -from unit_test_api.paths import PathValues - -path = PathValues.RESPONSE_BODY_POST_REF_IN_ADDITIONALPROPERTIES_RESPONSE_BODY_FOR_CONTENT_TYPES \ No newline at end of file +path = "/responseBody/postRefInAdditionalpropertiesResponseBodyForContentTypes" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ref_in_additionalproperties_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ref_in_additionalproperties_response_body_for_content_types/post/__init__.py index 9f3eded8a1d..ebeddadb5ac 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ref_in_additionalproperties_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ref_in_additionalproperties_response_body_for_content_types/post/__init__.py @@ -82,7 +82,7 @@ def _post_ref_in_additionalproperties_response_body_for_content_types_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ref_in_additionalproperties_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ref_in_additionalproperties_response_body_for_content_types/post/__init__.pyi index a97f1340bb0..0942edc4f4f 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ref_in_additionalproperties_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ref_in_additionalproperties_response_body_for_content_types/post/__init__.pyi @@ -77,7 +77,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ref_in_allof_response_body_for_content_types/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ref_in_allof_response_body_for_content_types/__init__.py index 2aff994d8f8..bf6dade519e 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ref_in_allof_response_body_for_content_types/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ref_in_allof_response_body_for_content_types/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.response_body_post_ref_in_allof_response_body_for_content_types import Api -from unit_test_api.paths import PathValues - -path = PathValues.RESPONSE_BODY_POST_REF_IN_ALLOF_RESPONSE_BODY_FOR_CONTENT_TYPES \ No newline at end of file +path = "/responseBody/postRefInAllofResponseBodyForContentTypes" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ref_in_allof_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ref_in_allof_response_body_for_content_types/post/__init__.py index 6a796b0b4cc..77101c02969 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ref_in_allof_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ref_in_allof_response_body_for_content_types/post/__init__.py @@ -82,7 +82,7 @@ def _post_ref_in_allof_response_body_for_content_types_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ref_in_allof_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ref_in_allof_response_body_for_content_types/post/__init__.pyi index a065b8b6499..57a8f448706 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ref_in_allof_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ref_in_allof_response_body_for_content_types/post/__init__.pyi @@ -77,7 +77,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ref_in_anyof_response_body_for_content_types/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ref_in_anyof_response_body_for_content_types/__init__.py index 662467ec6dd..3ced6ee3194 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ref_in_anyof_response_body_for_content_types/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ref_in_anyof_response_body_for_content_types/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.response_body_post_ref_in_anyof_response_body_for_content_types import Api -from unit_test_api.paths import PathValues - -path = PathValues.RESPONSE_BODY_POST_REF_IN_ANYOF_RESPONSE_BODY_FOR_CONTENT_TYPES \ No newline at end of file +path = "/responseBody/postRefInAnyofResponseBodyForContentTypes" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ref_in_anyof_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ref_in_anyof_response_body_for_content_types/post/__init__.py index f4fb3e6894b..c2aba950b18 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ref_in_anyof_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ref_in_anyof_response_body_for_content_types/post/__init__.py @@ -82,7 +82,7 @@ def _post_ref_in_anyof_response_body_for_content_types_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ref_in_anyof_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ref_in_anyof_response_body_for_content_types/post/__init__.pyi index fd0eaeb32ff..68cfa92a080 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ref_in_anyof_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ref_in_anyof_response_body_for_content_types/post/__init__.pyi @@ -77,7 +77,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ref_in_items_response_body_for_content_types/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ref_in_items_response_body_for_content_types/__init__.py index 5f4fef45816..e9243ab25e5 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ref_in_items_response_body_for_content_types/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ref_in_items_response_body_for_content_types/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.response_body_post_ref_in_items_response_body_for_content_types import Api -from unit_test_api.paths import PathValues - -path = PathValues.RESPONSE_BODY_POST_REF_IN_ITEMS_RESPONSE_BODY_FOR_CONTENT_TYPES \ No newline at end of file +path = "/responseBody/postRefInItemsResponseBodyForContentTypes" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ref_in_items_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ref_in_items_response_body_for_content_types/post/__init__.py index 5780c95c68b..dd4d4e2dd87 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ref_in_items_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ref_in_items_response_body_for_content_types/post/__init__.py @@ -82,7 +82,7 @@ def _post_ref_in_items_response_body_for_content_types_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ref_in_items_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ref_in_items_response_body_for_content_types/post/__init__.pyi index 1a92245e3f0..eab37a149e6 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ref_in_items_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ref_in_items_response_body_for_content_types/post/__init__.pyi @@ -77,7 +77,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ref_in_not_response_body_for_content_types/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ref_in_not_response_body_for_content_types/__init__.py index 81c335c672f..b81f4b6fe99 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ref_in_not_response_body_for_content_types/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ref_in_not_response_body_for_content_types/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.response_body_post_ref_in_not_response_body_for_content_types import Api -from unit_test_api.paths import PathValues - -path = PathValues.RESPONSE_BODY_POST_REF_IN_NOT_RESPONSE_BODY_FOR_CONTENT_TYPES \ No newline at end of file +path = "/responseBody/postRefInNotResponseBodyForContentTypes" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ref_in_not_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ref_in_not_response_body_for_content_types/post/__init__.py index 01dd6396a35..2ba015d6d1d 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ref_in_not_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ref_in_not_response_body_for_content_types/post/__init__.py @@ -82,7 +82,7 @@ def _post_ref_in_not_response_body_for_content_types_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ref_in_not_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ref_in_not_response_body_for_content_types/post/__init__.pyi index 1de3a06e9d4..e517623b6e4 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ref_in_not_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ref_in_not_response_body_for_content_types/post/__init__.pyi @@ -77,7 +77,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ref_in_oneof_response_body_for_content_types/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ref_in_oneof_response_body_for_content_types/__init__.py index 40113e93f25..d202150002a 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ref_in_oneof_response_body_for_content_types/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ref_in_oneof_response_body_for_content_types/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.response_body_post_ref_in_oneof_response_body_for_content_types import Api -from unit_test_api.paths import PathValues - -path = PathValues.RESPONSE_BODY_POST_REF_IN_ONEOF_RESPONSE_BODY_FOR_CONTENT_TYPES \ No newline at end of file +path = "/responseBody/postRefInOneofResponseBodyForContentTypes" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ref_in_oneof_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ref_in_oneof_response_body_for_content_types/post/__init__.py index 9334cd23ef6..7a090293178 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ref_in_oneof_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ref_in_oneof_response_body_for_content_types/post/__init__.py @@ -82,7 +82,7 @@ def _post_ref_in_oneof_response_body_for_content_types_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ref_in_oneof_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ref_in_oneof_response_body_for_content_types/post/__init__.pyi index 70a4bdbcbc2..78f289c6633 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ref_in_oneof_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ref_in_oneof_response_body_for_content_types/post/__init__.pyi @@ -77,7 +77,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ref_in_property_response_body_for_content_types/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ref_in_property_response_body_for_content_types/__init__.py index 46badf3657d..e9a792762c7 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ref_in_property_response_body_for_content_types/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ref_in_property_response_body_for_content_types/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.response_body_post_ref_in_property_response_body_for_content_types import Api -from unit_test_api.paths import PathValues - -path = PathValues.RESPONSE_BODY_POST_REF_IN_PROPERTY_RESPONSE_BODY_FOR_CONTENT_TYPES \ No newline at end of file +path = "/responseBody/postRefInPropertyResponseBodyForContentTypes" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ref_in_property_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ref_in_property_response_body_for_content_types/post/__init__.py index f678d8d6dfc..df54689635a 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ref_in_property_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ref_in_property_response_body_for_content_types/post/__init__.py @@ -82,7 +82,7 @@ def _post_ref_in_property_response_body_for_content_types_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ref_in_property_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ref_in_property_response_body_for_content_types/post/__init__.pyi index 26ede3639b9..731b843419b 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ref_in_property_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_ref_in_property_response_body_for_content_types/post/__init__.pyi @@ -77,7 +77,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_required_default_validation_response_body_for_content_types/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_required_default_validation_response_body_for_content_types/__init__.py index 5d1b90f2672..6dcb96e9ad2 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_required_default_validation_response_body_for_content_types/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_required_default_validation_response_body_for_content_types/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.response_body_post_required_default_validation_response_body_for_content_types import Api -from unit_test_api.paths import PathValues - -path = PathValues.RESPONSE_BODY_POST_REQUIRED_DEFAULT_VALIDATION_RESPONSE_BODY_FOR_CONTENT_TYPES \ No newline at end of file +path = "/responseBody/postRequiredDefaultValidationResponseBodyForContentTypes" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_required_default_validation_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_required_default_validation_response_body_for_content_types/post/__init__.py index 1ec31a11b75..d1e749aeecc 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_required_default_validation_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_required_default_validation_response_body_for_content_types/post/__init__.py @@ -82,7 +82,7 @@ def _post_required_default_validation_response_body_for_content_types_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_required_default_validation_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_required_default_validation_response_body_for_content_types/post/__init__.pyi index 4f3aa8b16a0..015b2a8a167 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_required_default_validation_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_required_default_validation_response_body_for_content_types/post/__init__.pyi @@ -77,7 +77,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_required_validation_response_body_for_content_types/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_required_validation_response_body_for_content_types/__init__.py index b17c030e827..8485af048b4 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_required_validation_response_body_for_content_types/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_required_validation_response_body_for_content_types/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.response_body_post_required_validation_response_body_for_content_types import Api -from unit_test_api.paths import PathValues - -path = PathValues.RESPONSE_BODY_POST_REQUIRED_VALIDATION_RESPONSE_BODY_FOR_CONTENT_TYPES \ No newline at end of file +path = "/responseBody/postRequiredValidationResponseBodyForContentTypes" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_required_validation_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_required_validation_response_body_for_content_types/post/__init__.py index 7291193a613..187cdf66e04 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_required_validation_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_required_validation_response_body_for_content_types/post/__init__.py @@ -82,7 +82,7 @@ def _post_required_validation_response_body_for_content_types_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_required_validation_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_required_validation_response_body_for_content_types/post/__init__.pyi index 3d25deebe25..63feda227e6 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_required_validation_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_required_validation_response_body_for_content_types/post/__init__.pyi @@ -77,7 +77,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_required_with_empty_array_response_body_for_content_types/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_required_with_empty_array_response_body_for_content_types/__init__.py index a890c56e6ec..f14bd9a61d3 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_required_with_empty_array_response_body_for_content_types/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_required_with_empty_array_response_body_for_content_types/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.response_body_post_required_with_empty_array_response_body_for_content_types import Api -from unit_test_api.paths import PathValues - -path = PathValues.RESPONSE_BODY_POST_REQUIRED_WITH_EMPTY_ARRAY_RESPONSE_BODY_FOR_CONTENT_TYPES \ No newline at end of file +path = "/responseBody/postRequiredWithEmptyArrayResponseBodyForContentTypes" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_required_with_empty_array_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_required_with_empty_array_response_body_for_content_types/post/__init__.py index e45b6dc33f8..a6f84d1d30d 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_required_with_empty_array_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_required_with_empty_array_response_body_for_content_types/post/__init__.py @@ -82,7 +82,7 @@ def _post_required_with_empty_array_response_body_for_content_types_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_required_with_empty_array_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_required_with_empty_array_response_body_for_content_types/post/__init__.pyi index 5f88aca1e4e..1e5274cfb10 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_required_with_empty_array_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_required_with_empty_array_response_body_for_content_types/post/__init__.pyi @@ -77,7 +77,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_required_with_escaped_characters_response_body_for_content_types/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_required_with_escaped_characters_response_body_for_content_types/__init__.py index b9fb929544f..ce88e35b34a 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_required_with_escaped_characters_response_body_for_content_types/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_required_with_escaped_characters_response_body_for_content_types/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.response_body_post_required_with_escaped_characters_response_body_for_content_types import Api -from unit_test_api.paths import PathValues - -path = PathValues.RESPONSE_BODY_POST_REQUIRED_WITH_ESCAPED_CHARACTERS_RESPONSE_BODY_FOR_CONTENT_TYPES \ No newline at end of file +path = "/responseBody/postRequiredWithEscapedCharactersResponseBodyForContentTypes" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_required_with_escaped_characters_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_required_with_escaped_characters_response_body_for_content_types/post/__init__.py index 9bc96a33109..c279a584924 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_required_with_escaped_characters_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_required_with_escaped_characters_response_body_for_content_types/post/__init__.py @@ -82,7 +82,7 @@ def _post_required_with_escaped_characters_response_body_for_content_types_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_required_with_escaped_characters_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_required_with_escaped_characters_response_body_for_content_types/post/__init__.pyi index 243cff48c97..44e2d301293 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_required_with_escaped_characters_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_required_with_escaped_characters_response_body_for_content_types/post/__init__.pyi @@ -77,7 +77,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_simple_enum_validation_response_body_for_content_types/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_simple_enum_validation_response_body_for_content_types/__init__.py index 5434927f1ff..055611631f9 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_simple_enum_validation_response_body_for_content_types/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_simple_enum_validation_response_body_for_content_types/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.response_body_post_simple_enum_validation_response_body_for_content_types import Api -from unit_test_api.paths import PathValues - -path = PathValues.RESPONSE_BODY_POST_SIMPLE_ENUM_VALIDATION_RESPONSE_BODY_FOR_CONTENT_TYPES \ No newline at end of file +path = "/responseBody/postSimpleEnumValidationResponseBodyForContentTypes" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_simple_enum_validation_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_simple_enum_validation_response_body_for_content_types/post/__init__.py index f98fc8a32aa..488efd6695c 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_simple_enum_validation_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_simple_enum_validation_response_body_for_content_types/post/__init__.py @@ -82,7 +82,7 @@ def _post_simple_enum_validation_response_body_for_content_types_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_simple_enum_validation_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_simple_enum_validation_response_body_for_content_types/post/__init__.pyi index 766a8c90c59..703d7522594 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_simple_enum_validation_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_simple_enum_validation_response_body_for_content_types/post/__init__.pyi @@ -77,7 +77,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_string_type_matches_strings_response_body_for_content_types/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_string_type_matches_strings_response_body_for_content_types/__init__.py index 0e9991d012d..6a672fb0072 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_string_type_matches_strings_response_body_for_content_types/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_string_type_matches_strings_response_body_for_content_types/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.response_body_post_string_type_matches_strings_response_body_for_content_types import Api -from unit_test_api.paths import PathValues - -path = PathValues.RESPONSE_BODY_POST_STRING_TYPE_MATCHES_STRINGS_RESPONSE_BODY_FOR_CONTENT_TYPES \ No newline at end of file +path = "/responseBody/postStringTypeMatchesStringsResponseBodyForContentTypes" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_string_type_matches_strings_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_string_type_matches_strings_response_body_for_content_types/post/__init__.py index 4dbb61aa941..80e45db0d98 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_string_type_matches_strings_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_string_type_matches_strings_response_body_for_content_types/post/__init__.py @@ -82,7 +82,7 @@ def _post_string_type_matches_strings_response_body_for_content_types_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_string_type_matches_strings_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_string_type_matches_strings_response_body_for_content_types/post/__init__.pyi index 0641475411c..a561aa2d085 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_string_type_matches_strings_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_string_type_matches_strings_response_body_for_content_types/post/__init__.pyi @@ -77,7 +77,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_the_default_keyword_does_not_do_anything_if_the_property_is_missing_response_body_for_content_types/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_the_default_keyword_does_not_do_anything_if_the_property_is_missing_response_body_for_content_types/__init__.py index ec8ccdc38e5..0a4715870f6 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_the_default_keyword_does_not_do_anything_if_the_property_is_missing_response_body_for_content_types/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_the_default_keyword_does_not_do_anything_if_the_property_is_missing_response_body_for_content_types/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.response_body_post_the_default_keyword_does_not_do_anything_if_the_property_is_missing_response_body_for_content_types import Api -from unit_test_api.paths import PathValues - -path = PathValues.RESPONSE_BODY_POST_THE_DEFAULT_KEYWORD_DOES_NOT_DO_ANYTHING_IF_THE_PROPERTY_IS_MISSING_RESPONSE_BODY_FOR_CONTENT_TYPES \ No newline at end of file +path = "/responseBody/postTheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissingResponseBodyForContentTypes" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_the_default_keyword_does_not_do_anything_if_the_property_is_missing_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_the_default_keyword_does_not_do_anything_if_the_property_is_missing_response_body_for_content_types/post/__init__.py index 18248df72c2..d013cac0799 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_the_default_keyword_does_not_do_anything_if_the_property_is_missing_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_the_default_keyword_does_not_do_anything_if_the_property_is_missing_response_body_for_content_types/post/__init__.py @@ -82,7 +82,7 @@ def _post_the_default_keyword_does_not_do_anything_if_the_property_is_missing_re api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_the_default_keyword_does_not_do_anything_if_the_property_is_missing_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_the_default_keyword_does_not_do_anything_if_the_property_is_missing_response_body_for_content_types/post/__init__.pyi index 5328ab0d299..59bf81740c9 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_the_default_keyword_does_not_do_anything_if_the_property_is_missing_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_the_default_keyword_does_not_do_anything_if_the_property_is_missing_response_body_for_content_types/post/__init__.pyi @@ -77,7 +77,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_uniqueitems_false_validation_response_body_for_content_types/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_uniqueitems_false_validation_response_body_for_content_types/__init__.py index f40589c90cc..badf7dd83f8 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_uniqueitems_false_validation_response_body_for_content_types/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_uniqueitems_false_validation_response_body_for_content_types/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.response_body_post_uniqueitems_false_validation_response_body_for_content_types import Api -from unit_test_api.paths import PathValues - -path = PathValues.RESPONSE_BODY_POST_UNIQUEITEMS_FALSE_VALIDATION_RESPONSE_BODY_FOR_CONTENT_TYPES \ No newline at end of file +path = "/responseBody/postUniqueitemsFalseValidationResponseBodyForContentTypes" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_uniqueitems_false_validation_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_uniqueitems_false_validation_response_body_for_content_types/post/__init__.py index 497762408c7..ce3fc2ba5ef 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_uniqueitems_false_validation_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_uniqueitems_false_validation_response_body_for_content_types/post/__init__.py @@ -82,7 +82,7 @@ def _post_uniqueitems_false_validation_response_body_for_content_types_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_uniqueitems_false_validation_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_uniqueitems_false_validation_response_body_for_content_types/post/__init__.pyi index a189f6d307c..52f3aaf81ae 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_uniqueitems_false_validation_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_uniqueitems_false_validation_response_body_for_content_types/post/__init__.pyi @@ -77,7 +77,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_uniqueitems_validation_response_body_for_content_types/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_uniqueitems_validation_response_body_for_content_types/__init__.py index 693706fd005..6b4bd4c8f14 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_uniqueitems_validation_response_body_for_content_types/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_uniqueitems_validation_response_body_for_content_types/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.response_body_post_uniqueitems_validation_response_body_for_content_types import Api -from unit_test_api.paths import PathValues - -path = PathValues.RESPONSE_BODY_POST_UNIQUEITEMS_VALIDATION_RESPONSE_BODY_FOR_CONTENT_TYPES \ No newline at end of file +path = "/responseBody/postUniqueitemsValidationResponseBodyForContentTypes" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_uniqueitems_validation_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_uniqueitems_validation_response_body_for_content_types/post/__init__.py index d91eaac6e22..256297d4014 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_uniqueitems_validation_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_uniqueitems_validation_response_body_for_content_types/post/__init__.py @@ -82,7 +82,7 @@ def _post_uniqueitems_validation_response_body_for_content_types_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_uniqueitems_validation_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_uniqueitems_validation_response_body_for_content_types/post/__init__.pyi index 53182b34abb..2520305a061 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_uniqueitems_validation_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_uniqueitems_validation_response_body_for_content_types/post/__init__.pyi @@ -77,7 +77,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_uri_format_response_body_for_content_types/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_uri_format_response_body_for_content_types/__init__.py index d7621b58329..231405752cc 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_uri_format_response_body_for_content_types/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_uri_format_response_body_for_content_types/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.response_body_post_uri_format_response_body_for_content_types import Api -from unit_test_api.paths import PathValues - -path = PathValues.RESPONSE_BODY_POST_URI_FORMAT_RESPONSE_BODY_FOR_CONTENT_TYPES \ No newline at end of file +path = "/responseBody/postUriFormatResponseBodyForContentTypes" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_uri_format_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_uri_format_response_body_for_content_types/post/__init__.py index 5a40cb5e626..f2e64726462 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_uri_format_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_uri_format_response_body_for_content_types/post/__init__.py @@ -82,7 +82,7 @@ def _post_uri_format_response_body_for_content_types_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_uri_format_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_uri_format_response_body_for_content_types/post/__init__.pyi index 9edab25419c..b07e5d87d19 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_uri_format_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_uri_format_response_body_for_content_types/post/__init__.pyi @@ -77,7 +77,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_uri_reference_format_response_body_for_content_types/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_uri_reference_format_response_body_for_content_types/__init__.py index dd5c4ffc435..2659a403fb7 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_uri_reference_format_response_body_for_content_types/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_uri_reference_format_response_body_for_content_types/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.response_body_post_uri_reference_format_response_body_for_content_types import Api -from unit_test_api.paths import PathValues - -path = PathValues.RESPONSE_BODY_POST_URI_REFERENCE_FORMAT_RESPONSE_BODY_FOR_CONTENT_TYPES \ No newline at end of file +path = "/responseBody/postUriReferenceFormatResponseBodyForContentTypes" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_uri_reference_format_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_uri_reference_format_response_body_for_content_types/post/__init__.py index 29b04783d3f..4b331a98f16 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_uri_reference_format_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_uri_reference_format_response_body_for_content_types/post/__init__.py @@ -82,7 +82,7 @@ def _post_uri_reference_format_response_body_for_content_types_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_uri_reference_format_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_uri_reference_format_response_body_for_content_types/post/__init__.pyi index 41e7160464e..1b74f83236e 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_uri_reference_format_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_uri_reference_format_response_body_for_content_types/post/__init__.pyi @@ -77,7 +77,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_uri_template_format_response_body_for_content_types/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_uri_template_format_response_body_for_content_types/__init__.py index 468a1c4cfd3..0f006285399 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_uri_template_format_response_body_for_content_types/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_uri_template_format_response_body_for_content_types/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from unit_test_api.paths.response_body_post_uri_template_format_response_body_for_content_types import Api -from unit_test_api.paths import PathValues - -path = PathValues.RESPONSE_BODY_POST_URI_TEMPLATE_FORMAT_RESPONSE_BODY_FOR_CONTENT_TYPES \ No newline at end of file +path = "/responseBody/postUriTemplateFormatResponseBodyForContentTypes" \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_uri_template_format_response_body_for_content_types/post/__init__.py b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_uri_template_format_response_body_for_content_types/post/__init__.py index f65e033589f..bf409d18d77 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_uri_template_format_response_body_for_content_types/post/__init__.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_uri_template_format_response_body_for_content_types/post/__init__.py @@ -82,7 +82,7 @@ def _post_uri_template_format_response_body_for_content_types_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_uri_template_format_response_body_for_content_types/post/__init__.pyi b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_uri_template_format_response_body_for_content_types/post/__init__.pyi index 4f24c328f6e..ca4f12db6f4 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_uri_template_format_response_body_for_content_types/post/__init__.pyi +++ b/samples/openapi3/client/3_0_3_unit_test/python/unit_test_api/paths/response_body_post_uri_template_format_response_body_for_content_types/post/__init__.pyi @@ -77,7 +77,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/features/nonCompliantUseDiscriminatorIfCompositionFails/python/this_package/apis/path_to_api.py b/samples/openapi3/client/features/nonCompliantUseDiscriminatorIfCompositionFails/python/this_package/apis/path_to_api.py index 1eb9aba4359..d998df31335 100644 --- a/samples/openapi3/client/features/nonCompliantUseDiscriminatorIfCompositionFails/python/this_package/apis/path_to_api.py +++ b/samples/openapi3/client/features/nonCompliantUseDiscriminatorIfCompositionFails/python/this_package/apis/path_to_api.py @@ -1,17 +1,16 @@ import typing_extensions -from this_package.paths import PathValues from this_package.apis.paths.operators import Operators PathToApi = typing_extensions.TypedDict( 'PathToApi', { - PathValues.OPERATORS: Operators, + "/operators": Operators, } ) path_to_api = PathToApi( { - PathValues.OPERATORS: Operators, + "/operators": Operators, } ) diff --git a/samples/openapi3/client/features/nonCompliantUseDiscriminatorIfCompositionFails/python/this_package/apis/tag_to_api.py b/samples/openapi3/client/features/nonCompliantUseDiscriminatorIfCompositionFails/python/this_package/apis/tag_to_api.py index 9c0a0a5cfc4..55a5dedf128 100644 --- a/samples/openapi3/client/features/nonCompliantUseDiscriminatorIfCompositionFails/python/this_package/apis/tag_to_api.py +++ b/samples/openapi3/client/features/nonCompliantUseDiscriminatorIfCompositionFails/python/this_package/apis/tag_to_api.py @@ -1,17 +1,16 @@ import typing_extensions -from this_package.apis.tags import TagValues from this_package.apis.tags.default_api import DefaultApi TagToApi = typing_extensions.TypedDict( 'TagToApi', { - TagValues.DEFAULT: DefaultApi, + "default": DefaultApi, } ) tag_to_api = TagToApi( { - TagValues.DEFAULT: DefaultApi, + "default": DefaultApi, } ) diff --git a/samples/openapi3/client/features/nonCompliantUseDiscriminatorIfCompositionFails/python/this_package/apis/tags/__init__.py b/samples/openapi3/client/features/nonCompliantUseDiscriminatorIfCompositionFails/python/this_package/apis/tags/__init__.py index a731754fccc..55ef8cf0321 100644 --- a/samples/openapi3/client/features/nonCompliantUseDiscriminatorIfCompositionFails/python/this_package/apis/tags/__init__.py +++ b/samples/openapi3/client/features/nonCompliantUseDiscriminatorIfCompositionFails/python/this_package/apis/tags/__init__.py @@ -1,9 +1,3 @@ # do not import all endpoints into this module because that uses a lot of memory and stack frames # if you need the ability to import all endpoints from this module, import them with -# from this_package.apis.tag_to_api import tag_to_api - -import enum - - -class TagValues(str, enum.Enum): - DEFAULT = "default" +# from this_package.apis.tag_to_api import tag_to_api \ No newline at end of file diff --git a/samples/openapi3/client/features/nonCompliantUseDiscriminatorIfCompositionFails/python/this_package/paths/__init__.py b/samples/openapi3/client/features/nonCompliantUseDiscriminatorIfCompositionFails/python/this_package/paths/__init__.py index 8c39139e50a..55179ce77cd 100644 --- a/samples/openapi3/client/features/nonCompliantUseDiscriminatorIfCompositionFails/python/this_package/paths/__init__.py +++ b/samples/openapi3/client/features/nonCompliantUseDiscriminatorIfCompositionFails/python/this_package/paths/__init__.py @@ -1,9 +1,3 @@ # do not import all endpoints into this module because that uses a lot of memory and stack frames # if you need the ability to import all endpoints from this module, import them with -# from this_package.apis.path_to_api import path_to_api - -import enum - - -class PathValues(str, enum.Enum): - OPERATORS = "/operators" +# from this_package.apis.path_to_api import path_to_api \ No newline at end of file diff --git a/samples/openapi3/client/features/nonCompliantUseDiscriminatorIfCompositionFails/python/this_package/paths/operators/__init__.py b/samples/openapi3/client/features/nonCompliantUseDiscriminatorIfCompositionFails/python/this_package/paths/operators/__init__.py index 84782ebb78c..bc51ebe13ec 100644 --- a/samples/openapi3/client/features/nonCompliantUseDiscriminatorIfCompositionFails/python/this_package/paths/operators/__init__.py +++ b/samples/openapi3/client/features/nonCompliantUseDiscriminatorIfCompositionFails/python/this_package/paths/operators/__init__.py @@ -2,6 +2,4 @@ # if you need the ability to import all endpoints from this module, import them with # from this_package.paths.operators import Api -from this_package.paths import PathValues - -path = PathValues.OPERATORS \ No newline at end of file +path = "/operators" \ No newline at end of file diff --git a/samples/openapi3/client/features/nonCompliantUseDiscriminatorIfCompositionFails/python/this_package/paths/operators/post/__init__.py b/samples/openapi3/client/features/nonCompliantUseDiscriminatorIfCompositionFails/python/this_package/paths/operators/post/__init__.py index 5754b0a3abc..cd6454b40a9 100644 --- a/samples/openapi3/client/features/nonCompliantUseDiscriminatorIfCompositionFails/python/this_package/paths/operators/post/__init__.py +++ b/samples/openapi3/client/features/nonCompliantUseDiscriminatorIfCompositionFails/python/this_package/paths/operators/post/__init__.py @@ -99,7 +99,7 @@ def _post_operators_oapg( api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/features/nonCompliantUseDiscriminatorIfCompositionFails/python/this_package/paths/operators/post/__init__.pyi b/samples/openapi3/client/features/nonCompliantUseDiscriminatorIfCompositionFails/python/this_package/paths/operators/post/__init__.pyi index 0cfae448a35..2d462237779 100644 --- a/samples/openapi3/client/features/nonCompliantUseDiscriminatorIfCompositionFails/python/this_package/paths/operators/post/__init__.pyi +++ b/samples/openapi3/client/features/nonCompliantUseDiscriminatorIfCompositionFails/python/this_package/paths/operators/post/__init__.pyi @@ -94,7 +94,7 @@ class BaseApi(api_client.Api): api_response.body and api_response.headers will not be deserialized into schema class instances """ - used_path = path.value + used_path = path _headers = HTTPHeaderDict() # TODO add cookie handling diff --git a/samples/openapi3/client/petstore/python/.openapi-generator/VERSION b/samples/openapi3/client/petstore/python/.openapi-generator/VERSION index 717311e32e3..359a5b952d4 100644 --- a/samples/openapi3/client/petstore/python/.openapi-generator/VERSION +++ b/samples/openapi3/client/petstore/python/.openapi-generator/VERSION @@ -1 +1 @@ -unset \ No newline at end of file +2.0.0 \ No newline at end of file